--- a/metadataplayer/dailymotion.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,52 +0,0 @@
-<!doctype html>
-<html>
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Metadataplayer test with Dailymotion</title>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <link href='test.css' rel='stylesheet' type='text/css'>
- <script type="text/javascript" src="metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- <script type="text/javascript" src="test-config.js" type="text/javascript"></script>
- </head>
-
- <body>
- <h1>Metadataplayer test with Dailymotion</h1>
- <div id="LdtPlayer"></div>
- <div id="AnnotationsListContainer"></div>
- <script type="text/javascript">
-IriSP.libFiles.defaultDir = "libs/";
-IriSP.widgetsDir = "metadataplayer";
-var _metadata = {
- url: "json/ldt-dailymotion.json",
- format: 'ldt'
-};
-var _config = {
- width : 620,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : 'metadataplayer/LdtPlayer-core.css',
- widgets: [
- { type: "AutoPlayer" },
- { type: "Sparkline" },
- { type: "Slider" },
- { type: "Controller" },
- { type: "Polemic" },
- { type: "Segments" },
- { type: "Annotation" },
- { type: "CreateAnnotation" },
- { type: "Tweet" },
- { type: "Tagcloud" },
- {
- type: "AnnotationsList",
- container: "AnnotationsListContainer"
- },
- { type: "Mediafragment"}
- ]
-};
-_myPlayer = new IriSP.Metadataplayer(_config);
- </script>
- </body>
-</html>
--- a/metadataplayer/docs/architecture.fr.md Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,353 +0,0 @@
-# Architecture du Metadataplayer #
-
-ATTENTION !
-Cette documentation se réfère à la dernière version du Metadataplayer, disponible dans la branche **default** du repository
-http://www.iri.centrepompidou.fr/dev/hg/metadataplayer
-
-## Bibliothèques extérieures ##
-
-Les bibliothèques utilisées par le Metadataplayer sont regroupées dans *src/libs*
-
-### LAB.js ###
-
-- **Fichier**: LAB.min.js
-- **Licence**: MIT.
-- **Rôle**: Charge les autres bibliothèques extérieures et les widgets.
-- **Utilisé par**: Code principal.
-- Du fait de ce mode de chargement, il s’agit de la seule bibliothèque nécessaire au moment de l’initialisation du code.
-- **Site**: http://labjs.com/
-
-### jQuery ###
-
-- **Fichier**: jquery.min.js
-- **Licence**: Double, MIT et GPL.
-- **Rôle**: Gère les actions du code sur la structure du document HTML (DOM)
-- **Utilisé par**: Code principal et tous les widgets.
-- **Site**: http://jquery.org/
-
-### jQuery UI ###
-
-- **Fichiers**: jquery-ui.min.js et jquery-ui.css
-- **Licence**: Double, MIT et GPL.
-- **Rôle**: Fournit des éléments d’interface utilisateurs, tels que *Sliders*
-- **Utilisé par**: Widgets, Controller (pour le volume) et Slider (pour le *Slider de progression*)
-- **Site**: http://jqueryui.com/
-
-### Underscore ###
-
-- **Fichier**: underscore-min.js
-- **Licence**: MIT.
-- **Rôle**: Fournit des fonctionnalités orientées programmation fonctionnelle pour manipuler tableaux, objets et fonctions.
-- **Utilisé par**: Code principal et widgets.
-- **Site**: http://documentcloud.github.com/underscore/
-
-### Popcorn ###
-
-- **Fichier**: popcorn-complete.min.js
-- **Licence**: MIT.
-- **Rôle**: Fournit une gestion de la lecture de vidéos HTML5.
-- **Utilisé par**: Players HTML5 et Youtube, ainsi que pour la communication avec le reste du Metadataplayer lorsque l’un de ces players est utilisé.
-- **Site**: http://popcornjs.org/
-
-### Mustache ###
-
-- **Fichier**: mustache.js
-- **Licence**: MIT.
-- **Rôle**: Permet de remplir des gabarits (*templates*) HTML.
-- **Utilisé par**: widgets.
-- **Site**: http://mustache.github.com/
-
-### Raphael ###
-
-- **Fichier**: raphael-min.js
-- **Licence**: MIT.
-- **Rôle**: Fournit une interface de dessin vectoriel (utilise SVG ou VML selon les navigateurs)
-- **Utilisé par**: Widgets Arrow et Sparkline
-- **Site**: http://raphaeljs.com/
-
-### ZeroClipboard ###
-
-- **Fichiers**: ZeroClipboard.js et ZeroClipboard.swf
-- **Licence**: MIT.
-- **Rôle**: Permet l’accès au presse-papiers (using Flash)
-- **Utilisé par**: Widget Social
-- **Site**: http://code.google.com/p/zeroclipboard/
-
-### ktbs4js Tracemanager ###
-
-- **Fichier**: tracemanager.js
-- **Licence**: LGPL.
-- **Rôle**: Permet de s’interfacer avec le système de gestion de traces KTBS, créé par Olivier Aubert (Liris)
-- **Utilisé par**: TraceWidget
-- **Site**: http://github.com/oaubert/ktbs4js
-
-## Code principal (core) du Metadataplayer ##
-
-Dans la version *release* du metadataplayer, les fichiers Javascript et CSS sont répartis entre le *core* et les *widgets*.
-
-*LdtPlayer-core.js* est compilé à partir de plusieurs fichiers Javascript situés (sauf LAB.min.js) dans *src/js*:
-
-### header.js ###
-
-Contient les crédits du Metadataplayer, ainsi que les informations sur la licence (*CeCILL-C*)
-
-### LAB.js ###
-
-cf. Bibliothèques extérieures.
-
-### init.js ###
-
-Définit l’objet *IriSP*, qui sert d’espace de nommage pour tout le Metadataplayer.
-Contient la classe *IriSP.Metadataplayer*, dont l’instanciation est la porte d’entrée principale du code.
-
-### pop.js ###
-
-Contient *IriSP.PopcornReplacement*, c’est à dire une version simplifiée de Popcorn pour communiquer avec des lecteurs vidéos non-supportés par Popcorn.
-Au moment de la création de cette partie, l’interfaçage Popcorn-jwplayer n’était pas satisfaisant, à remplacer éventuellement par de vrais players/plugins pour Popcorn.
-
-### utils.js ###
-
-Contient quelques fonctions utilitaires, telles que *IriSP.loadCss*, qui est l’équivalent pour les fichiers CSS de LAB.js.
-
-### model.js ###
-
-Contient les classes de gestion du modèle de données Cinelab, regroupées sous l’espace de nommage *IriSP.Model*.
-
-### widgets.js ###
-
-Contient la classe de base *IriSP.Widgets.Widget*, qui fournit les fonctionnalités de base pour les widgets.
-
-### players ###
-
-Les fichiers de ce répertoire permettent d’interfacer le *Popcorn Replacement* (cf. *pop.js*) avec des lecteurs vidéo tiers.
-
-Existent actuellement:
-
-1. **player.jwplayer**, pour communiquer avec JwPlayer, utilisé pour lire des flux RTMP sur la plateforme *Ligne de temps*
-2. **player.dailymotion**, pour lire des vidéos du *Youtube à la française*
-3. **player.allocine**, pour le player de allocine.net
-4. **player.mashup**, pour le player de bout à bout Flash créé par Thibaut Cavalié.
-5. **player.htmlMashup**, pour le lecteur de bout à bout de vidéos HTML5 basé sur Popcorn.
-
-### serializers ###
-
-Les Sérialiseurs servent d’interface entre les formats de données utilisés pour les échanges avec les serveurs.
-
-Deux sérialiseurs existent à l’heure actuelle:
-
-1. **ldt**, pour lire les flux JSON fournis par la plateforme *Lignes de Temps*.
-2. **ldt\_annotate**, pour communiquer avec l’API d’ajout d’annotations de la plateforme, dont le format est légèrement différent.
-
-## Widgets ##
-
-Les Widgets sont des modules, visibles ou non, permettant de rajouter des fonctionnalités au Metadataplayer.
-
-Situés dans le répertoire *src/widgets*, ils contiennent nécessairement un fichier de code *NomDuWidget.js* et, optionnellement un fichier de style *NomDuWidget.css*
-
-#### Options courantes ####
-
-- **metadata**, source de métadonnées, sous la forme { url: *URL de la source de données*, type: *Type de sérialiseur utilisé* }
-- **container**, à utiliser seulement si le widget ne doit pas être aligné en dessous des autres widgets, pour spécifier l’ID de l’élément HTML dans lequel il doit être affiché.
-- **annotation\_type**, dans les widgets affichant des annotations. Cette option peut prendre les valeurs suivantes:
- - Chaîne de caractères: prend en compte les types d’annotations dont le titre contient la chaîne. Exemple: "chap" permet notamment d’afficher les annotations dans le type d’annotation "Chapitrage"
- - Tableau de chaînes: pour prendre en compte plusieurs types d’annotations
- - false: pour prendre en compte toutes les annotations du projet
-- **requires**, qui permet d’encapsuler un widget dans un autre.
-
-Voici la liste des widgets actuellement disponibles, avec leurs options:
-
-### Annotation ###
-
-- **Rôle**: Affiche les informations relatives à une annotation au moment où celle-ci est jouée
-- **Options**:
- - **annotation\_type**: (défaut: "chapitrage"), cf. *Options courantes*, plus haut.
- - **show\_top\_border**: (défaut: false), afficher ou non la bordure en haut du widget (au cas où il est utilisé sans/avec le widget *Arrow*)
- - **site\_name**: "Lignes de Temps", nom du site à afficher lorsque l’on clique sur les boutons de partage pour réseaux sociaux.
-- Utilise un fichier CSS: oui
-
-### AnnotationsList ###
-
-- **Rôle**: Affiche une liste d’annotations
-- **Options**:
- - **ajax\_url**: (défaut: false), spécifie un gabarit d’URL lorsque les annotations doivent être chargées par une API spécifique (API de segment). Dans l’URL, {{media}} sera remplacé par l’ID du média, {{begin}} par le *timecode* de début en millisecondes, {{end}} par le *timecode* de fin en millisecondes. Si le réglage est à *false*, les annotations affichées seront celles chargées à l’initialisation du Widget. Sur la plateforme *Lignes de Temps*, cette URL est http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}?callback=?
- - **ajax\_granularity**: (défaut: 300000 ms = 5 minutes), spécifie la durée qui doit être chargée par l’API de segment, de part et d’autre du timecode courant (cf. ci-dessus)
- - **default\_thumbnail**: imagette à afficher par défaut à côté d’une annotation lorsque l’annotation n’a pas d’imagette.
- - **foreign\_url**: spécifie un gabarit d’URL lorsque l’annotation n’a pas d’information d’URL et que l’annotation est dans un autre projet. Dans l’URL, {{media}} sera remplacé par l’ID du média, {{project}} par l’ID du projet, {{annotationType}} par l’ID du type d’annotation, {{annotation}} par l’ID de l’annotation. Sur la plateforme *Lignes de temps*, cette URL est http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/front/player/{{media}}/{{project}}/{{annotationType}}#id={{annotation}}
- - **annotation\_type**: (défaut: false), cf. *Options courantes*, plus haut.
- - **refresh\_interval**: (défaut: 0), intervalle auquel le widget recharge en Ajax la liste des annotations (que l’on utilise l’API de segment ou non)
- - **limit\_count**: (défaut: 10), nombre maximum d’annotations à afficher simultanément.
- - **newest\_first**: (défaut: false), *true*: classe les annotations par ordre antéchronologique de création, *false*: classe les annotations par ordre chronologique de leur timecode vidéo.
-- Utilise un fichier CSS: oui
-
-### Arrow ###
-
-- **Rôle**: Dessine la flèche indiquant la position de l’annotation
-- **Options**:
- - **arrow\_height**: (défaut: 16), hauteur en pixels de la flèche
- - **arrow\_width**: (défaut: 24), largeur en pixels de la flèche
- - **base\_height**: (défaut: 0), hauteur entre le bas de la flèche et le bas du widget. Nécessaire si l’on souhaite faire un widget aux bords arrondis.
- - **base\_curve**: (défaut: 0), rayon de courbure des bords arrondis du widget.
- - **fill\_url**: URL d’une image de remplissage pour le widget
- - **fill\_color**: (défaut: "#ffffff" = blanc), couleur de remplissage du widget. Peut-être remplacé par un dégradé sous la forme angle en degrés-couleur de début-couleur de fin, ex: "90-#000-#fff"
- - **stroke\_color**: (défaut: "#b7b7b7" = gris), couleur de la bordure du widget.
- - **stroke\_width**: (défaut: 1.5), épaisseur en pixels de la bordure du widget.
- - **animation\_speed**: (défaut: 20), vitesse de déplacement de la flèche.
- - **pilot\_widget**: (défaut: "Annotation"), widget commandant la position de la flèche.
-- Utilise la bibliothèque: Raphael
-- Utilise un fichier CSS: non
-
-### Controller ###
-
-- **Rôle**: Boutons Lecture/Pause, Rechercher, Ouvrir l’annotateur et contrôle du volume
-- **Options**:
- - **disable\_annotate\_btn**: (défaut: false), permet de désactiver le bouton d’ouverture de l’annotateur s’il est à *true*
- - **disable\_search\_btn**: (défaut: true), permet de désactiver le bouton de recherche d’annotations
-- Utilise la bibliothèque: jQuery UI
-- Utilise un fichier CSS: oui
-
-### CreateAnnotation ###
-
-- **Rôle**: Permet de créer une annotation en affichant un formulaire
-- **Options**:
- - **show\_title\_field**: (défaut: true), affiche un champ permettant de saisir le titre de l’annotation.
- - **creator\_name**: nom d’utilisateur du créateur de l’annotation.
- - **creator\_avatar**: URL de l’image de profil du créateur de l’annotation.
- - **tags**: (défaut: false), liste des tags à afficher, sous la forme d’un tableau d’objets type [ { id: "tag-001", title: "" } ]. Si la valeur est false, affiche les tags les plus utilisés du projet.
- - **max\_tags**: (défaut: 8), nombre de tags à afficher.
- - **polemics**: boutons polémiques à afficher, sous la forme d’un tableau d’objets indiquant mot-clé à ajouter, couleur du fond du bouton, couleur du bouton, ex: [ { keyword: "++", background\_color: "#00a000", text\_color: "#ffffff" } ]
- - **annotation\_type**: (défaut: "Contributions"), cf. *Options courantes*, plus haut.
- - **api\_serializer**: (défaut: "ldt\_annotate"), sérialiseur à utiliser pour l’envoi des annotations.
- - **api\_endpoint\_template**: URL de l’API, où {{id\}\} est remplacé par l’ID du projet, ex: "http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/annotations/{{id}}.json".
- - **api\_method**: (défaut: "PUT"), méthode HTTP utilisée pour envoyer les annotations. La plateforme *Lignes de temps* utilise PUT, mais cette méthode devrait être réservée pour la création d’une ressource dont l’URL est connue à l’avance.
- - **close\_widget\_timeout**: (défaut: 0), durée en millisecondes avant que le widget ne soit refermé après l’envoi d’une annotation. Si la valeur est 0, le widget ne se referme pas.
-- Utilise un fichier CSS: oui
-
-### HelloWorld ###
-
-- **Rôle**: Widget d’exemple démontrant l’API de création de widgets
-- **Options**:
- - **text**: (défaut: "world"), texte à afficher après "Hello, "
-- Utilise un fichier CSS: oui
-
-### Media ###
-
-- **Rôle**: Affiche le média en cours, ainsi que la liste des autres médias du projet. Utilisé principalement pour les mashups
-- **Options**:
- - **default\_thumbnail**: imagette à afficher par défaut à côté d’un média lorsque le média n’a pas d’imagette.
- - **media\_url\_template**: spécifie un gabarit d’URL lorsque le média n’a pas d’information d’URL, par exemple: "http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/front/player/{{media}}/"
-- Utilise un fichier CSS: oui
-
-### Mediafragment ###
-
-- **Rôle**: Gère les URLs à la norme *Mediafragment*: change la position de la tête de lecture en fonction de l’URL et inversement.
-- Une URL finissant par #id=*id de l’annotation* pointe sur une annotation, par #t=*temps en secondes* vers un timecode de la vidéo.
-- Pas d’options
-- Utilise un fichier CSS: non.
-
-### Polemic ###
-
-- **Rôle**: Affiche la *timeline polémique*, c’est à dire les tweets colorés en fonction de la syntaxe polémique. Selon le volume de tweets, deux modes de représentation existent:
- - Avec un faible volume, les tweets sont des carrés dessinés individuellement.
- - Avec un volume élevé, les colonnes présentent les volumes agrégés de tweets par couleur.
-- **Options**:
- - **element\_width**: (défaut: 5), largeur en pixels d’une tranche de tweets.
- - **element\_height**: (défaut: 5), hauteur en pixels d’un tweet, en mode faible volume.
- - **max\_elements**: (défaut: 15), nombre de tweets dans une colonne à partir duquel le mode de représentation change.
- - **annotation\_type**: (défaut: "tweet"), cf. *Options courantes*, plus haut.
- - **defaultcolor**: (défaut: "#585858" = gris), couleur des tweets qui n’ont pas d’annotation polémique.
- - **foundcolor**: (défaut: "#fc00ff" = mauve), couleur d’affichage des tweets correspondant à un résultat de recherche.
- - **polemics**: couleurs polémiques à afficher, en fonction d’une recherche de termes, type [ { keywords: [ "++" ], color: "#1D973D" } ]
-- Utilise un fichier CSS: oui
-
-### Renkan ###
-
-- **Rôle**: Interface avec le projet *Renkan*
-- Utilise les bibliothèques: jQuery Mousewheel, Backbone, Backbone Relational, Renkan-Publish
-- Utilise un fichier CSS: oui
-
-### Segments ###
-
-- **Rôle**: Affiche le *chapitrage* du média, en horizontal.
-- **Options**:
- - **colors**: liste de couleurs à utiliser lorsque les annotations ne contiennent pas d’information de couleur.
- - **height**: hauteur du widget
-- Utilise un fichier CSS: oui
-
-### Slider ###
-
-- **Rôle**: Barre de progression et *Slider* indiquant la position de la tête de lecture vidéo et permettant de la déplacer.
-- **Options**:
- - **minimized\_height**: (défaut: 4), hauteur en pixels du *Slider* en mode minimisé
- - **maximized\_height**: (défaut: 10), hauteur en pixels du *Slider* en mode maximisé (lorsque la souris passe dessus)
- - **minimize\_timeout**: (défaut: 1500), durée en millisecondes avant que le *Slider* ne se minimise. À une valeur de 0, le *Slider* ne se minimise plus.
-- Utilise la bibliothèque: jQuery UI
-- Utilise un fichier CSS: oui
-
-### Social ###
-
-- **Role**: Affiche des boutons pour partager une URL sur les réseaux sociaux
-- **Options**:
- - **text**: un texte à afficher (dans le tweet, etc.)
- - **url**: l’URL à partager
- - **show_url**: Affiche un bouton pour copier-coller une URL.
- - **show_twitter**: Affiche un bouton pour partager sur Twitter.
- - **show_fb**: Affiche un bouton pour partager sur Facebook.
- - **show_gplus**: Affiche un bouton pour partager sur Google+.
- - **show_mail**: Affiche un bouton pour partager par e-mail.
-- Utilise un fichier CSS: oui.
-- Utilise la bibliothèque: ZeroClipboard
-
-### Sparkline ###
-
-- **Rôle**: Affiche une courbe indiquant l’évolution du volume d’annotations au cours du temps.
-- **Options**:
- - **annotation\_type**: cf. *Options courantes*, plus haut.
- - **lineColor**: (défaut: "#7492b4" = gris-bleu), couleur de la courbe
- - **fillColor**: (défaut: "#aeaeb8" = gris), couleur de la surface sous la courbe
- - **lineWidth**: (défaut: 2), épaisseur en pixels de la courbe
- - **slice\_count**: (défaut: 20), nombre des tranches horaires dans lesquelles les annotations sont réparties pour calculer la courbe
- - **height**: (défaut: 50), hauteur en pixels de la courbe
- - **margin**: (défaut: 5), marge en pixels au-dessus de la courbe
-- Utilise la bibliothèque: Raphael
-- Utilise un fichier CSS: non
-
-### Tagcloud ###
-
-- **Rôle**: Affiche un nuage de mots-clés
-- **Options**:
- - **include\_titles**: (défaut: true), utiliser le contenu du champ titre des annotations pour calculer le nuage de mots-clés.
- - **include\_descriptions**: (défaut: true), utiliser le contenu du champ description des annotations pour calculer le nuage.
- - **include\_tag\_texts**: (défaut: true), utiliser les textes des tags liés aux annotations pour calculer le nuage de mots-clés.
- - **tag\_count**: (défaut: 30), nombre maximum de mots-clés à afficher.
- - **stopword\_language**: (défaut: "fr"), code de langue correspondant à une liste de mots vides à exclure du nuage.
- - **custom\_stopwords**: (défaut: []), liste de mots-vides à exclure du nuage.
- - **exclude\_pattern**: (défaut: false), expression régulière à exclure du nuage.
- - **annotation\_type**: (défaut: false), cf. *Options courantes*, plus haut. Concerne les annotations dont les contenus sont utilisés pour calculer le nuage.
- - **segment\_annotation\_type**: (défaut: false), permet de définir la segmentation du nuage de mots-clés et de calculer un nuage pour chaque segment du type d’annotation choisi. Lorsque ce paramètre est à *false*, un seul nuage est calculé pour toute la durée de la vidéo.
- - **min\_font\_size**: (défaut: 10), taille de caractères (en pixels) pour le mot le moins fréquent.
- - **max\_font\_size**: (défaut: 26), taille de caractères (en pixels) pour le mot le plus fréquent.
-- Utilise un fichier CSS: oui
-
-### Tooltip ###
-
-- **Rôle**: Affiche une infobulle, utilisé uniquement comme *widget inclus* dans d’autres widgets.
-- Pas d’options
-- Utilise un fichier CSS: oui
-
-### Trace ###
-
-- **Rôle**: Envoi des traces au serveur KTBS
-- **Options**:
- - **js\_console**: (défaut: false), écriture ou non des traces dans la console du navigateur.
- - **url**: (défaut: "http://traces.advene.org:5000/"), URL du serveur de traces
- - **requestmode**: (défaut: "GET"), méthode HTTP utilisée pour l’envoi des traces (seul *"GET"* permet le *cross-domain*).
- - **syncmode**: (défaut: "sync"), envois groupés (mode *"delayed"*) ou non (*"sync"*) des traces
-- Utilise la bibliothèque: ktbs4js tracemanager
-- Utilise un fichier CSS: non.
-
-### Tweet ###
-
-- **Rôle**: Affiche furtivement le contenu d’un tweet
-- **Options**:
- - **hide_timeout**: (défaut: 5000), durée en millisecondes, avant que l’affichage du Tweet ne se referme
- - **polemics**: identique au paramètre *polemics* du widget *Polemic*
--- a/metadataplayer/docs/data-api.fr.md Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,304 +0,0 @@
-# API d’accès aux métadonnées #
-
-ATTENTION !
-Cette documentation se réfère à la dernière version du Metadataplayer, disponible dans la branche **default** du repository
-http://www.iri.centrepompidou.fr/dev/hg/metadataplayer
-
-## Élément de base ##
-
- IriSP.Model.Element
-
-### Rôle ###
-
-Classe de base dont héritent les différents types d’objets utilisés dans le Metadataplayer: annotations, types d’annotations, médias, etc.
-
-### Instanciation ###
-
-**Element** fonctionne comme une classe abstraite est n’est jamais instancié directement.
-
-Néanmoins, tous les objets en héritant seront instanciés de la manière suivante :
-
- var myElement = new IriSP.Model.Element(id, source);
-
-- **id** est l’identifiant unique de l’élément. S’il est à *false*, un identifiant unique sera généré.
-- **source** identifie la source de données dont provient l’élément (cf. Source de Données, *IriSP.Model.Source*, plus bas).
-
-### Propriétés ###
-
-#### type ####
-
-Type d’élément, surchargé par les classes qui héritent de l’élément de base:
-
-- **element** pour IriSP.Model.Element
-- **media** pour IriSP.Model.Media
-- **annotationType** pour IriSP.Model.AnnotationType
-- **tag** pour IriSP.Model.Tag
-- **annotation** pour IriSP.Model.Annotation
-- **mashup** pour IriSP.Model.Mashup
-- **mashedAnnotation** pour IriSP.Model.MashedAnnotation
-
-#### id ####
-
-Identifiant unique de l’élément
-
-#### title ####
-
-Titre de l’élément, par défaut une chaîne vide ("")
-
-#### description ####
-
-Description de l’élément, par défaut une chaîne vide ("")
-
-## Media ##
-
- IriSP.Model.Media
-
-### Rôle ###
-
-Représente un média (vidéo ou audio).
-
-Hérite de l’Élément de base
-
-### Propriétés ###
-
-#### video ####
-
-Il s’agit de l’URL de la vidéo à charger
-
-#### duration ####
-
-Il s’agit de la durée du média (telle que renseignée dans les métadonnées -- peut ne pas être égale à la durée telle que lue dans la fenêtre vidéo).
-
-Il s’agit d’un objet durée (cf. *IriSP.Model.Time* plus bas)
-
-### Méthodes ###
-
-#### getDuration ####
-
-Permet de spécifier la durée du média, en millisecondes
-
-#### getAnnotations ####
-
-Retourne la liste des annotations associées au média
-
-#### getAnnotationsByTypeTitle ####
-
-Retourne la liste des annotations associées au média et dont le type d’annotation (ou découpage, ou ligne, c.f. Type d’Annotation plus bas) correspond à l’argument de la fonction
-
-## Type d’Annotation ##
-
- IriSP.Model.AnnotationType
-
-### Rôle ###
-
-Représente un type d’annotation, correspondant également à ce qui peut être nommé découpage ou ligne dans *Lignes de Temps*
-
-Hérite de l’Élément de base.
-
-### Méthodes ###
-
-#### getAnnotations ####
-
-Retourne la liste des annotations associées au type d’annotation
-
-## Annotation ##
-
- IriSP.Model.Annotation
-
-### Rôle ###
-
-Représente une annotation, correspondant à un segment temporel (dont la durée peut être nulle) d’un média
-
-Hérite de l’Élément de base.
-
-### Propriétés ###
-
-#### begin ####
-
-Timecode de fin de l’annotation. Est un objet de type durée (cf. plus bas)
-
-#### begin ####
-
-Timecode de début de l’annotation. Est un objet de type durée (cf. plus bas)
-
-### Méthodes ###
-
-#### getMedia ####
-
-Retourne l’objet **Média** (*IriSP.Model.Media*) auquel se réfère l’annotation
-
-#### getAnnotationType ####
-
-Retourne l’objet **Type d’Annotation** (*IriSP.Model.AnnotationType*) auquel se réfère l’annotation
-
-#### getTags ####
-
-Retourne la liste (cf. Liste d’éléments *IriSP.Model.List*) des tags associés à l’annotation.
-
-#### getTagTexts ####
-
-## Mashup ##
-
- IriSP.Model.Mashup
-
-### Rôle ###
-
-Il s’agit d’un bout à bout, composé d’une liste de segments (définis par des annotations de durée non nulle) accolés les uns après les autres.
-
-### Méthodes ###
-
-**À compléter**
-
-## Liste d’éléments ##
-
- IriSP.Model.List
-
-### Rôle ###
-
-Etend les fonctionnalités des tableaux javascript (*Array*) pour lister des éléments (cf. types d’éléments ci-dessus).
-
-### Instanciation ###
-
- var myList = new IriSP.Model.List(directory);
-
-- **directory** est le répertoire de données auxquelles la liste permet d’accéder (cf. plus bas)
-
-### Méthodes ###
-
-#### Méthodes de parcours de liste ####
-
-Ces méthodes sont fournies grâce à la bibliothèque extérieure *underscore.js* et sont documentées sur http://documentcloud.github.com/underscore/
-
-Il s’agit de:
-
-- **map**: Renvoie un tableau (*Array*) dont les éléments correspondent aux éléments de la liste, via une fonction passée en argument de map
-- **forEach**: Itère une fonction sur la liste.
-- **filter**: Ne renvoie que les éléments de la liste dont la valeur correspond au résultat d’une fonction.
-- **sortBy**: Fonction de tri, par ordre croissant de la valeur retournée par la fonction passée en argument.
-
-#### searchByTitle, searchByDescription, searchByTextFields ####
-
-Méthodes retournant une nouvelle liste d’éléments, contenant les éléments de la liste dont respectivement le titre, la description ou les deux correspondent à l’argument de la méthode.
-
- myList.searchByTitle("texte"); // => un *IriSP.Model.List* contenant les éléments de myList dont le titre contient "texte"
-
-## Durée ##
-
- IriSP.Model.Time
-
-### Rôle ###
-
-Facilite la gestion des durées en millisecondes utilisées dans le Metadataplayer
-
-### Instanciation ###
-
- var myTime = new IriSP.Model.Time(ms);
-
-- **ms** est une durée en millisecondes
-
-### Méthodes ###
-
-#### getSeconds ####
-
-Renvoie la durée convertie en secondes
-
-#### toString ####
-
-Renvoie la durée au format (hh:)mm:ss
-
-#### setSeconds ####
-
-Permet d’affecter une durée en secondes
-
- myTime.setSeconds(12); // 12000 millisecondes
-
-## Source de données ##
-
- IriSP.Model.Source
-
-et
- IriSP.Model.RemoteSource
-
-### Rôle ###
-
-Gère une source de données : fichier externe JSON, XML, etc. pour *IriSP.Model.RemoteSource*, projet créé à la volée pour *IriSP.Model.Source*.
-
-*IriSP.Model.RemoteSource* hérite de *IriSP.Model.Source* et ne diffère que par son implémentation de la méthode *get*.
-
-Sur la plateforme *Lignes de Temps*, il existe plusieurs API qui sont utilisées comme sources :
-
-- L’API projet, qui renvoie un fichier JSON contenant un projet LDT complet.
-- L’API segment, qui renvoie toutes les annotations d’un média situées entre deux timecodes fournis en argument.
-- L’API de publication d’annotation, qui demande l’envoi (par la méthode HTTP PUT) d’une liste d’annotation et renvoie celle-ci en retour, avec les identifiants des annotations en base de données.
-
-### Instanciation ###
-
- var config = { directory: myDirectory };
- var mySource = new IriSP.Model.Source(config);
-
-- **config** est un objet contenant les options de configuration:
- - Il doit nécessairement contenir une propriété **directory**, désignant le répertoire de données (cf. plus bas).
- - La propriété **serializer** doit désigner le *Sérialiseur* utilisé pour désérialiser les données importées ou sérialiser l’export.
- - un *IriSP.Model.RemoteSource* doit également être appelé avec une propriété **url**, désignant l’URL de la source.
-
-Une Source ne doit pas être instanciée directement, ce rôle est donné aux répertoires de données, ce qui permet notamment d’éviter des accès multiples à une même URL.
-
-### Propriétés ###
-
-#### currentMedia ####
-
-*TODO: transférer dans un objet "Project"*
-
-Donne accès au média en cours du projet. Peut désigner un vrai média ou un mashup.
-
-### Méthodes ###
-
-#### get ####
-
-Permet de récupérer ou de rafraîchir, via Ajax, les données de la source. Pour un *IriSP.Model.Source* de base, n’a aucun effet.
-
-#### onLoad ####
-
-Permet d’exécuter une fonction, passée en argument, au chargement de la source.
-
-#### serialize, deSerialize ####
-
-Transforme les données de la source en données sérialisées, au format du sérialiseur associées à la source, et inversement.
-
-#### getAnnotations, getAnnotationTypes, getMedias, getTags, getMashups ####
-
-Retourne les listes respectives d’annotations, types d’annotations, médias, tags et mashups de la source.
-
-#### getAnnotationsByTypeTitle ####
-
-Retourne la liste des annotations dont le type d’annotation correspond à l’argument de la fonction.
-
-## Répertoire de données ##
-
- IriSP.Model.Directory
-
-### Rôle ###
-
-Gère l’instanciation des sources de données et la mise en cache de ces sources lorsque plusieurs appels à la même URLs sont faits.
-
-Permet également aux objets de plusieurs sources d’interagir entre eux.
-
-### Instanciation ###
-
- var myDirectory = new IriSP.Model.Directory
-
-### Méthodes ###
-
-#### newLocalSource ####
-
-Crée une nouvelle source non attachée à une URL. S’il faut exporter des données, un sérialiseur doit être passé en paramètres.
-
- var myConfig = { serializer: IriSP.serializers.ldt };
- var myLocalSource = myDirectory.newLocalSource(myConfig);
-
-#### remoteSource ####
-
-Crée ou récupère (si celle-ci existe déjà) une source attachée à une URL. Le sérialiseur est obligatoire.
-
- var myConfig = { url: "source-data.json", serializer: IriSP.serializers.ldt };
- var myLocalSource = myDirectory.remoteSource(myConfig);
--- a/metadataplayer/docs/integration.fr.md Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,111 +0,0 @@
-# Intégration du Metadataplayer #
-
-ATTENTION !
-Cette documentation se réfère à la dernière version du Metadataplayer, disponible dans la branche **default** du repository
-http://www.iri.centrepompidou.fr/dev/hg/metadataplayer
-
-## Chargement du script ##
-
-Le fichier *LdtPlayer-core.js* doit être référencé dans l'entête du fichier HTML
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Test d’intégration du Metadataplayer</title>
- <script type="text/javascript" src="metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- </head>
-
-## Création d'un élément conteneur pour le Metadataplayer ##
-
- <body>
- <div id="Metadataplayer"></div>
-
-Le script doit se faire après le chargement de l’élément, soit en rajoutant un élément <*script*> en bas de page, soit en utilisant un événement de type *body.onload* ou, avec jQuery, *$(document).ready()*
-
- <script type="text/javascript">
-
-## Configuration de la langue de l’interface ##
-
-La langue est définie par un code ISO 639-1 (par exemple, "es" pour l’Espagnol, "ja" pour le Japonais, "eu" pour le Basque, "ee" pour l’Ewe). Pour l’instant, seuls l’Anglais ("en") et le Français ("fr") sont disponibles.
-
- IriSP.language = "fr";
-
-## Configuration des emplacements des bibliothèques ##
-
-Par défaut (fichier *defaults.js*), les bibliothèques sont chargées soit depuis un CDN (Content Distribution Network), soit depuis le répertoire *js/libs*
-
-La configuration se fait par les propriétés de l’objet *IriSP.libFiles*
-
-Pour utiliser le CDN:
-
- IriSP.libFiles.useCdn = true;
-
-Pour changer la localisation du répertoire des bibliothèques:
-
- IriSP.libFiles.defaultDir = "/chemin/libs";
-
-Pour changer la localisation d’une bibliothèque individuellement:
-
- IriSP.libFiles.locations.jQueryUI = "libs/jquery-ui-1.8.16.custom.min.js";
- IriSP.libFiles.locations.jwPlayerSWF = "libs/jwplayer/player.swf";
-
-## Configuration de sources de métadonnées ##
-
-Une source de métadonnées est définie par son URL et le type de sérialiseur à utiliser.
-
-Par exemple:
-
- var metadataSource = {
- url: "data/mydata.json",
- type: "ldt"
- };
-
-Les sources de métadonnées sont utilisées ensuite dans la configuration de la fenêtre vidéo et de ses widgets.
-
-## Configuration de la fenêtre vidéo ##
-
-Dans cette version, la fenêtre vidéo est désormais un widget. Cette section est donc obsolète.
-
-## Configuration de l’interface utilisateur ##
-
-L’interface se configure par un objet contenant les propriétés suivantes:
-
-- **container**: l’ID de l’élément HTML dans lequel le player sera instancié.
-- **width** et **height**: largeur et hauteur de l’interface (*height* est optionnel).
-- **default\_options**: des options de configuration communes à tous les widgets, par exemple, comme ci-dessous, une source de métadonnées communes.
-- **css**: l’URL du fichier CSS de base (LdtPlayer-core.css)
-- **widgets**: la liste des widgets, sous la forme [ { type: *Type du widget*, option_1: *Valeur de l’option 1* } ]. Pour les options des widgets, se référer au document *Architecture générale*
-
-Exemple:
-
- var config = {
- container : "Metadataplayer",
- default_options: {
- metadata: metadataSource
- },
- css : "metadataplayer/css/LdtPlayer-core.css",
- widgets: [
- {
- type: "AutoPlayer"
- },
- {
- type: "Slider"
- },{
- type: "Controller",
- disable\_annotate\_btn: true
- },{
- type: "Segments",
- annotation\_type: "Chapters"
- },{
- type: "AnnotationsList",
- container: "AnnotationsListContainer"
- }
- ]
- };
-
-## Instanciation du player ##
-
-Le player s’instancie en créant un objet de classe **IriSP.Metadataplayer**.
-
-Exemple:
-
- var monPlayer = new IriSP.Metadataplayer(config);
--- a/metadataplayer/docs/widget-api.fr.md Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,212 +0,0 @@
-# API de programmation de widgets #
-
-ATTENTION !
-Cette documentation se réfère à la dernière version du Metadataplayer, disponible dans la branche **default** du repository
-http://www.iri.centrepompidou.fr/dev/hg/metadataplayer
-
-## Types et fichiers ##
-
-Les widgets sont créés au moment de l’instanciation du Metadataplayer, en lisant la propriété *gui.widgets* des paramètres de configuration.
-
-Exemple:
-
- var monPlayer = new IriSP.Metadataplayer({
- player: {...},
- gui: {
- container: ...,
- widgets: [
- {
- type: "Slider"
- },
- {
- type: "Controller"
- },
- {
- type: "MonWidget",
- option: "valeur"
- },
- ...
- ]
- }
- });
-
-Le *type* du widget détermine quels fichiers, javascript et CSS, seront appelés et quelle classe d'objet sera instanciée.
-
-Par exemple, pour le *type* **MonWidget**, seront appelés **MonWidget.js**, **MonWidget.css** et l’initialisation du widget se fera en appelant la classe **IriSP.Widgets.MonWidget**
-
-Le fichier **MonWidget.js** doit donc contenir une implémentation de **IriSP.Widgets.MonWidget**
-
-## Implémentation d’une classe de widget ##
-
-La classe de Widget doit hériter de IriSP.Widgets.Widget. Le code permettant l’héritage est le suivant:
-
- IriSP.Widgets.MonWidget = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- }
-
- IriSP.Widgets.MonWidget.prototype = new IriSP.Widgets.Widget();
-
-### Paramètres d’appel de l’objet Widget ###
-
-Le paramètre **player** correspond à l’objet IriSP.Metadataplayer qui a appelé le widget.
-
-Il sera ensuite accessible dans les fonctions du widget par:
-
- this.player
-
-Le paramètre **config** correspond aux paramètres de configuration du widget. Dans notre exemple, il s’agit d’un objet contenant:
-
- {
- type: "MonWidget",
- option: "valeur de l’option"
- }
-
-Les options de configuration sont recopiées dans les propriétés de l’objet widget:
-
- this.type => "MonWidget"
- this.option => "valeur de l’option"
-
-### Propriétés accessibles par le widget ###
-
-#### Media ####
-
-Les fonctions de gestion de la lecture vidéo sont accessibles via les objets **media**.
-
-Par exemple:
-
- this.media.trigger("Evenement"); => déclenche un événement Popcorn de type "Evenement"
- this.media.play(); => met le player en lecture
- this.media.currentTime() => obtient le timecode courant, en secondes
-
-#### Source de métadonnées ####
-
-La source de métadonnées est accessible par la propriété **source** du Widget.
-
-Par exemple:
-
- this.source.getAnnotations(); => obtient la liste des annotations
- this.source.getDuration(); => obtient la durée du média en cours, en millisecondes
-
-#### Sélecteur jQuery ####
-
-Le contenu du widget est géré par la bibliothèque jQuery. Pour accéder à ce contenu, il suffit d’appeller la propriété **$** du widget
-
-Par exemple:
-
- this.$.html(); => renvoie le code HTML contenu dans le widget.
- this.$.find("p").html("Hello, world") => écrit "Hello, world" dans le(s) élément(s) <P> du widget.
-
-### Fonctions facilitatrices du widget ###
-
-Quelques fonctions ont été rajoutées pour faciliter quelques tâches courantes:
-
-#### getWidgetAnnotations ####
-
-Retourne la liste des annotations selon la valeur de la propriété **annotation\_type** du widget:
- - Chaîne de caractères: prend en compte les types d’annotations dont le titre contient la chaîne. Exemple: "chap" permet notamment d’afficher les annotations dans le type d’annotation "Chapitrage"
- - Tableau de chaînes: pour prendre en compte plusieurs types d’annotations
- - false: pour prendre en compte toutes les annotations du projet
-
- this.getWidgetAnnotations();
-
-#### functionWrapper ####
-
-Gère l’accès au fonctions du widget dans des callbacks. Ceci sert à pallier au fait qu’en Javascript, appeler directement une fonction dans un callback ne l’applique pas à l’objet dans lequel elle a été appelée.
-
-**functionWrapper** demande un argument, une chaîne qui est le nom de la fonction à appeler.
-
-Par exemple:
-
- this.$.click(this.functionWrapper("onClick")); => Appellera this.onClick() lors d’un click sur le widget
-
-#### onMediaEvent ####
-
-Attache un événement *Media* ("play", "timeupdate", ...) à une fonction désignée
-- par son nom, quand celle-ci est une méthode du widget, ce qui permet de l’associer directement au widget, sur le même mode que *functionWrapper*
-- comme fonction anonyme
-
-Par exemple:
-
- this.onMediaEvent("timeupdate","onTimeupdate"); => Appellera this.onTimeupdate() lorsque l’événement media "timeupdate" est déclenché.
- this.onMediaEvent("play", function() { console.log("play") }); => Affichera "play" dans la console JavaScript
-
-#### onMdpEvent ####
-
-Attache un événement Metadataplayer global ("Annotation.show", "search.found", ...) à une fonction. Utilisé de manière similaire à onMediaEvent.
-
-#### Autres fonctions ####
-
-Les fonctions relatives aux gabarits seront explicités dans la section Gabarits
-
-### Implémentation de la fonction draw ###
-
-La fonction **draw()** est appelée automatiquement lorsque les métadonnées ont fini d’être chargées. C’est le lieu privilégié pour les fonctions gérant l’apparence du widget.
-
- IriSP.Widgets.MonWidget.prototype.draw = function() {
- this.$.html("Hello, world");
- }
-
-## Utilisation des gabarits ##
-
-Les gabarits ou *templates* en anglais permettent d’injecter des données dans du code HTML.
-
-### Utilisation de Mustache ###
-
-Le Metadataplayer utilise la bibliothèque *Mustache.js* pour réaliser cette opération.
-
-Voici un exemple d’utilisation de *Mustache* seul:
-
- var gabarit = "<b>{{hello}}</b>, {{world}}";
- var donnees = {
- hello: "Bonjour",
- world: "monde"
- }
- Mustache.to_html(gabarit, donnees); => "<b>Bonjour</b>, monde"
-
-### templateToHtml ###
-
-Les gabarits sont souvent utilisés directement avec les propriétés du widget. Un raccourci existe pour injecter directement celles-ci dans un gabarit:
-
- this.templateToHtml("<h3>{{type}}</h3><p>{{option}}</p>"); => "<h3>MonWidget</h3><p>valeur de l’option</p>"
-
-### renderTemplate ###
-
-Dans les cas les plus fréquents, le gabarit sera implémenté directement dans la propriété *template* du widget, par exemple:
-
- IriSP.Widgets.MonWidget.prototype.template = "<h3>{{type}}</h3><p>{{option}}</p>";
-
-De plus, le code généré par le gabarit a pour vocation d’être rajouté directement au contenu du widget, généralement à l’intérieur de la fonction draw(). Ceci peut être réalisé avec la fonction *renderTemplate*.
-
- this.renderTemplate(); => ajoute directement "<h3>MonWidget</h3><p>valeur de l’option</p>" dans le code HTML du widget
-
-## Internationalisation du widget ##
-
-Le Metadataplayer a été conçu pour être multilingue. Pour ceci, les différents textes de l’interface doivent être séparés du reste du code et des gabarits.
-
-### Définition des textes ###
-
-Les textes sont définis dans la propriété **messages** du widget et regroupés par langue, dans un objet dont les clés sont les codes ISO 639-1 de la langue. Chaque langue est elle-même un objet, associant un nom de texte unique à sa traduction.
-
- IriSP.Widgets.MonWidget.prototype.message = {
- en: {
- hello: "Hello",
- world: "world"
- },
- fr: {
- hello: "Bonjour",
- world: "monde"
- }
- }
-
-### Accès aux textes dans la langue de l’interface ###
-
-La langue de l’interface est définie par *IriSP.language*. Un accès direct aux messages se fait par la propriété *l10n* (raccourci pour "localization") du widget.
-
- this.l10n.hello; => "Hello" si l’interface est en anglais, "Bonjour" si l’interface est en français.
-
-### Accès aux textes dans un gabarit ###
-
-Cette propriété *l10n* permet d’accéder directement aux textes dans les gabarits:
-
- this.templateToHtml("{{l10n.hello}}, {{l10n.world}}!"); => "Hello, world!" en anglais ou "Bonjour, monde!" en français.
-
--- a/metadataplayer/index.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-<!doctype html>
-<html>
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Metadataplayer test configurations</title>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <link href='test.css' rel='stylesheet' type='text/css'>
- </head>
-
- <body>
- <h1>Metadataplayer test configurations</h1>
- <ul class="pageindex">
- <li><h2><a href="jwplayer.htm">with JwPlayer (default on Ldt Platform, uses custom player functions)</a></h2></li>
- <li><h2><a href="oggvideo.htm">with HTML5/OGG (uses Popcorn.js, compatible with Firefox and Chrome)</a></h2></li>
- <li><h2><a href="mp4video.htm">with HTML5/MP4 (uses Popcorn.js, compatible with IE, Safari and Chrome)</a></h2></li>
- <li><h2><a href="youtube.htm">with Youtube (uses Popcorn.js and the Popcorn Youtube plugin/player)</a></h2></li>
- <li><h2><a href="vimeo.htm">with Vimeo (uses Popcorn.js and the Popcorn Vimeo plugin/player)</a></h2></li>
- <li><h2><a href="dailymotion.htm">with Dailymotion (uses custom player functions)</a></h2></li>
- </ul>
- </body>
-</html>
--- a/metadataplayer/json/ldt-dailymotion.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5292 +0,0 @@
-{
- "views": [
- ],
- "tags": [
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "citizen sensor",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "organic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "money",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "small and good",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "civic action",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "social network",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "radio",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "public informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "electoral fraud",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "coordination",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "information mass",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.769035",
- "dc:title": "citizenjournalism",
- "dc:modified": "2012-05-07T10:11:06.769035",
- "dc:creator": "IRI"
- },
- "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "tweet",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "commercial space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "platform",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "human resource",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "public space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information amplifier",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "soccer",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "free time",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "traffic map",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "distributed information",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "government",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "individual power",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "aggregation",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "inorganic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.761421",
- "dc:title": "communities",
- "dc:modified": "2012-05-07T10:11:06.761421",
- "dc:creator": "IRI"
- },
- "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "market value",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "professional journalism",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "success",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "motivated actors",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "journalism",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.771135",
- "dc:title": "Ushahidi",
- "dc:modified": "2012-05-07T10:11:06.771135",
- "dc:creator": "IRI"
- },
- "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "music industry",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "revolution",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "people",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Ushaidi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "Internet",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "Wikipedia",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "fail",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "political life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.821961",
- "dc:title": "clayshirky",
- "dc:modified": "2012-05-07T10:11:06.821961",
- "dc:creator": "IRI"
- },
- "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "consumers",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.881698",
- "dc:title": "democratizes",
- "dc:modified": "2012-05-07T10:11:06.881698",
- "dc:creator": "IRI"
- },
- "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "digital sharecropping",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "information management",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "hybridisation",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "participation",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.886191",
- "dc:title": "Pepsico",
- "dc:modified": "2012-05-07T10:11:06.886191",
- "dc:creator": "IRI"
- },
- "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Libya",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "free speech",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "open communication",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "Microsoft",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information filter",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen organizations",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "citizens",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "coordinate actions",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "action",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "plausible promess",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "contribution",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing objects",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "protests",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "communication",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "community",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "tools",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "market",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "social life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "large and mediocre",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "web phone gap",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.936514",
- "dc:title": "hadopi",
- "dc:modified": "2012-05-07T10:11:06.936514",
- "dc:creator": "IRI"
- },
- "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "crowdsourcing",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.754973",
- "dc:title": "iphone",
- "dc:modified": "2012-05-07T10:11:06.754973",
- "dc:creator": "IRI"
- },
- "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.740402",
- "dc:title": "pepsi refresh project",
- "dc:modified": "2012-05-07T10:11:06.740402",
- "dc:creator": "IRI"
- },
- "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information quality",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "smart consumer",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "block party",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "talents",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "catalyst",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "voluntary participation",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Nairobi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "organizations",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "television",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "counter democracy",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "opportunity design",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "Egypt",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.922593",
- "dc:title": "failcon",
- "dc:modified": "2012-05-07T10:11:06.922593",
- "dc:creator": "IRI"
- },
- "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "printing democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.945336",
- "dc:title": "PUBLIC",
- "dc:modified": "2012-05-07T10:11:06.945336",
- "dc:creator": "IRI"
- },
- "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "usability",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.878489",
- "dc:title": "sidibouzid",
- "dc:modified": "2012-05-07T10:11:06.878489",
- "dc:creator": "IRI"
- },
- "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing information",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "golden age for journalism but not for money",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "share",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "malls",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "synchronised crowded",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "information",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Egypitia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "media",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "cognitive surplus",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "Wikileaks",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "business model",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "gin crisis",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "fascism",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "addict",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.774383",
- "dc:title": "blendedtech",
- "dc:modified": "2012-05-07T10:11:06.774383",
- "dc:creator": "IRI"
- },
- "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "political informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "law",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "blend technology",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Tunisia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "political action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.863215",
- "dc:title": "nooffense",
- "dc:modified": "2012-05-07T10:11:06.863215",
- "dc:creator": "IRI"
- },
- "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.868458",
- "dc:title": "microsoft",
- "dc:modified": "2012-05-07T10:11:06.868458",
- "dc:creator": "IRI"
- },
- "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "lists": [],
- "medias": [
- {
- "origin": "0",
- "url": "http://www.dailymotion.com/video/xljam5",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": ""
- },
- "dc:created": "2011-02-14T15:06:34.829919",
- "dc:duration": 1800000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN Clay Shirky",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:23.898905",
- "dc:description": "RSLN Clay Shirky"
- },
- "id": "9a493932-3053-11e0-862b-00145ea49a02",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2011-02-14T15:15:52.602502",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
- },
- "dc:description": "",
- "dc:title": "RSLN Clay Shirky - Tweets",
- "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
- "dc:modified": "2012-04-29T15:41:55.858453"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 170000,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction de Constance Parodi",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 177457,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 410939,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Clay Shirky : début de conférence",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 503000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 783000,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "3 features of Ushaidi",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 783462,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1000062,
- "tags": [
- {
- "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
- "img": {
- "src": ""
- },
- "title": "Coginitive surplus : free time",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1006108,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1078840,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
- "img": {
- "src": ""
- },
- "title": "Penser les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1078840,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1235162,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "citizen sensor, government, traffic map, open communication",
- "img": {
- "src": ""
- },
- "title": "Les capteurs citoyens",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1235162,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1307028,
- "tags": [
- {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "smart consumer, public informations, political informations, money, action, citizens",
- "img": {
- "src": ""
- },
- "title": "Consomateur inteligents",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1307028,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1407440,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "government, information management, participation",
- "img": {
- "src": ""
- },
- "title": "Code for America",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1407440,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1512525,
- "tags": [
- {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
- "img": {
- "src": ""
- },
- "title": "Platforme pour les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1512525,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1667170,
- "tags": [
- {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "coordination, political action, citizen action, citizen organizations",
- "img": {
- "src": ""
- },
- "title": "Le vrai grand changement",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1668051,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1753100,
- "tags": [
- {
- "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
- "img": {
- "src": ""
- },
- "title": "Fetes des voisins",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1754200,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1800000,
- "tags": [
- {
- "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln commence 8h50",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln commence 8h50",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 0,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "img": {
- "src": ""
- },
- "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 7000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 7000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "img": {
- "src": ""
- },
- "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 42000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 42000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 55000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 55000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 62000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 62000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 127000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 127000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 140000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 140000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky @Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 148000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 148000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 149000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 149000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 152000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 152000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "img": {
- "src": ""
- },
- "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 209000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 209000,
- "tags": [
- {
- "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 213000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 213000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Introduction en français ?",
- "img": {
- "src": ""
- },
- "title": "Bertil Hatt: #rsln Introduction en français ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 230000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 230000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 244000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 244000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 252000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 252000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 294000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 294000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 321000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 321000,
- "tags": [
- {
- "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 325000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 325000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 333000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 333000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 339000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 339000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 433000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Mobile Web</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 433000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Trois barres de wifi -- -- --- #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 438000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 438000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 493000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 493000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 495000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 495000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky in conference at Microsoft's campus",
- "img": {
- "src": ""
- },
- "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 513000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_mobile/android/\\\" rel=\\\"nofollow\\\">Seesmic for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 513000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 528000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 528000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 636000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.ubertwitter.com/bb/download.php\\\" rel=\\\"nofollow\\\">\\u00dcberTwitter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 636000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 655000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 655000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 666000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 666000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 672000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 672000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 754000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 754000,
- "tags": [
- {
- "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln hushaidi ++ desaster as a social object",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 760000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 760000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 765000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 765000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 767000,
- "tags": [
- {
- "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 768000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 768000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 791000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 791000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 818000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 818000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 833000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 833000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 842000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 842000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 846000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 846000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les sms pour amener le web dans la brousse !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 848000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 848000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 871000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 871000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 887000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Windows Phone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 887000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 897000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 897000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 905000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 905000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 929000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 929000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln",
- "img": {
- "src": ""
- },
- "title": "peopleare: #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 947000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 947000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 976000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 976000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 979000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 979000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 986000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 986000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "img": {
- "src": ""
- },
- "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 994000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 994000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 997000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 997000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 998000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 998000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1004000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1004000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1016000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1016000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1028000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1028000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1032000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1032000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1044000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1044000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1047000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1047000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN cognitive surplus = Agregation of free time ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1055000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1055000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1058000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1058000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1064000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1064000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1076000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1076000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1082000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1082000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1109000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1109000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1110000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1110000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln clay speak about cognitive surplus @microsoft ==",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1142000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1142000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1153000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1153000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1162000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1162000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == http://t.co/DWhd8FM",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1257000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1257000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1285000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1285000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1288000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1288000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1309000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1309000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "img": {
- "src": ""
- },
- "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1327000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1327000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1338000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1338000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "img": {
- "src": ""
- },
- "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1355000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1355000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1366000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1366000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1422000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1422000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1446000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1446000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1452000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1452000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "color": "16763904",
- "polemics": ["Q", "KO", "OK", "REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1458000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1458000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1465000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1465000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1490000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1490000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1544000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1544000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1554000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1554000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1570000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1570000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1584000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1584000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1599000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1599000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1610000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1610000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1637000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1637000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1642000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1642000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1652000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1652000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"people talk abiut what they care about\" ++ #rsln",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1684000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1684000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "img": {
- "src": ""
- },
- "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1696000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1696000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "img": {
- "src": ""
- },
- "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1720000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1720000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1723000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1723000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln ?? Technology = Politique ?",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1747000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1747000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1753000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1753000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1758000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1758000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "img": {
- "src": ""
- },
- "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1766000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1766000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1767000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "img": {
- "src": ""
- },
- "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1778000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1778000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "chapitrage",
- "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:description": "",
- "dc:modified": "2012-05-07T10:11:06.721324"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Tweets",
- "id": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:description": "Tweets",
- "dc:modified": "2012-05-07T10:11:06.746777"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/json/ldt-jwplayer.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5292 +0,0 @@
-{
- "views": [
- ],
- "tags": [
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "citizen sensor",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "organic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "money",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "small and good",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "civic action",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "social network",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "radio",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "public informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "electoral fraud",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "coordination",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "information mass",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.769035",
- "dc:title": "citizenjournalism",
- "dc:modified": "2012-05-07T10:11:06.769035",
- "dc:creator": "IRI"
- },
- "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "tweet",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "commercial space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "platform",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "human resource",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "public space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information amplifier",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "soccer",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "free time",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "traffic map",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "distributed information",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "government",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "individual power",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "aggregation",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "inorganic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.761421",
- "dc:title": "communities",
- "dc:modified": "2012-05-07T10:11:06.761421",
- "dc:creator": "IRI"
- },
- "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "market value",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "professional journalism",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "success",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "motivated actors",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "journalism",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.771135",
- "dc:title": "Ushahidi",
- "dc:modified": "2012-05-07T10:11:06.771135",
- "dc:creator": "IRI"
- },
- "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "music industry",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "revolution",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "people",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Ushaidi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "Internet",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "Wikipedia",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "fail",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "political life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.821961",
- "dc:title": "clayshirky",
- "dc:modified": "2012-05-07T10:11:06.821961",
- "dc:creator": "IRI"
- },
- "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "consumers",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.881698",
- "dc:title": "democratizes",
- "dc:modified": "2012-05-07T10:11:06.881698",
- "dc:creator": "IRI"
- },
- "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "digital sharecropping",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "information management",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "hybridisation",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "participation",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.886191",
- "dc:title": "Pepsico",
- "dc:modified": "2012-05-07T10:11:06.886191",
- "dc:creator": "IRI"
- },
- "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Libya",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "free speech",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "open communication",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "Microsoft",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information filter",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen organizations",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "citizens",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "coordinate actions",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "action",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "plausible promess",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "contribution",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing objects",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "protests",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "communication",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "community",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "tools",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "market",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "social life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "large and mediocre",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "web phone gap",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.936514",
- "dc:title": "hadopi",
- "dc:modified": "2012-05-07T10:11:06.936514",
- "dc:creator": "IRI"
- },
- "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "crowdsourcing",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.754973",
- "dc:title": "iphone",
- "dc:modified": "2012-05-07T10:11:06.754973",
- "dc:creator": "IRI"
- },
- "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.740402",
- "dc:title": "pepsi refresh project",
- "dc:modified": "2012-05-07T10:11:06.740402",
- "dc:creator": "IRI"
- },
- "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information quality",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "smart consumer",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "block party",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "talents",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "catalyst",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "voluntary participation",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Nairobi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "organizations",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "television",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "counter democracy",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "opportunity design",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "Egypt",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.922593",
- "dc:title": "failcon",
- "dc:modified": "2012-05-07T10:11:06.922593",
- "dc:creator": "IRI"
- },
- "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "printing democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.945336",
- "dc:title": "PUBLIC",
- "dc:modified": "2012-05-07T10:11:06.945336",
- "dc:creator": "IRI"
- },
- "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "usability",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.878489",
- "dc:title": "sidibouzid",
- "dc:modified": "2012-05-07T10:11:06.878489",
- "dc:creator": "IRI"
- },
- "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing information",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "golden age for journalism but not for money",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "share",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "malls",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "synchronised crowded",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "information",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Egypitia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "media",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "cognitive surplus",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "Wikileaks",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "business model",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "gin crisis",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "fascism",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "addict",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.774383",
- "dc:title": "blendedtech",
- "dc:modified": "2012-05-07T10:11:06.774383",
- "dc:creator": "IRI"
- },
- "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "political informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "law",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "blend technology",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Tunisia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "political action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.863215",
- "dc:title": "nooffense",
- "dc:modified": "2012-05-07T10:11:06.863215",
- "dc:creator": "IRI"
- },
- "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.868458",
- "dc:title": "microsoft",
- "dc:modified": "2012-05-07T10:11:06.868458",
- "dc:creator": "IRI"
- },
- "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "lists": [],
- "medias": [
- {
- "origin": "0",
- "url": "rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/rsln_clay_shirky",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2011-02-14T15:06:34.829919",
- "dc:duration": 1800000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN Clay Shirky",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:23.898905",
- "dc:description": "RSLN Clay Shirky"
- },
- "id": "9a493932-3053-11e0-862b-00145ea49a02",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2011-02-14T15:15:52.602502",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
- },
- "dc:description": "",
- "dc:title": "RSLN Clay Shirky - Tweets",
- "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
- "dc:modified": "2012-04-29T15:41:55.858453"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 170000,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction de Constance Parodi",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 177457,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 410939,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Clay Shirky : début de conférence",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 503000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 783000,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "3 features of Ushaidi",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 783462,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1000062,
- "tags": [
- {
- "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
- "img": {
- "src": ""
- },
- "title": "Coginitive surplus : free time",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1006108,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1078840,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
- "img": {
- "src": ""
- },
- "title": "Penser les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1078840,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1235162,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "citizen sensor, government, traffic map, open communication",
- "img": {
- "src": ""
- },
- "title": "Les capteurs citoyens",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1235162,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1307028,
- "tags": [
- {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "smart consumer, public informations, political informations, money, action, citizens",
- "img": {
- "src": ""
- },
- "title": "Consomateur inteligents",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1307028,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1407440,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "government, information management, participation",
- "img": {
- "src": ""
- },
- "title": "Code for America",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1407440,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1512525,
- "tags": [
- {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
- "img": {
- "src": ""
- },
- "title": "Platforme pour les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1512525,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1667170,
- "tags": [
- {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "coordination, political action, citizen action, citizen organizations",
- "img": {
- "src": ""
- },
- "title": "Le vrai grand changement",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1668051,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1753100,
- "tags": [
- {
- "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
- "img": {
- "src": ""
- },
- "title": "Fetes des voisins",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1754200,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1800000,
- "tags": [
- {
- "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln commence 8h50",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln commence 8h50",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 0,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "img": {
- "src": ""
- },
- "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 7000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 7000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "img": {
- "src": ""
- },
- "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 42000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 42000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 55000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 55000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 62000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 62000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 127000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 127000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 140000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 140000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky @Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 148000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 148000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 149000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 149000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 152000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 152000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "img": {
- "src": ""
- },
- "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 209000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 209000,
- "tags": [
- {
- "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 213000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 213000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Introduction en français ?",
- "img": {
- "src": ""
- },
- "title": "Bertil Hatt: #rsln Introduction en français ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 230000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 230000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 244000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 244000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 252000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 252000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 294000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 294000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 321000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 321000,
- "tags": [
- {
- "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 325000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 325000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 333000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 333000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 339000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 339000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 433000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Mobile Web</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 433000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Trois barres de wifi -- -- --- #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 438000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 438000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 493000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 493000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 495000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 495000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky in conference at Microsoft's campus",
- "img": {
- "src": ""
- },
- "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 513000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_mobile/android/\\\" rel=\\\"nofollow\\\">Seesmic for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 513000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 528000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 528000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 636000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.ubertwitter.com/bb/download.php\\\" rel=\\\"nofollow\\\">\\u00dcberTwitter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 636000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 655000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 655000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 666000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 666000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 672000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 672000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 754000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 754000,
- "tags": [
- {
- "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln hushaidi ++ desaster as a social object",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 760000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 760000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 765000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 765000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 767000,
- "tags": [
- {
- "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 768000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 768000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 791000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 791000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 818000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 818000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 833000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 833000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 842000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 842000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 846000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 846000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les sms pour amener le web dans la brousse !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 848000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 848000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 871000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 871000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 887000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Windows Phone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 887000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 897000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 897000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 905000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 905000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 929000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 929000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln",
- "img": {
- "src": ""
- },
- "title": "peopleare: #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 947000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 947000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 976000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 976000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 979000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 979000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 986000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 986000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "img": {
- "src": ""
- },
- "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 994000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 994000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 997000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 997000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 998000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 998000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1004000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1004000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1016000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1016000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1028000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1028000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1032000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1032000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1044000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1044000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1047000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1047000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN cognitive surplus = Agregation of free time ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1055000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1055000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1058000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1058000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1064000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1064000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1076000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1076000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1082000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1082000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1109000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1109000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1110000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1110000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln clay speak about cognitive surplus @microsoft ==",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1142000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1142000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1153000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1153000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1162000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1162000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == http://t.co/DWhd8FM",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1257000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1257000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1285000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1285000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1288000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1288000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1309000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1309000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "img": {
- "src": ""
- },
- "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1327000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1327000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1338000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1338000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "img": {
- "src": ""
- },
- "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1355000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1355000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1366000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1366000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1422000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1422000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1446000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1446000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1452000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1452000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "color": "16763904",
- "polemics": ["Q", "KO", "OK", "REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1458000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1458000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1465000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1465000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1490000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1490000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1544000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1544000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1554000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1554000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1570000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1570000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1584000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1584000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1599000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1599000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1610000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1610000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1637000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1637000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1642000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1642000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1652000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1652000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"people talk abiut what they care about\" ++ #rsln",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1684000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1684000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "img": {
- "src": ""
- },
- "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1696000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1696000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "img": {
- "src": ""
- },
- "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1720000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1720000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1723000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1723000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln ?? Technology = Politique ?",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1747000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1747000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1753000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1753000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1758000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1758000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "img": {
- "src": ""
- },
- "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1766000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1766000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1767000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "img": {
- "src": ""
- },
- "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1778000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1778000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "chapitrage",
- "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:description": "",
- "dc:modified": "2012-05-07T10:11:06.721324"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Tweets",
- "id": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:description": "Tweets",
- "dc:modified": "2012-05-07T10:11:06.746777"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/json/ldt-ogv.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,262 +0,0 @@
-{
- "views": [],
- "tags": [],
- "lists": [],
- "medias": [
- {
- "origin": "0",
- "url": "trailer.ogv",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2011-02-14T15:06:34.829919",
- "dc:duration": 87000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN Clay Shirky",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:23.898905",
- "dc:description": "RSLN Clay Shirky"
- },
- "id": "9a493932-3053-11e0-862b-00145ea49a02",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2011-02-14T15:15:52.602502",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
- },
- "dc:description": "",
- "dc:title": "RSLN Clay Shirky - Tweets",
- "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
- "dc:modified": "2012-04-29T15:41:55.858453"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 87000,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln commence 8h50",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln commence 8h50",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 0,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "img": {
- "src": ""
- },
- "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 7000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 7000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "img": {
- "src": ""
- },
- "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 42000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 42000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 55000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 55000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 62000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 62000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "chapitrage",
- "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:description": "",
- "dc:modified": "2012-05-07T10:11:06.721324"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Tweets",
- "id": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:description": "Tweets",
- "dc:modified": "2012-05-07T10:11:06.746777"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/json/ldt-youtube.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5292 +0,0 @@
-{
- "views": [
- ],
- "tags": [
- {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "citizen sensor",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "organic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b75a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "money",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "small and good",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84752-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "civic action",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "social network",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9dc52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "radio",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8ec84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "public informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "electoral fraud",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "coordination",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "information mass",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.769035",
- "dc:title": "citizenjournalism",
- "dc:modified": "2012-05-07T10:11:06.769035",
- "dc:creator": "IRI"
- },
- "id": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "tweet",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6ebc2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "commercial space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8707e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "platform",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "human resource",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "public space",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8851e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information amplifier",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9cffa-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "soccer",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "free time",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "traffic map",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "distributed information",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "government",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "individual power",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8790c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "aggregation",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "inorganic failure",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8ab52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.761421",
- "dc:title": "communities",
- "dc:modified": "2012-05-07T10:11:06.761421",
- "dc:creator": "IRI"
- },
- "id": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "market value",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c9887e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "professional journalism",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93e0a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "success",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84b44-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "motivated actors",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8b354-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "journalism",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95f48-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.771135",
- "dc:title": "Ushahidi",
- "dc:modified": "2012-05-07T10:11:06.771135",
- "dc:creator": "IRI"
- },
- "id": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "music industry",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9ab10-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "revolution",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f08a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "people",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Ushaidi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "Internet",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e0a4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "Wikipedia",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c85332-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "fail",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "political life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.821961",
- "dc:title": "clayshirky",
- "dc:modified": "2012-05-07T10:11:06.821961",
- "dc:creator": "IRI"
- },
- "id": "f5d58b7e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "consumers",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.881698",
- "dc:title": "democratizes",
- "dc:modified": "2012-05-07T10:11:06.881698",
- "dc:creator": "IRI"
- },
- "id": "f5dea448-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "digital sharecropping",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c98414-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "information management",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "hybridisation",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c95a34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.730624",
- "dc:title": "participation",
- "dc:modified": "2012-05-07T10:11:06.730624",
- "dc:creator": "IRI"
- },
- "id": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.886191",
- "dc:title": "Pepsico",
- "dc:modified": "2012-05-07T10:11:06.886191",
- "dc:creator": "IRI"
- },
- "id": "f5df53f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Libya",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "free speech",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c874f2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.728501",
- "dc:title": "open communication",
- "dc:modified": "2012-05-07T10:11:06.728501",
- "dc:creator": "IRI"
- },
- "id": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "Microsoft",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information filter",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d45a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "citizen organizations",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "citizens",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "coordinate actions",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9f944-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "action",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "plausible promess",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84360-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "contribution",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93162-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing objects",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9b326-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "protests",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "communication",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "community",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8a6ca-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.737579",
- "dc:title": "tools",
- "dc:modified": "2012-05-07T10:11:06.737579",
- "dc:creator": "IRI"
- },
- "id": "f5c8bb56-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.742174",
- "dc:title": "market",
- "dc:modified": "2012-05-07T10:11:06.742174",
- "dc:creator": "IRI"
- },
- "id": "f5c96362-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "social life",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "large and mediocre",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c83f64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "web phone gap",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.936514",
- "dc:title": "hadopi",
- "dc:modified": "2012-05-07T10:11:06.936514",
- "dc:creator": "IRI"
- },
- "id": "f5e70214-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "crowdsourcing",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93608-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.754973",
- "dc:title": "iphone",
- "dc:modified": "2012-05-07T10:11:06.754973",
- "dc:creator": "IRI"
- },
- "id": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.740402",
- "dc:title": "pepsi refresh project",
- "dc:modified": "2012-05-07T10:11:06.740402",
- "dc:creator": "IRI"
- },
- "id": "f5c914de-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.745182",
- "dc:title": "information quality",
- "dc:modified": "2012-05-07T10:11:06.745182",
- "dc:creator": "IRI"
- },
- "id": "f5c9d86a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "smart consumer",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.733775",
- "dc:title": "block party",
- "dc:modified": "2012-05-07T10:11:06.733775",
- "dc:creator": "IRI"
- },
- "id": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.726164",
- "dc:title": "talents",
- "dc:modified": "2012-05-07T10:11:06.726164",
- "dc:creator": "IRI"
- },
- "id": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "catalyst",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c836fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "voluntary participation",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.723388",
- "dc:title": "Nairobi",
- "dc:modified": "2012-05-07T10:11:06.723388",
- "dc:creator": "IRI"
- },
- "id": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "organizations",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "television",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f8dc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "counter democracy",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5c9fda4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "opportunity design",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.746248",
- "dc:title": "Egypt",
- "dc:modified": "2012-05-07T10:11:06.746248",
- "dc:creator": "IRI"
- },
- "id": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.922593",
- "dc:title": "failcon",
- "dc:modified": "2012-05-07T10:11:06.922593",
- "dc:creator": "IRI"
- },
- "id": "f5e4e646-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "printing democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e892-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.945336",
- "dc:title": "PUBLIC",
- "dc:modified": "2012-05-07T10:11:06.945336",
- "dc:creator": "IRI"
- },
- "id": "f5e85a74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "usability",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.878489",
- "dc:title": "sidibouzid",
- "dc:modified": "2012-05-07T10:11:06.878489",
- "dc:creator": "IRI"
- },
- "id": "f5de273e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "sharing information",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9af34-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.741128",
- "dc:title": "golden age for journalism but not for money",
- "dc:modified": "2012-05-07T10:11:06.741128",
- "dc:creator": "IRI"
- },
- "id": "f5c93a18-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "share",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8f486-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "malls",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c88104-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.734721",
- "dc:title": "synchronised crowded",
- "dc:modified": "2012-05-07T10:11:06.734721",
- "dc:creator": "IRI"
- },
- "id": "f5c84f40-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.727228",
- "dc:title": "information",
- "dc:modified": "2012-05-07T10:11:06.727228",
- "dc:creator": "IRI"
- },
- "id": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Egypitia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "media",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8e496-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "cognitive surplus",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "Wikileaks",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c8891a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.743138",
- "dc:title": "business model",
- "dc:modified": "2012-05-07T10:11:06.743138",
- "dc:creator": "IRI"
- },
- "id": "f5c97fc8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.744116",
- "dc:title": "gin crisis",
- "dc:modified": "2012-05-07T10:11:06.744116",
- "dc:creator": "IRI"
- },
- "id": "f5c9a67e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "fascism",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8dc9e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.830969",
- "dc:title": "addict",
- "dc:modified": "2012-05-07T10:11:06.830969",
- "dc:creator": "IRI"
- },
- "id": "f5d6e6fe-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.774383",
- "dc:title": "blendedtech",
- "dc:modified": "2012-05-07T10:11:06.774383",
- "dc:creator": "IRI"
- },
- "id": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.729461",
- "dc:title": "political informations",
- "dc:modified": "2012-05-07T10:11:06.729461",
- "dc:creator": "IRI"
- },
- "id": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.736191",
- "dc:title": "law",
- "dc:modified": "2012-05-07T10:11:06.736191",
- "dc:creator": "IRI"
- },
- "id": "f5c87d08-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.724876",
- "dc:title": "blend technology",
- "dc:modified": "2012-05-07T10:11:06.724876",
- "dc:creator": "IRI"
- },
- "id": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.738847",
- "dc:title": "democracy",
- "dc:modified": "2012-05-07T10:11:06.738847",
- "dc:creator": "IRI"
- },
- "id": "f5c8d852-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.731470",
- "dc:title": "Tunisia",
- "dc:modified": "2012-05-07T10:11:06.731470",
- "dc:creator": "IRI"
- },
- "id": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.732824",
- "dc:title": "political action",
- "dc:modified": "2012-05-07T10:11:06.732824",
- "dc:creator": "IRI"
- },
- "id": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.863215",
- "dc:title": "nooffense",
- "dc:modified": "2012-05-07T10:11:06.863215",
- "dc:creator": "IRI"
- },
- "id": "f5dbd6b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2012-05-07T10:11:06.868458",
- "dc:title": "microsoft",
- "dc:modified": "2012-05-07T10:11:06.868458",
- "dc:creator": "IRI"
- },
- "id": "f5dc9f68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "lists": [],
- "medias": [
- {
- "origin": "0",
- "url": "http://www.youtube.com/watch?v=zdOuFOTT3_I",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": ""
- },
- "dc:created": "2011-02-14T15:06:34.829919",
- "dc:duration": 1800000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN Clay Shirky",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:23.898905",
- "dc:description": "RSLN Clay Shirky"
- },
- "id": "9a493932-3053-11e0-862b-00145ea49a02",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2011-02-14T15:15:52.602502",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "9a493932-3053-11e0-862b-00145ea49a02"
- },
- "dc:description": "",
- "dc:title": "RSLN Clay Shirky - Tweets",
- "id": "13b0aa52-336b-11e0-b233-00145ea49a02",
- "dc:modified": "2012-04-29T15:41:55.858453"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 170000,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_294BB166-E5EE-4FCC-309B-293F3C4D5BD3"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Introduction de Constance Parodi",
- "color": "3355443",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 177457,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 410939,
- "tags": null,
- "color": "3355443",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_0C9E4E6B-043B-FCDE-D865-29ED81488D99"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "Clay Shirky : début de conférence",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 503000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 783000,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6887c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c68c96-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69092-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69498-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c69966-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_D8459097-1DE3-F28A-34CF-293F5C6B62E1"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "",
- "img": {
- "src": ""
- },
- "title": "3 features of Ushaidi",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 783462,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1000062,
- "tags": [
- {
- "id-ref": "f5c6b66c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bef0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c346-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6c756-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6cb52-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_B7F5CADC-465C-9E96-7279-29F8EAE07510"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "free time, talents, human resource, cognitive surplus, aggregation, communication",
- "img": {
- "src": ""
- },
- "title": "Coginitive surplus : free time",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1006108,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1078840,
- "tags": [
- {
- "id-ref": "f5c67e22-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6e902-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6ed80-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f190-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6f596-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_185D6DE8-980B-2ADB-0C3E-2A20D6E331EB"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "civic action, information, action, people, organizations, coordination, citizen sensor",
- "img": {
- "src": ""
- },
- "title": "Penser les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1078840,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1235162,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6841c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71eb8-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c722b4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c726ec-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_2C466914-84E2-91AA-2BAC-2A2158B7892C"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "citizen sensor, government, traffic map, open communication",
- "img": {
- "src": ""
- },
- "title": "Les capteurs citoyens",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1235162,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1307028,
- "tags": [
- {
- "id-ref": "f5c716a2-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74884-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c74c80-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_BB6067B1-A4A7-6636-CE0E-2A216B94B896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "smart consumer, public informations, political informations, money, action, citizens",
- "img": {
- "src": ""
- },
- "title": "Consomateur inteligents",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1307028,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1407440,
- "tags": [
- {
- "id-ref": "f5c71256-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7699a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c76df0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77232-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77692-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c77a98-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_F54B6E7D-F262-6726-94CB-2A217EDE2052"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "government, information management, participation",
- "img": {
- "src": ""
- },
- "title": "Code for America",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1407440,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1512525,
- "tags": [
- {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79708-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c79b4a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_691C78EF-6904-430D-5DE0-2A218F780AE8"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Libya, soccer, government, protests, coordination, social life, political life, Tunisia, Egypitia",
- "img": {
- "src": ""
- },
- "title": "Platforme pour les actions civiques",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1512525,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1667170,
- "tags": [
- {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7b814-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7442e-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7bc74-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c070-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c480-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7c872-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7cc64-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7d060-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_9BA33565-786B-24A5-F2EF-2A21A959633F"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "coordination, political action, citizen action, citizen organizations",
- "img": {
- "src": ""
- },
- "title": "Le vrai grand changement",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1668051,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1753100,
- "tags": [
- {
- "id-ref": "f5c7ece4-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c71abc-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f54a-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_874C9537-11F5-85A1-3E54-2A25590396D6"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "block party, platform, citizen organizations, consumers, cognitive surplus",
- "img": {
- "src": ""
- },
- "title": "Fetes des voisins",
- "color": "16711935",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1754200,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:modified": "2012-05-07T10:11:06.721324",
- "dc:creator": "perso"
- },
- "end": 1800000,
- "tags": [
- {
- "id-ref": "f5c8120a-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c7f130-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c6bae0-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81688-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5c81a84-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16711935",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "s_CAE3C373-F725-A3CA-099A-2A2576315966"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln commence 8h50",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln commence 8h50",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 0,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln commence 8h50\", \"created_at\": \"Mon Jan 31 07:50:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 26, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31982750655324160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982750655324160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 0,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6906130e-0391-4dd4-8ad2-a1f5e6e303da-31982750655324160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "img": {
- "src": ""
- },
- "title": "Stanm: A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 7000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [19, 27], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [43, 48], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"A la conference de @cshirky chez microsoft #RSLN sur le cognitive surplus. Ca va forcemt deborder sur le net et revoltes en Af. du nord\", \"created_at\": \"Mon Jan 31 07:51:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 903, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31982778090258432, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982778090258432\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 7000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "184cc091-a2d1-4c7d-bd0e-dad39c96d0f5-31982778090258432"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "img": {
- "src": ""
- },
- "title": "pepommier: Brain breakfast chez Microsoft pour écouter Clay Shirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 42000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [56, 61], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Brain breakfast chez Microsoft pour \\u00e9couter Clay Shirky #rsln\", \"created_at\": \"Mon Jan 31 07:51:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": {\"type\": \"Point\", \"coordinates\": [2.26552971, 48.834260710000002]}, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7013462, \"verified\": false, \"profile_sidebar_fill_color\": \"7C8A8A\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 341, \"protected\": false, \"id_str\": \"7013462\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": -7200, \"statuses_count\": 278, \"description\": \"video web producer\", \"friends_count\": 138, \"profile_link_color\": \"1BBCE4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1215645558/161264_536940419_386416_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/308222/Nightscape-6.jpg\", \"name\": \"pepommier\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 7, \"screen_name\": \"pepommier\", \"url\": \"http://bubble-prod.com\", \"created_at\": \"Fri Jun 22 12:32:06 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Mid-Atlantic\", \"profile_sidebar_border_color\": \"3F484E\", \"following\": null, \"listed_count\": 18}, \"id\": 31982927600422912, \"place\": {\"full_name\": \"Issy-les-Moulineaux, Paris\", \"name\": \"Issy-les-Moulineaux\", \"url\": \"http://api.twitter.com/1/geo/id/8d83cfde2e5ab759.json\", \"country\": \"France\", \"place_type\": \"neighborhood\", \"bounding_box\": {\"type\": \"Polygon\", \"coordinates\": [[[2.2484109999999999, 48.814176000000003], [2.2882250000000002, 48.814176000000003], [2.2882250000000002, 48.836477000000002], [2.2484109999999999, 48.836477000000002]]]}, \"country_code\": \"FR\", \"attributes\": {}, \"id\": \"8d83cfde2e5ab759\"}, \"retweet_count\": 0, \"geo\": {\"type\": \"Point\", \"coordinates\": [48.834260710000002, 2.26552971]}, \"id_str\": \"31982927600422912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 42000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "da9b8e9a-b93e-4b07-8259-226acf8ccd9e-31982927600422912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #RSLN avec les twittpics, on peut deviner où sont les gens ... marrant !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 55000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN avec les twittpics, on peut deviner o\\u00f9 sont les gens ... marrant !\", \"created_at\": \"Mon Jan 31 07:51:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 864, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31982982155739136, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982982155739136\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 55000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7588026a-1e1d-46d3-91b7-3e94dd8913fa-31982982155739136"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Pour la rencontre #RSLN, pensez à noter vos tweets avec ++, ==, --, ??. nous expérimentons avec l'IRI une analyse des tweets. Thx !",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 62000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [18, 23], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Pour la rencontre #RSLN, pensez \\u00e0 noter vos tweets avec ++, ==, --, ??. nous exp\\u00e9rimentons avec l'IRI une analyse des tweets. Thx !\", \"created_at\": \"Mon Jan 31 07:51:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6849, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31983008105897984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983008105897984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 62000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a4dbb580-2c1d-4089-9e91-c65d3e71a1e3-31983008105897984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Quelques règles intéressantes pour le live-twitt de la conférence #RSLN avec @cshirky : http://twitpic.com/3uztmc.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 127000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [77, 85], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3uztmc\", \"indices\": [88, 113], \"expanded_url\": null}]}, \"text\": \"Quelques r\\u00e8gles int\\u00e9ressantes pour le live-twitt de la conf\\u00e9rence #RSLN avec @cshirky : http://twitpic.com/3uztmc.\", \"created_at\": \"Mon Jan 31 07:53:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"location\": \"Boulogne-Billancourt\", \"utc_offset\": 3600, \"statuses_count\": 219, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null, \"listed_count\": 40}, \"id\": 31983280916004864, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983280916004864\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 127000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d0ba17c8-950f-4ae0-ae0d-32e04cde6941-31983280916004864"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 140000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [5, 10], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://yfrog.com/h0dbkxsj\", \"indices\": [29, 54], \"expanded_url\": null}]}, \"text\": \"Conf #RSLN Microsoft France http://yfrog.com/h0dbkxsj\", \"created_at\": \"Mon Jan 31 07:53:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5185, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983338092765184, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983338092765184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 140000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "3f73186a-08df-4d38-821d-2a889a84f2c0-31983338092765184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky @Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "Constance de 4barbes: Clay shirky @Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 148000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [12, 22], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky @Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:53:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 57623127, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 53, \"protected\": false, \"id_str\": \"57623127\", \"profile_background_color\": \"131516\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 267, \"description\": \"Digital Humanities and Social Media: Community and Content Management\", \"friends_count\": 70, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/983938390/pic.php_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/155252455/avatar.jpg\", \"name\": \"Constance de 4barbes\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 8, \"screen_name\": \"c4barbes\", \"url\": \"http://4barbes.com\", \"created_at\": \"Fri Jul 17 11:53:38 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31983371265507328, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983371265507328\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 148000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "04578856-0359-4fb2-9fc7-6d5e2e4615b1-31983371265507328"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 149000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 149000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fbe9c058-e418-424b-8b0c-c23b89a48a92-31983376617439232"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 152000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [16, 28], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [118, 123], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"And whisky ! RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:53:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32316, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6850, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31983387610718208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983387610718208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 152000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6842cda1-817d-445e-8fb0-b8efd41ad264-31983387610718208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "img": {
- "src": ""
- },
- "title": "jean-francois gervai: Rencontre avec Clayton Shirky #RSLN, public nombreux dès \"potron minet\"",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [30, 35], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Rencontre avec Clayton Shirky #RSLN, public nombreux d\\u00e8s \\\"potron minet\\\"\", \"created_at\": \"Mon Jan 31 07:54:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18998756, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 13, \"protected\": false, \"id_str\": \"18998756\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 6, \"description\": \"auteur d'ouvrages autour du web...\", \"friends_count\": 64, \"location\": \"france\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1176741038/04-0420-GERVAIS_JEAN-FRANCOIS_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme1/bg.png\", \"name\": \"jean-francois gervai\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"jfgervais\", \"url\": \"http://www.jeanfrancoisgervais\", \"created_at\": \"Wed Jan 14 22:15:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31983557672960000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983557672960000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25903be0-f0a6-401c-9068-b54a04c1ee89-31983557672960000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ça rouspète... RT @CyrilleF: #RSLN résau wifi minimum est assuré, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 209000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [18, 27], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [29, 34], \"text\": \"RSLN\"}, {\"indices\": [113, 120], \"text\": \"iphone\"}], \"urls\": []}, \"text\": \"\\u00c7a rousp\\u00e8te... RT @CyrilleF: #RSLN r\\u00e9sau wifi minimum est assur\\u00e9, par contre, pas de 3g ... la loose... J'ai un #iphone, merci microsoft ?\", \"created_at\": \"Mon Jan 31 07:54:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5186, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31983626669260800, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983626669260800\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 209000,
- "tags": [
- {
- "id-ref": "f5cb5226-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9583862e-51ea-440f-ab7a-b022412eebc2-31983626669260800"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par là : http://bit.ly/h9LM0v (via @fcinq )",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 213000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [10, 18], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [83, 89], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [35, 40], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [57, 77], \"expanded_url\": null}]}, \"text\": \"Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:43:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13622572, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 2560, \"protected\": false, \"id_str\": \"13622572\", \"profile_background_color\": \"9AE4E8\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 8687, \"description\": \"Un peu de 20minutes.fr dans cet internet mondial\", \"friends_count\": 346, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1183719410/40794_420716233991_587318991_4855249_4249707_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/121055127/qgvzF.jpg\", \"name\": \"Charles Dufresne\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 7, \"screen_name\": \"rocknrobot\", \"url\": \"http://www.20minutes.fr\", \"created_at\": \"Mon Feb 18 13:32:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 170}, \"id\": 31980923448725504, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31980923448725504\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 14], \"id\": 13622572, \"screen_name\": \"rocknrobot\", \"name\": \"Charles Dufresne\", \"id_str\": \"13622572\"}, {\"indices\": [26, 34], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}, {\"indices\": [99, 105], \"id\": 10652382, \"screen_name\": \"fcinq\", \"name\": \"Antoine Bayet\", \"id_str\": \"10652382\"}], \"hashtags\": [{\"indices\": [51, 56], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/h9LM0v\", \"indices\": [73, 93], \"expanded_url\": null}]}, \"text\": \"RT @rocknrobot: Pour voir @cshirky aux rencontres #RSLN, c'est par l\\u00e0 : http://bit.ly/h9LM0v (via @fcinq )\", \"created_at\": \"Mon Jan 31 07:54:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50154, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6679, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31983643530362880, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31983643530362880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 213000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9eb2aa47-8e9b-4dc2-b7a5-51daf5cddbe8-31983643530362880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Introduction en français ?",
- "img": {
- "src": ""
- },
- "title": "Bertil Hatt: #rsln Introduction en français ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 230000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Introduction en fran\\u00e7ais ?\", \"created_at\": \"Mon Jan 31 07:54:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 4985551, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 454, \"protected\": false, \"id_str\": \"4985551\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 42, \"utc_offset\": 3600, \"statuses_count\": 2678, \"description\": \"I do not control either LinkedIn profiles under my name.\\r\\nPhD Econ. \\u201cCompetition between Social Network Sites\\u201d @ U.Paris-Ouest Nanterre & independent consultant\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/22068682/DSC_6634_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/2947659/DSC02510-small.jpg\", \"name\": \"Bertil Hatt\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 436, \"screen_name\": \"bertil_hatt\", \"url\": \"http://www.quora.com/Bertil-Hatt\", \"created_at\": \"Tue Apr 17 11:25:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31983714204385280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983714204385280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 230000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff3f0903-4e89-4c28-a43a-71968aa3a5cc-31983714204385280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Rappel sur la nécessité d'Internet avec les événements en Égypte. Introduction Constance Parodi.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 244000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Rappel sur la n\\u00e9cessit\\u00e9 d'Internet avec les \\u00e9v\\u00e9nements en \\u00c9gypte. Introduction Constance Parodi.\", \"created_at\": \"Mon Jan 31 07:55:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 27, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31983773893529601, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983773893529601\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 244000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "8c14ce29-705f-41ee-b320-a20a44ea399d-31983773893529601"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 252000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky. Let see : Cognitive Surplus ? Stay tune.\", \"created_at\": \"Mon Jan 31 07:55:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 692, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31983809054380032, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983809054380032\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 252000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "55dffae8-0dec-4aa5-9a75-2181f96d3f47-31983809054380032"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Dans un instant, la conférence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus créatif ?",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 294000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Dans un instant, la conf\\u00e9rence de Clay Shirky chez Microsoft va commencer. Cognitive Surplus : vers un monde plus cr\\u00e9atif ?\", \"created_at\": \"Mon Jan 31 07:55:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 175, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 217, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31983982530793472, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983982530793472\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 294000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "78f208b8-04db-4613-8598-863fd424fd3e-31983982530793472"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: à la conférence de Clay Shirky au campus #Microsoft #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 321000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [42, 52], \"text\": \"Microsoft\"}, {\"indices\": [53, 58], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\u00e0 la conf\\u00e9rence de Clay Shirky au campus #Microsoft #rsln\", \"created_at\": \"Mon Jan 31 07:56:17 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3122, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31984097412784128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984097412784128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 321000,
- "tags": [
- {
- "id-ref": "f5c8af58-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2deb537a-0ce0-4dad-b178-aa944d1f5f0e-31984097412784128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Avec @cshirky, réflexions sur le temps de cerveau disponible, la créativité et les nouvelles connexions. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 325000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [5, 13], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Avec @cshirky, r\\u00e9flexions sur le temps de cerveau disponible, la cr\\u00e9ativit\\u00e9 et les nouvelles connexions. #RSLN\", \"created_at\": \"Mon Jan 31 07:56:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 220, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31984113330163712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984113330163712\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 325000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "74b3f478-5b5a-4ccc-91b0-f3c31a6dc790-31984113330163712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Il faut noter nos tweets \"++, ==, --, ??\".... Ça va ressembler à des gros mots #RSLN",
- "color": "16763904",
- "polemics": ["Q", "REF", "OK", "KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 333000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [79, 84], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Il faut noter nos tweets \\\"++, ==, --, ??\\\".... \\u00c7a va ressembler \\u00e0 des gros mots #RSLN\", \"created_at\": \"Mon Jan 31 07:56:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984147253698560, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984147253698560\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 333000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99f7a154-cd01-4acb-811c-de6d31e842fc-31984147253698560"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "img": {
- "src": ""
- },
- "title": "MiKarmousMi3neb: RT @alicanth: Ça se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 339000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [71, 76], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [43, 70], \"expanded_url\": null}]}, \"text\": \"\\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:53:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"listed_count\": 758, \"utc_offset\": 3600, \"statuses_count\": 2372, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"location\": \"Paris\", \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null}, \"id\": 31983376617439232, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31983376617439232\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 8266352, \"screen_name\": \"alicanth\", \"name\": \"Alice Antheaume\", \"id_str\": \"8266352\"}], \"hashtags\": [{\"indices\": [85, 90], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73749495\", \"indices\": [57, 84], \"expanded_url\": null}]}, \"text\": \"RT @alicanth: \\u00c7a se complique, les signes pour liver :) http://plixi.com/p/73749495 #RSLN\", \"created_at\": \"Mon Jan 31 07:56:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 110795718, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 110, \"protected\": false, \"id_str\": \"110795718\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 3, \"utc_offset\": -21600, \"statuses_count\": 1435, \"description\": \"J'aime les raisins mais je pr\\u00e9f\\u00e8re les figues.\", \"friends_count\": 150, \"location\": \"\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/947738452/3515e59d-838c-4639-940e-1715fd93806c_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/85303105/DSC01229.JPG\", \"name\": \"MiKarmousMi3neb\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"MiKarmousMi3neb\", \"url\": null, \"created_at\": \"Tue Feb 02 20:17:03 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Central Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31984171630989312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984171630989312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 339000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "675567c6-556d-4324-b110-ac70cde5b203-31984171630989312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Elisabeth Garrett: @ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 433000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [57, 69], \"text\": \"communities\"}, {\"indices\": [121, 127], \"text\": \"Egypt\"}, {\"indices\": [128, 133], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@ Microsoft France to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 07:58:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Mobile Web</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 152375270, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 49, \"protected\": false, \"id_str\": \"152375270\", \"profile_background_color\": \"352726\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 269, \"description\": \"MBA @HECParis. Stagiaire @Soci\\u00e9t\\u00e9G\\u00e9n\\u00e9rale. social marketer. photographer. petite gourmande. wine-cinema-NYC-travel-karaoke-f\\u00fatbol enthusiast. amazed by grace.\", \"friends_count\": 45, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/962811111/23230_106524_7896_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"Elisabeth Garrett\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"EliGarrett\", \"url\": \"http://eligarrett.wordpress.com\", \"created_at\": \"Sat Jun 05 19:51:45 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 0}, \"id\": 31984564570169344, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984564570169344\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 433000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f3d4a265-fbaa-4e8b-8ed4-0b19a7df34b5-31984564570169344"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Trois barres de wifi -- -- --- #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Trois barres de wifi -- -- --- #RSLN",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 438000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [31, 36], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Trois barres de wifi -- -- --- #RSLN\", \"created_at\": \"Mon Jan 31 07:58:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5188, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31984585231310849, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984585231310849\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 438000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "89887a2e-b0db-461c-aef1-b9435f6bda53-31984585231310849"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 493000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 959, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 493000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "814a2ed8-2756-4b21-bf7f-43033845c97d-31984816979189760"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 495000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [59, 64], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 07:59:11 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1917, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31984825082576896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984825082576896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 495000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab5e1489-1d78-40de-bd9f-041e93a177cd-31984825082576896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky in conference at Microsoft's campus",
- "img": {
- "src": ""
- },
- "title": "Dany Vilela: #rsln Clay Shirky in conference at Microsoft's campus",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 513000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky in conference at Microsoft's campus\", \"created_at\": \"Mon Jan 31 07:59:29 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_mobile/android/\\\" rel=\\\"nofollow\\\">Seesmic for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 21152901, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1493, \"protected\": false, \"id_str\": \"21152901\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 140, \"utc_offset\": 3600, \"statuses_count\": 7618, \"description\": \"Dyvantity, home of creativity by Dany Vilela (@Dy_Vilela)\", \"friends_count\": 1198, \"location\": \"Grenoble\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/960161513/dy_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/108589554/TwitterTemplate_copie.jpg\", \"name\": \"Dany Vilela\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dyvantity\", \"url\": \"http://dyvantity.com\", \"created_at\": \"Wed Feb 18 00:48:32 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984902601707520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984902601707520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 513000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1fa8cece-d261-4290-931d-7ccc775858e0-31984902601707520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 528000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [80, 88], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln I am optimistic about what tools can do but it's still up to us to do it. @cshirky\", \"created_at\": \"Mon Jan 31 07:59:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31984965352685568, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31984965352685568\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 528000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "1cf29524-3087-4f6a-a52a-6fbcbd35dbc6-31984965352685568"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln Clay Shirky \"optimistic about what new tools bring for citizens\" ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay Shirky \\\"optimistic about what new tools bring for citizens\\\" ++\", \"created_at\": \"Mon Jan 31 08:00:16 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 28, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31985100929372160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985100929372160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "cf12841e-e3e6-484f-9e71-1c7a3eade1fd-31985100929372160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "img": {
- "src": ""
- },
- "title": "Gustavo González: !!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 636000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [7, 18], \"id\": 152375270, \"screen_name\": \"EliGarrett\", \"name\": \"Elisabeth Garrett\", \"id_str\": \"152375270\"}], \"hashtags\": [{\"indices\": [62, 74], \"text\": \"communities\"}, {\"indices\": [126, 132], \"text\": \"Egypt\"}, {\"indices\": [133, 138], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"!!! RT @EliGarrett: ... to hear Clay Shirky speak re: digital #communities. Let's see what he has to say regarding the impact #Egypt #RSLN\", \"created_at\": \"Mon Jan 31 08:01:32 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.ubertwitter.com/bb/download.php\\\" rel=\\\"nofollow\\\">\\u00dcberTwitter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 43939616, \"verified\": false, \"profile_sidebar_fill_color\": \"EADEAA\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 308, \"protected\": false, \"id_str\": \"43939616\", \"profile_background_color\": \"8B542B\", \"location\": \"\\u00dcT: 48.819156,2.291199\", \"utc_offset\": -16200, \"statuses_count\": 5670, \"description\": \"Sibarita caraque\\u00f1o living in Paris. MBA participant at HEC-Paris. Movies&Wine&Food lover qui s'amuse \\u00e0 en parler et partager avec les amis...\", \"friends_count\": 356, \"profile_link_color\": \"9D582E\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/819879158/untitled_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/195050882/Word_Cloud.JPG\", \"name\": \"Gustavo Gonz\\u00e1lez\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 12, \"screen_name\": \"gustavogb83\", \"url\": null, \"created_at\": \"Mon Jun 01 18:31:30 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Caracas\", \"profile_sidebar_border_color\": \"D9B17E\", \"following\": null, \"listed_count\": 13}, \"id\": 31985419721637890, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985419721637890\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 636000,
- "tags": [
- {
- "id-ref": "f5cc4a3c-982c-11e1-9f9f-00145ea4a2be"
- }, {
- "id-ref": "f5ca01a0-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2dc5e9ff-e370-4c06-9ac5-33cc636b14e7-31985419721637890"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "Anthony: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 655000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 17759, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null, \"listed_count\": 133}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 655000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e4b2ba41-d151-44ec-8269-eee99a951019-31985498780078080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "img": {
- "src": ""
- },
- "title": "Graham Hay: RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 666000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [88, 93], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 07:49:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4631, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31982379551686656, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31982379551686656\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}], \"hashtags\": [{\"indices\": [105, 110], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: Twitter: possibly the best solution to cognitive surplus since gin went out of fashion. #rsln\", \"created_at\": \"Mon Jan 31 08:02:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 83917557, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 29, \"protected\": false, \"id_str\": \"83917557\", \"profile_background_color\": \"C0DEED\", \"location\": \"Auckland, New Zealand\", \"utc_offset\": 43200, \"statuses_count\": 44, \"description\": \"\", \"friends_count\": 101, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1100908900/graham_hay_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Graham Hay\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"graham_hay\", \"url\": null, \"created_at\": \"Tue Oct 20 20:19:49 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Wellington\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 2}, \"id\": 31985545622069248, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985545622069248\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 666000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "92d56631-8ec7-43bd-9038-ff95a5629d3d-31985545622069248"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "img": {
- "src": ""
- },
- "title": "Melissa Bounoua: La conf de @cshirky commence sur le même ex que sa conf ted de juin dernier à Cannes: la plateforme ushahidi #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 672000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [11, 19], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"La conf de @cshirky commence sur le m\\u00eame ex que sa conf ted de juin dernier \\u00e0 Cannes: la plateforme ushahidi #rsln\", \"created_at\": \"Mon Jan 31 08:02:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14647281, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 50152, \"protected\": false, \"id_str\": \"14647281\", \"profile_background_color\": \"352726\", \"location\": \" Paris\", \"utc_offset\": 3600, \"statuses_count\": 6681, \"description\": \"Journaliste @20minutes// un peu de @megalopolismag aussi // Avant: @artefr / ex @Sciencespo\", \"friends_count\": 1354, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1180694566/melissa_twitter1_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/48393318/16931__lost_in_translation_l.jpg\", \"name\": \"Melissa Bounoua\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 236, \"screen_name\": \"misspress\", \"url\": \"http://misspress.wordpress.com\", \"created_at\": \"Sun May 04 11:54:51 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 833}, \"id\": 31985570716581888, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985570716581888\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 672000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "37ade492-143b-46dc-a2e9-4e566a4f85e4-31985570716581888"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky start with a story. About media blackout in Kenya. And the blog Kenyan Pundit. The role of Ushihidi\", \"created_at\": \"Mon Jan 31 08:02:55 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 693, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31985765323898880, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985765323898880\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "25d80b84-cb4e-48de-8a0f-018bb5996ea5-31985765323898880"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 754000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [89, 107], \"text\": \"citizenjournalism\"}, {\"indices\": [109, 114], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://j.mp/3y0kHS\", \"indices\": [116, 134], \"expanded_url\": null}]}, \"text\": \"@cshirky starting off today with story of Ushahidi. Great collaborative tool for mapping #citizenjournalism. #rsln. http://j.mp/3y0kHS\", \"created_at\": \"Mon Jan 31 08:03:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31985910551678976, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985910551678976\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 754000,
- "tags": [
- {
- "id-ref": "f5cd73c6-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fdf7de8-4126-417d-ae90-bfd4b2882e4b-31985910551678976"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln hushaidi ++ desaster as a social object",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: #rsln hushaidi ++ desaster as a social object",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 760000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln hushaidi ++ desaster as a social object\", \"created_at\": \"Mon Jan 31 08:03:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 1599, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"location\": \"Paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null}, \"id\": 31985939437850624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985939437850624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 760000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b992e2a8-9d93-4921-bb1a-af45dd015b56-31985939437850624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln Clay aborde le problème de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 765000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Clay aborde le probl\\u00e8me de la surinfo pr les blogs, incapables de relayer toutes les infos qui leur arrivent qd medias ne le ft pas\", \"created_at\": \"Mon Jan 31 08:03:41 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 866, \"description\": \"\", \"friends_count\": 107, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 13}, \"id\": 31985960119959552, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985960119959552\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 765000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "30263902-1a82-4620-9d2a-19f8961ecbb2-31985960119959552"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Clay Shirky raconte comment les blogueurs se sont mobilisés au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [84, 89], \"text\": \"RSLN\"}, {\"indices\": [90, 99], \"text\": \"Ushahidi\"}], \"urls\": [{\"url\": \"http://yfrog.com/gz5mvxjj\", \"indices\": [100, 125], \"expanded_url\": null}]}, \"text\": \"Clay Shirky raconte comment les blogueurs se sont mobilis\\u00e9s au Kenya pour informer. #RSLN #Ushahidi http://yfrog.com/gz5mvxjj\", \"created_at\": \"Mon Jan 31 08:03:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 221, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31985966457552896, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985966457552896\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 767000,
- "tags": [
- {
- "id-ref": "f5cdc592-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3c773f6-fc2c-4bc2-aa4c-e695f8b5670d-31985966457552896"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln la cartographie de la violence en temps réel, utile en situation de guerre mais anxiogène partout ailleurs --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 768000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln la cartographie de la violence en temps r\\u00e9el, utile en situation de guerre mais anxiog\\u00e8ne partout ailleurs --\", \"created_at\": \"Mon Jan 31 08:03:44 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 81, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31985972707074049, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31985972707074049\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 768000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "84adc135-86e1-4f1f-bb6b-3ed7f407caba-31985972707074049"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "img": {
- "src": ""
- },
- "title": "Alice Antheaume: Clay shirky on stage #RSLN http://plixi.com/p/73750856",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 791000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://plixi.com/p/73750856\", \"indices\": [28, 55], \"expanded_url\": null}]}, \"text\": \"Clay shirky on stage #RSLN http://plixi.com/p/73750856\", \"created_at\": \"Mon Jan 31 08:04:07 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 8266352, \"verified\": false, \"profile_sidebar_fill_color\": \"ccebff\", \"is_translator\": false, \"profile_text_color\": \"0C3E53\", \"followers_count\": 43682, \"protected\": false, \"id_str\": \"8266352\", \"profile_background_color\": \"f70a29\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 2373, \"description\": \"Responsable de la prospective \\u00e0 l'\\u00e9cole de journalisme de Sciences Po. Web journaliste pour Slate.fr, ex-20minutes.fr, ex-T\\u00e9l\\u00e9rama.\", \"friends_count\": 1047, \"profile_link_color\": \"f70808\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/409776356/2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296156503/images/themes/theme5/bg.gif\", \"name\": \"Alice Antheaume\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 127, \"screen_name\": \"alicanth\", \"url\": \"http://blog.slate.fr/labo-journalisme-sciences-po/\", \"created_at\": \"Sat Aug 18 14:21:49 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"e0d6cc\", \"following\": null, \"listed_count\": 758}, \"id\": 31986069742292992, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986069742292992\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 791000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "9d440698-8e91-4542-b978-8cb22b811d56-31986069742292992"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: En bon americain, Clay Shirky commence par une belle histoire #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 818000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [62, 67], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"En bon americain, Clay Shirky commence par une belle histoire #rsln ++\", \"created_at\": \"Mon Jan 31 08:04:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"location\": \"iPhone: 48.845192,2.237256\", \"utc_offset\": 3600, \"statuses_count\": 1919, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 116}, \"id\": 31986179578527744, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986179578527744\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 818000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7abf0e3b-afe9-424c-a49e-22dbae9de393-31986179578527744"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: RT @GarrettGoodman: @cshirky says,\"I’m an optimist, but that is tempered by realism.\" Then realises his mic is off. #RSLN #fail",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 833000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [96, 101], \"text\": \"RSLN\"}, {\"indices\": [102, 107], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"@cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 07:59:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 960, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31984816979189760, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31984816979189760\", \"in_reply_to_user_id\": 6141832}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 18], \"id\": 28351245, \"screen_name\": \"GarrettGoodman\", \"name\": \"Garrett Goodman\", \"id_str\": \"28351245\"}, {\"indices\": [20, 28], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [116, 121], \"text\": \"RSLN\"}, {\"indices\": [122, 127], \"text\": \"fail\"}], \"urls\": []}, \"text\": \"RT @GarrettGoodman: @cshirky says,\\\"I\\u2019m an optimist, but that is tempered by realism.\\\" Then realises his mic is off. #RSLN #fail\", \"created_at\": \"Mon Jan 31 08:04:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 6, \"utc_offset\": 3600, \"statuses_count\": 244, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31986242954461184, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986242954461184\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 833000,
- "tags": [
- {
- "id-ref": "f5c83b68-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "dfa4ebef-b70e-4ded-b410-91cf632b8f11-31986242954461184"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 842000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 842000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "148e5b7b-1f5a-4221-a9d9-f3ad4bd6670b-31986280501874688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Ushahidi \"technologie apparue à Nairobi, Kenya, et qui s'est répandue dans le monde entier\" #rsln ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 846000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"location\": \"Paris\", \"profile_background_color\": \"352726\", \"id_str\": \"104293463\", \"utc_offset\": 3600, \"statuses_count\": 1432, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"notifications\": null, \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null, \"listed_count\": 29}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [92, 97], \"text\": \"rsln\"}], \"urls\": []}, \"contributors\": null, \"truncated\": false, \"text\": \"Ushahidi \\\"technologie apparue \\u00e0 Nairobi, Kenya, et qui s'est r\\u00e9pandue dans le monde entier\\\" #rsln ++\", \"created_at\": \"Mon Jan 31 08:05:02 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31986297836933121, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31986297836933121\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 846000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c4a6d9f0-29af-49f3-a6ae-e926f1084a36-31986297836933121"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les sms pour amener le web dans la brousse !",
- "img": {
- "src": ""
- },
- "title": "Cyrille Fonvielle: #rsln les sms pour amener le web dans la brousse !",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 848000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les sms pour amener le web dans la brousse !\", \"created_at\": \"Mon Jan 31 08:05:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36027828, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 116, \"protected\": false, \"id_str\": \"36027828\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 13, \"utc_offset\": 3600, \"statuses_count\": 867, \"description\": \"\", \"friends_count\": 107, \"location\": \"\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1118444241/Photo_14_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296179758/images/themes/theme1/bg.png\", \"name\": \"Cyrille Fonvielle\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"CyrilleF\", \"url\": \"http://www.cyrillef.fr\", \"created_at\": \"Tue Apr 28 09:27:21 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986306355564545, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986306355564545\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 848000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b7ec955a-9669-492b-8917-ec144e514191-31986306355564545"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "img": {
- "src": ""
- },
- "title": "guigui bat: RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour râler #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 871000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [73, 78], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:01:51 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 9132482, \"verified\": false, \"profile_sidebar_fill_color\": \"e9c990\", \"is_translator\": false, \"profile_text_color\": \"413735\", \"followers_count\": 1833, \"protected\": false, \"id_str\": \"9132482\", \"profile_background_color\": \"dba15b\", \"listed_count\": 133, \"utc_offset\": 3600, \"statuses_count\": 17761, \"description\": \"Community manager @labelbarclay (Universal Music) - Label manager, blogger @fuckthatworld (FTW)\\r\\n\\r\\nhttp://www.fuckthatworld.com\", \"friends_count\": 865, \"location\": \"Paris, France\", \"profile_link_color\": \"d57a3d\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1221117224/B001751-R2-07-8_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/198033774/fond_twitter.jpg\", \"name\": \"Anthony\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"kanthos\", \"url\": \"http://www.flavors.me/kanthos\", \"created_at\": \"Thu Sep 27 21:41:21 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ded2bc\", \"following\": null}, \"id\": 31985498780078080, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31985498780078080\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 9132482, \"screen_name\": \"kanthos\", \"name\": \"Anthony\", \"id_str\": \"9132482\"}, {\"indices\": [16, 25], \"id\": 7298822, \"screen_name\": \"saintbon\", \"name\": \"Em. de Saint-Bon\", \"id_str\": \"7298822\"}], \"hashtags\": [{\"indices\": [86, 91], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @kanthos: RT @saintbon: On est bien en France. Un tweet sur deux, c'est pour r\\u00e2ler #rsln\", \"created_at\": \"Mon Jan 31 08:05:27 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 33849214, \"verified\": false, \"profile_sidebar_fill_color\": \"F7DA93\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 288, \"protected\": false, \"id_str\": \"33849214\", \"profile_background_color\": \"000000\", \"listed_count\": 8, \"utc_offset\": -10800, \"statuses_count\": 1024, \"description\": \"Pigiste (radio latina, voltage...) - Journaliste (ex-G\\u00e9n\\u00e9rations 88.2 fm)\", \"friends_count\": 962, \"location\": \"Paris (France)\", \"profile_link_color\": \"CC3300\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1172856658/GUIGUI_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/173146979/Eastbound_and_Down_Season_2_Debuted_in_HBO.jpg\", \"name\": \"guigui bat\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 5, \"screen_name\": \"guillaumebat\", \"url\": null, \"created_at\": \"Tue Apr 21 08:15:17 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"FFFFFF\", \"following\": null}, \"id\": 31986404686827520, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986404686827520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 871000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b089c539-c908-4399-87f6-27fd12fb11f5-31986404686827520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Christian Porri: http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 887000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [83, 88], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://twitpic.com/3v3p6o\", \"indices\": [0, 25], \"expanded_url\": null}]}, \"text\": \"http://twitpic.com/3v3p6o Rencontre avec Clay Shirky, heureusement on l'entends... #RSLN\", \"created_at\": \"Mon Jan 31 08:05:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Windows Phone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36630982, \"verified\": false, \"profile_sidebar_fill_color\": \"dedede\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 456, \"protected\": false, \"id_str\": \"36630982\", \"profile_background_color\": \"dedede\", \"listed_count\": 11, \"utc_offset\": 3600, \"statuses_count\": 1476, \"description\": \"= French graphic and interactive designer * (GUI + UX + Video games gameplay (\\u2665PC gaming) + Science-fiction + Type + Computing culture + ...)\", \"friends_count\": 614, \"location\": \"On the taskbar\", \"profile_link_color\": \"0a3aff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/239549703/logoTF_twitter_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/15559291/fond-twitter.jpg\", \"name\": \"Christian Porri\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"Tamantafamiglia\", \"url\": \"http://www.christianporri.com\", \"created_at\": \"Thu Apr 30 09:53:45 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"f8f7f7\", \"following\": null}, \"id\": 31986470629675008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986470629675008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 887000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a3a42252-81f3-4555-abff-e1273080d7ef-31986470629675008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: RT @versac: Clay Shirky commence avec l'exemple, rendu célèbre en Haïti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 897000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [87, 99], \"text\": \"blendedtech\"}, {\"indices\": [100, 105], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [62, 86], \"expanded_url\": null}]}, \"text\": \"Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:04:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6851, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31986280501874688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986280501874688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 10], \"id\": 6284172, \"screen_name\": \"versac\", \"name\": \"NicolasVanbremeersch\", \"id_str\": \"6284172\"}], \"hashtags\": [{\"indices\": [99, 111], \"text\": \"blendedtech\"}, {\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://www.ushahidi.com/\", \"indices\": [74, 98], \"expanded_url\": null}]}, \"text\": \"RT @versac: Clay Shirky commence avec l'exemple, rendu c\\u00e9l\\u00e8bre en Ha\\u00efti : http://www.ushahidi.com/ #blendedtech #RSLN ++ :)\", \"created_at\": \"Mon Jan 31 08:05:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 51, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31986513839394816, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986513839394816\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 897000,
- "tags": [
- {
- "id-ref": "f5ce4454-982c-11e1-9f9f-00145ea4a2be"
- }
- ],
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "99afc6f7-1840-49a7-80aa-2522e7cf6296-31986513839394816"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Ushahidi, une plateforme inventée au Kenya http://bit.ly/dCSATj L'équivalent nuémrique du développement du micro-crédit #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 905000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [120, 125], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [43, 63], \"expanded_url\": null}]}, \"text\": \"Ushahidi, une plateforme invent\\u00e9e au Kenya http://bit.ly/dCSATj L'\\u00e9quivalent nu\\u00e9mrique du d\\u00e9veloppement du micro-cr\\u00e9dit #RSLN\", \"created_at\": \"Mon Jan 31 08:06:01 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5189, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986544894025728, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986544894025728\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 905000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "93ac26d2-8571-4ea7-8af8-823f2b53949c-31986544894025728"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 929000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 929000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d665d937-20e1-4281-aa3f-d311478ad9fe-31986647222452224"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln",
- "img": {
- "src": ""
- },
- "title": "peopleare: #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 947000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln\", \"created_at\": \"Mon Jan 31 08:06:43 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14177974, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 10, \"protected\": false, \"id_str\": \"14177974\", \"profile_background_color\": \"1A1B1F\", \"location\": \"\", \"utc_offset\": 3600, \"statuses_count\": 1, \"description\": \"\", \"friends_count\": 17, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/128858275/Av_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1295051201/images/themes/theme9/bg.gif\", \"name\": \"peopleare\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"peopleare\", \"url\": null, \"created_at\": \"Wed Mar 19 16:54:53 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 0}, \"id\": 31986723009339392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986723009339392\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 947000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "523773b2-940d-49b4-b927-e9c5754a42fa-31986723009339392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"La technologie doit donner envie de participer, même aux néophytes, et de faire des choses utiles\" - @cshirky #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 976000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [102, 110], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [111, 116], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"La technologie doit donner envie de participer, m\\u00eame aux n\\u00e9ophytes, et de faire des choses utiles\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:07:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 222, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31986844849672192, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986844849672192\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 976000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f660231-ecec-486d-b834-0d49dcb77126-31986844849672192"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "img": {
- "src": ""
- },
- "title": "Christophe Prieuur: Nicolas Hulot a invité Clay Shirky à présenter sa nouvelle émission #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 979000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [68, 73], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Nicolas Hulot a invit\\u00e9 Clay Shirky \\u00e0 pr\\u00e9senter sa nouvelle \\u00e9mission #rsln\", \"created_at\": \"Mon Jan 31 08:07:15 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 2357391, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 64, \"protected\": false, \"id_str\": \"2357391\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 245, \"description\": \"Researcher on social networks & graph algorithms\", \"friends_count\": 50, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/30077512/tete-bison_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/525672/araignee-plafond.jpg\", \"name\": \"Christophe Prieuur\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"twytof\", \"url\": null, \"created_at\": \"Mon Mar 26 20:54:50 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 6}, \"id\": 31986856920883200, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986856920883200\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 979000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0f2f20ef-f0ea-44ca-af4d-ca04de0c0887-31986856920883200"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 986000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln bottom up platforms all over the world ++ : violence map, traffic, electoral fraud...\", \"created_at\": \"Mon Jan 31 08:07:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"location\": null, \"utc_offset\": 3600, \"statuses_count\": 29, \"description\": null, \"friends_count\": 12, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 0}, \"id\": 31986884519403520, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986884519403520\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 986000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "580cca57-71b6-4ac3-9466-5b4eaf1c1a5c-31986884519403520"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "img": {
- "src": ""
- },
- "title": "chaffiotte: Ushahidi ... Inventé à Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\n#RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 994000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Ushahidi ... Invent\\u00e9 \\u00e0 Nairobi : information collection, visualization and interactive mapping : un bon exemple de valeur d'usage\\n#RSLN\", \"created_at\": \"Mon Jan 31 08:07:30 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 26260924, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 326, \"protected\": false, \"id_str\": \"26260924\", \"profile_background_color\": \"131516\", \"listed_count\": 16, \"utc_offset\": -10800, \"statuses_count\": 666, \"description\": \"ceo of JWT Paris/ I love the social media revolution and I want to be part of it : vive la revolution !!!/master class in hyper island /runner & biker\", \"friends_count\": 708, \"location\": \"paris\", \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1219068025/IMG_0928_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/171909728/twilk_background_4ce11ca768fe7.jpg\", \"name\": \"chaffiotte\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 191, \"screen_name\": \"clachaf\", \"url\": \"http://chaff.unblog.fr\", \"created_at\": \"Tue Mar 24 15:49:07 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"ededed\", \"following\": null}, \"id\": 31986919567003648, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986919567003648\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 994000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ad674d93-be78-46d1-ade9-1b88352156f7-31986919567003648"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "img": {
- "src": ""
- },
- "title": "Richard Ying: Clay Shirky sur Ushahidi \"pas besoin de venir de Mountain View, Californie, pour se développer dans le monde\" #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 997000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay Shirky sur Ushahidi \\\"pas besoin de venir de Mountain View, Californie, pour se d\\u00e9velopper dans le monde\\\" #rsln\", \"created_at\": \"Mon Jan 31 08:07:33 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 104293463, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 471, \"protected\": false, \"id_str\": \"104293463\", \"profile_background_color\": \"352726\", \"listed_count\": 29, \"utc_offset\": 3600, \"statuses_count\": 1433, \"description\": \"(Bient\\u00f4t plus) en recherche d'emploi dans la communication web ou le emarketing (http://www.doyoubuzz.com/richard-ying)\\r\\nPhotographe amateur & (ancien) blogueur\", \"friends_count\": 325, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/679465639/marvin_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296099941/images/themes/theme5/bg.gif\", \"name\": \"Richard Ying\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"richardying\", \"url\": \"http://richard.ying.fr/blog/\", \"created_at\": \"Tue Jan 12 22:32:54 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31986931373965312, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986931373965312\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 997000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7b8cdc48-a872-484c-a556-9866ffbc42d9-31986931373965312"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Entièrement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le téléphone de base #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 998000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [119, 124], \"text\": \"RSLN\"}], \"urls\": [{\"url\": \"http://bit.ly/dCSATj\", \"indices\": [47, 67], \"expanded_url\": null}]}, \"text\": \"Enti\\u00e8rement fait par des volontaires, Ushahidi http://bit.ly/dCSATj offre un pont entre le web et le t\\u00e9l\\u00e9phone de base #RSLN\", \"created_at\": \"Mon Jan 31 08:07:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5190, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31986936306475008, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986936306475008\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 998000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee47d8e1-2312-48ee-887f-68d06ba3c24b-31986936306475008"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: @CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1004000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36027828, \"screen_name\": \"CyrilleF\", \"name\": \"Cyrille Fonvielle\", \"id_str\": \"36027828\"}], \"hashtags\": [{\"indices\": [53, 58], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@CyrilleF le coveritlive semble ramer. Suivre le tag #RSLN directement... :(\", \"created_at\": \"Mon Jan 31 08:07:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31983580863270912\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36027828\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": 31983580863270912, \"in_reply_to_screen_name\": \"CyrilleF\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"listed_count\": 586, \"utc_offset\": 3600, \"statuses_count\": 6852, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"location\": \"Paris\", \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null}, \"id\": 31986959354171392, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986959354171392\", \"in_reply_to_user_id\": 36027828}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1004000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2bcbfb84-ad91-4309-875f-1ff4a158323c-31986959354171392"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1016000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [132, 140], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln We test for usability, but what matters in civic engagement is what makes people want to use the application in the 1st place @cshirky\", \"created_at\": \"Mon Jan 31 08:07:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4632, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31987011116077056, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987011116077056\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1016000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0de5ce3-a9fe-4b1d-8828-63b8c1100327-31987011116077056"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Clay ouvre sa conférence avec les mêmes exemples qu'à TED : Ushahidi et les autres exemples de crowdsourcing citoyen.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1028000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay ouvre sa conf\\u00e9rence avec les m\\u00eames exemples qu'\\u00e0 TED : Ushahidi et les autres exemples de crowdsourcing citoyen.\", \"created_at\": \"Mon Jan 31 08:08:04 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"listed_count\": 4, \"utc_offset\": 3600, \"statuses_count\": 176, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"location\": \"Paris - Ze capitale of ze love\", \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null}, \"id\": 31987061594529792, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987061594529792\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1028000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "5d6624a4-ab46-4f25-9212-15ea5e3c648b-31987061594529792"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "img": {
- "src": ""
- },
- "title": "dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech. ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1032000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"listed_count\": 65, \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"location\": \"iPhone: 37.785871,-122.405417\", \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1032000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a0eaec31-b3f3-473d-9d49-5db9c8108531-31987077629353984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1044000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [131, 136], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@cshirky 3 features of Ushahidi: blended tech, opportunity design, coordinated voluntary participation. That is Cognitive Surplus. #RSLN\", \"created_at\": \"Mon Jan 31 08:08:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 347, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"listed_count\": 15, \"utc_offset\": 3600, \"statuses_count\": 961, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987129944899584, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987129944899584\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1044000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "56765e7a-5e78-4c90-99f0-9754a9ba5c3f-31987129944899584"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1047000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [14, 19], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://ushahidi.com/\", \"indices\": [20, 40], \"expanded_url\": null}]}, \"text\": \"Clay Shirky @ #rsln http://ushahidi.com/ made in Nairobi, Kenya (and not the valley) to visually report violence, events, etc... ++\", \"created_at\": \"Mon Jan 31 08:08:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1705, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31987139579219970, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987139579219970\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1047000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fd898cbc-613c-483b-8cf2-ec51e04c3fdf-31987139579219970"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN cognitive surplus = Agregation of free time ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN cognitive surplus = Agregation of free time ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1055000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN cognitive surplus = Agregation of free time ++\", \"created_at\": \"Mon Jan 31 08:08:31 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1037, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987173393694720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987173393694720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1055000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "fa78ba38-eccd-4aea-82f6-fafdeb768d79-31987173393694720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Des individus contribuent avec leurs moyens numériques et les contenus sont agrégés Ushahidi #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1058000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [93, 98], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Des individus contribuent avec leurs moyens num\\u00e9riques et les contenus sont agr\\u00e9g\\u00e9s Ushahidi #RSLN\", \"created_at\": \"Mon Jan 31 08:08:34 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5191, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987185867558912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987185867558912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1058000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "4f56d1d0-71f6-4e08-9ca3-1a563c38e650-31987185867558912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1064000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14430897, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 767, \"protected\": false, \"id_str\": \"14430897\", \"profile_background_color\": \"EBEBEB\", \"location\": \"iPhone: 37.785871,-122.405417\", \"utc_offset\": -28800, \"statuses_count\": 694, \"description\": \"President & CEO of RebellionLab - Digital strategy\", \"friends_count\": 406, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/95589251/3283-0263-retouched_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"dominiquepiotet\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"dominiquepiotet\", \"url\": \"http://www.rebellionlab.com\", \"created_at\": \"Fri Apr 18 07:57:22 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Pacific Time (US & Canada)\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 65}, \"id\": 31987077629353984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987077629353984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 19], \"id\": 14430897, \"screen_name\": \"dominiquepiotet\", \"name\": \"dominiquepiotet\", \"id_str\": \"14430897\"}], \"hashtags\": [{\"indices\": [21, 26], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @dominiquepiotet: #RSLN. Clay Shirky : Ushahidi is not high tech or low tech : it's blended tech.\", \"created_at\": \"Mon Jan 31 08:08:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5192, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987211511537664, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31987211511537664\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1064000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "97ef046f-8920-4440-8bf5-3e2feab0f554-31987211511537664"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Sane Lebrun: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1076000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [48, 53], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:08:52 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 36333549, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 686, \"protected\": false, \"id_str\": \"36333549\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3487, \"description\": \"Product Manager (global) for a videogame publisher (iPhone, iPad, etc). Graduated from ESCP Europe (Master in Management). Electro music addict.\", \"friends_count\": 1204, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/190531233/n576390766_6339_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296072137/images/themes/theme1/bg.png\", \"name\": \"Sane Lebrun\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"SaneFive\", \"url\": \"http://www.playfive.fr\", \"created_at\": \"Wed Apr 29 11:06:23 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 25}, \"id\": 31987261545390080, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987261545390080\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1076000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7ccde140-d71b-4941-8fbe-d089051caf8d-31987261545390080"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1082000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 82, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:08:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 906, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31987290372833280, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987290372833280\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1082000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2cb968cf-9e18-450d-8970-06bc3cbef44d-31987290372833280"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: Et le jean et la dégaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1109000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [43, 52], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [102, 107], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Et le jean et la d\\u00e9gaine qui va bien... RT @SaneFive: Clay shirky a un petit air de tom hanks non? :) #rsln\", \"created_at\": \"Mon Jan 31 08:09:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 5193, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null, \"listed_count\": 63}, \"id\": 31987400594948096, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987400594948096\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1109000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "54299691-eed0-495f-bf34-8041f905b6ff-31987400594948096"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "img": {
- "src": ""
- },
- "title": "B. Minded: Utiliser à bon escient le temps libre pour faire des réalisations participatives, civiques, grâce à l'information. #RSLN @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1110000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [115, 120], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Utiliser \\u00e0 bon escient le temps libre pour faire des r\\u00e9alisations participatives, civiques, gr\\u00e2ce \\u00e0 l'information. #RSLN @cshirky\", \"created_at\": \"Mon Jan 31 08:09:26 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 223, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31987405376462848, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987405376462848\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1110000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "555aed43-371a-435a-a8f9-34d4f0943ce6-31987405376462848"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln clay speak about cognitive surplus @microsoft ==",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln clay speak about cognitive surplus @microsoft ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1142000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [41, 51], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln clay speak about cognitive surplus @microsoft ==\", \"created_at\": \"Mon Jan 31 08:09:58 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1664, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987540001034240, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987540001034240\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1142000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "0ba6928c-36ac-4bb9-8cf4-ac85ec2c5e53-31987540001034240"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "img": {
- "src": ""
- },
- "title": "steamwolf: #RSLN Cognitive Surplus utilisation : a form of civic action ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1153000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN Cognitive Surplus utilisation : a form of civic action ++\", \"created_at\": \"Mon Jan 31 08:10:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18229221, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 73, \"protected\": false, \"id_str\": \"18229221\", \"profile_background_color\": \"352726\", \"listed_count\": 1, \"utc_offset\": 3600, \"statuses_count\": 1038, \"description\": \"IT senior consultant, Sciences Ph.D.\\r\\nmajor survey : NTIC, healthcare and CRM.\\r\\nSocial media and Apple addict.\\r\\nweb and innovation never stop, neither do I\\r\\n\", \"friends_count\": 228, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/67909625/wolf_forum_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/a/1296265969/images/themes/theme5/bg.gif\", \"name\": \"steamwolf\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 30, \"screen_name\": \"steamwolf\", \"url\": \"http://dagautier.tumblr.com/\", \"created_at\": \"Thu Dec 18 23:58:20 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31987584431300609, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987584431300609\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1153000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2ca29e25-fd73-4740-a738-692a59d685a8-31987584431300609"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln De l'information à l'action, le chemin n'est pas forcément aussi direct --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1162000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln De l'information \\u00e0 l'action, le chemin n'est pas forc\\u00e9ment aussi direct --\", \"created_at\": \"Mon Jan 31 08:10:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 83, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31987622867902464, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987622867902464\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1162000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "672067e8-d8ff-4f3c-8138-71ac8ee66af4-31987622867902464"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == http://t.co/DWhd8FM",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == http://t.co/DWhd8FM",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1193000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://t.co/DWhd8FM\", \"indices\": [9, 28], \"expanded_url\": \"http://twitpic.com/3v3qdr\", \"display_url\": \"twitpic.com/3v3qdr\"}]}, \"text\": \"#rsln == http://t.co/DWhd8FM\", \"created_at\": \"Mon Jan 31 08:10:49 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"listed_count\": 41, \"utc_offset\": -10800, \"statuses_count\": 1665, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"location\": \"Paris, France\", \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null}, \"id\": 31987754690678784, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31987754690678784\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1193000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d6136d85-502d-4dbd-92c7-205a3fd488e6-31987754690678784"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@cshirky)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1257000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1257000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "f1ec6223-723e-43ff-8271-261b3c92e031-31988022811561984"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1285000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value from People to Orgs (P2O, citizen as sensor) eg Open311.\", \"created_at\": \"Mon Jan 31 08:12:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4633, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988138171703296, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988138171703296\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1285000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "065e2a82-df5a-48f8-b930-64f576918362-31988138171703296"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanité--",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1288000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les citoyens sont des capteurs ... vision effrayante d'une nouvelle humanit\\u00e9--\", \"created_at\": \"Mon Jan 31 08:12:24 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 84, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31988154219102208, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988154219102208\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1288000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ebddeaf0-eee1-4802-b938-5302a2cd1f8f-31988154219102208"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "img": {
- "src": ""
- },
- "title": "Thierry Do Espirito: \"smart consumer\"... Ça doit être moi, ça... #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1309000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"smart consumer\\\"... \\u00c7a doit \\u00eatre moi, \\u00e7a... #RSLN\", \"created_at\": \"Mon Jan 31 08:12:45 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 13339372, \"verified\": false, \"profile_sidebar_fill_color\": \"DDFFCC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 496, \"protected\": false, \"id_str\": \"13339372\", \"profile_background_color\": \"9AE4E8\", \"listed_count\": 63, \"utc_offset\": 3600, \"statuses_count\": 5194, \"description\": \"Blogueur\\u20d2 Auteur\\u20d2 Expert marketing personnel\\u20d2 Personal Branding Agent\\u20d2 Speaker\\u20d2 Writer\", \"friends_count\": 330, \"location\": \"Paris\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1136651749/58390_429814743270_703353270_5044224_5871872_n_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/190951982/130820093636.jpg\", \"name\": \"Thierry Do Espirito\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 9, \"screen_name\": \"Doespirito\", \"url\": \"http://www.tde.fr\", \"created_at\": \"Mon Feb 11 08:21:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"BDDCAD\", \"following\": null}, \"id\": 31988242005884928, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988242005884928\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1309000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "63252f66-2e00-4308-b0e4-a35101384770-31988242005884928"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "img": {
- "src": ""
- },
- "title": "Stanm: Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1327000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [66, 71], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Seeclickfix, fixmystret.com: citizens as sensors (not censors ;-) #RSLN\", \"created_at\": \"Mon Jan 31 08:13:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 907, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31988317780189185, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988317780189185\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1327000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "7adfa340-c194-4df5-b785-a1b475ea7a30-31988317780189185"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1338000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [90, 95], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"La segmentation de la participation du public de Clay Shirky est simple, mais robuste. ++ #RSLN\", \"created_at\": \"Mon Jan 31 08:13:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6853, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31988363938496513, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988363938496513\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1338000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d158ccd2-47e2-4a03-b367-54435bbf0d65-31988363938496513"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "img": {
- "src": ""
- },
- "title": "marjoriepaillon: RT @eni_kao: [Politix] Permettre aux citoyens d'être des senseurs : ils fournissent la donnée au bénéfice des gouvernements. #RSLN (@csh ...",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1355000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [119, 127], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [112, 117], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@cshirky)\", \"created_at\": \"Mon Jan 31 08:11:53 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9111, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31988022811561984, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988022811561984\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 11], \"id\": 14974710, \"screen_name\": \"eni_kao\", \"name\": \"[Enikao]\", \"id_str\": \"14974710\"}, {\"indices\": [132, 136], \"id\": 4687901, \"screen_name\": \"CSH\", \"name\": \"Charles Harvey\", \"id_str\": \"4687901\"}], \"hashtags\": [{\"indices\": [125, 130], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"RT @eni_kao: [Politix] Permettre aux citoyens d'\\u00eatre des senseurs : ils fournissent la donn\\u00e9e au b\\u00e9n\\u00e9fice des gouvernements. #RSLN (@csh ...\", \"created_at\": \"Mon Jan 31 08:13:31 +0000 2011\", \"truncated\": true, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 16039806, \"verified\": false, \"profile_sidebar_fill_color\": \"F3F3F3\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 3807, \"protected\": false, \"id_str\": \"16039806\", \"profile_background_color\": \"EBEBEB\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1935, \"description\": \"Journaliste News, Web & Mag \\r\\n// R\\u00e9f\\u00e9rences: @ilovepolitics,BFMTV,France 5 \", \"friends_count\": 622, \"profile_link_color\": \"990000\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/401202539/Image_1_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme7/bg.gif\", \"name\": \"marjoriepaillon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"marjoriepaillon\", \"url\": \"http://www.ilovepolitics.info\", \"created_at\": \"Fri Aug 29 09:08:16 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"DFDFDF\", \"following\": null, \"listed_count\": 346}, \"id\": 31988432993525761, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31988432993525761\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1355000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "71f695ce-68b1-481a-96c1-19452097f2ec-31988432993525761"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln == \"citizen as sensor\" / \"smart consumer\" / ...",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1366000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln == \\\"citizen as sensor\\\" / \\\"smart consumer\\\" / ...\", \"created_at\": \"Mon Jan 31 08:13:42 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1666, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988479382519808, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988479382519808\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1366000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "224867c5-0c16-41be-9008-376786d28172-31988479382519808"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1422000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org to People, Smart Consumers, eg info on electrcity consumption, electoral donations.\", \"created_at\": \"Mon Jan 31 08:14:38 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4634, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31988714007699456, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988714007699456\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1422000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a1bc35a2-85e6-4b33-b6fa-258d59f19979-31988714007699456"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "la pinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1446000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null, \"listed_count\": 159}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1446000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c798f63b-b5f0-420c-8679-bce3e5e871b2-31988814801010688"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "B. Minded: \"Rendre la donnée publique pour que les citoyens éclairent les décisions politiques et prennent des décisions éclairées\" @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1452000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"\\\"Rendre la donn\\u00e9e publique pour que les citoyens \\u00e9clairent les d\\u00e9cisions politiques et prennent des d\\u00e9cisions \\u00e9clair\\u00e9es\\\" @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:15:08 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.twhirl.org\\\" rel=\\\"nofollow\\\">Seesmic twhirl</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 138714711, \"verified\": false, \"profile_sidebar_fill_color\": \"fcfcfc\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 225, \"protected\": false, \"id_str\": \"138714711\", \"profile_background_color\": \"fcfcfc\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 224, \"description\": \"Burson-Marsteller Paris : agence conseil en relations publiques, affaires publiques et communication de crise. \", \"friends_count\": 113, \"location\": \"Boulogne-Billancourt\", \"profile_link_color\": \"ed4f27\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/874932501/Logo_Twitter_2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/98374254/B-Minded_Twitter_degrade.jpg\", \"name\": \"B. Minded\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"B_Minded\", \"url\": \"http://www.bmparisblog.com\", \"created_at\": \"Fri Apr 30 10:57:59 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ed4f27\", \"following\": null}, \"id\": 31988838863732736, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988838863732736\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1452000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "6145c2ec-41f7-4bba-b617-494348d471d2-31988838863732736"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question",
- "color": "16763904",
- "polemics": ["Q", "KO", "OK", "REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1458000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln polemic syntaxe : ++ : i like / -- : i dislike / == : reference / ?? : Question\", \"created_at\": \"Mon Jan 31 08:15:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1667, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31988863538831361, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988863538831361\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1458000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c68cb5fb-f2e1-49a6-8adb-f18b81ca1f35-31988863538831361"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic value: Org-to-Org, Partnership, eg Code for America.",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1465000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic value: Org-to-Org, Partnership, eg Code for America.\", \"created_at\": \"Mon Jan 31 08:15:21 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4635, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31988892798291968, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988892798291968\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1465000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ff4cc5ef-239b-4b6f-9a5a-43980f1f74b6-31988892798291968"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "img": {
- "src": ""
- },
- "title": "Stanm: RT @flapinta: code for america : le réseau social collaboratif des villes US #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1490000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [63, 68], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:02 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 17152456, \"verified\": false, \"profile_sidebar_fill_color\": \"a6a3a6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 1320, \"protected\": false, \"id_str\": \"17152456\", \"profile_background_color\": \"131516\", \"listed_count\": 159, \"utc_offset\": 3600, \"statuses_count\": 3123, \"description\": \"Web Marketing Manager and 2.0:HR brand, employer e-reputation, 2.0 enterprise, corporate social network, digital and social medias\", \"friends_count\": 404, \"location\": \"Paris\", \"profile_link_color\": \"fc0324\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1142246922/IMG_3406_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/53757829/twilk_background.jpg\", \"name\": \"la pinta\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 6, \"screen_name\": \"flapinta\", \"url\": \"http://www.delicious.com/francklapinta\", \"created_at\": \"Tue Nov 04 09:59:34 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"424142\", \"following\": null}, \"id\": 31988814801010688, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988814801010688\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 12], \"id\": 17152456, \"screen_name\": \"flapinta\", \"name\": \"la pinta\", \"id_str\": \"17152456\"}], \"hashtags\": [{\"indices\": [77, 82], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @flapinta: code for america : le r\\u00e9seau social collaboratif des villes US #rsln\", \"created_at\": \"Mon Jan 31 08:15:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"listed_count\": 40, \"utc_offset\": 3600, \"statuses_count\": 908, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"location\": \"Paris\", \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null}, \"id\": 31988999027429376, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31988999027429376\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1490000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "104f925e-221c-4e97-a076-2405e5e14987-31988999027429376"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1544000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Civic Value: People to People, Platform for Civic Action, eg what I'm working on :)\", \"created_at\": \"Mon Jan 31 08:16:40 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4636, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989228145479680, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989228145479680\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1544000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b55fb9b7-b082-4db6-a899-b2088f85c882-31989228145479680"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "img": {
- "src": ""
- },
- "title": "Garrett Goodman: @cshirky : Govs are afraid of synchronized groups. That’s what changes politics. #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1554000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 8], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [81, 86], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"@cshirky : Govs are afraid of synchronized groups. That\\u2019s what changes politics. #rsln\", \"created_at\": \"Mon Jan 31 08:16:50 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": \"6141832\", \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": \"cshirky\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 28351245, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 348, \"protected\": false, \"id_str\": \"28351245\", \"profile_background_color\": \"00a4da\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 962, \"description\": \"New media man. Technology enthusiast, gadget fanatic, and avid amateur photographer.\", \"friends_count\": 679, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1129450056/profile_pic_normal.JPG\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a0.twimg.com/profile_background_images/91764736/Garrett_Twitter.png\", \"name\": \"Garrett Goodman\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"GarrettGoodman\", \"url\": \"http://www.garrettgoodman.com\", \"created_at\": \"Thu Apr 02 14:52:14 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 15}, \"id\": 31989270000439297, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989270000439297\", \"in_reply_to_user_id\": 6141832}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1554000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "676ae1cb-377f-441e-82d3-3e1069620518-31989270000439297"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln La Lybie interdit les match de football par peur de manif anti gouvernement --",
- "color": "16763904",
- "polemics": ["KO"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1560000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln La Lybie interdit les match de football par peur de manif anti gouvernement --\", \"created_at\": \"Mon Jan 31 08:16:56 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 30, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989295094960128, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989295094960128\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1560000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a688883e-99e5-4b56-b247-262cb9c188b3-31989295094960128"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "img": {
- "src": ""
- },
- "title": "Vincent Puig: #rsln l'image culturelle produite par la foule est elle conforme à l'image culturelle que nous imaginons pour nos groupes sociaux ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1570000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln l'image culturelle produite par la foule est elle conforme \\u00e0 l'image culturelle que nous imaginons pour nos groupes sociaux ??\", \"created_at\": \"Mon Jan 31 08:17:06 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"location\": \"Paris, France\", \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 5}, \"id\": 31989337163825152, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989337163825152\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1570000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "359e7c36-ad95-4001-aa56-b457c6559df3-31989337163825152"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "Stanm: 'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1584000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [82, 87], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"'Governemnts are afraid of synchronized group'. Better expression than smart mobs #RSLN\", \"created_at\": \"Mon Jan 31 08:17:20 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7937452, \"verified\": false, \"profile_sidebar_fill_color\": \"e0ff92\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 537, \"protected\": false, \"id_str\": \"7937452\", \"profile_background_color\": \"9ae4e8\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 909, \"description\": \"Social Media Analyst, Politigeek (netpolitique.net)\", \"friends_count\": 224, \"profile_link_color\": \"0000ff\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/27737392/stansp2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296173346/images/themes/theme1/bg.png\", \"name\": \"Stanm\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 3, \"screen_name\": \"Stanm\", \"url\": null, \"created_at\": \"Fri Aug 03 17:51:17 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"87bc44\", \"following\": null, \"listed_count\": 40}, \"id\": 31989392583168000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989392583168000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1584000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "d144b130-a959-4602-a2c5-2c2ccb8a5ef0-31989392583168000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Robin Berjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1599000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null, \"listed_count\": 76}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1599000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "b8cb2f37-0cb6-45c6-8e37-79da8f7d53b1-31989455556444160"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"Les gouvernements n'ont pas peur des gens individuellement informés, ils ont peur des groupes synchronisés\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1610000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [121, 129], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [130, 135], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"Les gouvernements n'ont pas peur des gens individuellement inform\\u00e9s, ils ont peur des groupes synchronis\\u00e9s\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:17:46 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3030, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 9112, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null, \"listed_count\": 230}, \"id\": 31989502138388480, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989502138388480\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1610000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "23cd3ce7-35bc-4d8b-9909-d14a9ade0dba-31989502138388480"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "img": {
- "src": ""
- },
- "title": "Guillaume Decugis: \"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\" @cshirky #rsln",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1637000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [101, 109], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [110, 115], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"governments have nothing to fear of informed individuals; but they should fear synchronized crowds\\\" @cshirky #rsln\", \"created_at\": \"Mon Jan 31 08:18:13 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 24404173, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 597, \"protected\": false, \"id_str\": \"24404173\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1706, \"description\": \"Mobile & Web entrepreneur (Goojet / Scoop.it CEO). Skier. Gamer.\", \"friends_count\": 408, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1107041216/GD_N_B_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296072137/images/themes/theme14/bg.gif\", \"name\": \"Guillaume Decugis\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 11, \"screen_name\": \"gdecugis\", \"url\": \"http://www.scoop.it\", \"created_at\": \"Sat Mar 14 18:03:10 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 46}, \"id\": 31989616357679105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989616357679105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1637000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "22741a60-5f15-4c3f-8439-5c6aea35fac5-31989616357679105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "img": {
- "src": ""
- },
- "title": "Rémi Rivas: #RSLN. Quelle est la nécessité d'une structure organisationnelle pour traiter l'information à l'heure ou chaque citoyen est un informateur ??",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1642000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"#RSLN. Quelle est la n\\u00e9cessit\\u00e9 d'une structure organisationnelle pour traiter l'information \\u00e0 l'heure ou chaque citoyen est un informateur?\", \"created_at\": \"Mon Jan 31 08:18:18 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"web\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 201324303, \"verified\": false, \"profile_sidebar_fill_color\": \"ffff00\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 71, \"protected\": false, \"id_str\": \"201324303\", \"profile_background_color\": \"000000\", \"location\": \"Paris - Ze capitale of ze love\", \"utc_offset\": 3600, \"statuses_count\": 177, \"description\": \"R\\u00e9mi Rivas - Consultant Marketing NTIC - J'aime le Marketing, La Cantine, Seth Godin, TED et New ORDER. Actuellement au D\\u00e9veloppement Digital chez Altavia.\", \"friends_count\": 218, \"profile_link_color\": \"ff002b\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1143045761/photo_normal.jpeg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/179043662/1291720196yellowwhite.jpg\", \"name\": \"R\\u00e9mi Rivas\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"remirivas\", \"url\": \"http://www.doyoubuzz.com/remi-rivas\", \"created_at\": \"Mon Oct 11 16:10:35 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"ffbf00\", \"following\": null, \"listed_count\": 4}, \"id\": 31989637765406720, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989637765406720\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1642000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65975110-6493-43b3-afe8-7002d8a5efd8-31989637765406720"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "img": {
- "src": ""
- },
- "title": "NicolasVanbremeersch: L'Internet, c'est un peu comme le foot : ça aide à coordonner les sentiments. Très vrai pour les rues arabes actuellement. #RSLN ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1652000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [123, 128], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"L'Internet, c'est un peu comme le foot : \\u00e7a aide \\u00e0 coordonner les sentiments. Tr\\u00e8s vrai pour les rues arabes actuellement. #RSLN\", \"created_at\": \"Mon Jan 31 08:18:28 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 6284172, \"verified\": false, \"profile_sidebar_fill_color\": \"ffe224\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 32317, \"protected\": false, \"id_str\": \"6284172\", \"profile_background_color\": \"8c8c8c\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 6854, \"description\": \"I believe in prolonged adolescence. Jay McInerney.\", \"friends_count\": 844, \"profile_link_color\": \"056385\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/1212628880/42196_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/168728872/door.jpg\", \"name\": \"NicolasVanbremeersch\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 1, \"screen_name\": \"versac\", \"url\": \"http://www.spintank.fr\", \"created_at\": \"Thu May 24 10:14:27 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"757575\", \"following\": null, \"listed_count\": 586}, \"id\": 31989680345976832, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989680345976832\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1652000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "296f36b9-4c1c-4d2c-9686-64e40002fda7-31989680345976832"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "\"people talk abiut what they care about\" ++ #rsln",
- "img": {
- "src": ""
- },
- "title": "SandraValerii: \"people talk abiut what they care about\" ++ #rsln",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1684000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [44, 49], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"\\\"people talk abiut what they care about\\\" ++ #rsln\", \"created_at\": \"Mon Jan 31 08:19:00 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 75989724, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 95, \"protected\": false, \"id_str\": \"75989724\", \"profile_background_color\": \"C0DEED\", \"location\": \"\", \"utc_offset\": null, \"statuses_count\": 52, \"description\": \"\", \"friends_count\": 154, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/427409639/moi2_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296245718/images/themes/theme1/bg.png\", \"name\": \"SandraValerii\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"SandraValerii\", \"url\": null, \"created_at\": \"Mon Sep 21 09:01:00 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": null, \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null, \"listed_count\": 4}, \"id\": 31989814358179840, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989814358179840\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1684000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "700fc385-f74b-4990-9995-c449920ca767-31989814358179840"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "img": {
- "src": ""
- },
- "title": "Alexandre Monnin: #rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==",
- "color": "16763904",
- "polemics": ["REF"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1696000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [44, 86], \"expanded_url\": null}]}, \"text\": \"#rsln Le lien vers le livetwit de l'IRI est http://amateur.iri.centrepompidou.fr/live/ ==\", \"created_at\": \"Mon Jan 31 08:19:12 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 7409472, \"verified\": false, \"profile_sidebar_fill_color\": \"E3E2DE\", \"is_translator\": false, \"profile_text_color\": \"634047\", \"followers_count\": 317, \"protected\": false, \"id_str\": \"7409472\", \"profile_background_color\": \"EDECE9\", \"location\": \"Paris\", \"utc_offset\": -10800, \"statuses_count\": 2456, \"description\": \"PhD student in Philosophy working on ontologies (computer & philo ones), tagging, Semantic Web, DigitalH, but mostly advocate for the Philosophy of the Web.\", \"friends_count\": 441, \"profile_link_color\": \"088253\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/513016932/twitterProfilePhoto_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296173346/images/themes/theme3/bg.gif\", \"name\": \"Alexandre Monnin\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 6, \"screen_name\": \"aamonnz\", \"url\": \"http://execo.univ-paris1.fr/spip.php?article67\", \"created_at\": \"Wed Jul 11 18:52:41 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"D3D2CF\", \"following\": null, \"listed_count\": 59}, \"id\": 31989862680764417, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989862680764417\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1696000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "e0b04beb-d86d-4767-9bce-7b20292652cf-31989862680764417"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "img": {
- "src": ""
- },
- "title": "tibo c: #rsln les forums du moyen orient destinés à la base au football sont devenus des forums d'organisation anti gouvernement ! ++",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1719000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln les forums du moyen orient destin\\u00e9s \\u00e0 la base au football sont devenus des forums d'organisation anti gouvernement ! ++\", \"created_at\": \"Mon Jan 31 08:19:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 31, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31989961112686592, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989961112686592\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1719000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "28ad17ee-7a32-453a-aeb3-69263c8ad9e2-31989961112686592"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "img": {
- "src": ""
- },
- "title": "Pierre Mounier: Je suis aux rencontres #RSLN avec Clay Shirky @microsoft",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1720000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [46, 56], \"id\": 74286565, \"screen_name\": \"Microsoft\", \"name\": \"Microsoft\", \"id_str\": \"74286565\"}], \"hashtags\": [{\"indices\": [23, 28], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"Je suis aux rencontres #RSLN avec Clay Shirky @microsoft\", \"created_at\": \"Mon Jan 31 08:19:36 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14233770, \"verified\": false, \"profile_sidebar_fill_color\": \"99CC33\", \"is_translator\": false, \"profile_text_color\": \"3E4415\", \"followers_count\": 629, \"protected\": false, \"id_str\": \"14233770\", \"profile_background_color\": \"352726\", \"listed_count\": 102, \"utc_offset\": 3600, \"statuses_count\": 2468, \"description\": \"Directeur adjoint du Cl\\u00e9o. Fondateur et principal auteur d'Homo Numericus.\", \"friends_count\": 306, \"location\": \"Paris\", \"profile_link_color\": \"D02B55\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/52135065/pmounier_bd_moyen_normal.gif\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/190199985/twilk_background_4d287d7ccb851.jpg\", \"name\": \"Pierre Mounier\", \"lang\": \"fr\", \"profile_background_tile\": true, \"favourites_count\": 10, \"screen_name\": \"piotrr70\", \"url\": \"http://pierremounier.net\", \"created_at\": \"Thu Mar 27 08:45:11 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"829D5E\", \"following\": null}, \"id\": 31989963117568000, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989963117568000\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1720000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ab421284-1030-445c-9513-0dd3ca060bcc-31989963117568000"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "[Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "img": {
- "src": ""
- },
- "title": "[Enikao]: [Kouote] \"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont allés y parler des leçons de Sidibouzid\" - @cshirky #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1723000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [126, 134], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [135, 140], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"[Kouote] \\\"En Lybie, les forums de foot sont devenus politiques, les tunisiens sont all\\u00e9s y parler des le\\u00e7ons de Sidibouzid\\\" - @cshirky #RSLN\", \"created_at\": \"Mon Jan 31 08:19:39 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://seesmic.com/seesmic_desktop/sd2\\\" rel=\\\"nofollow\\\">Seesmic Desktop</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14974710, \"verified\": false, \"profile_sidebar_fill_color\": \"FDFDFD\", \"is_translator\": false, \"profile_text_color\": \"000000\", \"followers_count\": 3031, \"protected\": false, \"id_str\": \"14974710\", \"profile_background_color\": \"FFFFFF\", \"listed_count\": 230, \"utc_offset\": 3600, \"statuses_count\": 9113, \"description\": \"Dealer d'opinion [ Kronikeur du d\\u00e9risoire | Changeur d'Umeur | Go\\u00fbteur d'Yd\\u00e9s ]\", \"friends_count\": 668, \"location\": \"Paris\", \"profile_link_color\": \"FF0000\", \"profile_image_url\": \"http://a0.twimg.com/profile_images/1051901416/Enikao_normal.GIF\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/5424599/Background__Enikao_.png\", \"name\": \"[Enikao]\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2246, \"screen_name\": \"eni_kao\", \"url\": \"http://enikao.wordpress.com\", \"created_at\": \"Sun Jun 01 20:46:48 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"010300\", \"following\": null}, \"id\": 31989978137370624, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989978137370624\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1723000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "2fbb7622-d712-42be-9c54-45d3c0c7fcf8-31989978137370624"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "#rsln ?? Technology = Politique ?",
- "img": {
- "src": ""
- },
- "title": "Samuel Huron: #rsln ?? Technology = Politique ?",
- "color": "16763904",
- "polemics": ["Q"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1747000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln ?? Technology = Politique ?\", \"created_at\": \"Mon Jan 31 08:20:03 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://mobile.twitter.com\\\" rel=\\\"nofollow\\\">Twitter for Android</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 14905766, \"verified\": false, \"profile_sidebar_fill_color\": \"ffffff\", \"is_translator\": false, \"profile_text_color\": \"4c9c8f\", \"followers_count\": 314, \"protected\": false, \"id_str\": \"14905766\", \"profile_background_color\": \"000000\", \"location\": \"Paris, France\", \"utc_offset\": -10800, \"statuses_count\": 1668, \"description\": \"Designer developper @ IRI Centre Pompidou and PhD student in Computer Science ; #ui #infoviz #Webdesign, #WebScience, #philosophy, #open #innovation\", \"friends_count\": 467, \"profile_link_color\": \"b3009b\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/309624209/Cy2_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a2.twimg.com/profile_background_images/51130859/3577914799_1350cff02e.jpg\", \"name\": \"Samuel Huron\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 230, \"screen_name\": \"cybunk\", \"url\": \"http://www.cybunk.com\", \"created_at\": \"Mon May 26 06:02:18 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Greenland\", \"profile_sidebar_border_color\": \"b3009b\", \"following\": null, \"listed_count\": 41}, \"id\": 31990076544131074, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990076544131074\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1747000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "65db3699-f88b-49af-8a2f-94ae92352adf-31990076544131074"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "img": {
- "src": ""
- },
- "title": "Lionel Natarianni: Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky",
- "color": "16763904",
- "polemics": ["OK"],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1753000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [52, 57], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"Gouvernements afraid of synchronisation of citizens #rsln ++ Clay Shirky\", \"created_at\": \"Mon Jan 31 08:20:09 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.tweetdeck.com\\\" rel=\\\"nofollow\\\">TweetDeck</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 18047103, \"verified\": false, \"profile_sidebar_fill_color\": \"efefef\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 261, \"protected\": false, \"id_str\": \"18047103\", \"profile_background_color\": \"131516\", \"location\": \"Paris\", \"utc_offset\": 3600, \"statuses_count\": 1600, \"description\": \"Researcher, Trend tracker, Telecomunications & Social Media.\\r\\nReal-Time Web addict\", \"friends_count\": 496, \"profile_link_color\": \"009999\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/1219841315/lionel-sbook_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/profile_background_images/80051491/twilk_background_4b8e2d0612f83.jpg\", \"name\": \"Lionel Natarianni\", \"lang\": \"en\", \"profile_background_tile\": true, \"favourites_count\": 2416, \"screen_name\": \"lionnoge\", \"url\": null, \"created_at\": \"Thu Dec 11 13:30:58 +0000 2008\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"eeeeee\", \"following\": null, \"listed_count\": 13}, \"id\": 31990101542182912, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990101542182912\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1753000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "68aee21b-5de2-4201-b3fd-bc5c557eabfc-31990101542182912"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "img": {
- "src": ""
- },
- "title": "tibo c: RT @vincentpuig: #rsln pour le tweet polémique plus facile:\nhttp://amateur.iri.centrepompidou.fr/live/",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1758000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [43, 85], \"expanded_url\": null}]}, \"text\": \"#rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:06:25 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://amateur.iri.centrepompidou.fr/\\\" rel=\\\"nofollow\\\">Annotation pol\\u00e9mique par tweeter</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 68424173, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 52, \"protected\": false, \"id_str\": \"68424173\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 5, \"utc_offset\": 3600, \"statuses_count\": 85, \"description\": \"Co-founder of IRI/Centre Pompidou, Research Institute on cultural technologies (annotation tools, collaborative Web and social networks, multimodal interfaces)\", \"friends_count\": 5, \"location\": \"Paris, France\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a3.twimg.com/profile_images/379424006/PortaitVP120Ko_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296081712/images/themes/theme1/bg.png\", \"name\": \"Vincent Puig\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 0, \"screen_name\": \"vincentpuig\", \"url\": \"http://www.iri.centrepompidou.fr\", \"created_at\": \"Mon Aug 24 14:49:27 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31986647222452224, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31986647222452224\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 68424173, \"screen_name\": \"vincentpuig\", \"name\": \"Vincent Puig\", \"id_str\": \"68424173\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": [{\"url\": \"http://amateur.iri.centrepompidou.fr/live/\", \"indices\": [60, 102], \"expanded_url\": null}]}, \"text\": \"RT @vincentpuig: #rsln pour le tweet pol\\u00e9mique plus facile:\\nhttp://amateur.iri.centrepompidou.fr/live/\", \"created_at\": \"Mon Jan 31 08:20:14 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 226510471, \"verified\": false, \"profile_sidebar_fill_color\": \"DDEEF6\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4, \"protected\": false, \"id_str\": \"226510471\", \"profile_background_color\": \"C0DEED\", \"listed_count\": 0, \"utc_offset\": 3600, \"statuses_count\": 32, \"description\": null, \"friends_count\": 12, \"location\": null, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/a/1294785484/images/default_profile_5_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a3.twimg.com/a/1294785484/images/themes/theme1/bg.png\", \"name\": \"tibo c\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 1, \"screen_name\": \"tibo_c\", \"url\": null, \"created_at\": \"Tue Dec 14 10:17:02 +0000 2010\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"C0DEED\", \"following\": null}, \"id\": 31990124346613762, \"place\": null, \"retweet_count\": 1, \"geo\": null, \"id_str\": \"31990124346613762\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1758000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "588e89ba-3873-41d9-bd0e-9717b3ae6dc9-31990124346613762"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "img": {
- "src": ""
- },
- "title": "Cyril Attias: @SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1766000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [0, 9], \"id\": 36333549, \"screen_name\": \"SaneFive\", \"name\": \"Sane Lebrun\", \"id_str\": \"36333549\"}], \"hashtags\": [{\"indices\": [107, 112], \"text\": \"RSLN\"}], \"urls\": []}, \"text\": \"@SaneFive je confirme aussi bien le physique que la voix on dirait woody qui nous raconte le crowdsourcing #RSLN\", \"created_at\": \"Mon Jan 31 08:20:22 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": \"31987261545390080\", \"coordinates\": null, \"in_reply_to_user_id_str\": \"36333549\", \"source\": \"<a href=\\\"http://itunes.apple.com/app/twitter/id333903271?mt=8\\\" rel=\\\"nofollow\\\">Twitter for iPad</a>\", \"in_reply_to_status_id\": 31987261545390080, \"in_reply_to_screen_name\": \"SaneFive\", \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1944301, \"verified\": false, \"profile_sidebar_fill_color\": \"d0d0d0\", \"is_translator\": false, \"profile_text_color\": \"2d2d2d\", \"followers_count\": 3141, \"protected\": false, \"id_str\": \"1944301\", \"profile_background_color\": \"ffffff\", \"location\": \"Paris - France\", \"utc_offset\": 3600, \"statuses_count\": 6560, \"description\": \"French blogger, digital expert \\r\\n10 years on digital agency - Ogilvy Paris, TBWA\\\\PARIS - CEO at influence digitale, l'agence des m\\u00e9dias sociaux @1fluencedigital\", \"friends_count\": 1768, \"profile_link_color\": \"28b4ec\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/1175910852/cattias_gravatar_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": true, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/profile_background_images/167329311/new_twitter_theme_def2.jpg\", \"name\": \"Cyril Attias\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 40, \"screen_name\": \"cyril\", \"url\": \"http://www.attias.net/blog\", \"created_at\": \"Thu Mar 22 22:10:39 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"28b4ec\", \"following\": null, \"listed_count\": 295}, \"id\": 31990155749363712, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990155749363712\", \"in_reply_to_user_id\": 36333549}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1766000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "ee49a97b-e106-4233-9e28-294798e90527-31990155749363712"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "img": {
- "src": ""
- },
- "title": "Em. de Saint-Bon: RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1767000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"favorited\": false, \"retweeted_status\": {\"favorited\": false, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [96, 104], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [0, 5], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"#rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:17:35 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://twitter.com/\\\" rel=\\\"nofollow\\\">Twitter for iPhone</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 25805235, \"verified\": false, \"profile_sidebar_fill_color\": \"252429\", \"is_translator\": false, \"profile_text_color\": \"666666\", \"followers_count\": 701, \"protected\": false, \"id_str\": \"25805235\", \"profile_background_color\": \"1A1B1F\", \"listed_count\": 76, \"utc_offset\": 3600, \"statuses_count\": 4637, \"description\": \"Standards, Politics 2.0, at times Vociferous Hired Gun\", \"friends_count\": 421, \"location\": \"Paris\", \"profile_link_color\": \"2FC2EF\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/329696008/robin-outside-square_normal.jpg\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": true, \"profile_background_image_url\": \"http://a3.twimg.com/a/1296099941/images/themes/theme9/bg.gif\", \"name\": \"Robin Berjon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 33, \"screen_name\": \"robinberjon\", \"url\": \"http://berjon.com/\", \"created_at\": \"Sun Mar 22 10:48:59 +0000 2009\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"181A1E\", \"following\": null}, \"id\": 31989455556444160, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31989455556444160\", \"in_reply_to_user_id\": null}, \"contributors\": null, \"entities\": {\"user_mentions\": [{\"indices\": [3, 15], \"id\": 25805235, \"screen_name\": \"robinberjon\", \"name\": \"Robin Berjon\", \"id_str\": \"25805235\"}, {\"indices\": [113, 121], \"id\": 6141832, \"screen_name\": \"cshirky\", \"name\": \"Clay Shirky\", \"id_str\": \"6141832\"}], \"hashtags\": [{\"indices\": [17, 22], \"text\": \"rsln\"}], \"urls\": []}, \"text\": \"RT @robinberjon: #rsln Governments aren't afraid of informed individuals, they're afraid of synchronised groups. @cshirky\", \"created_at\": \"Mon Jan 31 08:20:23 +0000 2011\", \"truncated\": false, \"retweeted\": false, \"in_reply_to_status_id_str\": null, \"coordinates\": null, \"in_reply_to_user_id_str\": null, \"source\": \"<a href=\\\"http://www.echofon.com/\\\" rel=\\\"nofollow\\\">Echofon</a>\", \"in_reply_to_status_id\": null, \"in_reply_to_screen_name\": null, \"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": false, \"id\": 7298822, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"is_translator\": false, \"profile_text_color\": \"333333\", \"followers_count\": 4807, \"protected\": false, \"id_str\": \"7298822\", \"profile_background_color\": \"022330\", \"listed_count\": 116, \"utc_offset\": 3600, \"statuses_count\": 1920, \"description\": \"Entrepreneur, Social Media Officer, motorcycler, guitar player, father of 4 kids: plenty of good information for you!\", \"friends_count\": 1281, \"location\": \"iPhone: 48.845192,2.237256\", \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a1.twimg.com/profile_images/752839109/2007_03_Emmanuel_de_Saint-Bon_Bdef_normal.png\", \"notifications\": null, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a1.twimg.com/a/1296156503/images/themes/theme17/bg.gif\", \"name\": \"Em. de Saint-Bon\", \"lang\": \"en\", \"profile_background_tile\": false, \"favourites_count\": 42, \"screen_name\": \"saintbon\", \"url\": \"http://www.myblognote.com\", \"created_at\": \"Fri Jul 06 18:38:05 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null}, \"id\": 31990160874799105, \"place\": null, \"retweet_count\": 0, \"geo\": null, \"id_str\": \"31990160874799105\", \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1767000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "c89eea8d-e31e-4783-89b9-a682750f3e58-31990160874799105"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "img": {
- "src": ""
- },
- "title": "Alexis MONS: Le débat #RSLN - Le livre numérique, c’est pour bientôt ? http://ht.ly/3N4Ma",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1778000,
- "meta": {
- "dc:contributor": "perso",
- "dc:source": {
- "mimetype": "application/json",
- "url": "http://dev.twitter.com",
- "content": "{\"user\": {\"follow_request_sent\": null, \"profile_use_background_image\": true, \"id\": 1147131, \"verified\": false, \"profile_sidebar_fill_color\": \"C0DFEC\", \"profile_text_color\": \"333333\", \"followers_count\": 675, \"protected\": false, \"location\": \"Limoges, France\", \"profile_background_color\": \"022330\", \"id_str\": \"1147131\", \"utc_offset\": 3600, \"statuses_count\": 1524, \"description\": \"Cofounder and VP Strategy of groupeReflect\", \"friends_count\": 321, \"profile_link_color\": \"0084B4\", \"profile_image_url\": \"http://a2.twimg.com/profile_images/304999987/AM2009_normal.jpeg\", \"is_translator\": false, \"show_all_inline_media\": false, \"geo_enabled\": false, \"profile_background_image_url\": \"http://a2.twimg.com/a/1296156503/images/themes/theme15/bg.png\", \"name\": \"Alexis MONS\", \"lang\": \"fr\", \"profile_background_tile\": false, \"favourites_count\": 11, \"screen_name\": \"AlecM\", \"notifications\": null, \"url\": \"http://about.me/alexismons\", \"created_at\": \"Wed Mar 14 09:44:56 +0000 2007\", \"contributors_enabled\": false, \"time_zone\": \"Paris\", \"profile_sidebar_border_color\": \"a8c7f7\", \"following\": null, \"listed_count\": 50}, \"favorited\": false, \"entities\": {\"user_mentions\": [], \"hashtags\": [{\"indices\": [9, 14], \"text\": \"RSLN\"}], \"urls\": [{\"indices\": [58, 76], \"url\": \"http://ht.ly/3N4Ma\", \"expanded_url\": null}]}, \"contributors\": null, \"truncated\": false, \"text\": \"Le d\\u00e9bat #RSLN - Le livre num\\u00e9rique, c\\u2019est pour bient\\u00f4t ? http://ht.ly/3N4Ma\", \"created_at\": \"Mon Jan 31 08:20:34 +0000 2011\", \"retweeted\": false, \"in_reply_to_status_id\": null, \"coordinates\": null, \"id\": 31990208165576705, \"source\": \"<a href=\\\"http://www.hootsuite.com\\\" rel=\\\"nofollow\\\">HootSuite</a>\", \"in_reply_to_status_id_str\": null, \"place\": null, \"id_str\": \"31990208165576705\", \"in_reply_to_screen_name\": null, \"retweet_count\": 0, \"geo\": null, \"in_reply_to_user_id_str\": null, \"in_reply_to_user_id\": null}"
- },
- "dc:creator": "perso",
- "id-ref": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:modified": "2012-05-07T10:11:06.746777"
- },
- "end": 1778000,
- "tags": null,
- "color": "16763904",
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "id": "a99b2916-cd16-4322-af47-e14a862e5241-31990208165576705"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "chapitrage",
- "id": "c_E0FF6CF0-B8E9-8432-8B92-293EFFFFA827",
- "dc:created": "2012-05-07T10:11:06.721324",
- "dc:description": "",
- "dc:modified": "2012-05-07T10:11:06.721324"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Tweets",
- "id": "16b010ab-9050-4d8d-8082-3803031b0499",
- "dc:created": "2012-05-07T10:11:06.746777",
- "dc:description": "Tweets",
- "dc:modified": "2012-05-07T10:11:06.746777"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/json/return-data.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-{
- "meta": {
- "creator": "admin",
- "created": "Tue May 29 2012 18:05:31 GMT+0200 (Romance Daylight Time)"
- },
- "annotations": [
- {
- "begin": 0,
- "end": 290685,
- "tags": [
- "#amateur"
- ],
- "media": "9a493932-3053-11e0-862b-00145ea49a02",
- "content": {
- "data": "Test d'annotation #amateur ++"
- },
- "type_title": "Contributions",
- "type": "c_1e2d0340-a9a8-11e1-9466-08002791f1b7",
- "id": "s_1e2e3f4e-a9a8-11e1-9466-08002791f1b7"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/jwplayer.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,84 +0,0 @@
-<!doctype html>
-<html>
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Metadataplayer test with JwPlayer</title>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <link href='test.css' rel='stylesheet' type='text/css'>
- <script type="text/javascript" src="metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- <script type="text/javascript" src="test-config.js" type="text/javascript"></script>
- </head>
-
- <body>
- <h1>Metadataplayer test with JwPlayer</h1>
- <div id="LdtPlayer"></div>
- <div id="AnnotationsListContainer"></div>
- <script type="text/javascript">
- IriSP.libFiles.defaultDir = "libs/";
- IriSP.language = 'fr';
- IriSP.widgetsDir = "metadataplayer";
- var _metadata = {
- url: 'json/ldt-jwplayer.json',
-// url: 'http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/cljson/id/5a893570-ca73-11e1-9443-00145ea4a2be?callback=?',
- format: 'ldt'
- };
- var _config = {
- width : 550,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : 'metadataplayer/LdtPlayer-core.css',
- widgets: [
- {
- type: "AutoPlayer",
- live: true,
- width: 550,
- provider: "rtmp",
- autostart: true,
- streamer: function(_url) {
- var _matches = _url.match(/^[^\/]+\/\/[^\/]+\/[^\/]+\//);
- if (_matches) {
- return _matches[0];
- } else {
- return _url;
- }
- }
- },
- { type: "Slider" },
- { type: "Controller" },
- { type: "Polemic" },
- { type: "Segments" },
- { type: "Annotation" },
- {
- type: "CreateAnnotation",
- api_endpoint_template: "post-test.php",
- creator_name: "Metadataplayer",
- creator_avatar: "https://si0.twimg.com/sticky/default_profile_images/default_profile_1_normal.png",
- tag_titles: ["#amateur", "#digital-humanities"]
- },
- { type: "Tweet" },
- {
- type: "Tagger",
- api_endpoint: "post-test.php"
- },
- {
- type: "Tagcloud"
- },
- {
- type: "AnnotationsList",
- container: "AnnotationsListContainer",
- default_thumbnail : "http://ldt.iri.centrepompidou.fr/static/site/ldt/css/imgs/video_sequence.png",
- //ajax_url: "/pf/ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}",
- //ajax_granularity : 300000
- },
- { type: "Mediafragment"}
- ]
- };
-
- var _myPlayer = new IriSP.Metadataplayer(_config);
-
- </script>
- </body>
-</html>
--- a/metadataplayer/libs/LAB.min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,5 +0,0 @@
-/*! LAB.js (LABjs :: Loading And Blocking JavaScript)
- v2.0.3 (c) Kyle Simpson
- MIT License
-*/
-(function(o){var K=o.$LAB,y="UseLocalXHR",z="AlwaysPreserveOrder",u="AllowDuplicates",A="CacheBust",B="BasePath",C=/^[^?#]*\//.exec(location.href)[0],D=/^\w+\:\/\/\/?[^\/]+/.exec(C)[0],i=document.head||document.getElementsByTagName("head"),L=(o.opera&&Object.prototype.toString.call(o.opera)=="[object Opera]")||("MozAppearance"in document.documentElement.style),q=document.createElement("script"),E=typeof q.preload=="boolean",r=E||(q.readyState&&q.readyState=="uninitialized"),F=!r&&q.async===true,M=!r&&!F&&!L;function G(a){return Object.prototype.toString.call(a)=="[object Function]"}function H(a){return Object.prototype.toString.call(a)=="[object Array]"}function N(a,c){var b=/^\w+\:\/\//;if(/^\/\/\/?/.test(a)){a=location.protocol+a}else if(!b.test(a)&&a.charAt(0)!="/"){a=(c||"")+a}return b.test(a)?a:((a.charAt(0)=="/"?D:C)+a)}function s(a,c){for(var b in a){if(a.hasOwnProperty(b)){c[b]=a[b]}}return c}function O(a){var c=false;for(var b=0;b<a.scripts.length;b++){if(a.scripts[b].ready&&a.scripts[b].exec_trigger){c=true;a.scripts[b].exec_trigger();a.scripts[b].exec_trigger=null}}return c}function t(a,c,b,d){a.onload=a.onreadystatechange=function(){if((a.readyState&&a.readyState!="complete"&&a.readyState!="loaded")||c[b])return;a.onload=a.onreadystatechange=null;d()}}function I(a){a.ready=a.finished=true;for(var c=0;c<a.finished_listeners.length;c++){a.finished_listeners[c]()}a.ready_listeners=[];a.finished_listeners=[]}function P(d,f,e,g,h){setTimeout(function(){var a,c=f.real_src,b;if("item"in i){if(!i[0]){setTimeout(arguments.callee,25);return}i=i[0]}a=document.createElement("script");if(f.type)a.type=f.type;if(f.charset)a.charset=f.charset;if(h){if(r){e.elem=a;if(E){a.preload=true;a.onpreload=g}else{a.onreadystatechange=function(){if(a.readyState=="loaded")g()}}a.src=c}else if(h&&c.indexOf(D)==0&&d[y]){b=new XMLHttpRequest();b.onreadystatechange=function(){if(b.readyState==4){b.onreadystatechange=function(){};e.text=b.responseText+"\n//@ sourceURL="+c;g()}};b.open("GET",c);b.send()}else{a.type="text/cache-script";t(a,e,"ready",function(){i.removeChild(a);g()});a.src=c;i.insertBefore(a,i.firstChild)}}else if(F){a.async=false;t(a,e,"finished",g);a.src=c;i.insertBefore(a,i.firstChild)}else{t(a,e,"finished",g);a.src=c;i.insertBefore(a,i.firstChild)}},0)}function J(){var l={},Q=r||M,n=[],p={},m;l[y]=true;l[z]=false;l[u]=false;l[A]=false;l[B]="";function R(a,c,b){var d;function f(){if(d!=null){d=null;I(b)}}if(p[c.src].finished)return;if(!a[u])p[c.src].finished=true;d=b.elem||document.createElement("script");if(c.type)d.type=c.type;if(c.charset)d.charset=c.charset;t(d,b,"finished",f);if(b.elem){b.elem=null}else if(b.text){d.onload=d.onreadystatechange=null;d.text=b.text}else{d.src=c.real_src}i.insertBefore(d,i.firstChild);if(b.text){f()}}function S(c,b,d,f){var e,g,h=function(){b.ready_cb(b,function(){R(c,b,e)})},j=function(){b.finished_cb(b,d)};b.src=N(b.src,c[B]);b.real_src=b.src+(c[A]?((/\?.*$/.test(b.src)?"&_":"?_")+~~(Math.random()*1E9)+"="):"");if(!p[b.src])p[b.src]={items:[],finished:false};g=p[b.src].items;if(c[u]||g.length==0){e=g[g.length]={ready:false,finished:false,ready_listeners:[h],finished_listeners:[j]};P(c,b,e,((f)?function(){e.ready=true;for(var a=0;a<e.ready_listeners.length;a++){e.ready_listeners[a]()}e.ready_listeners=[]}:function(){I(e)}),f)}else{e=g[0];if(e.finished){j()}else{e.finished_listeners.push(j)}}}function v(){var e,g=s(l,{}),h=[],j=0,w=false,k;function T(a,c){a.ready=true;a.exec_trigger=c;x()}function U(a,c){a.ready=a.finished=true;a.exec_trigger=null;for(var b=0;b<c.scripts.length;b++){if(!c.scripts[b].finished)return}c.finished=true;x()}function x(){while(j<h.length){if(G(h[j])){try{h[j++]()}catch(err){}continue}else if(!h[j].finished){if(O(h[j]))continue;break}j++}if(j==h.length){w=false;k=false}}function V(){if(!k||!k.scripts){h.push(k={scripts:[],finished:true})}}e={script:function(){for(var f=0;f<arguments.length;f++){(function(a,c){var b;if(!H(a)){c=[a]}for(var d=0;d<c.length;d++){V();a=c[d];if(G(a))a=a();if(!a)continue;if(H(a)){b=[].slice.call(a);b.unshift(d,1);[].splice.apply(c,b);d--;continue}if(typeof a=="string")a={src:a};a=s(a,{ready:false,ready_cb:T,finished:false,finished_cb:U});k.finished=false;k.scripts.push(a);S(g,a,k,(Q&&w));w=true;if(g[z])e.wait()}})(arguments[f],arguments[f])}return e},wait:function(){if(arguments.length>0){for(var a=0;a<arguments.length;a++){h.push(arguments[a])}k=h[h.length-1]}else k=false;x();return e}};return{script:e.script,wait:e.wait,setOptions:function(a){s(a,g);return e}}}m={setGlobalDefaults:function(a){s(a,l);return m},setOptions:function(){return v().setOptions.apply(null,arguments)},script:function(){return v().script.apply(null,arguments)},wait:function(){return v().wait.apply(null,arguments)},queueScript:function(){n[n.length]={type:"script",args:[].slice.call(arguments)};return m},queueWait:function(){n[n.length]={type:"wait",args:[].slice.call(arguments)};return m},runQueue:function(){var a=m,c=n.length,b=c,d;for(;--b>=0;){d=n.shift();a=a[d.type].apply(null,d.args)}return a},noConflict:function(){o.$LAB=K;return m},sandbox:function(){return J()}};return m}o.$LAB=J();(function(a,c,b){if(document.readyState==null&&document[a]){document.readyState="loading";document[a](c,b=function(){document.removeEventListener(c,b,false);document.readyState="complete"},false)}})("addEventListener","DOMContentLoaded")})(this);
\ No newline at end of file
--- a/metadataplayer/libs/ZeroClipboard.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,311 +0,0 @@
-// Simple Set Clipboard System
-// Author: Joseph Huckaby
-
-var ZeroClipboard = {
-
- version: "1.0.7",
- clients: {}, // registered upload clients on page, indexed by id
- moviePath: 'ZeroClipboard.swf', // URL to movie
- nextId: 1, // ID of next movie
-
- $: function(thingy) {
- // simple DOM lookup utility function
- if (typeof(thingy) == 'string') thingy = document.getElementById(thingy);
- if (!thingy.addClass) {
- // extend element with a few useful methods
- thingy.hide = function() { this.style.display = 'none'; };
- thingy.show = function() { this.style.display = ''; };
- thingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; };
- thingy.removeClass = function(name) {
- var classes = this.className.split(/\s+/);
- var idx = -1;
- for (var k = 0; k < classes.length; k++) {
- if (classes[k] == name) { idx = k; k = classes.length; }
- }
- if (idx > -1) {
- classes.splice( idx, 1 );
- this.className = classes.join(' ');
- }
- return this;
- };
- thingy.hasClass = function(name) {
- return !!this.className.match( new RegExp("\\s*" + name + "\\s*") );
- };
- }
- return thingy;
- },
-
- setMoviePath: function(path) {
- // set path to ZeroClipboard.swf
- this.moviePath = path;
- },
-
- dispatch: function(id, eventName, args) {
- // receive event from flash movie, send to client
- var client = this.clients[id];
- if (client) {
- client.receiveEvent(eventName, args);
- }
- },
-
- register: function(id, client) {
- // register new client to receive events
- this.clients[id] = client;
- },
-
- getDOMObjectPosition: function(obj, stopObj) {
- // get absolute coordinates for dom element
- var info = {
- left: 0,
- top: 0,
- width: obj.width ? obj.width : obj.offsetWidth,
- height: obj.height ? obj.height : obj.offsetHeight
- };
-
- while (obj && (obj != stopObj)) {
- info.left += obj.offsetLeft;
- info.top += obj.offsetTop;
- obj = obj.offsetParent;
- }
-
- return info;
- },
-
- Client: function(elem) {
- // constructor for new simple upload client
- this.handlers = {};
-
- // unique ID
- this.id = ZeroClipboard.nextId++;
- this.movieId = 'ZeroClipboardMovie_' + this.id;
-
- // register client with singleton to receive flash events
- ZeroClipboard.register(this.id, this);
-
- // create movie
- if (elem) this.glue(elem);
- }
-};
-
-ZeroClipboard.Client.prototype = {
-
- id: 0, // unique ID for us
- ready: false, // whether movie is ready to receive events or not
- movie: null, // reference to movie object
- clipText: '', // text to copy to clipboard
- handCursorEnabled: true, // whether to show hand cursor, or default pointer cursor
- cssEffects: true, // enable CSS mouse effects on dom container
- handlers: null, // user event handlers
-
- glue: function(elem, appendElem, stylesToAdd) {
- // glue to DOM element
- // elem can be ID or actual DOM element object
- this.domElement = ZeroClipboard.$(elem);
-
- // float just above object, or zIndex 99 if dom element isn't set
- var zIndex = 99;
- if (this.domElement.style.zIndex) {
- zIndex = parseInt(this.domElement.style.zIndex, 10) + 1;
- }
-
- if (typeof(appendElem) == 'string') {
- appendElem = ZeroClipboard.$(appendElem);
- }
- else if (typeof(appendElem) == 'undefined') {
- appendElem = document.getElementsByTagName('body')[0];
- }
-
- // find X/Y position of domElement
- var box = ZeroClipboard.getDOMObjectPosition(this.domElement, appendElem);
-
- // create floating DIV above element
- this.div = document.createElement('div');
- var style = this.div.style;
- style.position = 'absolute';
- style.left = '' + box.left + 'px';
- style.top = '' + box.top + 'px';
- style.width = '' + box.width + 'px';
- style.height = '' + box.height + 'px';
- style.zIndex = zIndex;
-
- if (typeof(stylesToAdd) == 'object') {
- for (addedStyle in stylesToAdd) {
- style[addedStyle] = stylesToAdd[addedStyle];
- }
- }
-
- // style.backgroundColor = '#f00'; // debug
-
- appendElem.appendChild(this.div);
-
- this.div.innerHTML = this.getHTML( box.width, box.height );
- },
-
- getHTML: function(width, height) {
- // return HTML for movie
- var html = '';
- var flashvars = 'id=' + this.id +
- '&width=' + width +
- '&height=' + height;
-
- if (navigator.userAgent.match(/MSIE/)) {
- // IE gets an OBJECT tag
- var protocol = location.href.match(/^https/i) ? 'https://' : 'http://';
- html += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+width+'" height="'+height+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+flashvars+'"/><param name="wmode" value="transparent"/></object>';
- }
- else {
- // all other browsers get an EMBED tag
- html += '<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+flashvars+'" wmode="transparent" />';
- }
- return html;
- },
-
- hide: function() {
- // temporarily hide floater offscreen
- if (this.div) {
- this.div.style.left = '-2000px';
- }
- },
-
- show: function() {
- // show ourselves after a call to hide()
- this.reposition();
- },
-
- destroy: function() {
- // destroy control and floater
- if (this.domElement && this.div) {
- this.hide();
- this.div.innerHTML = '';
-
- var body = document.getElementsByTagName('body')[0];
- try { body.removeChild( this.div ); } catch(e) {;}
-
- this.domElement = null;
- this.div = null;
- }
- },
-
- reposition: function(elem) {
- // reposition our floating div, optionally to new container
- // warning: container CANNOT change size, only position
- if (elem) {
- this.domElement = ZeroClipboard.$(elem);
- if (!this.domElement) this.hide();
- }
-
- if (this.domElement && this.div) {
- var box = ZeroClipboard.getDOMObjectPosition(this.domElement);
- var style = this.div.style;
- style.left = '' + box.left + 'px';
- style.top = '' + box.top + 'px';
- }
- },
-
- setText: function(newText) {
- // set text to be copied to clipboard
- this.clipText = newText;
- if (this.ready) this.movie.setText(newText);
- },
-
- addEventListener: function(eventName, func) {
- // add user event listener for event
- // event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel
- eventName = eventName.toString().toLowerCase().replace(/^on/, '');
- if (!this.handlers[eventName]) this.handlers[eventName] = [];
- this.handlers[eventName].push(func);
- },
-
- setHandCursor: function(enabled) {
- // enable hand cursor (true), or default arrow cursor (false)
- this.handCursorEnabled = enabled;
- if (this.ready) this.movie.setHandCursor(enabled);
- },
-
- setCSSEffects: function(enabled) {
- // enable or disable CSS effects on DOM container
- this.cssEffects = !!enabled;
- },
-
- receiveEvent: function(eventName, args) {
- // receive event from flash
- eventName = eventName.toString().toLowerCase().replace(/^on/, '');
-
- // special behavior for certain events
- switch (eventName) {
- case 'load':
- // movie claims it is ready, but in IE this isn't always the case...
- // bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function
- this.movie = document.getElementById(this.movieId);
- if (!this.movie) {
- var self = this;
- setTimeout( function() { self.receiveEvent('load', null); }, 1 );
- return;
- }
-
- // firefox on pc needs a "kick" in order to set these in certain cases
- if (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) {
- var self = this;
- setTimeout( function() { self.receiveEvent('load', null); }, 100 );
- this.ready = true;
- return;
- }
-
- this.ready = true;
- this.movie.setText( this.clipText );
- this.movie.setHandCursor( this.handCursorEnabled );
- break;
-
- case 'mouseover':
- if (this.domElement && this.cssEffects) {
- this.domElement.addClass('hover');
- if (this.recoverActive) this.domElement.addClass('active');
- }
- break;
-
- case 'mouseout':
- if (this.domElement && this.cssEffects) {
- this.recoverActive = false;
- if (this.domElement.hasClass('active')) {
- this.domElement.removeClass('active');
- this.recoverActive = true;
- }
- this.domElement.removeClass('hover');
- }
- break;
-
- case 'mousedown':
- if (this.domElement && this.cssEffects) {
- this.domElement.addClass('active');
- }
- break;
-
- case 'mouseup':
- if (this.domElement && this.cssEffects) {
- this.domElement.removeClass('active');
- this.recoverActive = false;
- }
- break;
- } // switch eventName
-
- if (this.handlers[eventName]) {
- for (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) {
- var func = this.handlers[eventName][idx];
-
- if (typeof(func) == 'function') {
- // actual function reference
- func(this, args);
- }
- else if ((typeof(func) == 'object') && (func.length == 2)) {
- // PHP style object + method, i.e. [myObject, 'myMethod']
- func[0][ func[1] ](this, args);
- }
- else if (typeof(func) == 'string') {
- // name of function
- window[func](this, args);
- }
- } // foreach event handler defined
- } // user defined handler for event
- }
-
-};
Binary file metadataplayer/libs/ZeroClipboard.swf has changed
--- a/metadataplayer/libs/backbone-relational.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1687 +0,0 @@
-/**
- * Backbone-relational.js 0.6.0
- * (c) 2011 Paul Uithol
- *
- * Backbone-relational may be freely distributed under the MIT license; see the accompanying LICENSE.txt.
- * For details and documentation: https://github.com/PaulUithol/Backbone-relational.
- * Depends on Backbone (and thus on Underscore as well): https://github.com/documentcloud/backbone.
- */
-( function( undefined ) {
- "use strict";
-
- /**
- * CommonJS shim
- **/
- var _, Backbone, exports;
- if ( typeof window === 'undefined' ) {
- _ = require( 'underscore' );
- Backbone = require( 'backbone' );
- exports = module.exports = Backbone;
- }
- else {
- _ = window._;
- Backbone = window.Backbone;
- exports = window;
- }
-
- Backbone.Relational = {
- showWarnings: true
- };
-
- /**
- * Semaphore mixin; can be used as both binary and counting.
- **/
- Backbone.Semaphore = {
- _permitsAvailable: null,
- _permitsUsed: 0,
-
- acquire: function() {
- if ( this._permitsAvailable && this._permitsUsed >= this._permitsAvailable ) {
- throw new Error( 'Max permits acquired' );
- }
- else {
- this._permitsUsed++;
- }
- },
-
- release: function() {
- if ( this._permitsUsed === 0 ) {
- throw new Error( 'All permits released' );
- }
- else {
- this._permitsUsed--;
- }
- },
-
- isLocked: function() {
- return this._permitsUsed > 0;
- },
-
- setAvailablePermits: function( amount ) {
- if ( this._permitsUsed > amount ) {
- throw new Error( 'Available permits cannot be less than used permits' );
- }
- this._permitsAvailable = amount;
- }
- };
-
- /**
- * A BlockingQueue that accumulates items while blocked (via 'block'),
- * and processes them when unblocked (via 'unblock').
- * Process can also be called manually (via 'process').
- */
- Backbone.BlockingQueue = function() {
- this._queue = [];
- };
- _.extend( Backbone.BlockingQueue.prototype, Backbone.Semaphore, {
- _queue: null,
-
- add: function( func ) {
- if ( this.isBlocked() ) {
- this._queue.push( func );
- }
- else {
- func();
- }
- },
-
- process: function() {
- while ( this._queue && this._queue.length ) {
- this._queue.shift()();
- }
- },
-
- block: function() {
- this.acquire();
- },
-
- unblock: function() {
- this.release();
- if ( !this.isBlocked() ) {
- this.process();
- }
- },
-
- isBlocked: function() {
- return this.isLocked();
- }
- });
- /**
- * Global event queue. Accumulates external events ('add:<key>', 'remove:<key>' and 'update:<key>')
- * until the top-level object is fully initialized (see 'Backbone.RelationalModel').
- */
- Backbone.Relational.eventQueue = new Backbone.BlockingQueue();
-
- /**
- * Backbone.Store keeps track of all created (and destruction of) Backbone.RelationalModel.
- * Handles lookup for relations.
- */
- Backbone.Store = function() {
- this._collections = [];
- this._reverseRelations = [];
- this._subModels = [];
- this._modelScopes = [ exports ];
- };
- _.extend( Backbone.Store.prototype, Backbone.Events, {
- addModelScope: function( scope ) {
- this._modelScopes.push( scope );
- },
-
- /**
- * Add a set of subModelTypes to the store, that can be used to resolve the '_superModel'
- * for a model later in 'setupSuperModel'.
- *
- * @param {Backbone.RelationalModel} subModelTypes
- * @param {Backbone.RelationalModel} superModelType
- */
- addSubModels: function( subModelTypes, superModelType ) {
- this._subModels.push({
- 'superModelType': superModelType,
- 'subModels': subModelTypes
- });
- },
-
- /**
- * Check if the given modelType is registered as another model's subModel. If so, add it to the super model's
- * '_subModels', and set the modelType's '_superModel', '_subModelTypeName', and '_subModelTypeAttribute'.
- *
- * @param {Backbone.RelationalModel} modelType
- */
- setupSuperModel: function( modelType ) {
- _.find( this._subModels, function( subModelDef ) {
- return _.find( subModelDef.subModels, function( subModelTypeName, typeValue ) {
- var subModelType = this.getObjectByName( subModelTypeName );
-
- if ( modelType === subModelType ) {
- // Set 'modelType' as a child of the found superModel
- subModelDef.superModelType._subModels[ typeValue ] = modelType;
-
- // Set '_superModel', '_subModelTypeValue', and '_subModelTypeAttribute' on 'modelType'.
- modelType._superModel = subModelDef.superModelType;
- modelType._subModelTypeValue = typeValue;
- modelType._subModelTypeAttribute = subModelDef.superModelType.prototype.subModelTypeAttribute;
- return true;
- }
- }, this );
- }, this );
- },
-
- /**
- * Add a reverse relation. Is added to the 'relations' property on model's prototype, and to
- * existing instances of 'model' in the store as well.
- * @param {Object} relation
- * @param {Backbone.RelationalModel} relation.model
- * @param {String} relation.type
- * @param {String} relation.key
- * @param {String|Object} relation.relatedModel
- */
- addReverseRelation: function( relation ) {
- var exists = _.any( this._reverseRelations, function( rel ) {
- return _.all( relation, function( val, key ) {
- return val === rel[ key ];
- });
- });
-
- if ( !exists && relation.model && relation.type ) {
- this._reverseRelations.push( relation );
-
- var addRelation = function( model, relation ) {
- if ( !model.prototype.relations ) {
- model.prototype.relations = [];
- }
- model.prototype.relations.push( relation );
-
- _.each( model._subModels, function( subModel ) {
- addRelation( subModel, relation );
- }, this );
- };
-
- addRelation( relation.model, relation );
-
- this.retroFitRelation( relation );
- }
- },
-
- /**
- * Add a 'relation' to all existing instances of 'relation.model' in the store
- * @param {Object} relation
- */
- retroFitRelation: function( relation ) {
- var coll = this.getCollection( relation.model );
- coll.each( function( model ) {
- if ( !( model instanceof relation.model ) ) {
- return;
- }
-
- new relation.type( model, relation );
- }, this);
- },
-
- /**
- * Find the Store's collection for a certain type of model.
- * @param {Backbone.RelationalModel} model
- * @return {Backbone.Collection} A collection if found (or applicable for 'model'), or null
- */
- getCollection: function( model ) {
- if ( model instanceof Backbone.RelationalModel ) {
- model = model.constructor;
- }
-
- var rootModel = model;
- while ( rootModel._superModel ) {
- rootModel = rootModel._superModel;
- }
-
- var coll = _.detect( this._collections, function( c ) {
- return c.model === rootModel;
- });
-
- if ( !coll ) {
- coll = this._createCollection( rootModel );
- }
-
- return coll;
- },
-
- /**
- * Find a type on the global object by name. Splits name on dots.
- * @param {String} name
- * @return {Object}
- */
- getObjectByName: function( name ) {
- var parts = name.split( '.' ),
- type = null;
-
- _.find( this._modelScopes, function( scope ) {
- type = _.reduce( parts, function( memo, val ) {
- return memo[ val ];
- }, scope );
-
- if ( type && type !== scope ) {
- return true;
- }
- }, this );
-
- return type;
- },
-
- _createCollection: function( type ) {
- var coll;
-
- // If 'type' is an instance, take its constructor
- if ( type instanceof Backbone.RelationalModel ) {
- type = type.constructor;
- }
-
- // Type should inherit from Backbone.RelationalModel.
- if ( type.prototype instanceof Backbone.RelationalModel ) {
- coll = new Backbone.Collection();
- coll.model = type;
-
- this._collections.push( coll );
- }
-
- return coll;
- },
-
- /**
- * Find the attribute that is to be used as the `id` on a given object
- * @param type
- * @param {String|Number|Object|Backbone.RelationalModel} item
- * @return {String|Number}
- */
- resolveIdForItem: function( type, item ) {
- var id = _.isString( item ) || _.isNumber( item ) ? item : null;
-
- if ( id === null ) {
- if ( item instanceof Backbone.RelationalModel ) {
- id = item.id;
- }
- else if ( _.isObject( item ) ) {
- id = item[ type.prototype.idAttribute ];
- }
- }
-
- // Make all falsy values `null` (except for 0, which could be an id.. see '/issues/179')
- if ( !id && id !== 0 ) {
- id = null;
- }
-
- return id;
- },
-
- /**
- *
- * @param type
- * @param {String|Number|Object|Backbone.RelationalModel} item
- */
- find: function( type, item ) {
- var id = this.resolveIdForItem( type, item );
- var coll = this.getCollection( type );
-
- // Because the found object could be of any of the type's superModel
- // types, only return it if it's actually of the type asked for.
- if ( coll ) {
- var obj = coll.get( id );
-
- if ( obj instanceof type ) {
- return obj;
- }
- }
-
- return null;
- },
-
- /**
- * Add a 'model' to it's appropriate collection. Retain the original contents of 'model.collection'.
- * @param {Backbone.RelationalModel} model
- */
- register: function( model ) {
- var coll = this.getCollection( model );
-
- if ( coll ) {
- if ( coll.get( model ) ) {
- throw new Error( "Cannot instantiate more than one Backbone.RelationalModel with the same id per type!" );
- }
-
- var modelColl = model.collection;
- coll.add( model );
- model.bind( 'destroy', this.unregister, this );
- model.collection = modelColl;
- }
- },
-
- /**
- * Explicitly update a model's id in it's store collection
- * @param {Backbone.RelationalModel} model
- */
- update: function( model ) {
- var coll = this.getCollection( model );
- coll._onModelEvent( 'change:' + model.idAttribute, model, coll );
- },
-
- /**
- * Remove a 'model' from the store.
- * @param {Backbone.RelationalModel} model
- */
- unregister: function( model ) {
- model.unbind( 'destroy', this.unregister );
- var coll = this.getCollection( model );
- coll && coll.remove( model );
- }
- });
- Backbone.Relational.store = new Backbone.Store();
-
- /**
- * The main Relation class, from which 'HasOne' and 'HasMany' inherit. Internally, 'relational:<key>' events
- * are used to regulate addition and removal of models from relations.
- *
- * @param {Backbone.RelationalModel} instance
- * @param {Object} options
- * @param {string} options.key
- * @param {Backbone.RelationalModel.constructor} options.relatedModel
- * @param {Boolean|String} [options.includeInJSON=true] Serialize the given attribute for related model(s)' in toJSON, or just their ids.
- * @param {Boolean} [options.createModels=true] Create objects from the contents of keys if the object is not found in Backbone.store.
- * @param {Object} [options.reverseRelation] Specify a bi-directional relation. If provided, Relation will reciprocate
- * the relation to the 'relatedModel'. Required and optional properties match 'options', except that it also needs
- * {Backbone.Relation|String} type ('HasOne' or 'HasMany').
- */
- Backbone.Relation = function( instance, options ) {
- this.instance = instance;
- // Make sure 'options' is sane, and fill with defaults from subclasses and this object's prototype
- options = _.isObject( options ) ? options : {};
- this.reverseRelation = _.defaults( options.reverseRelation || {}, this.options.reverseRelation );
- this.reverseRelation.type = !_.isString( this.reverseRelation.type ) ? this.reverseRelation.type :
- Backbone[ this.reverseRelation.type ] || Backbone.Relational.store.getObjectByName( this.reverseRelation.type );
- this.model = options.model || this.instance.constructor;
- this.options = _.defaults( options, this.options, Backbone.Relation.prototype.options );
-
- this.key = this.options.key;
- this.keySource = this.options.keySource || this.key;
- this.keyDestination = this.options.keyDestination || this.keySource || this.key;
-
- // 'exports' should be the global object where 'relatedModel' can be found on if given as a string.
- this.relatedModel = this.options.relatedModel;
- if ( _.isString( this.relatedModel ) ) {
- this.relatedModel = Backbone.Relational.store.getObjectByName( this.relatedModel );
- }
-
- if ( !this.checkPreconditions() ) {
- return false;
- }
-
- if ( instance ) {
- this.keyContents = this.instance.get( this.keySource );
-
- // Explicitly clear 'keySource', to prevent a leaky abstraction if 'keySource' differs from 'key'.
- if ( this.key !== this.keySource ) {
- this.instance.unset( this.keySource, { silent: true } );
- }
-
- // Add this Relation to instance._relations
- this.instance._relations.push( this );
- }
-
- // Add the reverse relation on 'relatedModel' to the store's reverseRelations
- if ( !this.options.isAutoRelation && this.reverseRelation.type && this.reverseRelation.key ) {
- Backbone.Relational.store.addReverseRelation( _.defaults( {
- isAutoRelation: true,
- model: this.relatedModel,
- relatedModel: this.model,
- reverseRelation: this.options // current relation is the 'reverseRelation' for it's own reverseRelation
- },
- this.reverseRelation // Take further properties from this.reverseRelation (type, key, etc.)
- ) );
- }
-
- _.bindAll( this, '_modelRemovedFromCollection', '_relatedModelAdded', '_relatedModelRemoved' );
-
- if ( instance ) {
- this.initialize();
-
- // When a model in the store is destroyed, check if it is 'this.instance'.
- Backbone.Relational.store.getCollection( this.instance )
- .bind( 'relational:remove', this._modelRemovedFromCollection );
-
- // When 'relatedModel' are created or destroyed, check if it affects this relation.
- Backbone.Relational.store.getCollection( this.relatedModel )
- .bind( 'relational:add', this._relatedModelAdded )
- .bind( 'relational:remove', this._relatedModelRemoved );
- }
- };
- // Fix inheritance :\
- Backbone.Relation.extend = Backbone.Model.extend;
- // Set up all inheritable **Backbone.Relation** properties and methods.
- _.extend( Backbone.Relation.prototype, Backbone.Events, Backbone.Semaphore, {
- options: {
- createModels: true,
- includeInJSON: true,
- isAutoRelation: false
- },
-
- instance: null,
- key: null,
- keyContents: null,
- relatedModel: null,
- reverseRelation: null,
- related: null,
-
- _relatedModelAdded: function( model, coll, options ) {
- // Allow 'model' to set up it's relations, before calling 'tryAddRelated'
- // (which can result in a call to 'addRelated' on a relation of 'model')
- var dit = this;
- model.queue( function() {
- dit.tryAddRelated( model, options );
- });
- },
-
- _relatedModelRemoved: function( model, coll, options ) {
- this.removeRelated( model, options );
- },
-
- _modelRemovedFromCollection: function( model ) {
- if ( model === this.instance ) {
- this.destroy();
- }
- },
-
- /**
- * Check several pre-conditions.
- * @return {Boolean} True if pre-conditions are satisfied, false if they're not.
- */
- checkPreconditions: function() {
- var i = this.instance,
- k = this.key,
- m = this.model,
- rm = this.relatedModel,
- warn = Backbone.Relational.showWarnings && typeof console !== 'undefined';
-
- if ( !m || !k || !rm ) {
- warn && console.warn( 'Relation=%o; no model, key or relatedModel (%o, %o, %o)', this, m, k, rm );
- return false;
- }
- // Check if the type in 'model' inherits from Backbone.RelationalModel
- if ( !( m.prototype instanceof Backbone.RelationalModel ) ) {
- warn && console.warn( 'Relation=%o; model does not inherit from Backbone.RelationalModel (%o)', this, i );
- return false;
- }
- // Check if the type in 'relatedModel' inherits from Backbone.RelationalModel
- if ( !( rm.prototype instanceof Backbone.RelationalModel ) ) {
- warn && console.warn( 'Relation=%o; relatedModel does not inherit from Backbone.RelationalModel (%o)', this, rm );
- return false;
- }
- // Check if this is not a HasMany, and the reverse relation is HasMany as well
- if ( this instanceof Backbone.HasMany && this.reverseRelation.type === Backbone.HasMany ) {
- warn && console.warn( 'Relation=%o; relation is a HasMany, and the reverseRelation is HasMany as well.', this );
- return false;
- }
-
- // Check if we're not attempting to create a duplicate relationship
- if ( i && i._relations.length ) {
- var exists = _.any( i._relations, function( rel ) {
- var hasReverseRelation = this.reverseRelation.key && rel.reverseRelation.key;
- return rel.relatedModel === rm && rel.key === k &&
- ( !hasReverseRelation || this.reverseRelation.key === rel.reverseRelation.key );
- }, this );
-
- if ( exists ) {
- warn && console.warn( 'Relation=%o between instance=%o.%s and relatedModel=%o.%s already exists',
- this, i, k, rm, this.reverseRelation.key );
- return false;
- }
- }
-
- return true;
- },
-
- /**
- * Set the related model(s) for this relation
- * @param {Backbone.Mode|Backbone.Collection} related
- * @param {Object} [options]
- */
- setRelated: function( related, options ) {
- this.related = related;
-
- this.instance.acquire();
- this.instance.set( this.key, related, _.defaults( options || {}, { silent: true } ) );
- this.instance.release();
- },
-
- /**
- * Determine if a relation (on a different RelationalModel) is the reverse
- * relation of the current one.
- * @param {Backbone.Relation} relation
- * @return {Boolean}
- */
- _isReverseRelation: function( relation ) {
- if ( relation.instance instanceof this.relatedModel && this.reverseRelation.key === relation.key &&
- this.key === relation.reverseRelation.key ) {
- return true;
- }
- return false;
- },
-
- /**
- * Get the reverse relations (pointing back to 'this.key' on 'this.instance') for the currently related model(s).
- * @param {Backbone.RelationalModel} [model] Get the reverse relations for a specific model.
- * If not specified, 'this.related' is used.
- * @return {Backbone.Relation[]}
- */
- getReverseRelations: function( model ) {
- var reverseRelations = [];
- // Iterate over 'model', 'this.related.models' (if this.related is a Backbone.Collection), or wrap 'this.related' in an array.
- var models = !_.isUndefined( model ) ? [ model ] : this.related && ( this.related.models || [ this.related ] );
- _.each( models , function( related ) {
- _.each( related.getRelations(), function( relation ) {
- if ( this._isReverseRelation( relation ) ) {
- reverseRelations.push( relation );
- }
- }, this );
- }, this );
-
- return reverseRelations;
- },
-
- /**
- * Rename options.silent to options.silentChange, so events propagate properly.
- * (for example in HasMany, from 'addRelated'->'handleAddition')
- * @param {Object} [options]
- * @return {Object}
- */
- sanitizeOptions: function( options ) {
- options = options ? _.clone( options ) : {};
- if ( options.silent ) {
- options.silentChange = true;
- delete options.silent;
- }
- return options;
- },
-
- /**
- * Rename options.silentChange to options.silent, so events are silenced as intended in Backbone's
- * original functions.
- * @param {Object} [options]
- * @return {Object}
- */
- unsanitizeOptions: function( options ) {
- options = options ? _.clone( options ) : {};
- if ( options.silentChange ) {
- options.silent = true;
- delete options.silentChange;
- }
- return options;
- },
-
- // Cleanup. Get reverse relation, call removeRelated on each.
- destroy: function() {
- Backbone.Relational.store.getCollection( this.instance )
- .unbind( 'relational:remove', this._modelRemovedFromCollection );
-
- Backbone.Relational.store.getCollection( this.relatedModel )
- .unbind( 'relational:add', this._relatedModelAdded )
- .unbind( 'relational:remove', this._relatedModelRemoved );
-
- _.each( this.getReverseRelations(), function( relation ) {
- relation.removeRelated( this.instance );
- }, this );
- }
- });
-
- Backbone.HasOne = Backbone.Relation.extend({
- options: {
- reverseRelation: { type: 'HasMany' }
- },
-
- initialize: function() {
- _.bindAll( this, 'onChange' );
-
- this.instance.bind( 'relational:change:' + this.key, this.onChange );
-
- var model = this.findRelated( { silent: true } );
- this.setRelated( model );
-
- // Notify new 'related' object of the new relation.
- _.each( this.getReverseRelations(), function( relation ) {
- relation.addRelated( this.instance );
- }, this );
- },
-
- findRelated: function( options ) {
- var item = this.keyContents;
- var model = null;
-
- if ( item instanceof this.relatedModel ) {
- model = item;
- }
- else if ( item || item === 0 ) { // since 0 can be a valid `id` as well
- model = this.relatedModel.findOrCreate( item, { create: this.options.createModels } );
- }
-
- return model;
- },
-
- /**
- * If the key is changed, notify old & new reverse relations and initialize the new relation
- */
- onChange: function( model, attr, options ) {
- // Don't accept recursive calls to onChange (like onChange->findRelated->findOrCreate->initializeRelations->addRelated->onChange)
- if ( this.isLocked() ) {
- return;
- }
- this.acquire();
- options = this.sanitizeOptions( options );
-
- // 'options._related' is set by 'addRelated'/'removeRelated'. If it is set, the change
- // is the result of a call from a relation. If it's not, the change is the result of
- // a 'set' call on this.instance.
- var changed = _.isUndefined( options._related );
- var oldRelated = changed ? this.related : options._related;
-
- if ( changed ) {
- this.keyContents = attr;
-
- // Set new 'related'
- if ( attr instanceof this.relatedModel ) {
- this.related = attr;
- }
- else if ( attr ) {
- var related = this.findRelated( options );
- this.setRelated( related );
- }
- else {
- this.setRelated( null );
- }
- }
-
- // Notify old 'related' object of the terminated relation
- if ( oldRelated && this.related !== oldRelated ) {
- _.each( this.getReverseRelations( oldRelated ), function( relation ) {
- relation.removeRelated( this.instance, options );
- }, this );
- }
-
- // Notify new 'related' object of the new relation. Note we do re-apply even if this.related is oldRelated;
- // that can be necessary for bi-directional relations if 'this.instance' was created after 'this.related'.
- // In that case, 'this.instance' will already know 'this.related', but the reverse might not exist yet.
- _.each( this.getReverseRelations(), function( relation ) {
- relation.addRelated( this.instance, options );
- }, this);
-
- // Fire the 'update:<key>' event if 'related' was updated
- if ( !options.silentChange && this.related !== oldRelated ) {
- var dit = this;
- Backbone.Relational.eventQueue.add( function() {
- dit.instance.trigger( 'update:' + dit.key, dit.instance, dit.related, options );
- });
- }
- this.release();
- },
-
- /**
- * If a new 'this.relatedModel' appears in the 'store', try to match it to the last set 'keyContents'
- */
- tryAddRelated: function( model, options ) {
- if ( this.related ) {
- return;
- }
- options = this.sanitizeOptions( options );
-
- var item = this.keyContents;
- if ( item || item === 0 ) { // since 0 can be a valid `id` as well
- var id = Backbone.Relational.store.resolveIdForItem( this.relatedModel, item );
- if ( !_.isNull( id ) && model.id === id ) {
- this.addRelated( model, options );
- }
- }
- },
-
- addRelated: function( model, options ) {
- if ( model !== this.related ) {
- var oldRelated = this.related || null;
- this.setRelated( model );
- this.onChange( this.instance, model, { _related: oldRelated } );
- }
- },
-
- removeRelated: function( model, options ) {
- if ( !this.related ) {
- return;
- }
-
- if ( model === this.related ) {
- var oldRelated = this.related || null;
- this.setRelated( null );
- this.onChange( this.instance, model, { _related: oldRelated } );
- }
- }
- });
-
- Backbone.HasMany = Backbone.Relation.extend({
- collectionType: null,
-
- options: {
- reverseRelation: { type: 'HasOne' },
- collectionType: Backbone.Collection,
- collectionKey: true,
- collectionOptions: {}
- },
-
- initialize: function() {
- _.bindAll( this, 'onChange', 'handleAddition', 'handleRemoval', 'handleReset' );
- this.instance.bind( 'relational:change:' + this.key, this.onChange );
-
- // Handle a custom 'collectionType'
- this.collectionType = this.options.collectionType;
- if ( _.isString( this.collectionType ) ) {
- this.collectionType = Backbone.Relational.store.getObjectByName( this.collectionType );
- }
- if ( !this.collectionType.prototype instanceof Backbone.Collection ){
- throw new Error( 'collectionType must inherit from Backbone.Collection' );
- }
-
- // Handle cases where a model/relation is created with a collection passed straight into 'attributes'
- if ( this.keyContents instanceof Backbone.Collection ) {
- this.setRelated( this._prepareCollection( this.keyContents ) );
- }
- else {
- this.setRelated( this._prepareCollection() );
- }
-
- this.findRelated( { silent: true } );
- },
-
- _getCollectionOptions: function() {
- return _.isFunction( this.options.collectionOptions ) ?
- this.options.collectionOptions( this.instance ) :
- this.options.collectionOptions;
- },
-
- /**
- * Bind events and setup collectionKeys for a collection that is to be used as the backing store for a HasMany.
- * If no 'collection' is supplied, a new collection will be created of the specified 'collectionType' option.
- * @param {Backbone.Collection} [collection]
- */
- _prepareCollection: function( collection ) {
- if ( this.related ) {
- this.related
- .unbind( 'relational:add', this.handleAddition )
- .unbind( 'relational:remove', this.handleRemoval )
- .unbind( 'relational:reset', this.handleReset )
- }
-
- if ( !collection || !( collection instanceof Backbone.Collection ) ) {
- collection = new this.collectionType( [], this._getCollectionOptions() );
- }
-
- collection.model = this.relatedModel;
-
- if ( this.options.collectionKey ) {
- var key = this.options.collectionKey === true ? this.options.reverseRelation.key : this.options.collectionKey;
-
- if ( collection[ key ] && collection[ key ] !== this.instance ) {
- if ( Backbone.Relational.showWarnings && typeof console !== 'undefined' ) {
- console.warn( 'Relation=%o; collectionKey=%s already exists on collection=%o', this, key, this.options.collectionKey );
- }
- }
- else if ( key ) {
- collection[ key ] = this.instance;
- }
- }
-
- collection
- .bind( 'relational:add', this.handleAddition )
- .bind( 'relational:remove', this.handleRemoval )
- .bind( 'relational:reset', this.handleReset );
-
- return collection;
- },
-
- findRelated: function( options ) {
- if ( this.keyContents ) {
- var models = [];
-
- if ( this.keyContents instanceof Backbone.Collection ) {
- models = this.keyContents.models;
- }
- else {
- // Handle cases the an API/user supplies just an Object/id instead of an Array
- this.keyContents = _.isArray( this.keyContents ) ? this.keyContents : [ this.keyContents ];
-
- // Try to find instances of the appropriate 'relatedModel' in the store
- _.each( this.keyContents, function( item ) {
- var model = null;
- if ( item instanceof this.relatedModel ) {
- model = item;
- }
- else if ( item || item === 0 ) { // since 0 can be a valid `id` as well
- model = this.relatedModel.findOrCreate( item, { create: this.options.createModels } );
- }
-
- if ( model && !this.related.getByCid( model ) && !this.related.get( model ) ) {
- models.push( model );
- }
- }, this );
- }
-
- // Add all found 'models' in on go, so 'add' will only be called once (and thus 'sort', etc.)
- if ( models.length ) {
- options = this.unsanitizeOptions( options );
- this.related.add( models, options );
- }
- }
- },
-
- /**
- * If the key is changed, notify old & new reverse relations and initialize the new relation
- */
- onChange: function( model, attr, options ) {
- options = this.sanitizeOptions( options );
- this.keyContents = attr;
-
- // Notify old 'related' object of the terminated relation
- _.each( this.getReverseRelations(), function( relation ) {
- relation.removeRelated( this.instance, options );
- }, this );
-
- // Replace 'this.related' by 'attr' if it is a Backbone.Collection
- if ( attr instanceof Backbone.Collection ) {
- this._prepareCollection( attr );
- this.related = attr;
- }
- // Otherwise, 'attr' should be an array of related object ids.
- // Re-use the current 'this.related' if it is a Backbone.Collection, and remove any current entries.
- // Otherwise, create a new collection.
- else {
- var coll;
-
- if ( this.related instanceof Backbone.Collection ) {
- coll = this.related;
- coll.remove( coll.models );
- }
- else {
- coll = this._prepareCollection();
- }
-
- this.setRelated( coll );
- this.findRelated( options );
- }
-
- // Notify new 'related' object of the new relation
- _.each( this.getReverseRelations(), function( relation ) {
- relation.addRelated( this.instance, options );
- }, this );
-
- var dit = this;
- Backbone.Relational.eventQueue.add( function() {
- !options.silentChange && dit.instance.trigger( 'update:' + dit.key, dit.instance, dit.related, options );
- });
- },
-
- tryAddRelated: function( model, options ) {
- options = this.sanitizeOptions( options );
- if ( !this.related.getByCid( model ) && !this.related.get( model ) ) {
- // Check if this new model was specified in 'this.keyContents'
- var item = _.any( this.keyContents, function( item ) {
- var id = Backbone.Relational.store.resolveIdForItem( this.relatedModel, item );
- return !_.isNull( id ) && id === model.id;
- }, this );
-
- if ( item ) {
- this.related.add( model, options );
- }
- }
- },
-
- /**
- * When a model is added to a 'HasMany', trigger 'add' on 'this.instance' and notify reverse relations.
- * (should be 'HasOne', must set 'this.instance' as their related).
- */
- handleAddition: function( model, coll, options ) {
- //console.debug('handleAddition called; args=%o', arguments);
- // Make sure the model is in fact a valid model before continuing.
- // (it can be invalid as a result of failing validation in Backbone.Collection._prepareModel)
- if ( !( model instanceof Backbone.Model ) ) {
- return;
- }
-
- options = this.sanitizeOptions( options );
-
- _.each( this.getReverseRelations( model ), function( relation ) {
- relation.addRelated( this.instance, options );
- }, this );
-
- // Only trigger 'add' once the newly added model is initialized (so, has it's relations set up)
- var dit = this;
- Backbone.Relational.eventQueue.add( function() {
- !options.silentChange && dit.instance.trigger( 'add:' + dit.key, model, dit.related, options );
- });
- },
-
- /**
- * When a model is removed from a 'HasMany', trigger 'remove' on 'this.instance' and notify reverse relations.
- * (should be 'HasOne', which should be nullified)
- */
- handleRemoval: function( model, coll, options ) {
- //console.debug('handleRemoval called; args=%o', arguments);
- if ( !( model instanceof Backbone.Model ) ) {
- return;
- }
-
- options = this.sanitizeOptions( options );
-
- _.each( this.getReverseRelations( model ), function( relation ) {
- relation.removeRelated( this.instance, options );
- }, this );
-
- var dit = this;
- Backbone.Relational.eventQueue.add( function() {
- !options.silentChange && dit.instance.trigger( 'remove:' + dit.key, model, dit.related, options );
- });
- },
-
- handleReset: function( coll, options ) {
- options = this.sanitizeOptions( options );
-
- var dit = this;
- Backbone.Relational.eventQueue.add( function() {
- !options.silentChange && dit.instance.trigger( 'reset:' + dit.key, dit.related, options );
- });
- },
-
- addRelated: function( model, options ) {
- var dit = this;
- options = this.unsanitizeOptions( options );
- model.queue( function() { // Queued to avoid errors for adding 'model' to the 'this.related' set twice
- if ( dit.related && !dit.related.getByCid( model ) && !dit.related.get( model ) ) {
- dit.related.add( model, options );
- }
- });
- },
-
- removeRelated: function( model, options ) {
- options = this.unsanitizeOptions( options );
- if ( this.related.getByCid( model ) || this.related.get( model ) ) {
- this.related.remove( model, options );
- }
- }
- });
-
- /**
- * A type of Backbone.Model that also maintains relations to other models and collections.
- * New events when compared to the original:
- * - 'add:<key>' (model, related collection, options)
- * - 'remove:<key>' (model, related collection, options)
- * - 'update:<key>' (model, related model or collection, options)
- */
- Backbone.RelationalModel = Backbone.Model.extend({
- relations: null, // Relation descriptions on the prototype
- _relations: null, // Relation instances
- _isInitialized: false,
- _deferProcessing: false,
- _queue: null,
-
- subModelTypeAttribute: 'type',
- subModelTypes: null,
-
- constructor: function( attributes, options ) {
- // Nasty hack, for cases like 'model.get( <HasMany key> ).add( item )'.
- // Defer 'processQueue', so that when 'Relation.createModels' is used we:
- // a) Survive 'Backbone.Collection.add'; this takes care we won't error on "can't add model to a set twice"
- // (by creating a model from properties, having the model add itself to the collection via one of
- // it's relations, then trying to add it to the collection).
- // b) Trigger 'HasMany' collection events only after the model is really fully set up.
- // Example that triggers both a and b: "p.get('jobs').add( { company: c, person: p } )".
- var dit = this;
- if ( options && options.collection ) {
- this._deferProcessing = true;
-
- var processQueue = function( model ) {
- if ( model === dit ) {
- dit._deferProcessing = false;
- dit.processQueue();
- options.collection.unbind( 'relational:add', processQueue );
- }
- };
- options.collection.bind( 'relational:add', processQueue );
-
- // So we do process the queue eventually, regardless of whether this model really gets added to 'options.collection'.
- _.defer( function() {
- processQueue( dit );
- });
- }
-
- this._queue = new Backbone.BlockingQueue();
- this._queue.block();
- Backbone.Relational.eventQueue.block();
-
- Backbone.Model.apply( this, arguments );
-
- // Try to run the global queue holding external events
- Backbone.Relational.eventQueue.unblock();
- },
-
- /**
- * Override 'trigger' to queue 'change' and 'change:*' events
- */
- trigger: function( eventName ) {
- if ( eventName.length > 5 && 'change' === eventName.substr( 0, 6 ) ) {
- var dit = this, args = arguments;
- Backbone.Relational.eventQueue.add( function() {
- Backbone.Model.prototype.trigger.apply( dit, args );
- });
- }
- else {
- Backbone.Model.prototype.trigger.apply( this, arguments );
- }
-
- return this;
- },
-
- /**
- * Initialize Relations present in this.relations; determine the type (HasOne/HasMany), then creates a new instance.
- * Invoked in the first call so 'set' (which is made from the Backbone.Model constructor).
- */
- initializeRelations: function() {
- this.acquire(); // Setting up relations often also involve calls to 'set', and we only want to enter this function once
- this._relations = [];
-
- _.each( this.relations, function( rel ) {
- var type = !_.isString( rel.type ) ? rel.type : Backbone[ rel.type ] || Backbone.Relational.store.getObjectByName( rel.type );
- if ( type && type.prototype instanceof Backbone.Relation ) {
- new type( this, rel ); // Also pushes the new Relation into _relations
- }
- else {
- Backbone.Relational.showWarnings && typeof console !== 'undefined' && console.warn( 'Relation=%o; missing or invalid type!', rel );
- }
- }, this );
-
- this._isInitialized = true;
- this.release();
- this.processQueue();
- },
-
- /**
- * When new values are set, notify this model's relations (also if options.silent is set).
- * (Relation.setRelated locks this model before calling 'set' on it to prevent loops)
- */
- updateRelations: function( options ) {
- if ( this._isInitialized && !this.isLocked() ) {
- _.each( this._relations, function( rel ) {
- // Update from data in `rel.keySource` if set, or `rel.key` otherwise
- var val = this.attributes[ rel.keySource ] || this.attributes[ rel.key ];
- if ( rel.related !== val ) {
- this.trigger( 'relational:change:' + rel.key, this, val, options || {} );
- }
- }, this );
- }
- },
-
- /**
- * Either add to the queue (if we're not initialized yet), or execute right away.
- */
- queue: function( func ) {
- this._queue.add( func );
- },
-
- /**
- * Process _queue
- */
- processQueue: function() {
- if ( this._isInitialized && !this._deferProcessing && this._queue.isBlocked() ) {
- this._queue.unblock();
- }
- },
-
- /**
- * Get a specific relation.
- * @param key {string} The relation key to look for.
- * @return {Backbone.Relation} An instance of 'Backbone.Relation', if a relation was found for 'key', or null.
- */
- getRelation: function( key ) {
- return _.detect( this._relations, function( rel ) {
- if ( rel.key === key ) {
- return true;
- }
- }, this );
- },
-
- /**
- * Get all of the created relations.
- * @return {Backbone.Relation[]}
- */
- getRelations: function() {
- return this._relations;
- },
-
- /**
- * Retrieve related objects.
- * @param key {string} The relation key to fetch models for.
- * @param [options] {Object} Options for 'Backbone.Model.fetch' and 'Backbone.sync'.
- * @param [update=false] {boolean} Whether to force a fetch from the server (updating existing models).
- * @return {jQuery.when[]} An array of request objects
- */
- fetchRelated: function( key, options, update ) {
- options || ( options = {} );
- var setUrl,
- requests = [],
- rel = this.getRelation( key ),
- keyContents = rel && rel.keyContents,
- toFetch = keyContents && _.select( _.isArray( keyContents ) ? keyContents : [ keyContents ], function( item ) {
- var id = Backbone.Relational.store.resolveIdForItem( rel.relatedModel, item );
- return !_.isNull( id ) && ( update || !Backbone.Relational.store.find( rel.relatedModel, id ) );
- }, this );
-
- if ( toFetch && toFetch.length ) {
- // Create a model for each entry in 'keyContents' that is to be fetched
- var models = _.map( toFetch, function( item ) {
- var model;
-
- if ( _.isObject( item ) ) {
- model = rel.relatedModel.build( item );
- }
- else {
- var attrs = {};
- attrs[ rel.relatedModel.prototype.idAttribute ] = item;
- model = rel.relatedModel.build( attrs );
- }
-
- return model;
- }, this );
-
- // Try if the 'collection' can provide a url to fetch a set of models in one request.
- if ( rel.related instanceof Backbone.Collection && _.isFunction( rel.related.url ) ) {
- setUrl = rel.related.url( models );
- }
-
- // An assumption is that when 'Backbone.Collection.url' is a function, it can handle building of set urls.
- // To make sure it can, test if the url we got by supplying a list of models to fetch is different from
- // the one supplied for the default fetch action (without args to 'url').
- if ( setUrl && setUrl !== rel.related.url() ) {
- var opts = _.defaults(
- {
- error: function() {
- var args = arguments;
- _.each( models, function( model ) {
- model.trigger( 'destroy', model, model.collection, options );
- options.error && options.error.apply( model, args );
- });
- },
- url: setUrl
- },
- options,
- { add: true }
- );
-
- requests = [ rel.related.fetch( opts ) ];
- }
- else {
- requests = _.map( models, function( model ) {
- var opts = _.defaults(
- {
- error: function() {
- model.trigger( 'destroy', model, model.collection, options );
- options.error && options.error.apply( model, arguments );
- }
- },
- options
- );
- return model.fetch( opts );
- }, this );
- }
- }
-
- return requests;
- },
-
- set: function( key, value, options ) {
- Backbone.Relational.eventQueue.block();
-
- // Duplicate backbone's behavior to allow separate key/value parameters, instead of a single 'attributes' object
- var attributes;
- if ( _.isObject( key ) || key == null ) {
- attributes = key;
- options = value;
- }
- else {
- attributes = {};
- attributes[ key ] = value;
- }
-
- var result = Backbone.Model.prototype.set.apply( this, arguments );
-
- // Ideal place to set up relations :)
- if ( !this._isInitialized && !this.isLocked() ) {
- this.constructor.initializeModelHierarchy();
-
- Backbone.Relational.store.register( this );
-
- this.initializeRelations();
- }
- // Update the 'idAttribute' in Backbone.store if; we don't want it to miss an 'id' update due to {silent:true}
- else if ( attributes && this.idAttribute in attributes ) {
- Backbone.Relational.store.update( this );
- }
-
- if ( attributes ) {
- this.updateRelations( options );
- }
-
- // Try to run the global queue holding external events
- Backbone.Relational.eventQueue.unblock();
-
- return result;
- },
-
- unset: function( attribute, options ) {
- Backbone.Relational.eventQueue.block();
-
- var result = Backbone.Model.prototype.unset.apply( this, arguments );
- this.updateRelations( options );
-
- // Try to run the global queue holding external events
- Backbone.Relational.eventQueue.unblock();
-
- return result;
- },
-
- clear: function( options ) {
- Backbone.Relational.eventQueue.block();
-
- var result = Backbone.Model.prototype.clear.apply( this, arguments );
- this.updateRelations( options );
-
- // Try to run the global queue holding external events
- Backbone.Relational.eventQueue.unblock();
-
- return result;
- },
-
- /**
- * Override 'change', so the change will only execute after 'set' has finised (relations are updated),
- * and 'previousAttributes' will be available when the event is fired.
- */
- change: function( options ) {
- var dit = this, args = arguments;
- Backbone.Relational.eventQueue.add( function() {
- Backbone.Model.prototype.change.apply( dit, args );
- });
- },
-
- clone: function() {
- var attributes = _.clone( this.attributes );
- if ( !_.isUndefined( attributes[ this.idAttribute ] ) ) {
- attributes[ this.idAttribute ] = null;
- }
-
- _.each( this.getRelations(), function( rel ) {
- delete attributes[ rel.key ];
- });
-
- return new this.constructor( attributes );
- },
-
- /**
- * Convert relations to JSON, omits them when required
- */
- toJSON: function() {
- // If this Model has already been fully serialized in this branch once, return to avoid loops
- if ( this.isLocked() ) {
- return this.id;
- }
-
- this.acquire();
- var json = Backbone.Model.prototype.toJSON.call( this );
-
- if ( this.constructor._superModel && !( this.constructor._subModelTypeAttribute in json ) ) {
- json[ this.constructor._subModelTypeAttribute ] = this.constructor._subModelTypeValue;
- }
-
- _.each( this._relations, function( rel ) {
- var value = json[ rel.key ];
-
- if ( rel.options.includeInJSON === true) {
- if ( value && _.isFunction( value.toJSON ) ) {
- json[ rel.keyDestination ] = value.toJSON();
- }
- else {
- json[ rel.keyDestination ] = null;
- }
- }
- else if ( _.isString( rel.options.includeInJSON ) ) {
- if ( value instanceof Backbone.Collection ) {
- json[ rel.keyDestination ] = value.pluck( rel.options.includeInJSON );
- }
- else if ( value instanceof Backbone.Model ) {
- json[ rel.keyDestination ] = value.get( rel.options.includeInJSON );
- }
- else {
- json[ rel.keyDestination ] = null;
- }
- }
- else if ( _.isArray( rel.options.includeInJSON ) ) {
- if ( value instanceof Backbone.Collection ) {
- var valueSub = [];
- value.each( function( model ) {
- var curJson = {};
- _.each( rel.options.includeInJSON, function( key ) {
- curJson[ key ] = model.get( key );
- });
- valueSub.push( curJson );
- });
- json[ rel.keyDestination ] = valueSub;
- }
- else if ( value instanceof Backbone.Model ) {
- var valueSub = {};
- _.each( rel.options.includeInJSON, function( key ) {
- valueSub[ key ] = value.get( key );
- });
- json[ rel.keyDestination ] = valueSub;
- }
- else {
- json[ rel.keyDestination ] = null;
- }
- }
- else {
- delete json[ rel.key ];
- }
-
- if ( rel.keyDestination !== rel.key ) {
- delete json[ rel.key ];
- }
- });
-
- this.release();
- return json;
- }
- },
- {
- setup: function( superModel ) {
- // We don't want to share a relations array with a parent, as this will cause problems with
- // reverse relations.
- this.prototype.relations = ( this.prototype.relations || [] ).slice( 0 );
-
- this._subModels = {};
- this._superModel = null;
-
- // If this model has 'subModelTypes' itself, remember them in the store
- if ( this.prototype.hasOwnProperty( 'subModelTypes' ) ) {
- Backbone.Relational.store.addSubModels( this.prototype.subModelTypes, this );
- }
- // The 'subModelTypes' property should not be inherited, so reset it.
- else {
- this.prototype.subModelTypes = null;
- }
-
- // Initialize all reverseRelations that belong to this new model.
- _.each( this.prototype.relations, function( rel ) {
- if ( !rel.model ) {
- rel.model = this;
- }
-
- if ( rel.reverseRelation && rel.model === this ) {
- var preInitialize = true;
- if ( _.isString( rel.relatedModel ) ) {
- /**
- * The related model might not be defined for two reasons
- * 1. it never gets defined, e.g. a typo
- * 2. it is related to itself
- * In neither of these cases do we need to pre-initialize reverse relations.
- */
- var relatedModel = Backbone.Relational.store.getObjectByName( rel.relatedModel );
- preInitialize = relatedModel && ( relatedModel.prototype instanceof Backbone.RelationalModel );
- }
-
- var type = !_.isString( rel.type ) ? rel.type : Backbone[ rel.type ] || Backbone.Relational.store.getObjectByName( rel.type );
- if ( preInitialize && type && type.prototype instanceof Backbone.Relation ) {
- new type( null, rel );
- }
- }
- }, this );
-
- return this;
- },
-
- /**
- * Create a 'Backbone.Model' instance based on 'attributes'.
- * @param {Object} attributes
- * @param {Object} [options]
- * @return {Backbone.Model}
- */
- build: function( attributes, options ) {
- var model = this;
-
- // 'build' is a possible entrypoint; it's possible no model hierarchy has been determined yet.
- this.initializeModelHierarchy();
-
- // Determine what type of (sub)model should be built if applicable.
- // Lookup the proper subModelType in 'this._subModels'.
- if ( this._subModels && this.prototype.subModelTypeAttribute in attributes ) {
- var subModelTypeAttribute = attributes[ this.prototype.subModelTypeAttribute ];
- var subModelType = this._subModels[ subModelTypeAttribute ];
- if ( subModelType ) {
- model = subModelType;
- }
- }
-
- return new model( attributes, options );
- },
-
- initializeModelHierarchy: function() {
- // If we're here for the first time, try to determine if this modelType has a 'superModel'.
- if ( _.isUndefined( this._superModel ) || _.isNull( this._superModel ) ) {
- Backbone.Relational.store.setupSuperModel( this );
-
- // If a superModel has been found, copy relations from the _superModel if they haven't been
- // inherited automatically (due to a redefinition of 'relations').
- // Otherwise, make sure we don't get here again for this type by making '_superModel' false so we fail
- // the isUndefined/isNull check next time.
- if ( this._superModel ) {
- //
- if ( this._superModel.prototype.relations ) {
- var supermodelRelationsExist = _.any( this.prototype.relations, function( rel ) {
- return rel.model && rel.model !== this;
- }, this );
-
- if ( !supermodelRelationsExist ) {
- this.prototype.relations = this._superModel.prototype.relations.concat( this.prototype.relations );
- }
- }
- }
- else {
- this._superModel = false;
- }
- }
-
- // If we came here through 'build' for a model that has 'subModelTypes', and not all of them have been resolved yet, try to resolve each.
- if ( this.prototype.subModelTypes && _.keys( this.prototype.subModelTypes ).length !== _.keys( this._subModels ).length ) {
- _.each( this.prototype.subModelTypes, function( subModelTypeName ) {
- var subModelType = Backbone.Relational.store.getObjectByName( subModelTypeName );
- subModelType && subModelType.initializeModelHierarchy();
- });
- }
- },
-
- /**
- * Find an instance of `this` type in 'Backbone.Relational.store'.
- * - If `attributes` is a string or a number, `findOrCreate` will just query the `store` and return a model if found.
- * - If `attributes` is an object, the model will be updated with `attributes` if found.
- * Otherwise, a new model is created with `attributes` (unless `options.create` is explicitly set to `false`).
- * @param {Object|String|Number} attributes Either a model's id, or the attributes used to create or update a model.
- * @param {Object} [options]
- * @param {Boolean} [options.create=true]
- * @return {Backbone.RelationalModel}
- */
- findOrCreate: function( attributes, options ) {
- // Try to find an instance of 'this' model type in the store
- var model = Backbone.Relational.store.find( this, attributes );
-
- // If we found an instance, update it with the data in 'item'; if not, create an instance
- // (unless 'options.create' is false).
- if ( _.isObject( attributes ) ) {
- if ( model ) {
- model.set( model.parse ? model.parse( attributes ) : attributes, options );
- }
- else if ( !options || ( options && options.create !== false ) ) {
- model = this.build( attributes, options );
- }
- }
-
- return model;
- }
- });
- _.extend( Backbone.RelationalModel.prototype, Backbone.Semaphore );
-
- /**
- * Override Backbone.Collection._prepareModel, so objects will be built using the correct type
- * if the collection.model has subModels.
- */
- Backbone.Collection.prototype.__prepareModel = Backbone.Collection.prototype._prepareModel;
- Backbone.Collection.prototype._prepareModel = function ( model, options ) {
- options || (options = {});
- if ( !( model instanceof Backbone.Model ) ) {
- var attrs = model;
- options.collection = this;
-
- if ( typeof this.model.findOrCreate !== 'undefined' ) {
- model = this.model.findOrCreate( attrs, options );
- }
- else {
- model = new this.model( attrs, options );
- }
-
- if ( !model._validate( model.attributes, options ) ) {
- model = false;
- }
- }
- else if ( !model.collection ) {
- model.collection = this;
- }
-
- return model;
- }
-
- /**
- * Override Backbone.Collection.add, so objects fetched from the server multiple times will
- * update the existing Model. Also, trigger 'relational:add'.
- */
- var add = Backbone.Collection.prototype.__add = Backbone.Collection.prototype.add;
- Backbone.Collection.prototype.add = function( models, options ) {
- options || (options = {});
- if ( !_.isArray( models ) ) {
- models = [ models ];
- }
-
- var modelsToAdd = [];
-
- //console.debug( 'calling add on coll=%o; model=%o, options=%o', this, models, options );
- _.each( models, function( model ) {
- if ( !( model instanceof Backbone.Model ) ) {
- // `_prepareModel` attempts to find `model` in Backbone.store through `findOrCreate`,
- // and sets the new properties on it if is found. Otherwise, a new model is instantiated.
- model = Backbone.Collection.prototype._prepareModel.call( this, model, options );
- }
-
- if ( model instanceof Backbone.Model && !this.get( model ) && !this.getByCid( model ) ) {
- modelsToAdd.push( model );
- }
- }, this );
-
-
- // Add 'models' in a single batch, so the original add will only be called once (and thus 'sort', etc).
- if ( modelsToAdd.length ) {
- add.call( this, modelsToAdd, options );
-
- _.each( modelsToAdd, function( model ) {
- this.trigger( 'relational:add', model, this, options );
- }, this );
- }
-
- return this;
- };
-
- /**
- * Override 'Backbone.Collection.remove' to trigger 'relational:remove'.
- */
- var remove = Backbone.Collection.prototype.__remove = Backbone.Collection.prototype.remove;
- Backbone.Collection.prototype.remove = function( models, options ) {
- options || (options = {});
- if ( !_.isArray( models ) ) {
- models = [ models ];
- }
- else {
- models = models.slice( 0 );
- }
-
- //console.debug('calling remove on coll=%o; models=%o, options=%o', this, models, options );
- _.each( models, function( model ) {
- model = this.getByCid( model ) || this.get( model );
-
- if ( model instanceof Backbone.Model ) {
- remove.call( this, model, options );
- this.trigger('relational:remove', model, this, options);
- }
- }, this );
-
- return this;
- };
-
- /**
- * Override 'Backbone.Collection.reset' to trigger 'relational:reset'.
- */
- var reset = Backbone.Collection.prototype.__reset = Backbone.Collection.prototype.reset;
- Backbone.Collection.prototype.reset = function( models, options ) {
- reset.call( this, models, options );
- this.trigger( 'relational:reset', this, options );
-
- return this;
- };
-
- /**
- * Override 'Backbone.Collection.sort' to trigger 'relational:reset'.
- */
- var sort = Backbone.Collection.prototype.__sort = Backbone.Collection.prototype.sort;
- Backbone.Collection.prototype.sort = function( options ) {
- sort.call( this, options );
- this.trigger( 'relational:reset', this, options );
-
- return this;
- };
-
- /**
- * Override 'Backbone.Collection.trigger' so 'add', 'remove' and 'reset' events are queued until relations
- * are ready.
- */
- var trigger = Backbone.Collection.prototype.__trigger = Backbone.Collection.prototype.trigger;
- Backbone.Collection.prototype.trigger = function( eventName ) {
- if ( eventName === 'add' || eventName === 'remove' || eventName === 'reset' ) {
- var dit = this, args = arguments;
-
- if (eventName === 'add') {
- args = _.toArray(args);
- // the fourth argument in case of a regular add is the option object.
- // we need to clone it, as it could be modified while we wait on the eventQueue to be unblocked
- if (_.isObject(args[3])) {
- args[3] = _.clone(args[3]);
- }
- }
-
- Backbone.Relational.eventQueue.add( function() {
- trigger.apply( dit, args );
- });
- }
- else {
- trigger.apply( this, arguments );
- }
-
- return this;
- };
-
- // Override .extend() to automatically call .setup()
- Backbone.RelationalModel.extend = function( protoProps, classProps ) {
- var child = Backbone.Model.extend.apply( this, arguments );
-
- child.setup( this );
-
- return child;
- };
-})();
--- a/metadataplayer/libs/backbone.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1431 +0,0 @@
-// Backbone.js 0.9.2
-
-// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
-// Backbone may be freely distributed under the MIT license.
-// For all details and documentation:
-// http://backbonejs.org
-
-(function(){
-
- // Initial Setup
- // -------------
-
- // Save a reference to the global object (`window` in the browser, `global`
- // on the server).
- var root = this;
-
- // Save the previous value of the `Backbone` variable, so that it can be
- // restored later on, if `noConflict` is used.
- var previousBackbone = root.Backbone;
-
- // Create a local reference to slice/splice.
- var slice = Array.prototype.slice;
- var splice = Array.prototype.splice;
-
- // The top-level namespace. All public Backbone classes and modules will
- // be attached to this. Exported for both CommonJS and the browser.
- var Backbone;
- if (typeof exports !== 'undefined') {
- Backbone = exports;
- } else {
- Backbone = root.Backbone = {};
- }
-
- // Current version of the library. Keep in sync with `package.json`.
- Backbone.VERSION = '0.9.2';
-
- // Require Underscore, if we're on the server, and it's not already present.
- var _ = root._;
- if (!_ && (typeof require !== 'undefined')) _ = require('underscore');
-
- // For Backbone's purposes, jQuery, Zepto, or Ender owns the `$` variable.
- var $ = root.jQuery || root.Zepto || root.ender;
-
- // Set the JavaScript library that will be used for DOM manipulation and
- // Ajax calls (a.k.a. the `$` variable). By default Backbone will use: jQuery,
- // Zepto, or Ender; but the `setDomLibrary()` method lets you inject an
- // alternate JavaScript library (or a mock library for testing your views
- // outside of a browser).
- Backbone.setDomLibrary = function(lib) {
- $ = lib;
- };
-
- // Runs Backbone.js in *noConflict* mode, returning the `Backbone` variable
- // to its previous owner. Returns a reference to this Backbone object.
- Backbone.noConflict = function() {
- root.Backbone = previousBackbone;
- return this;
- };
-
- // Turn on `emulateHTTP` to support legacy HTTP servers. Setting this option
- // will fake `"PUT"` and `"DELETE"` requests via the `_method` parameter and
- // set a `X-Http-Method-Override` header.
- Backbone.emulateHTTP = false;
-
- // Turn on `emulateJSON` to support legacy servers that can't deal with direct
- // `application/json` requests ... will encode the body as
- // `application/x-www-form-urlencoded` instead and will send the model in a
- // form param named `model`.
- Backbone.emulateJSON = false;
-
- // Backbone.Events
- // -----------------
-
- // Regular expression used to split event strings
- var eventSplitter = /\s+/;
-
- // A module that can be mixed in to *any object* in order to provide it with
- // custom events. You may bind with `on` or remove with `off` callback functions
- // to an event; trigger`-ing an event fires all callbacks in succession.
- //
- // var object = {};
- // _.extend(object, Backbone.Events);
- // object.on('expand', function(){ alert('expanded'); });
- // object.trigger('expand');
- //
- var Events = Backbone.Events = {
-
- // Bind one or more space separated events, `events`, to a `callback`
- // function. Passing `"all"` will bind the callback to all events fired.
- on: function(events, callback, context) {
-
- var calls, event, node, tail, list;
- if (!callback) return this;
- events = events.split(eventSplitter);
- calls = this._callbacks || (this._callbacks = {});
-
- // Create an immutable callback list, allowing traversal during
- // modification. The tail is an empty object that will always be used
- // as the next node.
- while (event = events.shift()) {
- list = calls[event];
- node = list ? list.tail : {};
- node.next = tail = {};
- node.context = context;
- node.callback = callback;
- calls[event] = {tail: tail, next: list ? list.next : node};
- }
-
- return this;
- },
-
- // Remove one or many callbacks. If `context` is null, removes all callbacks
- // with that function. If `callback` is null, removes all callbacks for the
- // event. If `events` is null, removes all bound callbacks for all events.
- off: function(events, callback, context) {
- var event, calls, node, tail, cb, ctx;
-
- // No events, or removing *all* events.
- if (!(calls = this._callbacks)) return;
- if (!(events || callback || context)) {
- delete this._callbacks;
- return this;
- }
-
- // Loop through the listed events and contexts, splicing them out of the
- // linked list of callbacks if appropriate.
- events = events ? events.split(eventSplitter) : _.keys(calls);
- while (event = events.shift()) {
- node = calls[event];
- delete calls[event];
- if (!node || !(callback || context)) continue;
- // Create a new list, omitting the indicated callbacks.
- tail = node.tail;
- while ((node = node.next) !== tail) {
- cb = node.callback;
- ctx = node.context;
- if ((callback && cb !== callback) || (context && ctx !== context)) {
- this.on(event, cb, ctx);
- }
- }
- }
-
- return this;
- },
-
- // Trigger one or many events, firing all bound callbacks. Callbacks are
- // passed the same arguments as `trigger` is, apart from the event name
- // (unless you're listening on `"all"`, which will cause your callback to
- // receive the true name of the event as the first argument).
- trigger: function(events) {
- var event, node, calls, tail, args, all, rest;
- if (!(calls = this._callbacks)) return this;
- all = calls.all;
- events = events.split(eventSplitter);
- rest = slice.call(arguments, 1);
-
- // For each event, walk through the linked list of callbacks twice,
- // first to trigger the event, then to trigger any `"all"` callbacks.
- while (event = events.shift()) {
- if (node = calls[event]) {
- tail = node.tail;
- while ((node = node.next) !== tail) {
- node.callback.apply(node.context || this, rest);
- }
- }
- if (node = all) {
- tail = node.tail;
- args = [event].concat(rest);
- while ((node = node.next) !== tail) {
- node.callback.apply(node.context || this, args);
- }
- }
- }
-
- return this;
- }
-
- };
-
- // Aliases for backwards compatibility.
- Events.bind = Events.on;
- Events.unbind = Events.off;
-
- // Backbone.Model
- // --------------
-
- // Create a new model, with defined attributes. A client id (`cid`)
- // is automatically generated and assigned for you.
- var Model = Backbone.Model = function(attributes, options) {
- var defaults;
- attributes || (attributes = {});
- if (options && options.parse) attributes = this.parse(attributes);
- if (defaults = getValue(this, 'defaults')) {
- attributes = _.extend({}, defaults, attributes);
- }
- if (options && options.collection) this.collection = options.collection;
- this.attributes = {};
- this._escapedAttributes = {};
- this.cid = _.uniqueId('c');
- this.changed = {};
- this._silent = {};
- this._pending = {};
- this.set(attributes, {silent: true});
- // Reset change tracking.
- this.changed = {};
- this._silent = {};
- this._pending = {};
- this._previousAttributes = _.clone(this.attributes);
- this.initialize.apply(this, arguments);
- };
-
- // Attach all inheritable methods to the Model prototype.
- _.extend(Model.prototype, Events, {
-
- // A hash of attributes whose current and previous value differ.
- changed: null,
-
- // A hash of attributes that have silently changed since the last time
- // `change` was called. Will become pending attributes on the next call.
- _silent: null,
-
- // A hash of attributes that have changed since the last `'change'` event
- // began.
- _pending: null,
-
- // The default name for the JSON `id` attribute is `"id"`. MongoDB and
- // CouchDB users may want to set this to `"_id"`.
- idAttribute: 'id',
-
- // Initialize is an empty function by default. Override it with your own
- // initialization logic.
- initialize: function(){},
-
- // Return a copy of the model's `attributes` object.
- toJSON: function(options) {
- return _.clone(this.attributes);
- },
-
- // Get the value of an attribute.
- get: function(attr) {
- return this.attributes[attr];
- },
-
- // Get the HTML-escaped value of an attribute.
- escape: function(attr) {
- var html;
- if (html = this._escapedAttributes[attr]) return html;
- var val = this.get(attr);
- return this._escapedAttributes[attr] = _.escape(val == null ? '' : '' + val);
- },
-
- // Returns `true` if the attribute contains a value that is not null
- // or undefined.
- has: function(attr) {
- return this.get(attr) != null;
- },
-
- // Set a hash of model attributes on the object, firing `"change"` unless
- // you choose to silence it.
- set: function(key, value, options) {
- var attrs, attr, val;
-
- // Handle both `"key", value` and `{key: value}` -style arguments.
- if (_.isObject(key) || key == null) {
- attrs = key;
- options = value;
- } else {
- attrs = {};
- attrs[key] = value;
- }
-
- // Extract attributes and options.
- options || (options = {});
- if (!attrs) return this;
- if (attrs instanceof Model) attrs = attrs.attributes;
- if (options.unset) for (attr in attrs) attrs[attr] = void 0;
-
- // Run validation.
- if (!this._validate(attrs, options)) return false;
-
- // Check for changes of `id`.
- if (this.idAttribute in attrs) this.id = attrs[this.idAttribute];
-
- var changes = options.changes = {};
- var now = this.attributes;
- var escaped = this._escapedAttributes;
- var prev = this._previousAttributes || {};
-
- // For each `set` attribute...
- for (attr in attrs) {
- val = attrs[attr];
-
- // If the new and current value differ, record the change.
- if (!_.isEqual(now[attr], val) || (options.unset && _.has(now, attr))) {
- delete escaped[attr];
- (options.silent ? this._silent : changes)[attr] = true;
- }
-
- // Update or delete the current value.
- options.unset ? delete now[attr] : now[attr] = val;
-
- // If the new and previous value differ, record the change. If not,
- // then remove changes for this attribute.
- if (!_.isEqual(prev[attr], val) || (_.has(now, attr) != _.has(prev, attr))) {
- this.changed[attr] = val;
- if (!options.silent) this._pending[attr] = true;
- } else {
- delete this.changed[attr];
- delete this._pending[attr];
- }
- }
-
- // Fire the `"change"` events.
- if (!options.silent) this.change(options);
- return this;
- },
-
- // Remove an attribute from the model, firing `"change"` unless you choose
- // to silence it. `unset` is a noop if the attribute doesn't exist.
- unset: function(attr, options) {
- (options || (options = {})).unset = true;
- return this.set(attr, null, options);
- },
-
- // Clear all attributes on the model, firing `"change"` unless you choose
- // to silence it.
- clear: function(options) {
- (options || (options = {})).unset = true;
- return this.set(_.clone(this.attributes), options);
- },
-
- // Fetch the model from the server. If the server's representation of the
- // model differs from its current attributes, they will be overriden,
- // triggering a `"change"` event.
- fetch: function(options) {
- options = options ? _.clone(options) : {};
- var model = this;
- var success = options.success;
- options.success = function(resp, status, xhr) {
- if (!model.set(model.parse(resp, xhr), options)) return false;
- if (success) success(model, resp);
- };
- options.error = Backbone.wrapError(options.error, model, options);
- return (this.sync || Backbone.sync).call(this, 'read', this, options);
- },
-
- // Set a hash of model attributes, and sync the model to the server.
- // If the server returns an attributes hash that differs, the model's
- // state will be `set` again.
- save: function(key, value, options) {
- var attrs, current;
-
- // Handle both `("key", value)` and `({key: value})` -style calls.
- if (_.isObject(key) || key == null) {
- attrs = key;
- options = value;
- } else {
- attrs = {};
- attrs[key] = value;
- }
- options = options ? _.clone(options) : {};
-
- // If we're "wait"-ing to set changed attributes, validate early.
- if (options.wait) {
- if (!this._validate(attrs, options)) return false;
- current = _.clone(this.attributes);
- }
-
- // Regular saves `set` attributes before persisting to the server.
- var silentOptions = _.extend({}, options, {silent: true});
- if (attrs && !this.set(attrs, options.wait ? silentOptions : options)) {
- return false;
- }
-
- // After a successful server-side save, the client is (optionally)
- // updated with the server-side state.
- var model = this;
- var success = options.success;
- options.success = function(resp, status, xhr) {
- var serverAttrs = model.parse(resp, xhr);
- if (options.wait) {
- delete options.wait;
- serverAttrs = _.extend(attrs || {}, serverAttrs);
- }
- if (!model.set(serverAttrs, options)) return false;
- if (success) {
- success(model, resp);
- } else {
- model.trigger('sync', model, resp, options);
- }
- };
-
- // Finish configuring and sending the Ajax request.
- options.error = Backbone.wrapError(options.error, model, options);
- var method = this.isNew() ? 'create' : 'update';
- var xhr = (this.sync || Backbone.sync).call(this, method, this, options);
- if (options.wait) this.set(current, silentOptions);
- return xhr;
- },
-
- // Destroy this model on the server if it was already persisted.
- // Optimistically removes the model from its collection, if it has one.
- // If `wait: true` is passed, waits for the server to respond before removal.
- destroy: function(options) {
- options = options ? _.clone(options) : {};
- var model = this;
- var success = options.success;
-
- var triggerDestroy = function() {
- model.trigger('destroy', model, model.collection, options);
- };
-
- if (this.isNew()) {
- triggerDestroy();
- return false;
- }
-
- options.success = function(resp) {
- if (options.wait) triggerDestroy();
- if (success) {
- success(model, resp);
- } else {
- model.trigger('sync', model, resp, options);
- }
- };
-
- options.error = Backbone.wrapError(options.error, model, options);
- var xhr = (this.sync || Backbone.sync).call(this, 'delete', this, options);
- if (!options.wait) triggerDestroy();
- return xhr;
- },
-
- // Default URL for the model's representation on the server -- if you're
- // using Backbone's restful methods, override this to change the endpoint
- // that will be called.
- url: function() {
- var base = getValue(this, 'urlRoot') || getValue(this.collection, 'url') || urlError();
- if (this.isNew()) return base;
- return base + (base.charAt(base.length - 1) == '/' ? '' : '/') + encodeURIComponent(this.id);
- },
-
- // **parse** converts a response into the hash of attributes to be `set` on
- // the model. The default implementation is just to pass the response along.
- parse: function(resp, xhr) {
- return resp;
- },
-
- // Create a new model with identical attributes to this one.
- clone: function() {
- return new this.constructor(this.attributes);
- },
-
- // A model is new if it has never been saved to the server, and lacks an id.
- isNew: function() {
- return this.id == null;
- },
-
- // Call this method to manually fire a `"change"` event for this model and
- // a `"change:attribute"` event for each changed attribute.
- // Calling this will cause all objects observing the model to update.
- change: function(options) {
- options || (options = {});
- var changing = this._changing;
- this._changing = true;
-
- // Silent changes become pending changes.
- for (var attr in this._silent) this._pending[attr] = true;
-
- // Silent changes are triggered.
- var changes = _.extend({}, options.changes, this._silent);
- this._silent = {};
- for (var attr in changes) {
- this.trigger('change:' + attr, this, this.get(attr), options);
- }
- if (changing) return this;
-
- // Continue firing `"change"` events while there are pending changes.
- while (!_.isEmpty(this._pending)) {
- this._pending = {};
- this.trigger('change', this, options);
- // Pending and silent changes still remain.
- for (var attr in this.changed) {
- if (this._pending[attr] || this._silent[attr]) continue;
- delete this.changed[attr];
- }
- this._previousAttributes = _.clone(this.attributes);
- }
-
- this._changing = false;
- return this;
- },
-
- // Determine if the model has changed since the last `"change"` event.
- // If you specify an attribute name, determine if that attribute has changed.
- hasChanged: function(attr) {
- if (!arguments.length) return !_.isEmpty(this.changed);
- return _.has(this.changed, attr);
- },
-
- // Return an object containing all the attributes that have changed, or
- // false if there are no changed attributes. Useful for determining what
- // parts of a view need to be updated and/or what attributes need to be
- // persisted to the server. Unset attributes will be set to undefined.
- // You can also pass an attributes object to diff against the model,
- // determining if there *would be* a change.
- changedAttributes: function(diff) {
- if (!diff) return this.hasChanged() ? _.clone(this.changed) : false;
- var val, changed = false, old = this._previousAttributes;
- for (var attr in diff) {
- if (_.isEqual(old[attr], (val = diff[attr]))) continue;
- (changed || (changed = {}))[attr] = val;
- }
- return changed;
- },
-
- // Get the previous value of an attribute, recorded at the time the last
- // `"change"` event was fired.
- previous: function(attr) {
- if (!arguments.length || !this._previousAttributes) return null;
- return this._previousAttributes[attr];
- },
-
- // Get all of the attributes of the model at the time of the previous
- // `"change"` event.
- previousAttributes: function() {
- return _.clone(this._previousAttributes);
- },
-
- // Check if the model is currently in a valid state. It's only possible to
- // get into an *invalid* state if you're using silent changes.
- isValid: function() {
- return !this.validate(this.attributes);
- },
-
- // Run validation against the next complete set of model attributes,
- // returning `true` if all is well. If a specific `error` callback has
- // been passed, call that instead of firing the general `"error"` event.
- _validate: function(attrs, options) {
- if (options.silent || !this.validate) return true;
- attrs = _.extend({}, this.attributes, attrs);
- var error = this.validate(attrs, options);
- if (!error) return true;
- if (options && options.error) {
- options.error(this, error, options);
- } else {
- this.trigger('error', this, error, options);
- }
- return false;
- }
-
- });
-
- // Backbone.Collection
- // -------------------
-
- // Provides a standard collection class for our sets of models, ordered
- // or unordered. If a `comparator` is specified, the Collection will maintain
- // its models in sort order, as they're added and removed.
- var Collection = Backbone.Collection = function(models, options) {
- options || (options = {});
- if (options.model) this.model = options.model;
- if (options.comparator) this.comparator = options.comparator;
- this._reset();
- this.initialize.apply(this, arguments);
- if (models) this.reset(models, {silent: true, parse: options.parse});
- };
-
- // Define the Collection's inheritable methods.
- _.extend(Collection.prototype, Events, {
-
- // The default model for a collection is just a **Backbone.Model**.
- // This should be overridden in most cases.
- model: Model,
-
- // Initialize is an empty function by default. Override it with your own
- // initialization logic.
- initialize: function(){},
-
- // The JSON representation of a Collection is an array of the
- // models' attributes.
- toJSON: function(options) {
- return this.map(function(model){ return model.toJSON(options); });
- },
-
- // Add a model, or list of models to the set. Pass **silent** to avoid
- // firing the `add` event for every new model.
- add: function(models, options) {
- var i, index, length, model, cid, id, cids = {}, ids = {}, dups = [];
- options || (options = {});
- models = _.isArray(models) ? models.slice() : [models];
-
- // Begin by turning bare objects into model references, and preventing
- // invalid models or duplicate models from being added.
- for (i = 0, length = models.length; i < length; i++) {
- if (!(model = models[i] = this._prepareModel(models[i], options))) {
- throw new Error("Can't add an invalid model to a collection");
- }
- cid = model.cid;
- id = model.id;
- if (cids[cid] || this._byCid[cid] || ((id != null) && (ids[id] || this._byId[id]))) {
- dups.push(i);
- continue;
- }
- cids[cid] = ids[id] = model;
- }
-
- // Remove duplicates.
- i = dups.length;
- while (i--) {
- models.splice(dups[i], 1);
- }
-
- // Listen to added models' events, and index models for lookup by
- // `id` and by `cid`.
- for (i = 0, length = models.length; i < length; i++) {
- (model = models[i]).on('all', this._onModelEvent, this);
- this._byCid[model.cid] = model;
- if (model.id != null) this._byId[model.id] = model;
- }
-
- // Insert models into the collection, re-sorting if needed, and triggering
- // `add` events unless silenced.
- this.length += length;
- index = options.at != null ? options.at : this.models.length;
- splice.apply(this.models, [index, 0].concat(models));
- if (this.comparator) this.sort({silent: true});
- if (options.silent) return this;
- for (i = 0, length = this.models.length; i < length; i++) {
- if (!cids[(model = this.models[i]).cid]) continue;
- options.index = i;
- model.trigger('add', model, this, options);
- }
- return this;
- },
-
- // Remove a model, or a list of models from the set. Pass silent to avoid
- // firing the `remove` event for every model removed.
- remove: function(models, options) {
- var i, l, index, model;
- options || (options = {});
- models = _.isArray(models) ? models.slice() : [models];
- for (i = 0, l = models.length; i < l; i++) {
- model = this.getByCid(models[i]) || this.get(models[i]);
- if (!model) continue;
- delete this._byId[model.id];
- delete this._byCid[model.cid];
- index = this.indexOf(model);
- this.models.splice(index, 1);
- this.length--;
- if (!options.silent) {
- options.index = index;
- model.trigger('remove', model, this, options);
- }
- this._removeReference(model);
- }
- return this;
- },
-
- // Add a model to the end of the collection.
- push: function(model, options) {
- model = this._prepareModel(model, options);
- this.add(model, options);
- return model;
- },
-
- // Remove a model from the end of the collection.
- pop: function(options) {
- var model = this.at(this.length - 1);
- this.remove(model, options);
- return model;
- },
-
- // Add a model to the beginning of the collection.
- unshift: function(model, options) {
- model = this._prepareModel(model, options);
- this.add(model, _.extend({at: 0}, options));
- return model;
- },
-
- // Remove a model from the beginning of the collection.
- shift: function(options) {
- var model = this.at(0);
- this.remove(model, options);
- return model;
- },
-
- // Get a model from the set by id.
- get: function(id) {
- if (id == null) return void 0;
- return this._byId[id.id != null ? id.id : id];
- },
-
- // Get a model from the set by client id.
- getByCid: function(cid) {
- return cid && this._byCid[cid.cid || cid];
- },
-
- // Get the model at the given index.
- at: function(index) {
- return this.models[index];
- },
-
- // Return models with matching attributes. Useful for simple cases of `filter`.
- where: function(attrs) {
- if (_.isEmpty(attrs)) return [];
- return this.filter(function(model) {
- for (var key in attrs) {
- if (attrs[key] !== model.get(key)) return false;
- }
- return true;
- });
- },
-
- // Force the collection to re-sort itself. You don't need to call this under
- // normal circumstances, as the set will maintain sort order as each item
- // is added.
- sort: function(options) {
- options || (options = {});
- if (!this.comparator) throw new Error('Cannot sort a set without a comparator');
- var boundComparator = _.bind(this.comparator, this);
- if (this.comparator.length == 1) {
- this.models = this.sortBy(boundComparator);
- } else {
- this.models.sort(boundComparator);
- }
- if (!options.silent) this.trigger('reset', this, options);
- return this;
- },
-
- // Pluck an attribute from each model in the collection.
- pluck: function(attr) {
- return _.map(this.models, function(model){ return model.get(attr); });
- },
-
- // When you have more items than you want to add or remove individually,
- // you can reset the entire set with a new list of models, without firing
- // any `add` or `remove` events. Fires `reset` when finished.
- reset: function(models, options) {
- models || (models = []);
- options || (options = {});
- for (var i = 0, l = this.models.length; i < l; i++) {
- this._removeReference(this.models[i]);
- }
- this._reset();
- this.add(models, _.extend({silent: true}, options));
- if (!options.silent) this.trigger('reset', this, options);
- return this;
- },
-
- // Fetch the default set of models for this collection, resetting the
- // collection when they arrive. If `add: true` is passed, appends the
- // models to the collection instead of resetting.
- fetch: function(options) {
- options = options ? _.clone(options) : {};
- if (options.parse === undefined) options.parse = true;
- var collection = this;
- var success = options.success;
- options.success = function(resp, status, xhr) {
- collection[options.add ? 'add' : 'reset'](collection.parse(resp, xhr), options);
- if (success) success(collection, resp);
- };
- options.error = Backbone.wrapError(options.error, collection, options);
- return (this.sync || Backbone.sync).call(this, 'read', this, options);
- },
-
- // Create a new instance of a model in this collection. Add the model to the
- // collection immediately, unless `wait: true` is passed, in which case we
- // wait for the server to agree.
- create: function(model, options) {
- var coll = this;
- options = options ? _.clone(options) : {};
- model = this._prepareModel(model, options);
- if (!model) return false;
- if (!options.wait) coll.add(model, options);
- var success = options.success;
- options.success = function(nextModel, resp, xhr) {
- if (options.wait) coll.add(nextModel, options);
- if (success) {
- success(nextModel, resp);
- } else {
- nextModel.trigger('sync', model, resp, options);
- }
- };
- model.save(null, options);
- return model;
- },
-
- // **parse** converts a response into a list of models to be added to the
- // collection. The default implementation is just to pass it through.
- parse: function(resp, xhr) {
- return resp;
- },
-
- // Proxy to _'s chain. Can't be proxied the same way the rest of the
- // underscore methods are proxied because it relies on the underscore
- // constructor.
- chain: function () {
- return _(this.models).chain();
- },
-
- // Reset all internal state. Called when the collection is reset.
- _reset: function(options) {
- this.length = 0;
- this.models = [];
- this._byId = {};
- this._byCid = {};
- },
-
- // Prepare a model or hash of attributes to be added to this collection.
- _prepareModel: function(model, options) {
- options || (options = {});
- if (!(model instanceof Model)) {
- var attrs = model;
- options.collection = this;
- model = new this.model(attrs, options);
- if (!model._validate(model.attributes, options)) model = false;
- } else if (!model.collection) {
- model.collection = this;
- }
- return model;
- },
-
- // Internal method to remove a model's ties to a collection.
- _removeReference: function(model) {
- if (this == model.collection) {
- delete model.collection;
- }
- model.off('all', this._onModelEvent, this);
- },
-
- // Internal method called every time a model in the set fires an event.
- // Sets need to update their indexes when models change ids. All other
- // events simply proxy through. "add" and "remove" events that originate
- // in other collections are ignored.
- _onModelEvent: function(event, model, collection, options) {
- if ((event == 'add' || event == 'remove') && collection != this) return;
- if (event == 'destroy') {
- this.remove(model, options);
- }
- if (model && event === 'change:' + model.idAttribute) {
- delete this._byId[model.previous(model.idAttribute)];
- this._byId[model.id] = model;
- }
- this.trigger.apply(this, arguments);
- }
-
- });
-
- // Underscore methods that we want to implement on the Collection.
- var methods = ['forEach', 'each', 'map', 'reduce', 'reduceRight', 'find',
- 'detect', 'filter', 'select', 'reject', 'every', 'all', 'some', 'any',
- 'include', 'contains', 'invoke', 'max', 'min', 'sortBy', 'sortedIndex',
- 'toArray', 'size', 'first', 'initial', 'rest', 'last', 'without', 'indexOf',
- 'shuffle', 'lastIndexOf', 'isEmpty', 'groupBy'];
-
- // Mix in each Underscore method as a proxy to `Collection#models`.
- _.each(methods, function(method) {
- Collection.prototype[method] = function() {
- return _[method].apply(_, [this.models].concat(_.toArray(arguments)));
- };
- });
-
- // Backbone.Router
- // -------------------
-
- // Routers map faux-URLs to actions, and fire events when routes are
- // matched. Creating a new one sets its `routes` hash, if not set statically.
- var Router = Backbone.Router = function(options) {
- options || (options = {});
- if (options.routes) this.routes = options.routes;
- this._bindRoutes();
- this.initialize.apply(this, arguments);
- };
-
- // Cached regular expressions for matching named param parts and splatted
- // parts of route strings.
- var namedParam = /:\w+/g;
- var splatParam = /\*\w+/g;
- var escapeRegExp = /[-[\]{}()+?.,\\^$|#\s]/g;
-
- // Set up all inheritable **Backbone.Router** properties and methods.
- _.extend(Router.prototype, Events, {
-
- // Initialize is an empty function by default. Override it with your own
- // initialization logic.
- initialize: function(){},
-
- // Manually bind a single named route to a callback. For example:
- //
- // this.route('search/:query/p:num', 'search', function(query, num) {
- // ...
- // });
- //
- route: function(route, name, callback) {
- Backbone.history || (Backbone.history = new History);
- if (!_.isRegExp(route)) route = this._routeToRegExp(route);
- if (!callback) callback = this[name];
- Backbone.history.route(route, _.bind(function(fragment) {
- var args = this._extractParameters(route, fragment);
- callback && callback.apply(this, args);
- this.trigger.apply(this, ['route:' + name].concat(args));
- Backbone.history.trigger('route', this, name, args);
- }, this));
- return this;
- },
-
- // Simple proxy to `Backbone.history` to save a fragment into the history.
- navigate: function(fragment, options) {
- Backbone.history.navigate(fragment, options);
- },
-
- // Bind all defined routes to `Backbone.history`. We have to reverse the
- // order of the routes here to support behavior where the most general
- // routes can be defined at the bottom of the route map.
- _bindRoutes: function() {
- if (!this.routes) return;
- var routes = [];
- for (var route in this.routes) {
- routes.unshift([route, this.routes[route]]);
- }
- for (var i = 0, l = routes.length; i < l; i++) {
- this.route(routes[i][0], routes[i][1], this[routes[i][1]]);
- }
- },
-
- // Convert a route string into a regular expression, suitable for matching
- // against the current location hash.
- _routeToRegExp: function(route) {
- route = route.replace(escapeRegExp, '\\$&')
- .replace(namedParam, '([^\/]+)')
- .replace(splatParam, '(.*?)');
- return new RegExp('^' + route + '$');
- },
-
- // Given a route, and a URL fragment that it matches, return the array of
- // extracted parameters.
- _extractParameters: function(route, fragment) {
- return route.exec(fragment).slice(1);
- }
-
- });
-
- // Backbone.History
- // ----------------
-
- // Handles cross-browser history management, based on URL fragments. If the
- // browser does not support `onhashchange`, falls back to polling.
- var History = Backbone.History = function() {
- this.handlers = [];
- _.bindAll(this, 'checkUrl');
- };
-
- // Cached regex for cleaning leading hashes and slashes .
- var routeStripper = /^[#\/]/;
-
- // Cached regex for detecting MSIE.
- var isExplorer = /msie [\w.]+/;
-
- // Has the history handling already been started?
- History.started = false;
-
- // Set up all inheritable **Backbone.History** properties and methods.
- _.extend(History.prototype, Events, {
-
- // The default interval to poll for hash changes, if necessary, is
- // twenty times a second.
- interval: 50,
-
- // Gets the true hash value. Cannot use location.hash directly due to bug
- // in Firefox where location.hash will always be decoded.
- getHash: function(windowOverride) {
- var loc = windowOverride ? windowOverride.location : window.location;
- var match = loc.href.match(/#(.*)$/);
- return match ? match[1] : '';
- },
-
- // Get the cross-browser normalized URL fragment, either from the URL,
- // the hash, or the override.
- getFragment: function(fragment, forcePushState) {
- if (fragment == null) {
- if (this._hasPushState || forcePushState) {
- fragment = window.location.pathname;
- var search = window.location.search;
- if (search) fragment += search;
- } else {
- fragment = this.getHash();
- }
- }
- if (!fragment.indexOf(this.options.root)) fragment = fragment.substr(this.options.root.length);
- return fragment.replace(routeStripper, '');
- },
-
- // Start the hash change handling, returning `true` if the current URL matches
- // an existing route, and `false` otherwise.
- start: function(options) {
- if (History.started) throw new Error("Backbone.history has already been started");
- History.started = true;
-
- // Figure out the initial configuration. Do we need an iframe?
- // Is pushState desired ... is it available?
- this.options = _.extend({}, {root: '/'}, this.options, options);
- this._wantsHashChange = this.options.hashChange !== false;
- this._wantsPushState = !!this.options.pushState;
- this._hasPushState = !!(this.options.pushState && window.history && window.history.pushState);
- var fragment = this.getFragment();
- var docMode = document.documentMode;
- var oldIE = (isExplorer.exec(navigator.userAgent.toLowerCase()) && (!docMode || docMode <= 7));
-
- if (oldIE) {
- this.iframe = $('<iframe src="javascript:0" tabindex="-1" />').hide().appendTo('body')[0].contentWindow;
- this.navigate(fragment);
- }
-
- // Depending on whether we're using pushState or hashes, and whether
- // 'onhashchange' is supported, determine how we check the URL state.
- if (this._hasPushState) {
- $(window).bind('popstate', this.checkUrl);
- } else if (this._wantsHashChange && ('onhashchange' in window) && !oldIE) {
- $(window).bind('hashchange', this.checkUrl);
- } else if (this._wantsHashChange) {
- this._checkUrlInterval = setInterval(this.checkUrl, this.interval);
- }
-
- // Determine if we need to change the base url, for a pushState link
- // opened by a non-pushState browser.
- this.fragment = fragment;
- var loc = window.location;
- var atRoot = loc.pathname == this.options.root;
-
- // If we've started off with a route from a `pushState`-enabled browser,
- // but we're currently in a browser that doesn't support it...
- if (this._wantsHashChange && this._wantsPushState && !this._hasPushState && !atRoot) {
- this.fragment = this.getFragment(null, true);
- window.location.replace(this.options.root + '#' + this.fragment);
- // Return immediately as browser will do redirect to new url
- return true;
-
- // Or if we've started out with a hash-based route, but we're currently
- // in a browser where it could be `pushState`-based instead...
- } else if (this._wantsPushState && this._hasPushState && atRoot && loc.hash) {
- this.fragment = this.getHash().replace(routeStripper, '');
- window.history.replaceState({}, document.title, loc.protocol + '//' + loc.host + this.options.root + this.fragment);
- }
-
- if (!this.options.silent) {
- return this.loadUrl();
- }
- },
-
- // Disable Backbone.history, perhaps temporarily. Not useful in a real app,
- // but possibly useful for unit testing Routers.
- stop: function() {
- $(window).unbind('popstate', this.checkUrl).unbind('hashchange', this.checkUrl);
- clearInterval(this._checkUrlInterval);
- History.started = false;
- },
-
- // Add a route to be tested when the fragment changes. Routes added later
- // may override previous routes.
- route: function(route, callback) {
- this.handlers.unshift({route: route, callback: callback});
- },
-
- // Checks the current URL to see if it has changed, and if it has,
- // calls `loadUrl`, normalizing across the hidden iframe.
- checkUrl: function(e) {
- var current = this.getFragment();
- if (current == this.fragment && this.iframe) current = this.getFragment(this.getHash(this.iframe));
- if (current == this.fragment) return false;
- if (this.iframe) this.navigate(current);
- this.loadUrl() || this.loadUrl(this.getHash());
- },
-
- // Attempt to load the current URL fragment. If a route succeeds with a
- // match, returns `true`. If no defined routes matches the fragment,
- // returns `false`.
- loadUrl: function(fragmentOverride) {
- var fragment = this.fragment = this.getFragment(fragmentOverride);
- var matched = _.any(this.handlers, function(handler) {
- if (handler.route.test(fragment)) {
- handler.callback(fragment);
- return true;
- }
- });
- return matched;
- },
-
- // Save a fragment into the hash history, or replace the URL state if the
- // 'replace' option is passed. You are responsible for properly URL-encoding
- // the fragment in advance.
- //
- // The options object can contain `trigger: true` if you wish to have the
- // route callback be fired (not usually desirable), or `replace: true`, if
- // you wish to modify the current URL without adding an entry to the history.
- navigate: function(fragment, options) {
- if (!History.started) return false;
- if (!options || options === true) options = {trigger: options};
- var frag = (fragment || '').replace(routeStripper, '');
- if (this.fragment == frag) return;
-
- // If pushState is available, we use it to set the fragment as a real URL.
- if (this._hasPushState) {
- if (frag.indexOf(this.options.root) != 0) frag = this.options.root + frag;
- this.fragment = frag;
- window.history[options.replace ? 'replaceState' : 'pushState']({}, document.title, frag);
-
- // If hash changes haven't been explicitly disabled, update the hash
- // fragment to store history.
- } else if (this._wantsHashChange) {
- this.fragment = frag;
- this._updateHash(window.location, frag, options.replace);
- if (this.iframe && (frag != this.getFragment(this.getHash(this.iframe)))) {
- // Opening and closing the iframe tricks IE7 and earlier to push a history entry on hash-tag change.
- // When replace is true, we don't want this.
- if(!options.replace) this.iframe.document.open().close();
- this._updateHash(this.iframe.location, frag, options.replace);
- }
-
- // If you've told us that you explicitly don't want fallback hashchange-
- // based history, then `navigate` becomes a page refresh.
- } else {
- window.location.assign(this.options.root + fragment);
- }
- if (options.trigger) this.loadUrl(fragment);
- },
-
- // Update the hash location, either replacing the current entry, or adding
- // a new one to the browser history.
- _updateHash: function(location, fragment, replace) {
- if (replace) {
- location.replace(location.toString().replace(/(javascript:|#).*$/, '') + '#' + fragment);
- } else {
- location.hash = fragment;
- }
- }
- });
-
- // Backbone.View
- // -------------
-
- // Creating a Backbone.View creates its initial element outside of the DOM,
- // if an existing element is not provided...
- var View = Backbone.View = function(options) {
- this.cid = _.uniqueId('view');
- this._configure(options || {});
- this._ensureElement();
- this.initialize.apply(this, arguments);
- this.delegateEvents();
- };
-
- // Cached regex to split keys for `delegate`.
- var delegateEventSplitter = /^(\S+)\s*(.*)$/;
-
- // List of view options to be merged as properties.
- var viewOptions = ['model', 'collection', 'el', 'id', 'attributes', 'className', 'tagName'];
-
- // Set up all inheritable **Backbone.View** properties and methods.
- _.extend(View.prototype, Events, {
-
- // The default `tagName` of a View's element is `"div"`.
- tagName: 'div',
-
- // jQuery delegate for element lookup, scoped to DOM elements within the
- // current view. This should be prefered to global lookups where possible.
- $: function(selector) {
- return this.$el.find(selector);
- },
-
- // Initialize is an empty function by default. Override it with your own
- // initialization logic.
- initialize: function(){},
-
- // **render** is the core function that your view should override, in order
- // to populate its element (`this.el`), with the appropriate HTML. The
- // convention is for **render** to always return `this`.
- render: function() {
- return this;
- },
-
- // Remove this view from the DOM. Note that the view isn't present in the
- // DOM by default, so calling this method may be a no-op.
- remove: function() {
- this.$el.remove();
- return this;
- },
-
- // For small amounts of DOM Elements, where a full-blown template isn't
- // needed, use **make** to manufacture elements, one at a time.
- //
- // var el = this.make('li', {'class': 'row'}, this.model.escape('title'));
- //
- make: function(tagName, attributes, content) {
- var el = document.createElement(tagName);
- if (attributes) $(el).attr(attributes);
- if (content) $(el).html(content);
- return el;
- },
-
- // Change the view's element (`this.el` property), including event
- // re-delegation.
- setElement: function(element, delegate) {
- if (this.$el) this.undelegateEvents();
- this.$el = (element instanceof $) ? element : $(element);
- this.el = this.$el[0];
- if (delegate !== false) this.delegateEvents();
- return this;
- },
-
- // Set callbacks, where `this.events` is a hash of
- //
- // *{"event selector": "callback"}*
- //
- // {
- // 'mousedown .title': 'edit',
- // 'click .button': 'save'
- // 'click .open': function(e) { ... }
- // }
- //
- // pairs. Callbacks will be bound to the view, with `this` set properly.
- // Uses event delegation for efficiency.
- // Omitting the selector binds the event to `this.el`.
- // This only works for delegate-able events: not `focus`, `blur`, and
- // not `change`, `submit`, and `reset` in Internet Explorer.
- delegateEvents: function(events) {
- if (!(events || (events = getValue(this, 'events')))) return;
- this.undelegateEvents();
- for (var key in events) {
- var method = events[key];
- if (!_.isFunction(method)) method = this[events[key]];
- if (!method) throw new Error('Method "' + events[key] + '" does not exist');
- var match = key.match(delegateEventSplitter);
- var eventName = match[1], selector = match[2];
- method = _.bind(method, this);
- eventName += '.delegateEvents' + this.cid;
- if (selector === '') {
- this.$el.bind(eventName, method);
- } else {
- this.$el.delegate(selector, eventName, method);
- }
- }
- },
-
- // Clears all callbacks previously bound to the view with `delegateEvents`.
- // You usually don't need to use this, but may wish to if you have multiple
- // Backbone views attached to the same DOM element.
- undelegateEvents: function() {
- this.$el.unbind('.delegateEvents' + this.cid);
- },
-
- // Performs the initial configuration of a View with a set of options.
- // Keys with special meaning *(model, collection, id, className)*, are
- // attached directly to the view.
- _configure: function(options) {
- if (this.options) options = _.extend({}, this.options, options);
- for (var i = 0, l = viewOptions.length; i < l; i++) {
- var attr = viewOptions[i];
- if (options[attr]) this[attr] = options[attr];
- }
- this.options = options;
- },
-
- // Ensure that the View has a DOM element to render into.
- // If `this.el` is a string, pass it through `$()`, take the first
- // matching element, and re-assign it to `el`. Otherwise, create
- // an element from the `id`, `className` and `tagName` properties.
- _ensureElement: function() {
- if (!this.el) {
- var attrs = getValue(this, 'attributes') || {};
- if (this.id) attrs.id = this.id;
- if (this.className) attrs['class'] = this.className;
- this.setElement(this.make(this.tagName, attrs), false);
- } else {
- this.setElement(this.el, false);
- }
- }
-
- });
-
- // The self-propagating extend function that Backbone classes use.
- var extend = function (protoProps, classProps) {
- var child = inherits(this, protoProps, classProps);
- child.extend = this.extend;
- return child;
- };
-
- // Set up inheritance for the model, collection, and view.
- Model.extend = Collection.extend = Router.extend = View.extend = extend;
-
- // Backbone.sync
- // -------------
-
- // Map from CRUD to HTTP for our default `Backbone.sync` implementation.
- var methodMap = {
- 'create': 'POST',
- 'update': 'PUT',
- 'delete': 'DELETE',
- 'read': 'GET'
- };
-
- // Override this function to change the manner in which Backbone persists
- // models to the server. You will be passed the type of request, and the
- // model in question. By default, makes a RESTful Ajax request
- // to the model's `url()`. Some possible customizations could be:
- //
- // * Use `setTimeout` to batch rapid-fire updates into a single request.
- // * Send up the models as XML instead of JSON.
- // * Persist models via WebSockets instead of Ajax.
- //
- // Turn on `Backbone.emulateHTTP` in order to send `PUT` and `DELETE` requests
- // as `POST`, with a `_method` parameter containing the true HTTP method,
- // as well as all requests with the body as `application/x-www-form-urlencoded`
- // instead of `application/json` with the model in a param named `model`.
- // Useful when interfacing with server-side languages like **PHP** that make
- // it difficult to read the body of `PUT` requests.
- Backbone.sync = function(method, model, options) {
- var type = methodMap[method];
-
- // Default options, unless specified.
- options || (options = {});
-
- // Default JSON-request options.
- var params = {type: type, dataType: 'json'};
-
- // Ensure that we have a URL.
- if (!options.url) {
- params.url = getValue(model, 'url') || urlError();
- }
-
- // Ensure that we have the appropriate request data.
- if (!options.data && model && (method == 'create' || method == 'update')) {
- params.contentType = 'application/json';
- params.data = JSON.stringify(model.toJSON());
- }
-
- // For older servers, emulate JSON by encoding the request into an HTML-form.
- if (Backbone.emulateJSON) {
- params.contentType = 'application/x-www-form-urlencoded';
- params.data = params.data ? {model: params.data} : {};
- }
-
- // For older servers, emulate HTTP by mimicking the HTTP method with `_method`
- // And an `X-HTTP-Method-Override` header.
- if (Backbone.emulateHTTP) {
- if (type === 'PUT' || type === 'DELETE') {
- if (Backbone.emulateJSON) params.data._method = type;
- params.type = 'POST';
- params.beforeSend = function(xhr) {
- xhr.setRequestHeader('X-HTTP-Method-Override', type);
- };
- }
- }
-
- // Don't process data on a non-GET request.
- if (params.type !== 'GET' && !Backbone.emulateJSON) {
- params.processData = false;
- }
-
- // Make the request, allowing the user to override any Ajax options.
- return $.ajax(_.extend(params, options));
- };
-
- // Wrap an optional error callback with a fallback error event.
- Backbone.wrapError = function(onError, originalModel, options) {
- return function(model, resp) {
- resp = model === originalModel ? resp : model;
- if (onError) {
- onError(originalModel, resp, options);
- } else {
- originalModel.trigger('error', originalModel, resp, options);
- }
- };
- };
-
- // Helpers
- // -------
-
- // Shared empty constructor function to aid in prototype-chain creation.
- var ctor = function(){};
-
- // Helper function to correctly set up the prototype chain, for subclasses.
- // Similar to `goog.inherits`, but uses a hash of prototype properties and
- // class properties to be extended.
- var inherits = function(parent, protoProps, staticProps) {
- var child;
-
- // The constructor function for the new subclass is either defined by you
- // (the "constructor" property in your `extend` definition), or defaulted
- // by us to simply call the parent's constructor.
- if (protoProps && protoProps.hasOwnProperty('constructor')) {
- child = protoProps.constructor;
- } else {
- child = function(){ parent.apply(this, arguments); };
- }
-
- // Inherit class (static) properties from parent.
- _.extend(child, parent);
-
- // Set the prototype chain to inherit from `parent`, without calling
- // `parent`'s constructor function.
- ctor.prototype = parent.prototype;
- child.prototype = new ctor();
-
- // Add prototype properties (instance properties) to the subclass,
- // if supplied.
- if (protoProps) _.extend(child.prototype, protoProps);
-
- // Add static properties to the constructor function, if supplied.
- if (staticProps) _.extend(child, staticProps);
-
- // Correctly set child's `prototype.constructor`.
- child.prototype.constructor = child;
-
- // Set a convenience property in case the parent's prototype is needed later.
- child.__super__ = parent.prototype;
-
- return child;
- };
-
- // Helper function to get a value from a Backbone object as a property
- // or as a function.
- var getValue = function(object, prop) {
- if (!(object && object[prop])) return null;
- return _.isFunction(object[prop]) ? object[prop]() : object[prop];
- };
-
- // Throw an error when a URL is needed, and none is supplied.
- var urlError = function() {
- throw new Error('A "url" property or function must be specified');
- };
-
-}).call(this);
Binary file metadataplayer/libs/images/ui-bg_flat_0_aaaaaa_40x100.png has changed
Binary file metadataplayer/libs/images/ui-bg_flat_75_ffffff_40x100.png has changed
Binary file metadataplayer/libs/images/ui-bg_glass_55_fbf9ee_1x400.png has changed
Binary file metadataplayer/libs/images/ui-bg_glass_65_ffffff_1x400.png has changed
Binary file metadataplayer/libs/images/ui-bg_glass_75_dadada_1x400.png has changed
Binary file metadataplayer/libs/images/ui-bg_glass_75_e6e6e6_1x400.png has changed
Binary file metadataplayer/libs/images/ui-bg_glass_95_fef1ec_1x400.png has changed
Binary file metadataplayer/libs/images/ui-bg_highlight-soft_75_cccccc_1x100.png has changed
Binary file metadataplayer/libs/images/ui-icons_222222_256x240.png has changed
Binary file metadataplayer/libs/images/ui-icons_2e83ff_256x240.png has changed
Binary file metadataplayer/libs/images/ui-icons_454545_256x240.png has changed
Binary file metadataplayer/libs/images/ui-icons_888888_256x240.png has changed
Binary file metadataplayer/libs/images/ui-icons_cd0a0a_256x240.png has changed
--- a/metadataplayer/libs/jquery-ui.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,570 +0,0 @@
-/*
- * jQuery UI CSS Framework @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Theming/API
- */
-
-/* Layout helpers
-----------------------------------*/
-.ui-helper-hidden { display: none; }
-.ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
-.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
-.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
-.ui-helper-clearfix { display: inline-block; }
-/* required comment for clearfix to work in Opera \*/
-* html .ui-helper-clearfix { height:1%; }
-.ui-helper-clearfix { display:block; }
-/* end clearfix */
-.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
-
-
-/* Interaction Cues
-----------------------------------*/
-.ui-state-disabled { cursor: default !important; }
-
-
-/* Icons
-----------------------------------*/
-
-/* states and images */
-.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
-
-
-/* Misc visuals
-----------------------------------*/
-
-/* Overlays */
-.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
-/*
- * jQuery UI Accordion @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Accordion#theming
- */
-/* IE/Win - Fix animation bug - #4615 */
-.ui-accordion { width: 100%; }
-.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
-.ui-accordion .ui-accordion-li-fix { display: inline; }
-.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
-.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
-.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
-.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
-.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
-.ui-accordion .ui-accordion-content-active { display: block; }/*
- * jQuery UI Autocomplete @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Autocomplete#theming
- */
-.ui-autocomplete { position: absolute; cursor: default; }
-
-/* workarounds */
-* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
-
-/*
- * jQuery UI Menu @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Menu#theming
- */
-.ui-menu {
- list-style:none;
- padding: 2px;
- margin: 0;
- display:block;
- float: left;
-}
-.ui-menu .ui-menu {
- margin-top: -3px;
-}
-.ui-menu .ui-menu-item {
- margin:0;
- padding: 0;
- zoom: 1;
- float: left;
- clear: left;
- width: 100%;
-}
-.ui-menu .ui-menu-item a {
- text-decoration:none;
- display:block;
- padding:.2em .4em;
- line-height:1.5;
- zoom:1;
-}
-.ui-menu .ui-menu-item a.ui-state-hover,
-.ui-menu .ui-menu-item a.ui-state-active {
- font-weight: normal;
- margin: -1px;
-}
-/*
- * jQuery UI Button @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Button#theming
- */
-.ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
-.ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
-button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
-.ui-button-icons-only { width: 3.4em; }
-button.ui-button-icons-only { width: 3.7em; }
-
-/*button text element */
-.ui-button .ui-button-text { display: block; line-height: 1.4; }
-.ui-button-text-only .ui-button-text { padding: .4em 1em; }
-.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
-.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
-.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
-.ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
-/* no icon support for input elements, provide padding by default */
-input.ui-button { padding: .4em 1em; }
-
-/*button icon element(s) */
-.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
-.ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
-.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
-.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
-.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
-
-/*button sets*/
-.ui-buttonset { margin-right: 7px; }
-.ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
-
-/* workarounds */
-button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
-/*
- * jQuery UI Datepicker @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Datepicker#theming
- */
-.ui-datepicker { width: 17em; padding: .2em .2em 0; }
-.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
-.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
-.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
-.ui-datepicker .ui-datepicker-prev { left:2px; }
-.ui-datepicker .ui-datepicker-next { right:2px; }
-.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
-.ui-datepicker .ui-datepicker-next-hover { right:1px; }
-.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
-.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
-.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
-.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
-.ui-datepicker select.ui-datepicker-month,
-.ui-datepicker select.ui-datepicker-year { width: 49%;}
-.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
-.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
-.ui-datepicker td { border: 0; padding: 1px; }
-.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
-.ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
-.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
-.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
-
-/* with multiple calendars */
-.ui-datepicker.ui-datepicker-multi { width:auto; }
-.ui-datepicker-multi .ui-datepicker-group { float:left; }
-.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
-.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
-.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
-.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
-.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
-.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
-.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
-.ui-datepicker-row-break { clear:both; width:100%; }
-
-/* RTL support */
-.ui-datepicker-rtl { direction: rtl; }
-.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
-.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
-.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
-.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
-.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
-.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
-.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
-.ui-datepicker-rtl .ui-datepicker-group { float:right; }
-.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
-.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
-
-/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
-.ui-datepicker-cover {
- display: none; /*sorry for IE5*/
- display/**/: block; /*sorry for IE5*/
- position: absolute; /*must have*/
- z-index: -1; /*must have*/
- filter: mask(); /*must have*/
- top: -4px; /*must have*/
- left: -4px; /*must have*/
- width: 200px; /*must have*/
- height: 200px; /*must have*/
-}/*
- * jQuery UI Dialog @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Dialog#theming
- */
-.ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
-.ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; }
-.ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; }
-.ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
-.ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
-.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
-.ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
-.ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
-.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
-.ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
-.ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
-.ui-draggable .ui-dialog-titlebar { cursor: move; }
-/*
- * jQuery UI Progressbar @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Progressbar#theming
- */
-.ui-progressbar { height:2em; text-align: left; }
-.ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/*
- * jQuery UI Resizable @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Resizable#theming
- */
-.ui-resizable { position: relative;}
-.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
-.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
-.ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
-.ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
-.ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
-.ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
-.ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
-.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
-.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
-.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/*
- * jQuery UI Selectable @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Selectable#theming
- */
-.ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
-/*
- * jQuery UI Slider @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Slider#theming
- */
-.ui-slider { position: relative; text-align: left; }
-.ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
-.ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
-
-.ui-slider-horizontal { height: .8em; }
-.ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
-.ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
-.ui-slider-horizontal .ui-slider-range-min { left: 0; }
-.ui-slider-horizontal .ui-slider-range-max { right: 0; }
-
-.ui-slider-vertical { width: .8em; height: 100px; }
-.ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
-.ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
-.ui-slider-vertical .ui-slider-range-min { bottom: 0; }
-.ui-slider-vertical .ui-slider-range-max { top: 0; }/*
- * jQuery UI Tabs @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Tabs#theming
- */
-.ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
-.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
-.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
-.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
-.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
-.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
-.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
-.ui-tabs .ui-tabs-hide { display: none !important; }
-/*
- * jQuery UI CSS Framework @VERSION
- *
- * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Theming/API
- *
- * To view and modify this theme, visit http://jqueryui.com/themeroller/
- */
-
-
-/* Component containers
-----------------------------------*/
-.ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
-.ui-widget .ui-widget { font-size: 1em; }
-.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
-.ui-widget-content { border: 1px solid #aaaaaa/*{borderColorContent}*/; background: #ffffff/*{bgColorContent}*/ url(images/ui-bg_flat_75_ffffff_40x100.png)/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/; color: #222222/*{fcContent}*/; }
-.ui-widget-content a { color: #222222/*{fcContent}*/; }
-.ui-widget-header { border: 1px solid #aaaaaa/*{borderColorHeader}*/; background: #cccccc/*{bgColorHeader}*/ url(images/ui-bg_highlight-soft_75_cccccc_1x100.png)/*{bgImgUrlHeader}*/ 50%/*{bgHeaderXPos}*/ 50%/*{bgHeaderYPos}*/ repeat-x/*{bgHeaderRepeat}*/; color: #222222/*{fcHeader}*/; font-weight: bold; }
-.ui-widget-header a { color: #222222/*{fcHeader}*/; }
-
-/* Interaction states
-----------------------------------*/
-.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3/*{borderColorDefault}*/; background: #e6e6e6/*{bgColorDefault}*/ url(images/ui-bg_glass_75_e6e6e6_1x400.png)/*{bgImgUrlDefault}*/ 50%/*{bgDefaultXPos}*/ 50%/*{bgDefaultYPos}*/ repeat-x/*{bgDefaultRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #555555/*{fcDefault}*/; }
-.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
-.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999/*{borderColorHover}*/; background: #dadada/*{bgColorHover}*/ url(images/ui-bg_glass_75_dadada_1x400.png)/*{bgImgUrlHover}*/ 50%/*{bgHoverXPos}*/ 50%/*{bgHoverYPos}*/ repeat-x/*{bgHoverRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcHover}*/; }
-.ui-state-hover a, .ui-state-hover a:hover { color: #212121/*{fcHover}*/; text-decoration: none; }
-.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa/*{borderColorActive}*/; background: #ffffff/*{bgColorActive}*/ url(images/ui-bg_glass_65_ffffff_1x400.png)/*{bgImgUrlActive}*/ 50%/*{bgActiveXPos}*/ 50%/*{bgActiveYPos}*/ repeat-x/*{bgActiveRepeat}*/; font-weight: normal/*{fwDefault}*/; color: #212121/*{fcActive}*/; }
-.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121/*{fcActive}*/; text-decoration: none; }
-.ui-widget :active { outline: none; }
-
-/* Interaction Cues
-----------------------------------*/
-.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1/*{borderColorHighlight}*/; background: #fbf9ee/*{bgColorHighlight}*/ url(images/ui-bg_glass_55_fbf9ee_1x400.png)/*{bgImgUrlHighlight}*/ 50%/*{bgHighlightXPos}*/ 50%/*{bgHighlightYPos}*/ repeat-x/*{bgHighlightRepeat}*/; color: #363636/*{fcHighlight}*/; }
-.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636/*{fcHighlight}*/; }
-.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a/*{borderColorError}*/; background: #fef1ec/*{bgColorError}*/ url(images/ui-bg_glass_95_fef1ec_1x400.png)/*{bgImgUrlError}*/ 50%/*{bgErrorXPos}*/ 50%/*{bgErrorYPos}*/ repeat-x/*{bgErrorRepeat}*/; color: #cd0a0a/*{fcError}*/; }
-.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a/*{fcError}*/; }
-.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a/*{fcError}*/; }
-.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
-.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
-.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
-
-/* Icons
-----------------------------------*/
-
-/* states and images */
-.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
-.ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsContent}*/; }
-.ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png)/*{iconsHeader}*/; }
-.ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png)/*{iconsDefault}*/; }
-.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsHover}*/; }
-.ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png)/*{iconsActive}*/; }
-.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png)/*{iconsHighlight}*/; }
-.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png)/*{iconsError}*/; }
-
-/* positioning */
-.ui-icon-carat-1-n { background-position: 0 0; }
-.ui-icon-carat-1-ne { background-position: -16px 0; }
-.ui-icon-carat-1-e { background-position: -32px 0; }
-.ui-icon-carat-1-se { background-position: -48px 0; }
-.ui-icon-carat-1-s { background-position: -64px 0; }
-.ui-icon-carat-1-sw { background-position: -80px 0; }
-.ui-icon-carat-1-w { background-position: -96px 0; }
-.ui-icon-carat-1-nw { background-position: -112px 0; }
-.ui-icon-carat-2-n-s { background-position: -128px 0; }
-.ui-icon-carat-2-e-w { background-position: -144px 0; }
-.ui-icon-triangle-1-n { background-position: 0 -16px; }
-.ui-icon-triangle-1-ne { background-position: -16px -16px; }
-.ui-icon-triangle-1-e { background-position: -32px -16px; }
-.ui-icon-triangle-1-se { background-position: -48px -16px; }
-.ui-icon-triangle-1-s { background-position: -64px -16px; }
-.ui-icon-triangle-1-sw { background-position: -80px -16px; }
-.ui-icon-triangle-1-w { background-position: -96px -16px; }
-.ui-icon-triangle-1-nw { background-position: -112px -16px; }
-.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
-.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
-.ui-icon-arrow-1-n { background-position: 0 -32px; }
-.ui-icon-arrow-1-ne { background-position: -16px -32px; }
-.ui-icon-arrow-1-e { background-position: -32px -32px; }
-.ui-icon-arrow-1-se { background-position: -48px -32px; }
-.ui-icon-arrow-1-s { background-position: -64px -32px; }
-.ui-icon-arrow-1-sw { background-position: -80px -32px; }
-.ui-icon-arrow-1-w { background-position: -96px -32px; }
-.ui-icon-arrow-1-nw { background-position: -112px -32px; }
-.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
-.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
-.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
-.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
-.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
-.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
-.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
-.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
-.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
-.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
-.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
-.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
-.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
-.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
-.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
-.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
-.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
-.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
-.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
-.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
-.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
-.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
-.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
-.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
-.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
-.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
-.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
-.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
-.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
-.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
-.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
-.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
-.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
-.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
-.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
-.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
-.ui-icon-arrow-4 { background-position: 0 -80px; }
-.ui-icon-arrow-4-diag { background-position: -16px -80px; }
-.ui-icon-extlink { background-position: -32px -80px; }
-.ui-icon-newwin { background-position: -48px -80px; }
-.ui-icon-refresh { background-position: -64px -80px; }
-.ui-icon-shuffle { background-position: -80px -80px; }
-.ui-icon-transfer-e-w { background-position: -96px -80px; }
-.ui-icon-transferthick-e-w { background-position: -112px -80px; }
-.ui-icon-folder-collapsed { background-position: 0 -96px; }
-.ui-icon-folder-open { background-position: -16px -96px; }
-.ui-icon-document { background-position: -32px -96px; }
-.ui-icon-document-b { background-position: -48px -96px; }
-.ui-icon-note { background-position: -64px -96px; }
-.ui-icon-mail-closed { background-position: -80px -96px; }
-.ui-icon-mail-open { background-position: -96px -96px; }
-.ui-icon-suitcase { background-position: -112px -96px; }
-.ui-icon-comment { background-position: -128px -96px; }
-.ui-icon-person { background-position: -144px -96px; }
-.ui-icon-print { background-position: -160px -96px; }
-.ui-icon-trash { background-position: -176px -96px; }
-.ui-icon-locked { background-position: -192px -96px; }
-.ui-icon-unlocked { background-position: -208px -96px; }
-.ui-icon-bookmark { background-position: -224px -96px; }
-.ui-icon-tag { background-position: -240px -96px; }
-.ui-icon-home { background-position: 0 -112px; }
-.ui-icon-flag { background-position: -16px -112px; }
-.ui-icon-calendar { background-position: -32px -112px; }
-.ui-icon-cart { background-position: -48px -112px; }
-.ui-icon-pencil { background-position: -64px -112px; }
-.ui-icon-clock { background-position: -80px -112px; }
-.ui-icon-disk { background-position: -96px -112px; }
-.ui-icon-calculator { background-position: -112px -112px; }
-.ui-icon-zoomin { background-position: -128px -112px; }
-.ui-icon-zoomout { background-position: -144px -112px; }
-.ui-icon-search { background-position: -160px -112px; }
-.ui-icon-wrench { background-position: -176px -112px; }
-.ui-icon-gear { background-position: -192px -112px; }
-.ui-icon-heart { background-position: -208px -112px; }
-.ui-icon-star { background-position: -224px -112px; }
-.ui-icon-link { background-position: -240px -112px; }
-.ui-icon-cancel { background-position: 0 -128px; }
-.ui-icon-plus { background-position: -16px -128px; }
-.ui-icon-plusthick { background-position: -32px -128px; }
-.ui-icon-minus { background-position: -48px -128px; }
-.ui-icon-minusthick { background-position: -64px -128px; }
-.ui-icon-close { background-position: -80px -128px; }
-.ui-icon-closethick { background-position: -96px -128px; }
-.ui-icon-key { background-position: -112px -128px; }
-.ui-icon-lightbulb { background-position: -128px -128px; }
-.ui-icon-scissors { background-position: -144px -128px; }
-.ui-icon-clipboard { background-position: -160px -128px; }
-.ui-icon-copy { background-position: -176px -128px; }
-.ui-icon-contact { background-position: -192px -128px; }
-.ui-icon-image { background-position: -208px -128px; }
-.ui-icon-video { background-position: -224px -128px; }
-.ui-icon-script { background-position: -240px -128px; }
-.ui-icon-alert { background-position: 0 -144px; }
-.ui-icon-info { background-position: -16px -144px; }
-.ui-icon-notice { background-position: -32px -144px; }
-.ui-icon-help { background-position: -48px -144px; }
-.ui-icon-check { background-position: -64px -144px; }
-.ui-icon-bullet { background-position: -80px -144px; }
-.ui-icon-radio-off { background-position: -96px -144px; }
-.ui-icon-radio-on { background-position: -112px -144px; }
-.ui-icon-pin-w { background-position: -128px -144px; }
-.ui-icon-pin-s { background-position: -144px -144px; }
-.ui-icon-play { background-position: 0 -160px; }
-.ui-icon-pause { background-position: -16px -160px; }
-.ui-icon-seek-next { background-position: -32px -160px; }
-.ui-icon-seek-prev { background-position: -48px -160px; }
-.ui-icon-seek-end { background-position: -64px -160px; }
-.ui-icon-seek-start { background-position: -80px -160px; }
-/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
-.ui-icon-seek-first { background-position: -80px -160px; }
-.ui-icon-stop { background-position: -96px -160px; }
-.ui-icon-eject { background-position: -112px -160px; }
-.ui-icon-volume-off { background-position: -128px -160px; }
-.ui-icon-volume-on { background-position: -144px -160px; }
-.ui-icon-power { background-position: 0 -176px; }
-.ui-icon-signal-diag { background-position: -16px -176px; }
-.ui-icon-signal { background-position: -32px -176px; }
-.ui-icon-battery-0 { background-position: -48px -176px; }
-.ui-icon-battery-1 { background-position: -64px -176px; }
-.ui-icon-battery-2 { background-position: -80px -176px; }
-.ui-icon-battery-3 { background-position: -96px -176px; }
-.ui-icon-circle-plus { background-position: 0 -192px; }
-.ui-icon-circle-minus { background-position: -16px -192px; }
-.ui-icon-circle-close { background-position: -32px -192px; }
-.ui-icon-circle-triangle-e { background-position: -48px -192px; }
-.ui-icon-circle-triangle-s { background-position: -64px -192px; }
-.ui-icon-circle-triangle-w { background-position: -80px -192px; }
-.ui-icon-circle-triangle-n { background-position: -96px -192px; }
-.ui-icon-circle-arrow-e { background-position: -112px -192px; }
-.ui-icon-circle-arrow-s { background-position: -128px -192px; }
-.ui-icon-circle-arrow-w { background-position: -144px -192px; }
-.ui-icon-circle-arrow-n { background-position: -160px -192px; }
-.ui-icon-circle-zoomin { background-position: -176px -192px; }
-.ui-icon-circle-zoomout { background-position: -192px -192px; }
-.ui-icon-circle-check { background-position: -208px -192px; }
-.ui-icon-circlesmall-plus { background-position: 0 -208px; }
-.ui-icon-circlesmall-minus { background-position: -16px -208px; }
-.ui-icon-circlesmall-close { background-position: -32px -208px; }
-.ui-icon-squaresmall-plus { background-position: -48px -208px; }
-.ui-icon-squaresmall-minus { background-position: -64px -208px; }
-.ui-icon-squaresmall-close { background-position: -80px -208px; }
-.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
-.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
-.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
-.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
-.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
-.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
-
-
-/* Misc visuals
-----------------------------------*/
-
-/* Corner radius */
-.ui-corner-tl { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-tr { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-bl { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-br { -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-top { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-bottom { -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-right { -moz-border-radius-topright: 4px/*{cornerRadius}*/; -webkit-border-top-right-radius: 4px/*{cornerRadius}*/; border-top-right-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomright: 4px/*{cornerRadius}*/; -webkit-border-bottom-right-radius: 4px/*{cornerRadius}*/; border-bottom-right-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-left { -moz-border-radius-topleft: 4px/*{cornerRadius}*/; -webkit-border-top-left-radius: 4px/*{cornerRadius}*/; border-top-left-radius: 4px/*{cornerRadius}*/; -moz-border-radius-bottomleft: 4px/*{cornerRadius}*/; -webkit-border-bottom-left-radius: 4px/*{cornerRadius}*/; border-bottom-left-radius: 4px/*{cornerRadius}*/; }
-.ui-corner-all { -moz-border-radius: 4px/*{cornerRadius}*/; -webkit-border-radius: 4px/*{cornerRadius}*/; border-radius: 4px/*{cornerRadius}*/; }
-
-/* Overlays */
-.ui-widget-overlay { background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/; }
-.ui-widget-shadow { margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/; padding: 8px/*{thicknessShadow}*/; background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/; opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/; -moz-border-radius: 8px/*{cornerRadiusShadow}*/; -webkit-border-radius: 8px/*{cornerRadiusShadow}*/; border-radius: 8px/*{cornerRadiusShadow}*/; }
\ No newline at end of file
--- a/metadataplayer/libs/jquery-ui.min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,784 +0,0 @@
-/*!
- * jQuery UI 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI
- */
-(function(c,j){function k(a,b){var d=a.nodeName.toLowerCase();if("area"===d){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&l(a)}return(/input|select|textarea|button|object/.test(d)?!a.disabled:"a"==d?a.href||b:b)&&l(a)}function l(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.13",
-keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();
-b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?this.parents().filter(function(){return/(relative|absolute|fixed)/.test(c.curCSS(this,"position",1))&&/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0):this.parents().filter(function(){return/(auto|scroll)/.test(c.curCSS(this,"overflow",1)+c.curCSS(this,
-"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0);return/fixed/.test(this.css("position"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",
-function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,m,n){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(m)g-=parseFloat(c.curCSS(f,"border"+this+"Width",true))||0;if(n)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,
-outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h,d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){return k(a,!isNaN(c.attr(a,"tabindex")))},tabbable:function(a){var b=c.attr(a,"tabindex"),d=isNaN(b);
-return(d||b>=0)&&k(a,!d)}});c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=
-0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)}})}})(jQuery);
-;/*!
- * jQuery UI Widget 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Widget
- */
-(function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,
-a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.charAt(0)==="_")return h;
-e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{},this.options,
-this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},
-widget:function(){return this.element},option:function(a,c){var d=a;if(arguments.length===0)return b.extend({},this.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(d,e){c._setOption(d,e)});return this},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},
-enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);
-;/*!
- * jQuery UI Mouse 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Mouse
- *
- * Depends:
- * jquery.ui.widget.js
- */
-(function(b){var d=false;b(document).mousedown(function(){d=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(c){return a._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(true===b.data(c.target,a.widgetName+".preventClickEvent")){b.removeData(c.target,a.widgetName+".preventClickEvent");c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+
-this.widgetName)},_mouseDown:function(a){if(!d){this._mouseStarted&&this._mouseUp(a);this._mouseDownEvent=a;var c=this,f=a.which==1,g=typeof this.options.cancel=="string"?b(a.target).parents().add(a.target).filter(this.options.cancel).length:false;if(!f||g||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=
-this._mouseStart(a)!==false;if(!this._mouseStarted){a.preventDefault();return true}}true===b.data(a.target,this.widgetName+".preventClickEvent")&&b.removeData(a.target,this.widgetName+".preventClickEvent");this._mouseMoveDelegate=function(e){return c._mouseMove(e)};this._mouseUpDelegate=function(e){return c._mouseUp(e)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);a.preventDefault();return d=true}},_mouseMove:function(a){if(b.browser.msie&&
-!(document.documentMode>=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=
-false;a.target==this._mouseDownEvent.target&&b.data(a.target,this.widgetName+".preventClickEvent",true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery);
-;/*
- * jQuery UI Position 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Position
- */
-(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY,
-left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+=
-k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-=
-m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left=
-d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+=
-a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b),
-g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery);
-;/*
- * jQuery UI Draggable 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Draggables
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.mouse.js
- * jquery.ui.widget.js
- */
-(function(d){d.widget("ui.draggable",d.ui.mouse,{widgetEventPrefix:"drag",options:{addClasses:true,appendTo:"parent",axis:false,connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false},_create:function(){if(this.options.helper==
-"original"&&!/^(?:r|a|f)/.test(this.element.css("position")))this.element[0].style.position="relative";this.options.addClasses&&this.element.addClass("ui-draggable");this.options.disabled&&this.element.addClass("ui-draggable-disabled");this._mouseInit()},destroy:function(){if(this.element.data("draggable")){this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy();return this}},_mouseCapture:function(a){var b=
-this.options;if(this.helper||b.disabled||d(a.target).is(".ui-resizable-handle"))return false;this.handle=this._getHandle(a);if(!this.handle)return false;d(b.iframeFix===true?"iframe":b.iframeFix).each(function(){d('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1E3}).css(d(this).offset()).appendTo("body")});return true},_mouseStart:function(a){var b=this.options;this.helper=
-this._createHelper(a);this._cacheHelperProportions();if(d.ui.ddmanager)d.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.positionAbs=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});
-this.originalPosition=this.position=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);b.containment&&this._setContainment();if(this._trigger("start",a)===false){this._clear();return false}this._cacheHelperProportions();d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(a,true);return true},_mouseDrag:function(a,b){this.position=this._generatePosition(a);
-this.positionAbs=this._convertPositionTo("absolute");if(!b){b=this._uiHash();if(this._trigger("drag",a,b)===false){this._mouseUp({});return false}this.position=b.position}if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);return false},_mouseStop:function(a){var b=false;if(d.ui.ddmanager&&!this.options.dropBehaviour)b=
-d.ui.ddmanager.drop(this,a);if(this.dropped){b=this.dropped;this.dropped=false}if((!this.element[0]||!this.element[0].parentNode)&&this.options.helper=="original")return false;if(this.options.revert=="invalid"&&!b||this.options.revert=="valid"&&b||this.options.revert===true||d.isFunction(this.options.revert)&&this.options.revert.call(this.element,b)){var c=this;d(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){c._trigger("stop",a)!==false&&c._clear()})}else this._trigger("stop",
-a)!==false&&this._clear();return false},_mouseUp:function(a){this.options.iframeFix===true&&d("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)});return d.ui.mouse.prototype._mouseUp.call(this,a)},cancel:function(){this.helper.is(".ui-draggable-dragging")?this._mouseUp({}):this._clear();return this},_getHandle:function(a){var b=!this.options.handle||!d(this.options.handle,this.element).length?true:false;d(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==
-a.target)b=true});return b},_createHelper:function(a){var b=this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a])):b.helper=="clone"?this.element.clone().removeAttr("id"):this.element;a.parents("body").length||a.appendTo(b.appendTo=="parent"?this.element[0].parentNode:b.appendTo);a[0]!=this.element[0]&&!/(fixed|absolute)/.test(a.css("position"))&&a.css("position","absolute");return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a=
-{left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&
-d.ui.contains(this.scrollParent[0],this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a={top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=
-this.element.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions=
-{width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[(a.containment=="document"?0:d(window).scrollLeft())-this.offset.relative.left-this.offset.parent.left,(a.containment=="document"?0:d(window).scrollTop())-this.offset.relative.top-this.offset.parent.top,(a.containment=="document"?0:d(window).scrollLeft())+
-d(a.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a.containment=="document"?0:d(window).scrollTop())+(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)&&a.containment.constructor!=Array){a=d(a.containment);var b=a[0];if(b){a.offset();var c=d(b).css("overflow")!="hidden";this.containment=[(parseInt(d(b).css("borderLeftWidth"),
-10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0),(parseInt(d(b).css("borderTopWidth"),10)||0)+(parseInt(d(b).css("paddingTop"),10)||0),(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-
-this.margins.top-this.margins.bottom];this.relative_container=a}}else if(a.containment.constructor==Array)this.containment=a.containment},_convertPositionTo:function(a,b){if(!b)b=this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&
-d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],
-this.offsetParent[0]))?this.offsetParent:this.scrollParent,f=/(html|body)/i.test(c[0].tagName),e=a.pageX,h=a.pageY;if(this.originalPosition){var g;if(this.containment){if(this.relative_container){g=this.relative_container.offset();g=[this.containment[0]+g.left,this.containment[1]+g.top,this.containment[2]+g.left,this.containment[3]+g.top]}else g=this.containment;if(a.pageX-this.offset.click.left<g[0])e=g[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<g[1])h=g[1]+this.offset.click.top;
-if(a.pageX-this.offset.click.left>g[2])e=g[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>g[3])h=g[3]+this.offset.click.top}if(b.grid){h=this.originalPageY+Math.round((h-this.originalPageY)/b.grid[1])*b.grid[1];h=g?!(h-this.offset.click.top<g[1]||h-this.offset.click.top>g[3])?h:!(h-this.offset.click.top<g[1])?h-b.grid[1]:h+b.grid[1]:h;e=this.originalPageX+Math.round((e-this.originalPageX)/b.grid[0])*b.grid[0];e=g?!(e-this.offset.click.left<g[0]||e-this.offset.click.left>g[2])?e:!(e-this.offset.click.left<
-g[0])?e-b.grid[0]:e+b.grid[0]:e}}return{top:h-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():f?0:c.scrollTop()),left:e-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&d.browser.version<526&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():f?0:c.scrollLeft())}},_clear:function(){this.helper.removeClass("ui-draggable-dragging");
-this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval&&this.helper.remove();this.helper=null;this.cancelHelperRemoval=false},_trigger:function(a,b,c){c=c||this._uiHash();d.ui.plugin.call(this,a,[b,c]);if(a=="drag")this.positionAbs=this._convertPositionTo("absolute");return d.Widget.prototype._trigger.call(this,a,b,c)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}});d.extend(d.ui.draggable,{version:"1.8.13"});
-d.ui.plugin.add("draggable","connectToSortable",{start:function(a,b){var c=d(this).data("draggable"),f=c.options,e=d.extend({},b,{item:c.element});c.sortables=[];d(f.connectToSortable).each(function(){var h=d.data(this,"sortable");if(h&&!h.options.disabled){c.sortables.push({instance:h,shouldRevert:h.options.revert});h.refreshPositions();h._trigger("activate",a,e)}})},stop:function(a,b){var c=d(this).data("draggable"),f=d.extend({},b,{item:c.element});d.each(c.sortables,function(){if(this.instance.isOver){this.instance.isOver=
-0;c.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance._mouseStop(a);this.instance.options.helper=this.instance.options._helper;c.options.helper=="original"&&this.instance.currentItem.css({top:"auto",left:"auto"})}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",a,f)}})},drag:function(a,b){var c=d(this).data("draggable"),f=this;d.each(c.sortables,function(){this.instance.positionAbs=
-c.positionAbs;this.instance.helperProportions=c.helperProportions;this.instance.offset.click=c.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=d(f).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return b.helper[0]};a.target=this.instance.currentItem[0];this.instance._mouseCapture(a,
-true);this.instance._mouseStart(a,true,true);this.instance.offset.click.top=c.offset.click.top;this.instance.offset.click.left=c.offset.click.left;this.instance.offset.parent.left-=c.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=c.offset.parent.top-this.instance.offset.parent.top;c._trigger("toSortable",a);c.dropped=this.instance.element;c.currentItem=c.element;this.instance.fromOutside=c}this.instance.currentItem&&this.instance._mouseDrag(a)}else if(this.instance.isOver){this.instance.isOver=
-0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",a,this.instance._uiHash(this.instance));this.instance._mouseStop(a,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();this.instance.placeholder&&this.instance.placeholder.remove();c._trigger("fromSortable",a);c.dropped=false}})}});d.ui.plugin.add("draggable","cursor",{start:function(){var a=d("body"),b=d(this).data("draggable").options;if(a.css("cursor"))b._cursor=
-a.css("cursor");a.css("cursor",b.cursor)},stop:function(){var a=d(this).data("draggable").options;a._cursor&&d("body").css("cursor",a._cursor)}});d.ui.plugin.add("draggable","opacity",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("opacity"))b._opacity=a.css("opacity");a.css("opacity",b.opacity)},stop:function(a,b){a=d(this).data("draggable").options;a._opacity&&d(b.helper).css("opacity",a._opacity)}});d.ui.plugin.add("draggable","scroll",{start:function(){var a=d(this).data("draggable");
-if(a.scrollParent[0]!=document&&a.scrollParent[0].tagName!="HTML")a.overflowOffset=a.scrollParent.offset()},drag:function(a){var b=d(this).data("draggable"),c=b.options,f=false;if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){if(!c.axis||c.axis!="x")if(b.overflowOffset.top+b.scrollParent[0].offsetHeight-a.pageY<c.scrollSensitivity)b.scrollParent[0].scrollTop=f=b.scrollParent[0].scrollTop+c.scrollSpeed;else if(a.pageY-b.overflowOffset.top<c.scrollSensitivity)b.scrollParent[0].scrollTop=
-f=b.scrollParent[0].scrollTop-c.scrollSpeed;if(!c.axis||c.axis!="y")if(b.overflowOffset.left+b.scrollParent[0].offsetWidth-a.pageX<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft+c.scrollSpeed;else if(a.pageX-b.overflowOffset.left<c.scrollSensitivity)b.scrollParent[0].scrollLeft=f=b.scrollParent[0].scrollLeft-c.scrollSpeed}else{if(!c.axis||c.axis!="x")if(a.pageY-d(document).scrollTop()<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()-c.scrollSpeed);
-else if(d(window).height()-(a.pageY-d(document).scrollTop())<c.scrollSensitivity)f=d(document).scrollTop(d(document).scrollTop()+c.scrollSpeed);if(!c.axis||c.axis!="y")if(a.pageX-d(document).scrollLeft()<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()-c.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<c.scrollSensitivity)f=d(document).scrollLeft(d(document).scrollLeft()+c.scrollSpeed)}f!==false&&d.ui.ddmanager&&!c.dropBehaviour&&d.ui.ddmanager.prepareOffsets(b,
-a)}});d.ui.plugin.add("draggable","snap",{start:function(){var a=d(this).data("draggable"),b=a.options;a.snapElements=[];d(b.snap.constructor!=String?b.snap.items||":data(draggable)":b.snap).each(function(){var c=d(this),f=c.offset();this!=a.element[0]&&a.snapElements.push({item:this,width:c.outerWidth(),height:c.outerHeight(),top:f.top,left:f.left})})},drag:function(a,b){for(var c=d(this).data("draggable"),f=c.options,e=f.snapTolerance,h=b.offset.left,g=h+c.helperProportions.width,n=b.offset.top,
-o=n+c.helperProportions.height,i=c.snapElements.length-1;i>=0;i--){var j=c.snapElements[i].left,l=j+c.snapElements[i].width,k=c.snapElements[i].top,m=k+c.snapElements[i].height;if(j-e<h&&h<l+e&&k-e<n&&n<m+e||j-e<h&&h<l+e&&k-e<o&&o<m+e||j-e<g&&g<l+e&&k-e<n&&n<m+e||j-e<g&&g<l+e&&k-e<o&&o<m+e){if(f.snapMode!="inner"){var p=Math.abs(k-o)<=e,q=Math.abs(m-n)<=e,r=Math.abs(j-g)<=e,s=Math.abs(l-h)<=e;if(p)b.position.top=c._convertPositionTo("relative",{top:k-c.helperProportions.height,left:0}).top-c.margins.top;
-if(q)b.position.top=c._convertPositionTo("relative",{top:m,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:j-c.helperProportions.width}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:l}).left-c.margins.left}var t=p||q||r||s;if(f.snapMode!="outer"){p=Math.abs(k-n)<=e;q=Math.abs(m-o)<=e;r=Math.abs(j-h)<=e;s=Math.abs(l-g)<=e;if(p)b.position.top=c._convertPositionTo("relative",{top:k,left:0}).top-c.margins.top;if(q)b.position.top=
-c._convertPositionTo("relative",{top:m-c.helperProportions.height,left:0}).top-c.margins.top;if(r)b.position.left=c._convertPositionTo("relative",{top:0,left:j}).left-c.margins.left;if(s)b.position.left=c._convertPositionTo("relative",{top:0,left:l-c.helperProportions.width}).left-c.margins.left}if(!c.snapElements[i].snapping&&(p||q||r||s||t))c.options.snap.snap&&c.options.snap.snap.call(c.element,a,d.extend(c._uiHash(),{snapItem:c.snapElements[i].item}));c.snapElements[i].snapping=p||q||r||s||t}else{c.snapElements[i].snapping&&
-c.options.snap.release&&c.options.snap.release.call(c.element,a,d.extend(c._uiHash(),{snapItem:c.snapElements[i].item}));c.snapElements[i].snapping=false}}}});d.ui.plugin.add("draggable","stack",{start:function(){var a=d(this).data("draggable").options;a=d.makeArray(d(a.stack)).sort(function(c,f){return(parseInt(d(c).css("zIndex"),10)||0)-(parseInt(d(f).css("zIndex"),10)||0)});if(a.length){var b=parseInt(a[0].style.zIndex)||0;d(a).each(function(c){this.style.zIndex=b+c});this[0].style.zIndex=b+a.length}}});
-d.ui.plugin.add("draggable","zIndex",{start:function(a,b){a=d(b.helper);b=d(this).data("draggable").options;if(a.css("zIndex"))b._zIndex=a.css("zIndex");a.css("zIndex",b.zIndex)},stop:function(a,b){a=d(this).data("draggable").options;a._zIndex&&d(b.helper).css("zIndex",a._zIndex)}})})(jQuery);
-;/*
- * jQuery UI Droppable 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Droppables
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- * jquery.ui.mouse.js
- * jquery.ui.draggable.js
- */
-(function(d){d.widget("ui.droppable",{widgetEventPrefix:"drop",options:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"},_create:function(){var a=this.options,b=a.accept;this.isover=0;this.isout=1;this.accept=d.isFunction(b)?b:function(c){return c.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};d.ui.ddmanager.droppables[a.scope]=d.ui.ddmanager.droppables[a.scope]||[];d.ui.ddmanager.droppables[a.scope].push(this);
-a.addClasses&&this.element.addClass("ui-droppable")},destroy:function(){for(var a=d.ui.ddmanager.droppables[this.options.scope],b=0;b<a.length;b++)a[b]==this&&a.splice(b,1);this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable");return this},_setOption:function(a,b){if(a=="accept")this.accept=d.isFunction(b)?b:function(c){return c.is(b)};d.Widget.prototype._setOption.apply(this,arguments)},_activate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&
-this.element.addClass(this.options.activeClass);b&&this._trigger("activate",a,this.ui(b))},_deactivate:function(a){var b=d.ui.ddmanager.current;this.options.activeClass&&this.element.removeClass(this.options.activeClass);b&&this._trigger("deactivate",a,this.ui(b))},_over:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.addClass(this.options.hoverClass);
-this._trigger("over",a,this.ui(b))}},_out:function(a){var b=d.ui.ddmanager.current;if(!(!b||(b.currentItem||b.element)[0]==this.element[0]))if(this.accept.call(this.element[0],b.currentItem||b.element)){this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("out",a,this.ui(b))}},_drop:function(a,b){var c=b||d.ui.ddmanager.current;if(!c||(c.currentItem||c.element)[0]==this.element[0])return false;var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var g=
-d.data(this,"droppable");if(g.options.greedy&&!g.options.disabled&&g.options.scope==c.options.scope&&g.accept.call(g.element[0],c.currentItem||c.element)&&d.ui.intersect(c,d.extend(g,{offset:g.element.offset()}),g.options.tolerance)){e=true;return false}});if(e)return false;if(this.accept.call(this.element[0],c.currentItem||c.element)){this.options.activeClass&&this.element.removeClass(this.options.activeClass);this.options.hoverClass&&this.element.removeClass(this.options.hoverClass);this._trigger("drop",
-a,this.ui(c));return this.element}return false},ui:function(a){return{draggable:a.currentItem||a.element,helper:a.helper,position:a.position,offset:a.positionAbs}}});d.extend(d.ui.droppable,{version:"1.8.13"});d.ui.intersect=function(a,b,c){if(!b.offset)return false;var e=(a.positionAbs||a.position.absolute).left,g=e+a.helperProportions.width,f=(a.positionAbs||a.position.absolute).top,h=f+a.helperProportions.height,i=b.offset.left,k=i+b.proportions.width,j=b.offset.top,l=j+b.proportions.height;
-switch(c){case "fit":return i<=e&&g<=k&&j<=f&&h<=l;case "intersect":return i<e+a.helperProportions.width/2&&g-a.helperProportions.width/2<k&&j<f+a.helperProportions.height/2&&h-a.helperProportions.height/2<l;case "pointer":return d.ui.isOver((a.positionAbs||a.position.absolute).top+(a.clickOffset||a.offset.click).top,(a.positionAbs||a.position.absolute).left+(a.clickOffset||a.offset.click).left,j,i,b.proportions.height,b.proportions.width);case "touch":return(f>=j&&f<=l||h>=j&&h<=l||f<j&&h>l)&&(e>=
-i&&e<=k||g>=i&&g<=k||e<i&&g>k);default:return false}};d.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(a,b){var c=d.ui.ddmanager.droppables[a.options.scope]||[],e=b?b.type:null,g=(a.currentItem||a.element).find(":data(droppable)").andSelf(),f=0;a:for(;f<c.length;f++)if(!(c[f].options.disabled||a&&!c[f].accept.call(c[f].element[0],a.currentItem||a.element))){for(var h=0;h<g.length;h++)if(g[h]==c[f].element[0]){c[f].proportions.height=0;continue a}c[f].visible=c[f].element.css("display")!=
-"none";if(c[f].visible){e=="mousedown"&&c[f]._activate.call(c[f],b);c[f].offset=c[f].element.offset();c[f].proportions={width:c[f].element[0].offsetWidth,height:c[f].element[0].offsetHeight}}}},drop:function(a,b){var c=false;d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(this.options){if(!this.options.disabled&&this.visible&&d.ui.intersect(a,this,this.options.tolerance))c=c||this._drop.call(this,b);if(!this.options.disabled&&this.visible&&this.accept.call(this.element[0],a.currentItem||
-a.element)){this.isout=1;this.isover=0;this._deactivate.call(this,b)}}});return c},drag:function(a,b){a.options.refreshPositions&&d.ui.ddmanager.prepareOffsets(a,b);d.each(d.ui.ddmanager.droppables[a.options.scope]||[],function(){if(!(this.options.disabled||this.greedyChild||!this.visible)){var c=d.ui.intersect(a,this,this.options.tolerance);if(c=!c&&this.isover==1?"isout":c&&this.isover==0?"isover":null){var e;if(this.options.greedy){var g=this.element.parents(":data(droppable):eq(0)");if(g.length){e=
-d.data(g[0],"droppable");e.greedyChild=c=="isover"?1:0}}if(e&&c=="isover"){e.isover=0;e.isout=1;e._out.call(e,b)}this[c]=1;this[c=="isout"?"isover":"isout"]=0;this[c=="isover"?"_over":"_out"].call(this,b);if(e&&c=="isout"){e.isout=0;e.isover=1;e._over.call(e,b)}}}})}}})(jQuery);
-;/*
- * jQuery UI Resizable 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Resizables
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.mouse.js
- * jquery.ui.widget.js
- */
-(function(e){e.widget("ui.resizable",e.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1E3},_create:function(){var b=this,a=this.options;this.element.addClass("ui-resizable");e.extend(this,{_aspectRatio:!!a.aspectRatio,aspectRatio:a.aspectRatio,originalElement:this.element,
-_proportionallyResizeElements:[],_helper:a.helper||a.ghost||a.animate?a.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){/relative/.test(this.element.css("position"))&&e.browser.opera&&this.element.css({position:"relative",top:"auto",left:"auto"});this.element.wrap(e('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),
-top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=
-this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=a.handles||(!e(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",
-nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all")this.handles="n,e,s,w,se,sw,ne,nw";var c=this.handles.split(",");this.handles={};for(var d=0;d<c.length;d++){var f=e.trim(c[d]),g=e('<div class="ui-resizable-handle '+("ui-resizable-"+f)+'"></div>');/sw|se|ne|nw/.test(f)&&g.css({zIndex:++a.zIndex});"se"==f&&g.addClass("ui-icon ui-icon-gripsmall-diagonal-se");this.handles[f]=".ui-resizable-"+f;this.element.append(g)}}this._renderAxis=function(h){h=h||this.element;for(var i in this.handles){if(this.handles[i].constructor==
-String)this.handles[i]=e(this.handles[i],this.element).show();if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var j=e(this.handles[i],this.element),k=0;k=/sw|ne|nw|se|n|s/.test(i)?j.outerHeight():j.outerWidth();j=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join("");h.css(j,k);this._proportionallyResize()}e(this.handles[i])}};this._renderAxis(this.element);this._handles=e(".ui-resizable-handle",this.element).disableSelection();
-this._handles.mouseover(function(){if(!b.resizing){if(this.className)var h=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i);b.axis=h&&h[1]?h[1]:"se"}});if(a.autoHide){this._handles.hide();e(this.element).addClass("ui-resizable-autohide").hover(function(){if(!a.disabled){e(this).removeClass("ui-resizable-autohide");b._handles.show()}},function(){if(!a.disabled)if(!b.resizing){e(this).addClass("ui-resizable-autohide");b._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();
-var b=function(c){e(c).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){b(this.element);var a=this.element;a.after(this.originalElement.css({position:a.css("position"),width:a.outerWidth(),height:a.outerHeight(),top:a.css("top"),left:a.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);b(this.originalElement);return this},_mouseCapture:function(b){var a=
-false;for(var c in this.handles)if(e(this.handles[c])[0]==b.target)a=true;return!this.options.disabled&&a},_mouseStart:function(b){var a=this.options,c=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={top:e(document).scrollTop(),left:e(document).scrollLeft()};if(d.is(".ui-draggable")||/absolute/.test(d.css("position")))d.css({position:"absolute",top:c.top,left:c.left});e.browser.opera&&/relative/.test(d.css("position"))&&d.css({position:"relative",top:"auto",left:"auto"});
-this._renderProxy();c=m(this.helper.css("left"));var f=m(this.helper.css("top"));if(a.containment){c+=e(a.containment).scrollLeft()||0;f+=e(a.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:c,top:f};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:c,top:f};this.sizeDiff=
-{width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:b.pageX,top:b.pageY};this.aspectRatio=typeof a.aspectRatio=="number"?a.aspectRatio:this.originalSize.width/this.originalSize.height||1;a=e(".ui-resizable-"+this.axis).css("cursor");e("body").css("cursor",a=="auto"?this.axis+"-resize":a);d.addClass("ui-resizable-resizing");this._propagate("start",b);return true},_mouseDrag:function(b){var a=this.helper,c=this.originalMousePosition,d=this._change[this.axis];
-if(!d)return false;c=d.apply(this,[b,b.pageX-c.left||0,b.pageY-c.top||0]);if(this._aspectRatio||b.shiftKey)c=this._updateRatio(c,b);c=this._respectSize(c,b);this._propagate("resize",b);a.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize();this._updateCache(c);this._trigger("resize",b,this.ui());return false},_mouseStop:function(b){this.resizing=
-false;var a=this.options,c=this;if(this._helper){var d=this._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName);d=f&&e.ui.hasScroll(d[0],"left")?0:c.sizeDiff.height;f=f?0:c.sizeDiff.width;f={width:c.helper.width()-f,height:c.helper.height()-d};d=parseInt(c.element.css("left"),10)+(c.position.left-c.originalPosition.left)||null;var g=parseInt(c.element.css("top"),10)+(c.position.top-c.originalPosition.top)||null;a.animate||this.element.css(e.extend(f,{top:g,left:d}));c.helper.height(c.size.height);
-c.helper.width(c.size.width);this._helper&&!a.animate&&this._proportionallyResize()}e("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",b);this._helper&&this.helper.remove();return false},_updateCache:function(b){this.offset=this.helper.offset();if(l(b.left))this.position.left=b.left;if(l(b.top))this.position.top=b.top;if(l(b.height))this.size.height=b.height;if(l(b.width))this.size.width=b.width},_updateRatio:function(b){var a=this.position,c=this.size,
-d=this.axis;if(b.height)b.width=c.height*this.aspectRatio;else if(b.width)b.height=c.width/this.aspectRatio;if(d=="sw"){b.left=a.left+(c.width-b.width);b.top=null}if(d=="nw"){b.top=a.top+(c.height-b.height);b.left=a.left+(c.width-b.width)}return b},_respectSize:function(b){var a=this.options,c=this.axis,d=l(b.width)&&a.maxWidth&&a.maxWidth<b.width,f=l(b.height)&&a.maxHeight&&a.maxHeight<b.height,g=l(b.width)&&a.minWidth&&a.minWidth>b.width,h=l(b.height)&&a.minHeight&&a.minHeight>b.height;if(g)b.width=
-a.minWidth;if(h)b.height=a.minHeight;if(d)b.width=a.maxWidth;if(f)b.height=a.maxHeight;var i=this.originalPosition.left+this.originalSize.width,j=this.position.top+this.size.height,k=/sw|nw|w/.test(c);c=/nw|ne|n/.test(c);if(g&&k)b.left=i-a.minWidth;if(d&&k)b.left=i-a.maxWidth;if(h&&c)b.top=j-a.minHeight;if(f&&c)b.top=j-a.maxHeight;if((a=!b.width&&!b.height)&&!b.left&&b.top)b.top=null;else if(a&&!b.top&&b.left)b.left=null;return b},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var b=
-this.helper||this.element,a=0;a<this._proportionallyResizeElements.length;a++){var c=this._proportionallyResizeElements[a];if(!this.borderDif){var d=[c.css("borderTopWidth"),c.css("borderRightWidth"),c.css("borderBottomWidth"),c.css("borderLeftWidth")],f=[c.css("paddingTop"),c.css("paddingRight"),c.css("paddingBottom"),c.css("paddingLeft")];this.borderDif=e.map(d,function(g,h){g=parseInt(g,10)||0;h=parseInt(f[h],10)||0;return g+h})}e.browser.msie&&(e(b).is(":hidden")||e(b).parents(":hidden").length)||
-c.css({height:b.height()-this.borderDif[0]-this.borderDif[2]||0,width:b.width()-this.borderDif[1]-this.borderDif[3]||0})}},_renderProxy:function(){var b=this.options;this.elementOffset=this.element.offset();if(this._helper){this.helper=this.helper||e('<div style="overflow:hidden;"></div>');var a=e.browser.msie&&e.browser.version<7,c=a?1:0;a=a?2:-1;this.helper.addClass(this._helper).css({width:this.element.outerWidth()+a,height:this.element.outerHeight()+a,position:"absolute",left:this.elementOffset.left-
-c+"px",top:this.elementOffset.top-c+"px",zIndex:++b.zIndex});this.helper.appendTo("body").disableSelection()}else this.helper=this.element},_change:{e:function(b,a){return{width:this.originalSize.width+a}},w:function(b,a){return{left:this.originalPosition.left+a,width:this.originalSize.width-a}},n:function(b,a,c){return{top:this.originalPosition.top+c,height:this.originalSize.height-c}},s:function(b,a,c){return{height:this.originalSize.height+c}},se:function(b,a,c){return e.extend(this._change.s.apply(this,
-arguments),this._change.e.apply(this,[b,a,c]))},sw:function(b,a,c){return e.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[b,a,c]))},ne:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[b,a,c]))},nw:function(b,a,c){return e.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[b,a,c]))}},_propagate:function(b,a){e.ui.plugin.call(this,b,[a,this.ui()]);b!="resize"&&this._trigger(b,a,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,
-element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});e.extend(e.ui.resizable,{version:"1.8.13"});e.ui.plugin.add("resizable","alsoResize",{start:function(){var b=e(this).data("resizable").options,a=function(c){e(c).each(function(){var d=e(this);d.data("resizable-alsoresize",{width:parseInt(d.width(),10),height:parseInt(d.height(),10),left:parseInt(d.css("left"),10),top:parseInt(d.css("top"),10),position:d.css("position")})})};
-if(typeof b.alsoResize=="object"&&!b.alsoResize.parentNode)if(b.alsoResize.length){b.alsoResize=b.alsoResize[0];a(b.alsoResize)}else e.each(b.alsoResize,function(c){a(c)});else a(b.alsoResize)},resize:function(b,a){var c=e(this).data("resizable");b=c.options;var d=c.originalSize,f=c.originalPosition,g={height:c.size.height-d.height||0,width:c.size.width-d.width||0,top:c.position.top-f.top||0,left:c.position.left-f.left||0},h=function(i,j){e(i).each(function(){var k=e(this),q=e(this).data("resizable-alsoresize"),
-p={},r=j&&j.length?j:k.parents(a.originalElement[0]).length?["width","height"]:["width","height","top","left"];e.each(r,function(n,o){if((n=(q[o]||0)+(g[o]||0))&&n>=0)p[o]=n||null});if(e.browser.opera&&/relative/.test(k.css("position"))){c._revertToRelativePosition=true;k.css({position:"absolute",top:"auto",left:"auto"})}k.css(p)})};typeof b.alsoResize=="object"&&!b.alsoResize.nodeType?e.each(b.alsoResize,function(i,j){h(i,j)}):h(b.alsoResize)},stop:function(){var b=e(this).data("resizable"),a=b.options,
-c=function(d){e(d).each(function(){var f=e(this);f.css({position:f.data("resizable-alsoresize").position})})};if(b._revertToRelativePosition){b._revertToRelativePosition=false;typeof a.alsoResize=="object"&&!a.alsoResize.nodeType?e.each(a.alsoResize,function(d){c(d)}):c(a.alsoResize)}e(this).removeData("resizable-alsoresize")}});e.ui.plugin.add("resizable","animate",{stop:function(b){var a=e(this).data("resizable"),c=a.options,d=a._proportionallyResizeElements,f=d.length&&/textarea/i.test(d[0].nodeName),
-g=f&&e.ui.hasScroll(d[0],"left")?0:a.sizeDiff.height;f={width:a.size.width-(f?0:a.sizeDiff.width),height:a.size.height-g};g=parseInt(a.element.css("left"),10)+(a.position.left-a.originalPosition.left)||null;var h=parseInt(a.element.css("top"),10)+(a.position.top-a.originalPosition.top)||null;a.element.animate(e.extend(f,h&&g?{top:h,left:g}:{}),{duration:c.animateDuration,easing:c.animateEasing,step:function(){var i={width:parseInt(a.element.css("width"),10),height:parseInt(a.element.css("height"),
-10),top:parseInt(a.element.css("top"),10),left:parseInt(a.element.css("left"),10)};d&&d.length&&e(d[0]).css({width:i.width,height:i.height});a._updateCache(i);a._propagate("resize",b)}})}});e.ui.plugin.add("resizable","containment",{start:function(){var b=e(this).data("resizable"),a=b.element,c=b.options.containment;if(a=c instanceof e?c.get(0):/parent/.test(c)?a.parent().get(0):c){b.containerElement=e(a);if(/document/.test(c)||c==document){b.containerOffset={left:0,top:0};b.containerPosition={left:0,
-top:0};b.parentData={element:e(document),left:0,top:0,width:e(document).width(),height:e(document).height()||document.body.parentNode.scrollHeight}}else{var d=e(a),f=[];e(["Top","Right","Left","Bottom"]).each(function(i,j){f[i]=m(d.css("padding"+j))});b.containerOffset=d.offset();b.containerPosition=d.position();b.containerSize={height:d.innerHeight()-f[3],width:d.innerWidth()-f[1]};c=b.containerOffset;var g=b.containerSize.height,h=b.containerSize.width;h=e.ui.hasScroll(a,"left")?a.scrollWidth:h;
-g=e.ui.hasScroll(a)?a.scrollHeight:g;b.parentData={element:a,left:c.left,top:c.top,width:h,height:g}}}},resize:function(b){var a=e(this).data("resizable"),c=a.options,d=a.containerOffset,f=a.position;b=a._aspectRatio||b.shiftKey;var g={top:0,left:0},h=a.containerElement;if(h[0]!=document&&/static/.test(h.css("position")))g=d;if(f.left<(a._helper?d.left:0)){a.size.width+=a._helper?a.position.left-d.left:a.position.left-g.left;if(b)a.size.height=a.size.width/c.aspectRatio;a.position.left=c.helper?d.left:
-0}if(f.top<(a._helper?d.top:0)){a.size.height+=a._helper?a.position.top-d.top:a.position.top;if(b)a.size.width=a.size.height*c.aspectRatio;a.position.top=a._helper?d.top:0}a.offset.left=a.parentData.left+a.position.left;a.offset.top=a.parentData.top+a.position.top;c=Math.abs((a._helper?a.offset.left-g.left:a.offset.left-g.left)+a.sizeDiff.width);d=Math.abs((a._helper?a.offset.top-g.top:a.offset.top-d.top)+a.sizeDiff.height);f=a.containerElement.get(0)==a.element.parent().get(0);g=/relative|absolute/.test(a.containerElement.css("position"));
-if(f&&g)c-=a.parentData.left;if(c+a.size.width>=a.parentData.width){a.size.width=a.parentData.width-c;if(b)a.size.height=a.size.width/a.aspectRatio}if(d+a.size.height>=a.parentData.height){a.size.height=a.parentData.height-d;if(b)a.size.width=a.size.height*a.aspectRatio}},stop:function(){var b=e(this).data("resizable"),a=b.options,c=b.containerOffset,d=b.containerPosition,f=b.containerElement,g=e(b.helper),h=g.offset(),i=g.outerWidth()-b.sizeDiff.width;g=g.outerHeight()-b.sizeDiff.height;b._helper&&
-!a.animate&&/relative/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g});b._helper&&!a.animate&&/static/.test(f.css("position"))&&e(this).css({left:h.left-d.left-c.left,width:i,height:g})}});e.ui.plugin.add("resizable","ghost",{start:function(){var b=e(this).data("resizable"),a=b.options,c=b.size;b.ghost=b.originalElement.clone();b.ghost.css({opacity:0.25,display:"block",position:"relative",height:c.height,width:c.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof a.ghost==
-"string"?a.ghost:"");b.ghost.appendTo(b.helper)},resize:function(){var b=e(this).data("resizable");b.ghost&&b.ghost.css({position:"relative",height:b.size.height,width:b.size.width})},stop:function(){var b=e(this).data("resizable");b.ghost&&b.helper&&b.helper.get(0).removeChild(b.ghost.get(0))}});e.ui.plugin.add("resizable","grid",{resize:function(){var b=e(this).data("resizable"),a=b.options,c=b.size,d=b.originalSize,f=b.originalPosition,g=b.axis;a.grid=typeof a.grid=="number"?[a.grid,a.grid]:a.grid;
-var h=Math.round((c.width-d.width)/(a.grid[0]||1))*(a.grid[0]||1);a=Math.round((c.height-d.height)/(a.grid[1]||1))*(a.grid[1]||1);if(/^(se|s|e)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else if(/^(ne)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}else{if(/^(sw)$/.test(g)){b.size.width=d.width+h;b.size.height=d.height+a}else{b.size.width=d.width+h;b.size.height=d.height+a;b.position.top=f.top-a}b.position.left=f.left-h}}});var m=function(b){return parseInt(b,
-10)||0},l=function(b){return!isNaN(parseInt(b,10))}})(jQuery);
-;/*
- * jQuery UI Selectable 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Selectables
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.mouse.js
- * jquery.ui.widget.js
- */
-(function(e){e.widget("ui.selectable",e.ui.mouse,{options:{appendTo:"body",autoRefresh:true,distance:0,filter:"*",tolerance:"touch"},_create:function(){var c=this;this.element.addClass("ui-selectable");this.dragged=false;var f;this.refresh=function(){f=e(c.options.filter,c.element[0]);f.each(function(){var d=e(this),b=d.offset();e.data(this,"selectable-item",{element:this,$element:d,left:b.left,top:b.top,right:b.left+d.outerWidth(),bottom:b.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),
-selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=f.addClass("ui-selectee");this._mouseInit();this.helper=e("<div class='ui-selectable-helper'></div>")},destroy:function(){this.selectees.removeClass("ui-selectee").removeData("selectable-item");this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy();return this},_mouseStart:function(c){var f=this;this.opos=[c.pageX,
-c.pageY];if(!this.options.disabled){var d=this.options;this.selectees=e(d.filter,this.element[0]);this._trigger("start",c);e(d.appendTo).append(this.helper);this.helper.css({left:c.clientX,top:c.clientY,width:0,height:0});d.autoRefresh&&this.refresh();this.selectees.filter(".ui-selected").each(function(){var b=e.data(this,"selectable-item");b.startselected=true;if(!c.metaKey){b.$element.removeClass("ui-selected");b.selected=false;b.$element.addClass("ui-unselecting");b.unselecting=true;f._trigger("unselecting",
-c,{unselecting:b.element})}});e(c.target).parents().andSelf().each(function(){var b=e.data(this,"selectable-item");if(b){var g=!c.metaKey||!b.$element.hasClass("ui-selected");b.$element.removeClass(g?"ui-unselecting":"ui-selected").addClass(g?"ui-selecting":"ui-unselecting");b.unselecting=!g;b.selecting=g;(b.selected=g)?f._trigger("selecting",c,{selecting:b.element}):f._trigger("unselecting",c,{unselecting:b.element});return false}})}},_mouseDrag:function(c){var f=this;this.dragged=true;if(!this.options.disabled){var d=
-this.options,b=this.opos[0],g=this.opos[1],h=c.pageX,i=c.pageY;if(b>h){var j=h;h=b;b=j}if(g>i){j=i;i=g;g=j}this.helper.css({left:b,top:g,width:h-b,height:i-g});this.selectees.each(function(){var a=e.data(this,"selectable-item");if(!(!a||a.element==f.element[0])){var k=false;if(d.tolerance=="touch")k=!(a.left>h||a.right<b||a.top>i||a.bottom<g);else if(d.tolerance=="fit")k=a.left>b&&a.right<h&&a.top>g&&a.bottom<i;if(k){if(a.selected){a.$element.removeClass("ui-selected");a.selected=false}if(a.unselecting){a.$element.removeClass("ui-unselecting");
-a.unselecting=false}if(!a.selecting){a.$element.addClass("ui-selecting");a.selecting=true;f._trigger("selecting",c,{selecting:a.element})}}else{if(a.selecting)if(c.metaKey&&a.startselected){a.$element.removeClass("ui-selecting");a.selecting=false;a.$element.addClass("ui-selected");a.selected=true}else{a.$element.removeClass("ui-selecting");a.selecting=false;if(a.startselected){a.$element.addClass("ui-unselecting");a.unselecting=true}f._trigger("unselecting",c,{unselecting:a.element})}if(a.selected)if(!c.metaKey&&
-!a.startselected){a.$element.removeClass("ui-selected");a.selected=false;a.$element.addClass("ui-unselecting");a.unselecting=true;f._trigger("unselecting",c,{unselecting:a.element})}}}});return false}},_mouseStop:function(c){var f=this;this.dragged=false;e(".ui-unselecting",this.element[0]).each(function(){var d=e.data(this,"selectable-item");d.$element.removeClass("ui-unselecting");d.unselecting=false;d.startselected=false;f._trigger("unselected",c,{unselected:d.element})});e(".ui-selecting",this.element[0]).each(function(){var d=
-e.data(this,"selectable-item");d.$element.removeClass("ui-selecting").addClass("ui-selected");d.selecting=false;d.selected=true;d.startselected=true;f._trigger("selected",c,{selected:d.element})});this._trigger("stop",c);this.helper.remove();return false}});e.extend(e.ui.selectable,{version:"1.8.13"})})(jQuery);
-;/*
- * jQuery UI Sortable 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Sortables
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.mouse.js
- * jquery.ui.widget.js
- */
-(function(d){d.widget("ui.sortable",d.ui.mouse,{widgetEventPrefix:"sort",options:{appendTo:"parent",axis:false,connectWith:false,containment:false,cursor:"auto",cursorAt:false,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1E3},_create:function(){var a=this.options;this.containerCache={};this.element.addClass("ui-sortable");
-this.refresh();this.floating=this.items.length?a.axis==="x"||/left|right/.test(this.items[0].item.css("float"))||/inline|table-cell/.test(this.items[0].item.css("display")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var a=this.items.length-1;a>=0;a--)this.items[a].item.removeData("sortable-item");return this},_setOption:function(a,b){if(a===
-"disabled"){this.options[a]=b;this.widget()[b?"addClass":"removeClass"]("ui-sortable-disabled")}else d.Widget.prototype._setOption.apply(this,arguments)},_mouseCapture:function(a,b){if(this.reverting)return false;if(this.options.disabled||this.options.type=="static")return false;this._refreshItems(a);var c=null,e=this;d(a.target).parents().each(function(){if(d.data(this,"sortable-item")==e){c=d(this);return false}});if(d.data(a.target,"sortable-item")==e)c=d(a.target);if(!c)return false;if(this.options.handle&&
-!b){var f=false;d(this.options.handle,c).find("*").andSelf().each(function(){if(this==a.target)f=true});if(!f)return false}this.currentItem=c;this._removeCurrentsFromItems();return true},_mouseStart:function(a,b,c){b=this.options;var e=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(a);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,
-left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");d.extend(this.offset,{click:{left:a.pageX-this.offset.left,top:a.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(a);this.originalPageX=a.pageX;this.originalPageY=a.pageY;b.cursorAt&&this._adjustOffsetFromHelper(b.cursorAt);this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};
-this.helper[0]!=this.currentItem[0]&&this.currentItem.hide();this._createPlaceholder();b.containment&&this._setContainment();if(b.cursor){if(d("body").css("cursor"))this._storedCursor=d("body").css("cursor");d("body").css("cursor",b.cursor)}if(b.opacity){if(this.helper.css("opacity"))this._storedOpacity=this.helper.css("opacity");this.helper.css("opacity",b.opacity)}if(b.zIndex){if(this.helper.css("zIndex"))this._storedZIndex=this.helper.css("zIndex");this.helper.css("zIndex",b.zIndex)}if(this.scrollParent[0]!=
-document&&this.scrollParent[0].tagName!="HTML")this.overflowOffset=this.scrollParent.offset();this._trigger("start",a,this._uiHash());this._preserveHelperProportions||this._cacheHelperProportions();if(!c)for(c=this.containers.length-1;c>=0;c--)this.containers[c]._trigger("activate",a,e._uiHash(this));if(d.ui.ddmanager)d.ui.ddmanager.current=this;d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,a);this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(a);
-return true},_mouseDrag:function(a){this.position=this._generatePosition(a);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs)this.lastPositionAbs=this.positionAbs;if(this.options.scroll){var b=this.options,c=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if(this.overflowOffset.top+this.scrollParent[0].offsetHeight-a.pageY<b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop+b.scrollSpeed;else if(a.pageY-this.overflowOffset.top<
-b.scrollSensitivity)this.scrollParent[0].scrollTop=c=this.scrollParent[0].scrollTop-b.scrollSpeed;if(this.overflowOffset.left+this.scrollParent[0].offsetWidth-a.pageX<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft+b.scrollSpeed;else if(a.pageX-this.overflowOffset.left<b.scrollSensitivity)this.scrollParent[0].scrollLeft=c=this.scrollParent[0].scrollLeft-b.scrollSpeed}else{if(a.pageY-d(document).scrollTop()<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()-
-b.scrollSpeed);else if(d(window).height()-(a.pageY-d(document).scrollTop())<b.scrollSensitivity)c=d(document).scrollTop(d(document).scrollTop()+b.scrollSpeed);if(a.pageX-d(document).scrollLeft()<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()-b.scrollSpeed);else if(d(window).width()-(a.pageX-d(document).scrollLeft())<b.scrollSensitivity)c=d(document).scrollLeft(d(document).scrollLeft()+b.scrollSpeed)}c!==false&&d.ui.ddmanager&&!b.dropBehaviour&&d.ui.ddmanager.prepareOffsets(this,
-a)}this.positionAbs=this._convertPositionTo("absolute");if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+"px";if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+"px";for(b=this.items.length-1;b>=0;b--){c=this.items[b];var e=c.item[0],f=this._intersectsWithPointer(c);if(f)if(e!=this.currentItem[0]&&this.placeholder[f==1?"next":"prev"]()[0]!=e&&!d.ui.contains(this.placeholder[0],e)&&(this.options.type=="semi-dynamic"?!d.ui.contains(this.element[0],
-e):true)){this.direction=f==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(c))this._rearrange(a,c);else break;this._trigger("change",a,this._uiHash());break}}this._contactContainers(a);d.ui.ddmanager&&d.ui.ddmanager.drag(this,a);this._trigger("sort",a,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(a,b){if(a){d.ui.ddmanager&&!this.options.dropBehaviour&&d.ui.ddmanager.drop(this,a);if(this.options.revert){var c=this;b=c.placeholder.offset();
-c.reverting=true;d(this.helper).animate({left:b.left-this.offset.parent.left-c.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:b.top-this.offset.parent.top-c.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){c._clear(a)})}else this._clear(a,b);return false}},cancel:function(){var a=this;if(this.dragging){this._mouseUp({target:null});this.options.helper=="original"?this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"):
-this.currentItem.show();for(var b=this.containers.length-1;b>=0;b--){this.containers[b]._trigger("deactivate",null,a._uiHash(this));if(this.containers[b].containerCache.over){this.containers[b]._trigger("out",null,a._uiHash(this));this.containers[b].containerCache.over=0}}}if(this.placeholder){this.placeholder[0].parentNode&&this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.options.helper!="original"&&this.helper&&this.helper[0].parentNode&&this.helper.remove();d.extend(this,{helper:null,
-dragging:false,reverting:false,_noFinalSort:null});this.domPosition.prev?d(this.domPosition.prev).after(this.currentItem):d(this.domPosition.parent).prepend(this.currentItem)}return this},serialize:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};d(b).each(function(){var e=(d(a.item||this).attr(a.attribute||"id")||"").match(a.expression||/(.+)[-=_](.+)/);if(e)c.push((a.key||e[1]+"[]")+"="+(a.key&&a.expression?e[1]:e[2]))});!c.length&&a.key&&c.push(a.key+"=");return c.join("&")},
-toArray:function(a){var b=this._getItemsAsjQuery(a&&a.connected),c=[];a=a||{};b.each(function(){c.push(d(a.item||this).attr(a.attribute||"id")||"")});return c},_intersectsWith:function(a){var b=this.positionAbs.left,c=b+this.helperProportions.width,e=this.positionAbs.top,f=e+this.helperProportions.height,g=a.left,h=g+a.width,i=a.top,k=i+a.height,j=this.offset.click.top,l=this.offset.click.left;j=e+j>i&&e+j<k&&b+l>g&&b+l<h;return this.options.tolerance=="pointer"||this.options.forcePointerForContainers||
-this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>a[this.floating?"width":"height"]?j:g<b+this.helperProportions.width/2&&c-this.helperProportions.width/2<h&&i<e+this.helperProportions.height/2&&f-this.helperProportions.height/2<k},_intersectsWithPointer:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left,a.width);b=b&&a;a=this._getDragVerticalDirection();
-var c=this._getDragHorizontalDirection();if(!b)return false;return this.floating?c&&c=="right"||a=="down"?2:1:a&&(a=="down"?2:1)},_intersectsWithSides:function(a){var b=d.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,a.top+a.height/2,a.height);a=d.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,a.left+a.width/2,a.width);var c=this._getDragVerticalDirection(),e=this._getDragHorizontalDirection();return this.floating&&e?e=="right"&&a||e=="left"&&!a:c&&(c=="down"&&b||c=="up"&&!b)},
-_getDragVerticalDirection:function(){var a=this.positionAbs.top-this.lastPositionAbs.top;return a!=0&&(a>0?"down":"up")},_getDragHorizontalDirection:function(){var a=this.positionAbs.left-this.lastPositionAbs.left;return a!=0&&(a>0?"right":"left")},refresh:function(a){this._refreshItems(a);this.refreshPositions();return this},_connectWith:function(){var a=this.options;return a.connectWith.constructor==String?[a.connectWith]:a.connectWith},_getItemsAsjQuery:function(a){var b=[],c=[],e=this._connectWith();
-if(e&&a)for(a=e.length-1;a>=0;a--)for(var f=d(e[a]),g=f.length-1;g>=0;g--){var h=d.data(f[g],"sortable");if(h&&h!=this&&!h.options.disabled)c.push([d.isFunction(h.options.items)?h.options.items.call(h.element):d(h.options.items,h.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),h])}c.push([d.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):d(this.options.items,this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"),
-this]);for(a=c.length-1;a>=0;a--)c[a][0].each(function(){b.push(this)});return d(b)},_removeCurrentsFromItems:function(){for(var a=this.currentItem.find(":data(sortable-item)"),b=0;b<this.items.length;b++)for(var c=0;c<a.length;c++)a[c]==this.items[b].item[0]&&this.items.splice(b,1)},_refreshItems:function(a){this.items=[];this.containers=[this];var b=this.items,c=[[d.isFunction(this.options.items)?this.options.items.call(this.element[0],a,{item:this.currentItem}):d(this.options.items,this.element),
-this]],e=this._connectWith();if(e)for(var f=e.length-1;f>=0;f--)for(var g=d(e[f]),h=g.length-1;h>=0;h--){var i=d.data(g[h],"sortable");if(i&&i!=this&&!i.options.disabled){c.push([d.isFunction(i.options.items)?i.options.items.call(i.element[0],a,{item:this.currentItem}):d(i.options.items,i.element),i]);this.containers.push(i)}}for(f=c.length-1;f>=0;f--){a=c[f][1];e=c[f][0];h=0;for(g=e.length;h<g;h++){i=d(e[h]);i.data("sortable-item",a);b.push({item:i,instance:a,width:0,height:0,left:0,top:0})}}},refreshPositions:function(a){if(this.offsetParent&&
-this.helper)this.offset.parent=this._getParentOffset();for(var b=this.items.length-1;b>=0;b--){var c=this.items[b];if(!(c.instance!=this.currentContainer&&this.currentContainer&&c.item[0]!=this.currentItem[0])){var e=this.options.toleranceElement?d(this.options.toleranceElement,c.item):c.item;if(!a){c.width=e.outerWidth();c.height=e.outerHeight()}e=e.offset();c.left=e.left;c.top=e.top}}if(this.options.custom&&this.options.custom.refreshContainers)this.options.custom.refreshContainers.call(this);else for(b=
-this.containers.length-1;b>=0;b--){e=this.containers[b].element.offset();this.containers[b].containerCache.left=e.left;this.containers[b].containerCache.top=e.top;this.containers[b].containerCache.width=this.containers[b].element.outerWidth();this.containers[b].containerCache.height=this.containers[b].element.outerHeight()}return this},_createPlaceholder:function(a){var b=a||this,c=b.options;if(!c.placeholder||c.placeholder.constructor==String){var e=c.placeholder;c.placeholder={element:function(){var f=
-d(document.createElement(b.currentItem[0].nodeName)).addClass(e||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!e)f.style.visibility="hidden";return f},update:function(f,g){if(!(e&&!c.forcePlaceholderSize)){g.height()||g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10));g.width()||g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||
-0,10))}}}}b.placeholder=d(c.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);c.placeholder.update(b,b.placeholder)},_contactContainers:function(a){for(var b=null,c=null,e=this.containers.length-1;e>=0;e--)if(!d.ui.contains(this.currentItem[0],this.containers[e].element[0]))if(this._intersectsWith(this.containers[e].containerCache)){if(!(b&&d.ui.contains(this.containers[e].element[0],b.element[0]))){b=this.containers[e];c=e}}else if(this.containers[e].containerCache.over){this.containers[e]._trigger("out",
-a,this._uiHash(this));this.containers[e].containerCache.over=0}if(b)if(this.containers.length===1){this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}else if(this.currentContainer!=this.containers[c]){b=1E4;e=null;for(var f=this.positionAbs[this.containers[c].floating?"left":"top"],g=this.items.length-1;g>=0;g--)if(d.ui.contains(this.containers[c].element[0],this.items[g].item[0])){var h=this.items[g][this.containers[c].floating?"left":"top"];if(Math.abs(h-
-f)<b){b=Math.abs(h-f);e=this.items[g]}}if(e||this.options.dropOnEmpty){this.currentContainer=this.containers[c];e?this._rearrange(a,e,null,true):this._rearrange(a,null,this.containers[c].element,true);this._trigger("change",a,this._uiHash());this.containers[c]._trigger("change",a,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder);this.containers[c]._trigger("over",a,this._uiHash(this));this.containers[c].containerCache.over=1}}},_createHelper:function(a){var b=
-this.options;a=d.isFunction(b.helper)?d(b.helper.apply(this.element[0],[a,this.currentItem])):b.helper=="clone"?this.currentItem.clone():this.currentItem;a.parents("body").length||d(b.appendTo!="parent"?b.appendTo:this.currentItem[0].parentNode)[0].appendChild(a[0]);if(a[0]==this.currentItem[0])this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")};if(a[0].style.width==
-""||b.forceHelperSize)a.width(this.currentItem.width());if(a[0].style.height==""||b.forceHelperSize)a.height(this.currentItem.height());return a},_adjustOffsetFromHelper:function(a){if(typeof a=="string")a=a.split(" ");if(d.isArray(a))a={left:+a[0],top:+a[1]||0};if("left"in a)this.offset.click.left=a.left+this.margins.left;if("right"in a)this.offset.click.left=this.helperProportions.width-a.right+this.margins.left;if("top"in a)this.offset.click.top=a.top+this.margins.top;if("bottom"in a)this.offset.click.top=
-this.helperProportions.height-a.bottom+this.margins.top},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var a=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0])){a.left+=this.scrollParent.scrollLeft();a.top+=this.scrollParent.scrollTop()}if(this.offsetParent[0]==document.body||this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&d.browser.msie)a=
-{top:0,left:0};return{top:a.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:a.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var a=this.currentItem.position();return{top:a.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:a.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else return{top:0,left:0}},_cacheMargins:function(){this.margins={left:parseInt(this.currentItem.css("marginLeft"),
-10)||0,top:parseInt(this.currentItem.css("marginTop"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var a=this.options;if(a.containment=="parent")a.containment=this.helper[0].parentNode;if(a.containment=="document"||a.containment=="window")this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,d(a.containment=="document"?
-document:window).width()-this.helperProportions.width-this.margins.left,(d(a.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!/^(document|window|parent)$/.test(a.containment)){var b=d(a.containment)[0];a=d(a.containment).offset();var c=d(b).css("overflow")!="hidden";this.containment=[a.left+(parseInt(d(b).css("borderLeftWidth"),10)||0)+(parseInt(d(b).css("paddingLeft"),10)||0)-this.margins.left,a.top+(parseInt(d(b).css("borderTopWidth"),
-10)||0)+(parseInt(d(b).css("paddingTop"),10)||0)-this.margins.top,a.left+(c?Math.max(b.scrollWidth,b.offsetWidth):b.offsetWidth)-(parseInt(d(b).css("borderLeftWidth"),10)||0)-(parseInt(d(b).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,a.top+(c?Math.max(b.scrollHeight,b.offsetHeight):b.offsetHeight)-(parseInt(d(b).css("borderTopWidth"),10)||0)-(parseInt(d(b).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}},_convertPositionTo:function(a,b){if(!b)b=
-this.position;a=a=="absolute"?1:-1;var c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);return{top:b.top+this.offset.relative.top*a+this.offset.parent.top*a-(d.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop())*a),left:b.left+this.offset.relative.left*a+this.offset.parent.left*a-(d.browser.safari&&
-this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())*a)}},_generatePosition:function(a){var b=this.options,c=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&d.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,e=/(html|body)/i.test(c[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0]))this.offset.relative=this._getRelativeOffset();
-var f=a.pageX,g=a.pageY;if(this.originalPosition){if(this.containment){if(a.pageX-this.offset.click.left<this.containment[0])f=this.containment[0]+this.offset.click.left;if(a.pageY-this.offset.click.top<this.containment[1])g=this.containment[1]+this.offset.click.top;if(a.pageX-this.offset.click.left>this.containment[2])f=this.containment[2]+this.offset.click.left;if(a.pageY-this.offset.click.top>this.containment[3])g=this.containment[3]+this.offset.click.top}if(b.grid){g=this.originalPageY+Math.round((g-
-this.originalPageY)/b.grid[1])*b.grid[1];g=this.containment?!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:!(g-this.offset.click.top<this.containment[1])?g-b.grid[1]:g+b.grid[1]:g;f=this.originalPageX+Math.round((f-this.originalPageX)/b.grid[0])*b.grid[0];f=this.containment?!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:!(f-this.offset.click.left<this.containment[0])?f-b.grid[0]:f+b.grid[0]:f}}return{top:g-
-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollTop():e?0:c.scrollTop()),left:f-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(d.browser.safari&&this.cssPosition=="fixed"?0:this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():e?0:c.scrollLeft())}},_rearrange:function(a,b,c,e){c?c[0].appendChild(this.placeholder[0]):b.item[0].parentNode.insertBefore(this.placeholder[0],
-this.direction=="down"?b.item[0]:b.item[0].nextSibling);this.counter=this.counter?++this.counter:1;var f=this,g=this.counter;window.setTimeout(function(){g==f.counter&&f.refreshPositions(!e)},0)},_clear:function(a,b){this.reverting=false;var c=[];!this._noFinalSort&&this.currentItem[0].parentNode&&this.placeholder.before(this.currentItem);this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var e in this._storedCSS)if(this._storedCSS[e]=="auto"||this._storedCSS[e]=="static")this._storedCSS[e]=
-"";this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else this.currentItem.show();this.fromOutside&&!b&&c.push(function(f){this._trigger("receive",f,this._uiHash(this.fromOutside))});if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!b)c.push(function(f){this._trigger("update",f,this._uiHash())});if(!d.ui.contains(this.element[0],this.currentItem[0])){b||c.push(function(f){this._trigger("remove",
-f,this._uiHash())});for(e=this.containers.length-1;e>=0;e--)if(d.ui.contains(this.containers[e].element[0],this.currentItem[0])&&!b){c.push(function(f){return function(g){f._trigger("receive",g,this._uiHash(this))}}.call(this,this.containers[e]));c.push(function(f){return function(g){f._trigger("update",g,this._uiHash(this))}}.call(this,this.containers[e]))}}for(e=this.containers.length-1;e>=0;e--){b||c.push(function(f){return function(g){f._trigger("deactivate",g,this._uiHash(this))}}.call(this,
-this.containers[e]));if(this.containers[e].containerCache.over){c.push(function(f){return function(g){f._trigger("out",g,this._uiHash(this))}}.call(this,this.containers[e]));this.containers[e].containerCache.over=0}}this._storedCursor&&d("body").css("cursor",this._storedCursor);this._storedOpacity&&this.helper.css("opacity",this._storedOpacity);if(this._storedZIndex)this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex);this.dragging=false;if(this.cancelHelperRemoval){if(!b){this._trigger("beforeStop",
-a,this._uiHash());for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}return false}b||this._trigger("beforeStop",a,this._uiHash());this.placeholder[0].parentNode.removeChild(this.placeholder[0]);this.helper[0]!=this.currentItem[0]&&this.helper.remove();this.helper=null;if(!b){for(e=0;e<c.length;e++)c[e].call(this,a);this._trigger("stop",a,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){d.Widget.prototype._trigger.apply(this,arguments)===false&&this.cancel()},
-_uiHash:function(a){var b=a||this;return{helper:b.helper,placeholder:b.placeholder||d([]),position:b.position,originalPosition:b.originalPosition,offset:b.positionAbs,item:b.currentItem,sender:a?a.element:null}}});d.extend(d.ui.sortable,{version:"1.8.13"})})(jQuery);
-;/*
- * jQuery UI Accordion 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Accordion
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- */
-(function(c){c.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()===location.href.toLowerCase()}},_create:function(){var a=this,b=a.options;a.running=0;a.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix");
-a.headers=a.element.find(b.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){b.disabled||c(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){b.disabled||c(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){b.disabled||c(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){b.disabled||c(this).removeClass("ui-state-focus")});a.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
-if(b.navigation){var d=a.element.find("a").filter(b.navigationFilter).eq(0);if(d.length){var h=d.closest(".ui-accordion-header");a.active=h.length?h:d.closest(".ui-accordion-content").prev()}}a.active=a._findActive(a.active||b.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");a.active.next().addClass("ui-accordion-content-active");a._createIcons();a.resize();a.element.attr("role","tablist");a.headers.attr("role","tab").bind("keydown.accordion",
-function(f){return a._keydown(f)}).next().attr("role","tabpanel");a.headers.not(a.active||"").attr({"aria-expanded":"false","aria-selected":"false",tabIndex:-1}).next().hide();a.active.length?a.active.attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}):a.headers.eq(0).attr("tabIndex",0);c.browser.safari||a.headers.find("a").attr("tabIndex",-1);b.event&&a.headers.bind(b.event.split(" ").join(".accordion ")+".accordion",function(f){a._clickHandler.call(a,f,this);f.preventDefault()})},_createIcons:function(){var a=
-this.options;if(a.icons){c("<span></span>").addClass("ui-icon "+a.icons.header).prependTo(this.headers);this.active.children(".ui-icon").toggleClass(a.icons.header).toggleClass(a.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var a=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex");
-this.headers.find("a").removeAttr("tabIndex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled");if(a.autoHeight||a.fillHeight)b.css("height","");return c.Widget.prototype.destroy.call(this)},_setOption:function(a,b){c.Widget.prototype._setOption.apply(this,arguments);a=="active"&&this.activate(b);if(a=="icons"){this._destroyIcons();
-b&&this._createIcons()}if(a=="disabled")this.headers.add(this.headers.next())[b?"addClass":"removeClass"]("ui-accordion-disabled ui-state-disabled")},_keydown:function(a){if(!(this.options.disabled||a.altKey||a.ctrlKey)){var b=c.ui.keyCode,d=this.headers.length,h=this.headers.index(a.target),f=false;switch(a.keyCode){case b.RIGHT:case b.DOWN:f=this.headers[(h+1)%d];break;case b.LEFT:case b.UP:f=this.headers[(h-1+d)%d];break;case b.SPACE:case b.ENTER:this._clickHandler({target:a.target},a.target);
-a.preventDefault()}if(f){c(a.target).attr("tabIndex",-1);c(f).attr("tabIndex",0);f.focus();return false}return true}},resize:function(){var a=this.options,b;if(a.fillSpace){if(c.browser.msie){var d=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}b=this.element.parent().height();c.browser.msie&&this.element.parent().css("overflow",d);this.headers.each(function(){b-=c(this).outerHeight(true)});this.headers.next().each(function(){c(this).height(Math.max(0,b-c(this).innerHeight()+
-c(this).height()))}).css("overflow","auto")}else if(a.autoHeight){b=0;this.headers.next().each(function(){b=Math.max(b,c(this).height("").height())}).height(b)}return this},activate:function(a){this.options.active=a;a=this._findActive(a)[0];this._clickHandler({target:a},a);return this},_findActive:function(a){return a?typeof a==="number"?this.headers.filter(":eq("+a+")"):this.headers.not(this.headers.not(a)):a===false?c([]):this.headers.filter(":eq(0)")},_clickHandler:function(a,b){var d=this.options;
-if(!d.disabled)if(a.target){a=c(a.currentTarget||b);b=a[0]===this.active[0];d.active=d.collapsible&&b?false:this.headers.index(a);if(!(this.running||!d.collapsible&&b)){var h=this.active;j=a.next();g=this.active.next();e={options:d,newHeader:b&&d.collapsible?c([]):a,oldHeader:this.active,newContent:b&&d.collapsible?c([]):j,oldContent:g};var f=this.headers.index(this.active[0])>this.headers.index(a[0]);this.active=b?c([]):a;this._toggle(j,g,e,b,f);h.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);
-if(!b){a.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);a.next().addClass("ui-accordion-content-active")}}}else if(d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var g=this.active.next(),
-e={options:d,newHeader:c([]),oldHeader:d.active,newContent:c([]),oldContent:g},j=this.active=c([]);this._toggle(j,g,e)}},_toggle:function(a,b,d,h,f){var g=this,e=g.options;g.toShow=a;g.toHide=b;g.data=d;var j=function(){if(g)return g._completed.apply(g,arguments)};g._trigger("changestart",null,g.data);g.running=b.size()===0?a.size():b.size();if(e.animated){d={};d=e.collapsible&&h?{toShow:c([]),toHide:b,complete:j,down:f,autoHeight:e.autoHeight||e.fillSpace}:{toShow:a,toHide:b,complete:j,down:f,autoHeight:e.autoHeight||
-e.fillSpace};if(!e.proxied)e.proxied=e.animated;if(!e.proxiedDuration)e.proxiedDuration=e.duration;e.animated=c.isFunction(e.proxied)?e.proxied(d):e.proxied;e.duration=c.isFunction(e.proxiedDuration)?e.proxiedDuration(d):e.proxiedDuration;h=c.ui.accordion.animations;var i=e.duration,k=e.animated;if(k&&!h[k]&&!c.easing[k])k="slide";h[k]||(h[k]=function(l){this.slide(l,{easing:k,duration:i||700})});h[k](d)}else{if(e.collapsible&&h)a.toggle();else{b.hide();a.show()}j(true)}b.prev().attr({"aria-expanded":"false",
-"aria-selected":"false",tabIndex:-1}).blur();a.prev().attr({"aria-expanded":"true","aria-selected":"true",tabIndex:0}).focus()},_completed:function(a){this.running=a?0:--this.running;if(!this.running){this.options.clearStyle&&this.toShow.add(this.toHide).css({height:"",overflow:""});this.toHide.removeClass("ui-accordion-content-active");if(this.toHide.length)this.toHide.parent()[0].className=this.toHide.parent()[0].className;this._trigger("change",null,this.data)}}});c.extend(c.ui.accordion,{version:"1.8.13",
-animations:{slide:function(a,b){a=c.extend({easing:"swing",duration:300},a,b);if(a.toHide.size())if(a.toShow.size()){var d=a.toShow.css("overflow"),h=0,f={},g={},e;b=a.toShow;e=b[0].style.width;b.width(parseInt(b.parent().width(),10)-parseInt(b.css("paddingLeft"),10)-parseInt(b.css("paddingRight"),10)-(parseInt(b.css("borderLeftWidth"),10)||0)-(parseInt(b.css("borderRightWidth"),10)||0));c.each(["height","paddingTop","paddingBottom"],function(j,i){g[i]="hide";j=(""+c.css(a.toShow[0],i)).match(/^([\d+-.]+)(.*)$/);
-f[i]={value:j[1],unit:j[2]||"px"}});a.toShow.css({height:0,overflow:"hidden"}).show();a.toHide.filter(":hidden").each(a.complete).end().filter(":visible").animate(g,{step:function(j,i){if(i.prop=="height")h=i.end-i.start===0?0:(i.now-i.start)/(i.end-i.start);a.toShow[0].style[i.prop]=h*f[i.prop].value+f[i.prop].unit},duration:a.duration,easing:a.easing,complete:function(){a.autoHeight||a.toShow.css("height","");a.toShow.css({width:e,overflow:d});a.complete()}})}else a.toHide.animate({height:"hide",
-paddingTop:"hide",paddingBottom:"hide"},a);else a.toShow.animate({height:"show",paddingTop:"show",paddingBottom:"show"},a)},bounceslide:function(a){this.slide(a,{easing:a.down?"easeOutBounce":"swing",duration:a.down?1E3:200})}}})})(jQuery);
-;/*
- * jQuery UI Autocomplete 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Autocomplete
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- * jquery.ui.position.js
- */
-(function(d){var e=0;d.widget("ui.autocomplete",{options:{appendTo:"body",autoFocus:false,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null},pending:0,_create:function(){var a=this,b=this.element[0].ownerDocument,g;this.element.addClass("ui-autocomplete-input").attr("autocomplete","off").attr({role:"textbox","aria-autocomplete":"list","aria-haspopup":"true"}).bind("keydown.autocomplete",function(c){if(!(a.options.disabled||a.element.attr("readonly"))){g=
-false;var f=d.ui.keyCode;switch(c.keyCode){case f.PAGE_UP:a._move("previousPage",c);break;case f.PAGE_DOWN:a._move("nextPage",c);break;case f.UP:a._move("previous",c);c.preventDefault();break;case f.DOWN:a._move("next",c);c.preventDefault();break;case f.ENTER:case f.NUMPAD_ENTER:if(a.menu.active){g=true;c.preventDefault()}case f.TAB:if(!a.menu.active)return;a.menu.select(c);break;case f.ESCAPE:a.element.val(a.term);a.close(c);break;default:clearTimeout(a.searching);a.searching=setTimeout(function(){if(a.term!=
-a.element.val()){a.selectedItem=null;a.search(null,c)}},a.options.delay);break}}}).bind("keypress.autocomplete",function(c){if(g){g=false;c.preventDefault()}}).bind("focus.autocomplete",function(){if(!a.options.disabled){a.selectedItem=null;a.previous=a.element.val()}}).bind("blur.autocomplete",function(c){if(!a.options.disabled){clearTimeout(a.searching);a.closing=setTimeout(function(){a.close(c);a._change(c)},150)}});this._initSource();this.response=function(){return a._response.apply(a,arguments)};
-this.menu=d("<ul></ul>").addClass("ui-autocomplete").appendTo(d(this.options.appendTo||"body",b)[0]).mousedown(function(c){var f=a.menu.element[0];d(c.target).closest(".ui-menu-item").length||setTimeout(function(){d(document).one("mousedown",function(h){h.target!==a.element[0]&&h.target!==f&&!d.ui.contains(f,h.target)&&a.close()})},1);setTimeout(function(){clearTimeout(a.closing)},13)}).menu({focus:function(c,f){f=f.item.data("item.autocomplete");false!==a._trigger("focus",c,{item:f})&&/^key/.test(c.originalEvent.type)&&
-a.element.val(f.value)},selected:function(c,f){var h=f.item.data("item.autocomplete"),i=a.previous;if(a.element[0]!==b.activeElement){a.element.focus();a.previous=i;setTimeout(function(){a.previous=i;a.selectedItem=h},1)}false!==a._trigger("select",c,{item:h})&&a.element.val(h.value);a.term=a.element.val();a.close(c);a.selectedItem=h},blur:function(){a.menu.element.is(":visible")&&a.element.val()!==a.term&&a.element.val(a.term)}}).zIndex(this.element.zIndex()+1).css({top:0,left:0}).hide().data("menu");
-d.fn.bgiframe&&this.menu.element.bgiframe()},destroy:function(){this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup");this.menu.element.remove();d.Widget.prototype.destroy.call(this)},_setOption:function(a,b){d.Widget.prototype._setOption.apply(this,arguments);a==="source"&&this._initSource();if(a==="appendTo")this.menu.element.appendTo(d(b||"body",this.element[0].ownerDocument)[0]);a==="disabled"&&
-b&&this.xhr&&this.xhr.abort()},_initSource:function(){var a=this,b,g;if(d.isArray(this.options.source)){b=this.options.source;this.source=function(c,f){f(d.ui.autocomplete.filter(b,c.term))}}else if(typeof this.options.source==="string"){g=this.options.source;this.source=function(c,f){a.xhr&&a.xhr.abort();a.xhr=d.ajax({url:g,data:c,dataType:"json",autocompleteRequest:++e,success:function(h){this.autocompleteRequest===e&&f(h)},error:function(){this.autocompleteRequest===e&&f([])}})}}else this.source=
-this.options.source},search:function(a,b){a=a!=null?a:this.element.val();this.term=this.element.val();if(a.length<this.options.minLength)return this.close(b);clearTimeout(this.closing);if(this._trigger("search",b)!==false)return this._search(a)},_search:function(a){this.pending++;this.element.addClass("ui-autocomplete-loading");this.source({term:a},this.response)},_response:function(a){if(!this.options.disabled&&a&&a.length){a=this._normalize(a);this._suggest(a);this._trigger("open")}else this.close();
-this.pending--;this.pending||this.element.removeClass("ui-autocomplete-loading")},close:function(a){clearTimeout(this.closing);if(this.menu.element.is(":visible")){this.menu.element.hide();this.menu.deactivate();this._trigger("close",a)}},_change:function(a){this.previous!==this.element.val()&&this._trigger("change",a,{item:this.selectedItem})},_normalize:function(a){if(a.length&&a[0].label&&a[0].value)return a;return d.map(a,function(b){if(typeof b==="string")return{label:b,value:b};return d.extend({label:b.label||
-b.value,value:b.value||b.label},b)})},_suggest:function(a){var b=this.menu.element.empty().zIndex(this.element.zIndex()+1);this._renderMenu(b,a);this.menu.deactivate();this.menu.refresh();b.show();this._resizeMenu();b.position(d.extend({of:this.element},this.options.position));this.options.autoFocus&&this.menu.next(new d.Event("mouseover"))},_resizeMenu:function(){var a=this.menu.element;a.outerWidth(Math.max(a.width("").outerWidth(),this.element.outerWidth()))},_renderMenu:function(a,b){var g=this;
-d.each(b,function(c,f){g._renderItem(a,f)})},_renderItem:function(a,b){return d("<li></li>").data("item.autocomplete",b).append(d("<a></a>").text(b.label)).appendTo(a)},_move:function(a,b){if(this.menu.element.is(":visible"))if(this.menu.first()&&/^previous/.test(a)||this.menu.last()&&/^next/.test(a)){this.element.val(this.term);this.menu.deactivate()}else this.menu[a](b);else this.search(null,b)},widget:function(){return this.menu.element}});d.extend(d.ui.autocomplete,{escapeRegex:function(a){return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,
-"\\$&")},filter:function(a,b){var g=new RegExp(d.ui.autocomplete.escapeRegex(b),"i");return d.grep(a,function(c){return g.test(c.label||c.value||c)})}})})(jQuery);
-(function(d){d.widget("ui.menu",{_create:function(){var e=this;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({role:"listbox","aria-activedescendant":"ui-active-menuitem"}).click(function(a){if(d(a.target).closest(".ui-menu-item a").length){a.preventDefault();e.select(a)}});this.refresh()},refresh:function(){var e=this;this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabindex",
--1).mouseenter(function(a){e.activate(a,d(this).parent())}).mouseleave(function(){e.deactivate()})},activate:function(e,a){this.deactivate();if(this.hasScroll()){var b=a.offset().top-this.element.offset().top,g=this.element.scrollTop(),c=this.element.height();if(b<0)this.element.scrollTop(g+b);else b>=c&&this.element.scrollTop(g+b-c+a.height())}this.active=a.eq(0).children("a").addClass("ui-state-hover").attr("id","ui-active-menuitem").end();this._trigger("focus",e,{item:a})},deactivate:function(){if(this.active){this.active.children("a").removeClass("ui-state-hover").removeAttr("id");
-this._trigger("blur");this.active=null}},next:function(e){this.move("next",".ui-menu-item:first",e)},previous:function(e){this.move("prev",".ui-menu-item:last",e)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},move:function(e,a,b){if(this.active){e=this.active[e+"All"](".ui-menu-item").eq(0);e.length?this.activate(b,e):this.activate(b,this.element.children(a))}else this.activate(b,
-this.element.children(a))},nextPage:function(e){if(this.hasScroll())if(!this.active||this.last())this.activate(e,this.element.children(".ui-menu-item:first"));else{var a=this.active.offset().top,b=this.element.height(),g=this.element.children(".ui-menu-item").filter(function(){var c=d(this).offset().top-a-b+d(this).height();return c<10&&c>-10});g.length||(g=this.element.children(".ui-menu-item:last"));this.activate(e,g)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||
-this.last()?":first":":last"))},previousPage:function(e){if(this.hasScroll())if(!this.active||this.first())this.activate(e,this.element.children(".ui-menu-item:last"));else{var a=this.active.offset().top,b=this.element.height();result=this.element.children(".ui-menu-item").filter(function(){var g=d(this).offset().top-a+b-d(this).height();return g<10&&g>-10});result.length||(result=this.element.children(".ui-menu-item:first"));this.activate(e,result)}else this.activate(e,this.element.children(".ui-menu-item").filter(!this.active||
-this.first()?":last":":first"))},hasScroll:function(){return this.element.height()<this.element[d.fn.prop?"prop":"attr"]("scrollHeight")},select:function(e){this._trigger("selected",e,{item:this.active})}})})(jQuery);
-;/*
- * jQuery UI Button 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Button
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- */
-(function(a){var g,i=function(b){a(":ui-button",b.target.form).each(function(){var c=a(this).data("button");setTimeout(function(){c.refresh()},1)})},h=function(b){var c=b.name,d=b.form,f=a([]);if(c)f=d?a(d).find("[name='"+c+"']"):a("[name='"+c+"']",b.ownerDocument).filter(function(){return!this.form});return f};a.widget("ui.button",{options:{disabled:null,text:true,label:null,icons:{primary:null,secondary:null}},_create:function(){this.element.closest("form").unbind("reset.button").bind("reset.button",
-i);if(typeof this.options.disabled!=="boolean")this.options.disabled=this.element.attr("disabled");this._determineButtonType();this.hasTitle=!!this.buttonElement.attr("title");var b=this,c=this.options,d=this.type==="checkbox"||this.type==="radio",f="ui-state-hover"+(!d?" ui-state-active":"");if(c.label===null)c.label=this.buttonElement.html();if(this.element.is(":disabled"))c.disabled=true;this.buttonElement.addClass("ui-button ui-widget ui-state-default ui-corner-all").attr("role","button").bind("mouseenter.button",
-function(){if(!c.disabled){a(this).addClass("ui-state-hover");this===g&&a(this).addClass("ui-state-active")}}).bind("mouseleave.button",function(){c.disabled||a(this).removeClass(f)}).bind("focus.button",function(){a(this).addClass("ui-state-focus")}).bind("blur.button",function(){a(this).removeClass("ui-state-focus")}).bind("click.button",function(e){c.disabled&&e.stopImmediatePropagation()});d&&this.element.bind("change.button",function(){b.refresh()});if(this.type==="checkbox")this.buttonElement.bind("click.button",
-function(){if(c.disabled)return false;a(this).toggleClass("ui-state-active");b.buttonElement.attr("aria-pressed",b.element[0].checked)});else if(this.type==="radio")this.buttonElement.bind("click.button",function(){if(c.disabled)return false;a(this).addClass("ui-state-active");b.buttonElement.attr("aria-pressed",true);var e=b.element[0];h(e).not(e).map(function(){return a(this).button("widget")[0]}).removeClass("ui-state-active").attr("aria-pressed",false)});else{this.buttonElement.bind("mousedown.button",
-function(){if(c.disabled)return false;a(this).addClass("ui-state-active");g=this;a(document).one("mouseup",function(){g=null})}).bind("mouseup.button",function(){if(c.disabled)return false;a(this).removeClass("ui-state-active")}).bind("keydown.button",function(e){if(c.disabled)return false;if(e.keyCode==a.ui.keyCode.SPACE||e.keyCode==a.ui.keyCode.ENTER)a(this).addClass("ui-state-active")}).bind("keyup.button",function(){a(this).removeClass("ui-state-active")});this.buttonElement.is("a")&&this.buttonElement.keyup(function(e){e.keyCode===
-a.ui.keyCode.SPACE&&a(this).click()})}this._setOption("disabled",c.disabled)},_determineButtonType:function(){this.type=this.element.is(":checkbox")?"checkbox":this.element.is(":radio")?"radio":this.element.is("input")?"input":"button";if(this.type==="checkbox"||this.type==="radio"){var b=this.element.parents().filter(":last"),c="label[for="+this.element.attr("id")+"]";this.buttonElement=b.find(c);if(!this.buttonElement.length){b=b.length?b.siblings():this.element.siblings();this.buttonElement=b.filter(c);
-if(!this.buttonElement.length)this.buttonElement=b.find(c)}this.element.addClass("ui-helper-hidden-accessible");(b=this.element.is(":checked"))&&this.buttonElement.addClass("ui-state-active");this.buttonElement.attr("aria-pressed",b)}else this.buttonElement=this.element},widget:function(){return this.buttonElement},destroy:function(){this.element.removeClass("ui-helper-hidden-accessible");this.buttonElement.removeClass("ui-button ui-widget ui-state-default ui-corner-all ui-state-hover ui-state-active ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only").removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html());
-this.hasTitle||this.buttonElement.removeAttr("title");a.Widget.prototype.destroy.call(this)},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);if(b==="disabled")c?this.element.attr("disabled",true):this.element.removeAttr("disabled");this._resetButton()},refresh:function(){var b=this.element.is(":disabled");b!==this.options.disabled&&this._setOption("disabled",b);if(this.type==="radio")h(this.element[0]).each(function(){a(this).is(":checked")?a(this).button("widget").addClass("ui-state-active").attr("aria-pressed",
-true):a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed",false)});else if(this.type==="checkbox")this.element.is(":checked")?this.buttonElement.addClass("ui-state-active").attr("aria-pressed",true):this.buttonElement.removeClass("ui-state-active").attr("aria-pressed",false)},_resetButton:function(){if(this.type==="input")this.options.label&&this.element.val(this.options.label);else{var b=this.buttonElement.removeClass("ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only"),
-c=a("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(),d=this.options.icons,f=d.primary&&d.secondary,e=[];if(d.primary||d.secondary){if(this.options.text)e.push("ui-button-text-icon"+(f?"s":d.primary?"-primary":"-secondary"));d.primary&&b.prepend("<span class='ui-button-icon-primary ui-icon "+d.primary+"'></span>");d.secondary&&b.append("<span class='ui-button-icon-secondary ui-icon "+d.secondary+"'></span>");if(!this.options.text){e.push(f?"ui-button-icons-only":
-"ui-button-icon-only");this.hasTitle||b.attr("title",c)}}else e.push("ui-button-text-only");b.addClass(e.join(" "))}}});a.widget("ui.buttonset",{options:{items:":button, :submit, :reset, :checkbox, :radio, a, :data(button)"},_create:function(){this.element.addClass("ui-buttonset")},_init:function(){this.refresh()},_setOption:function(b,c){b==="disabled"&&this.buttons.button("option",b,c);a.Widget.prototype._setOption.apply(this,arguments)},refresh:function(){this.buttons=this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass("ui-corner-left").end().filter(":last").addClass("ui-corner-right").end().end()},
-destroy:function(){this.element.removeClass("ui-buttonset");this.buttons.map(function(){return a(this).button("widget")[0]}).removeClass("ui-corner-left ui-corner-right").end().button("destroy");a.Widget.prototype.destroy.call(this)}})})(jQuery);
-;/*
- * jQuery UI Dialog 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Dialog
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- * jquery.ui.button.js
- * jquery.ui.draggable.js
- * jquery.ui.mouse.js
- * jquery.ui.position.js
- * jquery.ui.resizable.js
- */
-(function(c,l){var m={buttons:true,height:true,maxHeight:true,maxWidth:true,minHeight:true,minWidth:true,width:true},n={maxHeight:true,maxWidth:true,minHeight:true,minWidth:true},o=c.attrFn||{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true,click:true};c.widget("ui.dialog",{options:{autoOpen:true,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,
-position:{my:"center",at:"center",collision:"fit",using:function(a){var b=c(this).css(a).offset().top;b<0&&c(this).css("top",a.top-b)}},resizable:true,show:null,stack:true,title:"",width:300,zIndex:1E3},_create:function(){this.originalTitle=this.element.attr("title");if(typeof this.originalTitle!=="string")this.originalTitle="";this.options.title=this.options.title||this.originalTitle;var a=this,b=a.options,d=b.title||" ",e=c.ui.dialog.getTitleId(a.element),g=(a.uiDialog=c("<div></div>")).appendTo(document.body).hide().addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+
-b.dialogClass).css({zIndex:b.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(i){if(b.closeOnEscape&&i.keyCode&&i.keyCode===c.ui.keyCode.ESCAPE){a.close(i);i.preventDefault()}}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(i){a.moveToTop(false,i)});a.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(g);var f=(a.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(g),
-h=c('<a href="#"></a>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){h.addClass("ui-state-hover")},function(){h.removeClass("ui-state-hover")}).focus(function(){h.addClass("ui-state-focus")}).blur(function(){h.removeClass("ui-state-focus")}).click(function(i){a.close(i);return false}).appendTo(f);(a.uiDialogTitlebarCloseText=c("<span></span>")).addClass("ui-icon ui-icon-closethick").text(b.closeText).appendTo(h);c("<span></span>").addClass("ui-dialog-title").attr("id",
-e).html(d).prependTo(f);if(c.isFunction(b.beforeclose)&&!c.isFunction(b.beforeClose))b.beforeClose=b.beforeclose;f.find("*").add(f).disableSelection();b.draggable&&c.fn.draggable&&a._makeDraggable();b.resizable&&c.fn.resizable&&a._makeResizable();a._createButtons(b.buttons);a._isOpen=false;c.fn.bgiframe&&g.bgiframe()},_init:function(){this.options.autoOpen&&this.open()},destroy:function(){var a=this;a.overlay&&a.overlay.destroy();a.uiDialog.hide();a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");
-a.uiDialog.remove();a.originalTitle&&a.element.attr("title",a.originalTitle);return a},widget:function(){return this.uiDialog},close:function(a){var b=this,d,e;if(false!==b._trigger("beforeClose",a)){b.overlay&&b.overlay.destroy();b.uiDialog.unbind("keypress.ui-dialog");b._isOpen=false;if(b.options.hide)b.uiDialog.hide(b.options.hide,function(){b._trigger("close",a)});else{b.uiDialog.hide();b._trigger("close",a)}c.ui.dialog.overlay.resize();if(b.options.modal){d=0;c(".ui-dialog").each(function(){if(this!==
-b.uiDialog[0]){e=c(this).css("z-index");isNaN(e)||(d=Math.max(d,e))}});c.ui.dialog.maxZ=d}return b}},isOpen:function(){return this._isOpen},moveToTop:function(a,b){var d=this,e=d.options;if(e.modal&&!a||!e.stack&&!e.modal)return d._trigger("focus",b);if(e.zIndex>c.ui.dialog.maxZ)c.ui.dialog.maxZ=e.zIndex;if(d.overlay){c.ui.dialog.maxZ+=1;d.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=c.ui.dialog.maxZ)}a={scrollTop:d.element.attr("scrollTop"),scrollLeft:d.element.attr("scrollLeft")};c.ui.dialog.maxZ+=
-1;d.uiDialog.css("z-index",c.ui.dialog.maxZ);d.element.attr(a);d._trigger("focus",b);return d},open:function(){if(!this._isOpen){var a=this,b=a.options,d=a.uiDialog;a.overlay=b.modal?new c.ui.dialog.overlay(a):null;a._size();a._position(b.position);d.show(b.show);a.moveToTop(true);b.modal&&d.bind("keypress.ui-dialog",function(e){if(e.keyCode===c.ui.keyCode.TAB){var g=c(":tabbable",this),f=g.filter(":first");g=g.filter(":last");if(e.target===g[0]&&!e.shiftKey){f.focus(1);return false}else if(e.target===
-f[0]&&e.shiftKey){g.focus(1);return false}}});c(a.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus();a._isOpen=true;a._trigger("open");return a}},_createButtons:function(a){var b=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix"),g=c("<div></div>").addClass("ui-dialog-buttonset").appendTo(e);b.uiDialog.find(".ui-dialog-buttonpane").remove();typeof a==="object"&&a!==null&&c.each(a,
-function(){return!(d=true)});if(d){c.each(a,function(f,h){h=c.isFunction(h)?{click:h,text:f}:h;var i=c('<button type="button"></button>').click(function(){h.click.apply(b.element[0],arguments)}).appendTo(g);c.each(h,function(j,k){if(j!=="click")j in o?i[j](k):i.attr(j,k)});c.fn.button&&i.button()});e.appendTo(b.uiDialog)}},_makeDraggable:function(){function a(f){return{position:f.position,offset:f.offset}}var b=this,d=b.options,e=c(document),g;b.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",
-handle:".ui-dialog-titlebar",containment:"document",start:function(f,h){g=d.height==="auto"?"auto":c(this).height();c(this).height(c(this).height()).addClass("ui-dialog-dragging");b._trigger("dragStart",f,a(h))},drag:function(f,h){b._trigger("drag",f,a(h))},stop:function(f,h){d.position=[h.position.left-e.scrollLeft(),h.position.top-e.scrollTop()];c(this).removeClass("ui-dialog-dragging").height(g);b._trigger("dragStop",f,a(h));c.ui.dialog.overlay.resize()}})},_makeResizable:function(a){function b(f){return{originalPosition:f.originalPosition,
-originalSize:f.originalSize,position:f.position,size:f.size}}a=a===l?this.options.resizable:a;var d=this,e=d.options,g=d.uiDialog.css("position");a=typeof a==="string"?a:"n,e,s,w,se,sw,ne,nw";d.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:d.element,maxWidth:e.maxWidth,maxHeight:e.maxHeight,minWidth:e.minWidth,minHeight:d._minHeight(),handles:a,start:function(f,h){c(this).addClass("ui-dialog-resizing");d._trigger("resizeStart",f,b(h))},resize:function(f,h){d._trigger("resize",
-f,b(h))},stop:function(f,h){c(this).removeClass("ui-dialog-resizing");e.height=c(this).height();e.width=c(this).width();d._trigger("resizeStop",f,b(h));c.ui.dialog.overlay.resize()}}).css("position",g).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_minHeight:function(){var a=this.options;return a.height==="auto"?a.minHeight:Math.min(a.minHeight,a.height)},_position:function(a){var b=[],d=[0,0],e;if(a){if(typeof a==="string"||typeof a==="object"&&"0"in a){b=a.split?a.split(" "):
-[a[0],a[1]];if(b.length===1)b[1]=b[0];c.each(["left","top"],function(g,f){if(+b[g]===b[g]){d[g]=b[g];b[g]=f}});a={my:b.join(" "),at:b.join(" "),offset:d.join(" ")}}a=c.extend({},c.ui.dialog.prototype.options.position,a)}else a=c.ui.dialog.prototype.options.position;(e=this.uiDialog.is(":visible"))||this.uiDialog.show();this.uiDialog.css({top:0,left:0}).position(c.extend({of:window},a));e||this.uiDialog.hide()},_setOptions:function(a){var b=this,d={},e=false;c.each(a,function(g,f){b._setOption(g,f);
-if(g in m)e=true;if(g in n)d[g]=f});e&&this._size();this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option",d)},_setOption:function(a,b){var d=this,e=d.uiDialog;switch(a){case "beforeclose":a="beforeClose";break;case "buttons":d._createButtons(b);break;case "closeText":d.uiDialogTitlebarCloseText.text(""+b);break;case "dialogClass":e.removeClass(d.options.dialogClass).addClass("ui-dialog ui-widget ui-widget-content ui-corner-all "+b);break;case "disabled":b?e.addClass("ui-dialog-disabled"):
-e.removeClass("ui-dialog-disabled");break;case "draggable":var g=e.is(":data(draggable)");g&&!b&&e.draggable("destroy");!g&&b&&d._makeDraggable();break;case "position":d._position(b);break;case "resizable":(g=e.is(":data(resizable)"))&&!b&&e.resizable("destroy");g&&typeof b==="string"&&e.resizable("option","handles",b);!g&&b!==false&&d._makeResizable(b);break;case "title":c(".ui-dialog-title",d.uiDialogTitlebar).html(""+(b||" "));break}c.Widget.prototype._setOption.apply(d,arguments)},_size:function(){var a=
-this.options,b,d,e=this.uiDialog.is(":visible");this.element.show().css({width:"auto",minHeight:0,height:0});if(a.minWidth>a.width)a.width=a.minWidth;b=this.uiDialog.css({height:"auto",width:a.width}).height();d=Math.max(0,a.minHeight-b);if(a.height==="auto")if(c.support.minHeight)this.element.css({minHeight:d,height:"auto"});else{this.uiDialog.show();a=this.element.css("height","auto").height();e||this.uiDialog.hide();this.element.height(Math.max(a,d))}else this.element.height(Math.max(a.height-
-b,0));this.uiDialog.is(":data(resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())}});c.extend(c.ui.dialog,{version:"1.8.13",uuid:0,maxZ:0,getTitleId:function(a){a=a.attr("id");if(!a){this.uuid+=1;a=this.uuid}return"ui-dialog-title-"+a},overlay:function(a){this.$el=c.ui.dialog.overlay.create(a)}});c.extend(c.ui.dialog.overlay,{instances:[],oldInstances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(a){return a+".dialog-overlay"}).join(" "),
-create:function(a){if(this.instances.length===0){setTimeout(function(){c.ui.dialog.overlay.instances.length&&c(document).bind(c.ui.dialog.overlay.events,function(d){if(c(d.target).zIndex()<c.ui.dialog.overlay.maxZ)return false})},1);c(document).bind("keydown.dialog-overlay",function(d){if(a.options.closeOnEscape&&d.keyCode&&d.keyCode===c.ui.keyCode.ESCAPE){a.close(d);d.preventDefault()}});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var b=(this.oldInstances.pop()||c("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({width:this.width(),
-height:this.height()});c.fn.bgiframe&&b.bgiframe();this.instances.push(b);return b},destroy:function(a){var b=c.inArray(a,this.instances);b!=-1&&this.oldInstances.push(this.instances.splice(b,1)[0]);this.instances.length===0&&c([document,window]).unbind(".dialog-overlay");a.remove();var d=0;c.each(this.instances,function(){d=Math.max(d,this.css("z-index"))});this.maxZ=d},height:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);
-b=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);return a<b?c(window).height()+"px":a+"px"}else return c(document).height()+"px"},width:function(){var a,b;if(c.browser.msie&&c.browser.version<7){a=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);b=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);return a<b?c(window).width()+"px":a+"px"}else return c(document).width()+"px"},resize:function(){var a=c([]);c.each(c.ui.dialog.overlay.instances,
-function(){a=a.add(this)});a.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);
-;/*
- * jQuery UI Slider 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Slider
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.mouse.js
- * jquery.ui.widget.js
- */
-(function(d){d.widget("ui.slider",d.ui.mouse,{widgetEventPrefix:"slide",options:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){var b=this,a=this.options,c=this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"),f=a.values&&a.values.length||1,e=[];this._mouseSliding=this._keySliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+
-this.orientation+" ui-widget ui-widget-content ui-corner-all"+(a.disabled?" ui-slider-disabled ui-disabled":""));this.range=d([]);if(a.range){if(a.range===true){if(!a.values)a.values=[this._valueMin(),this._valueMin()];if(a.values.length&&a.values.length!==2)a.values=[a.values[0],a.values[0]]}this.range=d("<div></div>").appendTo(this.element).addClass("ui-slider-range ui-widget-header"+(a.range==="min"||a.range==="max"?" ui-slider-range-"+a.range:""))}for(var j=c.length;j<f;j+=1)e.push("<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>");
-this.handles=c.add(d(e.join("")).appendTo(b.element));this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(g){g.preventDefault()}).hover(function(){a.disabled||d(this).addClass("ui-state-hover")},function(){d(this).removeClass("ui-state-hover")}).focus(function(){if(a.disabled)d(this).blur();else{d(".ui-slider .ui-state-focus").removeClass("ui-state-focus");d(this).addClass("ui-state-focus")}}).blur(function(){d(this).removeClass("ui-state-focus")});this.handles.each(function(g){d(this).data("index.ui-slider-handle",
-g)});this.handles.keydown(function(g){var k=true,l=d(this).data("index.ui-slider-handle"),i,h,m;if(!b.options.disabled){switch(g.keyCode){case d.ui.keyCode.HOME:case d.ui.keyCode.END:case d.ui.keyCode.PAGE_UP:case d.ui.keyCode.PAGE_DOWN:case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:k=false;if(!b._keySliding){b._keySliding=true;d(this).addClass("ui-state-active");i=b._start(g,l);if(i===false)return}break}m=b.options.step;i=b.options.values&&b.options.values.length?
-(h=b.values(l)):(h=b.value());switch(g.keyCode){case d.ui.keyCode.HOME:h=b._valueMin();break;case d.ui.keyCode.END:h=b._valueMax();break;case d.ui.keyCode.PAGE_UP:h=b._trimAlignValue(i+(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.PAGE_DOWN:h=b._trimAlignValue(i-(b._valueMax()-b._valueMin())/5);break;case d.ui.keyCode.UP:case d.ui.keyCode.RIGHT:if(i===b._valueMax())return;h=b._trimAlignValue(i+m);break;case d.ui.keyCode.DOWN:case d.ui.keyCode.LEFT:if(i===b._valueMin())return;h=b._trimAlignValue(i-
-m);break}b._slide(g,l,h);return k}}).keyup(function(g){var k=d(this).data("index.ui-slider-handle");if(b._keySliding){b._keySliding=false;b._stop(g,k);b._change(g,k);d(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy();
-return this},_mouseCapture:function(b){var a=this.options,c,f,e,j,g;if(a.disabled)return false;this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();c=this._normValueFromMouse({x:b.pageX,y:b.pageY});f=this._valueMax()-this._valueMin()+1;j=this;this.handles.each(function(k){var l=Math.abs(c-j.values(k));if(f>l){f=l;e=d(this);g=k}});if(a.range===true&&this.values(1)===a.min){g+=1;e=d(this.handles[g])}if(this._start(b,g)===false)return false;
-this._mouseSliding=true;j._handleIndex=g;e.addClass("ui-state-active").focus();a=e.offset();this._clickOffset=!d(b.target).parents().andSelf().is(".ui-slider-handle")?{left:0,top:0}:{left:b.pageX-a.left-e.width()/2,top:b.pageY-a.top-e.height()/2-(parseInt(e.css("borderTopWidth"),10)||0)-(parseInt(e.css("borderBottomWidth"),10)||0)+(parseInt(e.css("marginTop"),10)||0)};this.handles.hasClass("ui-state-hover")||this._slide(b,g,c);return this._animateOff=true},_mouseStart:function(){return true},_mouseDrag:function(b){var a=
-this._normValueFromMouse({x:b.pageX,y:b.pageY});this._slide(b,this._handleIndex,a);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._clickOffset=this._handleIndex=null;return this._animateOff=false},_detectOrientation:function(){this.orientation=this.options.orientation==="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(b){var a;if(this.orientation==="horizontal"){a=
-this.elementSize.width;b=b.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{a=this.elementSize.height;b=b.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}a=b/a;if(a>1)a=1;if(a<0)a=0;if(this.orientation==="vertical")a=1-a;b=this._valueMax()-this._valueMin();return this._trimAlignValue(this._valueMin()+a*b)},_start:function(b,a){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(a);
-c.values=this.values()}return this._trigger("start",b,c)},_slide:function(b,a,c){var f;if(this.options.values&&this.options.values.length){f=this.values(a?0:1);if(this.options.values.length===2&&this.options.range===true&&(a===0&&c>f||a===1&&c<f))c=f;if(c!==this.values(a)){f=this.values();f[a]=c;b=this._trigger("slide",b,{handle:this.handles[a],value:c,values:f});this.values(a?0:1);b!==false&&this.values(a,c,true)}}else if(c!==this.value()){b=this._trigger("slide",b,{handle:this.handles[a],value:c});
-b!==false&&this.value(c)}},_stop:function(b,a){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(a);c.values=this.values()}this._trigger("stop",b,c)},_change:function(b,a){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[a],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(a);c.values=this.values()}this._trigger("change",b,c)}},value:function(b){if(arguments.length){this.options.value=
-this._trimAlignValue(b);this._refreshValue();this._change(null,0)}else return this._value()},values:function(b,a){var c,f,e;if(arguments.length>1){this.options.values[b]=this._trimAlignValue(a);this._refreshValue();this._change(null,b)}else if(arguments.length)if(d.isArray(arguments[0])){c=this.options.values;f=arguments[0];for(e=0;e<c.length;e+=1){c[e]=this._trimAlignValue(f[e]);this._change(null,e)}this._refreshValue()}else return this.options.values&&this.options.values.length?this._values(b):
-this.value();else return this._values()},_setOption:function(b,a){var c,f=0;if(d.isArray(this.options.values))f=this.options.values.length;d.Widget.prototype._setOption.apply(this,arguments);switch(b){case "disabled":if(a){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");this.element.addClass("ui-disabled")}else{this.handles.removeAttr("disabled");this.element.removeClass("ui-disabled")}break;case "orientation":this._detectOrientation();
-this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case "value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case "values":this._animateOff=true;this._refreshValue();for(c=0;c<f;c+=1)this._change(null,c);this._animateOff=false;break}},_value:function(){var b=this.options.value;return b=this._trimAlignValue(b)},_values:function(b){var a,c;if(arguments.length){a=this.options.values[b];
-return a=this._trimAlignValue(a)}else{a=this.options.values.slice();for(c=0;c<a.length;c+=1)a[c]=this._trimAlignValue(a[c]);return a}},_trimAlignValue:function(b){if(b<=this._valueMin())return this._valueMin();if(b>=this._valueMax())return this._valueMax();var a=this.options.step>0?this.options.step:1,c=(b-this._valueMin())%a;alignValue=b-c;if(Math.abs(c)*2>=a)alignValue+=c>0?a:-a;return parseFloat(alignValue.toFixed(5))},_valueMin:function(){return this.options.min},_valueMax:function(){return this.options.max},
-_refreshValue:function(){var b=this.options.range,a=this.options,c=this,f=!this._animateOff?a.animate:false,e,j={},g,k,l,i;if(this.options.values&&this.options.values.length)this.handles.each(function(h){e=(c.values(h)-c._valueMin())/(c._valueMax()-c._valueMin())*100;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";d(this).stop(1,1)[f?"animate":"css"](j,a.animate);if(c.options.range===true)if(c.orientation==="horizontal"){if(h===0)c.range.stop(1,1)[f?"animate":"css"]({left:e+"%"},a.animate);
-if(h===1)c.range[f?"animate":"css"]({width:e-g+"%"},{queue:false,duration:a.animate})}else{if(h===0)c.range.stop(1,1)[f?"animate":"css"]({bottom:e+"%"},a.animate);if(h===1)c.range[f?"animate":"css"]({height:e-g+"%"},{queue:false,duration:a.animate})}g=e});else{k=this.value();l=this._valueMin();i=this._valueMax();e=i!==l?(k-l)/(i-l)*100:0;j[c.orientation==="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[f?"animate":"css"](j,a.animate);if(b==="min"&&this.orientation==="horizontal")this.range.stop(1,
-1)[f?"animate":"css"]({width:e+"%"},a.animate);if(b==="max"&&this.orientation==="horizontal")this.range[f?"animate":"css"]({width:100-e+"%"},{queue:false,duration:a.animate});if(b==="min"&&this.orientation==="vertical")this.range.stop(1,1)[f?"animate":"css"]({height:e+"%"},a.animate);if(b==="max"&&this.orientation==="vertical")this.range[f?"animate":"css"]({height:100-e+"%"},{queue:false,duration:a.animate})}}});d.extend(d.ui.slider,{version:"1.8.13"})})(jQuery);
-;/*
- * jQuery UI Tabs 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Tabs
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- */
-(function(d,p){function u(){return++v}function w(){return++x}var v=0,x=0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading…</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(true)},_setOption:function(b,e){if(b=="selected")this.options.collapsible&&
-e==this.options.selected||this.select(e);else{this.options[b]=e;this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[b].concat(d.makeArray(arguments)))},_ui:function(b,e){return{tab:b,panel:e,index:this.anchors.index(b)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=
-d(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(b){function e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var a=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]||
-(q=d("base")[0])&&l===q.href)){i=f.hash;f.href=i}if(h.test(i))a.panels=a.panels.add(a.element.find(a._sanitizeSelector(i)));else if(i&&i!=="#"){d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=a._tabId(f);f.href="#"+i;f=a.element.find("#"+i);if(!f.length){f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else c.disabled.push(g)});if(b){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");
-this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(c.selected===p){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(a._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected=
-this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");
-if(c.selected>=0&&this.anchors.length){a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash)).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[c.selected],a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash))[0]))});this.load(c.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));
-this.element[c.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);b=0;for(var j;j=this.lis[b];b++)d(j)[d.inArray(b,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+
-g)};this.lis.bind("mouseover.tabs",function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",
-function(){e(f,o);a._trigger("show",null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},s=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};
-this.anchors.bind(c.event+".tabs",function(){var g=this,f=d(g).closest("li"),i=a.panels.filter(":not(.ui-tabs-hide)"),l=a.element.find(a._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a.panels.filter(":animated").length||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}c.selected=a.anchors.index(this);a.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){c.selected=
--1;c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this));this.blur();return false}c.cookie&&a._cookie(c.selected,c.cookie);if(l.length){i.length&&a.element.queue("tabs",function(){s(g,i)});a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";
-d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",function(){return false})},_getIndex:function(b){if(typeof b=="string")b=this.anchors.index(this.anchors.filter("[href$="+b+"]"));return b},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=
-d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this,"destroy.tabs")?d(this).remove():d(this).removeClass("ui-state-default ui-corner-top ui-tabs-selected ui-state-active ui-state-hover ui-state-focus ui-state-disabled ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide")});b.cookie&&this._cookie(null,b.cookie);return this},add:function(b,
-e,a){if(a===p)a=this.anchors.length;var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,b).replace(/#\{label\}/g,e));b=!b.indexOf("#")?b.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=c.element.find("#"+b);j.length||(j=d(h.panelTemplate).attr("id",b).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);
-j.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(b){b=this._getIndex(b);var e=this.options,a=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();
-if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(b+(b+1<this.anchors.length?1:-1));e.disabled=d.map(d.grep(e.disabled,function(h){return h!=b}),function(h){return h>=b?--h:h});this._tabify();this._trigger("remove",null,this._ui(a.find("a")[0],c[0]));return this},enable:function(b){b=this._getIndex(b);var e=this.options;if(d.inArray(b,e.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=b});this._trigger("enable",null,
-this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(b){b=this._getIndex(b);var e=this.options;if(b!=e.selected){this.lis.eq(b).addClass("ui-state-disabled");e.disabled.push(b);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[b],this.panels[b]))}return this},select:function(b){b=this._getIndex(b);if(b==-1)if(this.options.collapsible&&this.options.selected!=-1)b=this.options.selected;else return this;this.anchors.eq(b).trigger(this.options.event+".tabs");return this},
-load:function(b){b=this._getIndex(b);var e=this,a=this.options,c=this.anchors.eq(b)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(a.spinner){var j=d("span",c);j.data("label.tabs",j.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){e.element.find(e._sanitizeSelector(c.hash)).html(k);e._cleanup();a.cache&&d.data(c,
-"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.error(k,n,b,c)}catch(m){}}}));e.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},
-url:function(b,e){this.anchors.eq(b).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.13"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(b,e){var a=this,c=this.options,h=a._rotate||(a._rotate=function(j){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=c.selected;a.select(++k<a.anchors.length?k:0)},b);j&&j.stopPropagation()});e=a._unrotate||(a._unrotate=!e?function(j){j.clientX&&
-a.rotate(null)}:function(){t=c.selected;h()});if(b){this.element.bind("tabsshow",h);this.anchors.bind(c.event+".tabs",e);h()}else{clearTimeout(a.rotation);this.element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delete this._rotate;delete this._unrotate}return this}})})(jQuery);
-;/*
- * jQuery UI Datepicker 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Datepicker
- *
- * Depends:
- * jquery.ui.core.js
- */
-(function(d,B){function M(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass=
-"ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su",
-"Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
-minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=N(d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function N(a){return a.delegate("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a",
-"mouseout",function(){d(this).removeClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).removeClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).removeClass("ui-datepicker-next-hover")}).delegate("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a","mouseover",function(){if(!d.datepicker._isDisabledDatepicker(J.inline?a.parent()[0]:J.input[0])){d(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");
-d(this).addClass("ui-state-hover");this.className.indexOf("ui-datepicker-prev")!=-1&&d(this).addClass("ui-datepicker-prev-hover");this.className.indexOf("ui-datepicker-next")!=-1&&d(this).addClass("ui-datepicker-next-hover")}})}function H(a,b){d.extend(a,b);for(var c in b)if(b[c]==null||b[c]==B)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.13"}});var z=(new Date).getTime(),J;d.extend(M.prototype,{markerClassName:"hasDatepicker",log:function(){this.debug&&console.log.apply("",arguments)},
-_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){H(this._defaults,a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]=f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,
-b){return{id:a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:a,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:N(d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",
-function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&b.append.remove();if(c){b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);
-if(c=="button"||c=="both"){c=this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);
-return false})}},_autoSize:function(a){if(this._get(a,"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=d(a);
-if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),true);this._updateDatepicker(b);this._updateAlternate(b);b.dpDiv.show()}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');
-this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}H(a.settings,e||{});b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/
-2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,
-"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=
-false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().removeClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=
-true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().addClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;
-for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},_getInst:function(a){try{return d.data(a,"datepicker")}catch(b){throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({},d.datepicker._defaults):e?b=="all"?d.extend({},e.settings):this._get(e,b):null;var f=b||{};if(typeof b=="string"){f={};f[b]=c}if(e){this._curInst==e&&
-this._hideDatepicker();var h=this._getDateDatepicker(a,true),i=this._getMinMaxDate(e,"min"),g=this._getMinMaxDate(e,"max");H(e.settings,f);if(i!==null&&f.dateFormat!==B&&f.minDate===B)e.settings.minDate=this._formatDate(e,i);if(g!==null&&f.dateFormat!==B&&f.maxDate===B)e.settings.maxDate=this._formatDate(e,g);this._attachments(d(a),e);this._autoSize(e);this._setDate(e,h);this._updateAlternate(e);this._updateDatepicker(e)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){(a=
-this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){if(a=this._getInst(a)){this._setDate(a,b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){(a=this._getInst(a))&&!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){case 9:d.datepicker._hideDatepicker();
-c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass+":not(."+d.datepicker._currentClass+")",b.dpDiv);c[0]?d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,
-"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,
--7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){a.preventDefault();
-a.stopPropagation()}},_doKeyPress:function(a){var b=d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));var c=String.fromCharCode(a.charCode==B?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);
-d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);d.datepicker._curInst&&d.datepicker._curInst!=b&&d.datepicker._curInst.dpDiv.stop(true,true);var c=d.datepicker._get(b,"beforeShow");H(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=
-null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c={left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=
-null;b.dpDiv.empty();b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){var i=b.dpDiv.find("iframe.ui-datepicker-cover");if(i.length){var g=d.datepicker._getBorders(b.dpDiv);i.css({left:-g[0],
-top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.datepicker._datepickerShowing=true;d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){var b=d.datepicker._getBorders(a.dpDiv);J=a;a.dpDiv.empty().append(this._generateHTML(a));var c=a.dpDiv.find("iframe.ui-datepicker-cover");
-c.length&&c.css({left:-b[0],top:-b[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()});a.dpDiv.find("."+this._dayOverClass+" a").mouseover();b=this._getNumberOfMonths(a);c=b[1];a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");c>1&&a.dpDiv.addClass("ui-datepicker-multi-"+c).css("width",17*c+"em");a.dpDiv[(b[0]!=1||b[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");
-a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var e=a.yearshtml;setTimeout(function(){e===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);e=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},
-_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-
-g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_hideDatepicker:function(a){var b=this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=
-null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();if(a=this._get(b,"onClose"))a.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b]);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},
-_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):
-0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=
-false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){var b=this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(function(){b.input.focus()},0);b._selectingMonthYear=!b._selectingMonthYear},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=
-d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);
-else{this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=
-a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,
-g=(c?c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){(p=A+1<a.length&&a.charAt(A+1)==p)&&A++;return p},m=function(p){var C=o(p);p=new RegExp("^\\d{1,"+(p=="@"?14:p=="!"?20:p=="y"&&C?4:p=="o"?3:2)+"}");p=b.substring(s).match(p);if(!p)throw"Missing number at position "+s;s+=p[0].length;return parseInt(p[0],10)},n=function(p,C,K){p=d.map(o(p)?K:C,function(w,x){return[[x,w]]}).sort(function(w,x){return-(w[1].length-x[1].length)});var E=-1;d.each(p,function(w,x){w=
-x[1];if(b.substr(s,w.length).toLowerCase()==w.toLowerCase()){E=x[0];s+=w.length;return false}});if(E!=-1)return E+1;else throw"Unknown name at position "+s;},r=function(){if(b.charAt(s)!=a.charAt(A))throw"Unexpected literal at position "+s;s++},s=0,A=0;A<a.length;A++)if(k)if(a.charAt(A)=="'"&&!o("'"))k=false;else r();else switch(a.charAt(A)){case "d":l=m("d");break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":j=m("m");break;case "M":j=n("M",i,g);break;case "y":c=m("y");break;case "@":var v=
-new Date(m("@"));c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "!":v=new Date((m("!")-this._ticksTo1970)/1E4);c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "'":if(o("'"))r();else k=true;break;default:r()}if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>-1){j=1;l=u;do{e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,j-1,l));if(v.getFullYear()!=
-c||v.getMonth()+1!=j||v.getDate()!=l)throw"Invalid date";return v},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,
-h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=k+1<a.length&&a.charAt(k+1)==o)&&k++;return o},g=function(o,m,n){m=""+m;if(i(o))for(;m.length<n;)m="0"+m;return m},j=function(o,m,n,r){return i(o)?r[m]:n[m]},l="",u=false;if(b)for(var k=0;k<a.length;k++)if(u)if(a.charAt(k)=="'"&&!i("'"))u=false;else l+=a.charAt(k);else switch(a.charAt(k)){case "d":l+=g("d",b.getDate(),2);break;case "D":l+=j("D",b.getDay(),e,f);break;
-case "o":l+=g("o",(b.getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5,3);break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=j("M",b.getMonth(),h,c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+="'";else u=true;break;default:l+=a.charAt(k)}return l},_possibleChars:function(a){for(var b="",c=false,e=function(h){(h=f+1<a.length&&a.charAt(f+
-1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=false;else b+=a.charAt(f);else switch(a.charAt(f)){case "d":case "m":case "y":case "@":b+="0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){return a.settings[b]!==B?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,
-f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{f=this.parseDate(c,e,i)||h}catch(g){this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,
-c){var e=function(h){var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){try{return d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){}var g=(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,j=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,k=u.exec(h);k;){switch(k[2]||"d"){case "d":case "D":g+=parseInt(k[1],10);break;case "w":case "W":g+=parseInt(k[1],10)*7;break;case "m":case "M":l+=
-parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break;case "y":case "Y":j+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break}k=u.exec(h)}return new Date(j,l,g)};if(b=(b=b==null||b===""?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):new Date(b.getTime()))&&b.toString()=="Invalid Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){if(!a)return null;
-a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||
-a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?
-new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&n<k?k:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a));
-n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+z+".datepicker._adjustDate('#"+a.id+"', -"+j+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var r=this._get(a,"nextText");r=!h?r:this.formatDate(r,this._daylightSavingAdjust(new Date(m,
-g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+z+".datepicker._adjustDate('#"+a.id+"', +"+j+", 'M');\" title=\""+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+r+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+r+"</span></a>";j=this._get(a,"currentText");r=this._get(a,"gotoCurrent")&&
-a.currentDay?u:b;j=!h?j:this.formatDate(j,r,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+z+'.datepicker._hideDatepicker();">'+this._get(a,"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,r)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+
-z+".datepicker._gotoToday('#"+a.id+"');\">"+j+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");r=this._get(a,"dayNames");this._get(a,"dayNamesShort");var s=this._get(a,"dayNamesMin"),A=this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),C=this._get(a,"showOtherMonths"),K=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var E=this._getDefaultDate(a),w="",x=0;x<i[0];x++){for(var O=
-"",G=0;G<i[1];G++){var P=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",y="";if(l){y+='<div class="ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":"left");break;case i[1]-1:y+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:y+=" ui-datepicker-group-middle";t="";break}y+='">'}y+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&x==0?c?
-f:n:"")+(/all|right/.test(t)&&x==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,x>0||G>0,A,v)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var D=j?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":"";for(t=0;t<7;t++){var q=(t+h)%7;D+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+r[q]+'">'+s[q]+"</span></th>"}y+=D+"</tr></thead><tbody>";D=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,
-D);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;D=l?6:Math.ceil((t+D)/7);q=this._daylightSavingAdjust(new Date(m,g,1-t));for(var Q=0;Q<D;Q++){y+="<tr>";var R=!j?"":'<td class="ui-datepicker-week-col">'+this._get(a,"calculateWeek")(q)+"</td>";for(t=0;t<7;t++){var I=p?p.apply(a.input?a.input[0]:null,[q]):[true,""],F=q.getMonth()!=g,L=F&&!K||!I[0]||k&&q<k||o&&q>o;R+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(F?" ui-datepicker-other-month":"")+(q.getTime()==P.getTime()&&g==a.selectedMonth&&
-a._keyEvent||E.getTime()==q.getTime()&&E.getTime()==P.getTime()?" "+this._dayOverClass:"")+(L?" "+this._unselectableClass+" ui-state-disabled":"")+(F&&!C?"":" "+I[1]+(q.getTime()==u.getTime()?" "+this._currentClass:"")+(q.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!F||C)&&I[2]?' title="'+I[2]+'"':"")+(L?"":' onclick="DP_jQuery_'+z+".datepicker._selectDay('#"+a.id+"',"+q.getMonth()+","+q.getFullYear()+', this);return false;"')+">"+(F&&!C?" ":L?'<span class="ui-state-default">'+q.getDate()+
-"</span>":'<a class="ui-state-default'+(q.getTime()==b.getTime()?" ui-state-highlight":"")+(q.getTime()==u.getTime()?" ui-state-active":"")+(F?" ui-priority-secondary":"")+'" href="#">'+q.getDate()+"</a>")+"</td>";q.setDate(q.getDate()+1);q=this._daylightSavingAdjust(q)}y+=R+"</tr>"}g++;if(g>11){g=0;m++}y+="</tbody></table>"+(l?"</div>"+(i[0]>0&&G==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");O+=y}w+=O}w+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':
-"");a._keyEvent=false;return w},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var j=this._get(a,"changeMonth"),l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='<div class="ui-datepicker-title">',o="";if(h||!j)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+z+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" onclick=\"DP_jQuery_"+z+".datepicker._clickMonthYear('#"+
-a.id+"');\">";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&(!m||n<=f.getMonth()))o+='<option value="'+n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(k+=o+(h||!(j&&l)?" ":""));if(!a.yearshtml){a.yearshtml="";if(h||!l)k+='<span class="ui-datepicker-year">'+c+"</span>";else{g=this._get(a,"yearRange").split(":");var r=(new Date).getFullYear();i=function(s){s=s.match(/c[+-].*/)?c+parseInt(s.substring(1),10):s.match(/[+-].*/)?r+parseInt(s,10):parseInt(s,10);return isNaN(s)?
-r:s};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):g;for(a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+z+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" onclick=\"DP_jQuery_"+z+".datepicker._clickMonthYear('#"+a.id+"');\">";b<=g;b++)a.yearshtml+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";a.yearshtml+="</select>";k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=
-(h||!(j&&l)?" ":"")+o;k+="</div>";return k},_adjustInstDate:function(a,b,c){var e=a.drawYear+(c=="Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,
-"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,
-b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!=
-"string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));
-return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=function(a){if(!this.length)return this;if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&
-arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));return this.each(function(){typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new M;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.13";window["DP_jQuery_"+z]=d})(jQuery);
-;/*
- * jQuery UI Progressbar 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Progressbar
- *
- * Depends:
- * jquery.ui.core.js
- * jquery.ui.widget.js
- */
-(function(b,d){b.widget("ui.progressbar",{options:{value:0,max:100},min:0,_create:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this.min,"aria-valuemax":this.options.max,"aria-valuenow":this._value()});this.valueDiv=b("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element);this.oldValue=this._value();this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow");
-this.valueDiv.remove();b.Widget.prototype.destroy.apply(this,arguments)},value:function(a){if(a===d)return this._value();this._setOption("value",a);return this},_setOption:function(a,c){if(a==="value"){this.options.value=c;this._refreshValue();this._value()===this.options.max&&this._trigger("complete")}b.Widget.prototype._setOption.apply(this,arguments)},_value:function(){var a=this.options.value;if(typeof a!=="number")a=0;return Math.min(this.options.max,Math.max(this.min,a))},_percentage:function(){return 100*
-this._value()/this.options.max},_refreshValue:function(){var a=this.value(),c=this._percentage();if(this.oldValue!==a){this.oldValue=a;this._trigger("change")}this.valueDiv.toggle(a>this.min).toggleClass("ui-corner-right",a===this.options.max).width(c.toFixed(0)+"%");this.element.attr("aria-valuenow",a)}});b.extend(b.ui.progressbar,{version:"1.8.13"})})(jQuery);
-;/*
- * jQuery UI Effects 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/
- */
-jQuery.effects||function(f,j){function m(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],
-16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return n.transparent;return n[f.trim(c).toLowerCase()]}function s(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return m(b)}function o(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
-a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function p(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d=
-a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function l(c){if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor",
-"borderTopColor","borderColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=s(b.elem,a);b.end=m(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var n={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,
-0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,
-211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]},q=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,
-d){if(f.isFunction(b)){d=b;b=null}return this.queue(function(){var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{queue:false,duration:a,easding:b,complete:function(){f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})};
-f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,
-[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.13",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case "top":b=
-0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});
-c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,
-a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);
-a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%",
-"pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*
-((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=
-e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=
-e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/
-h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*
-h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){return d-f.easing.easeOutBounce(c,
-e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
-;/*
- * jQuery UI Effects Blind 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Blind
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,
-g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
-;/*
- * jQuery UI Effects Bounce 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Bounce
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(e){e.effects.bounce=function(b){return this.queue(function(){var a=e(this),l=["position","top","bottom","left","right"],h=e.effects.setMode(a,b.options.mode||"effect"),d=b.options.direction||"up",c=b.options.distance||20,m=b.options.times||5,i=b.duration||250;/show|hide/.test(h)&&l.push("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var f=d=="up"||d=="down"?"top":"left";d=d=="up"||d=="left"?"pos":"neg";c=b.options.distance||(f=="top"?a.outerHeight({margin:true})/3:a.outerWidth({margin:true})/
-3);if(h=="show")a.css("opacity",0).css(f,d=="pos"?-c:c);if(h=="hide")c/=m*2;h!="hide"&&m--;if(h=="show"){var g={opacity:1};g[f]=(d=="pos"?"+=":"-=")+c;a.animate(g,i/2,b.options.easing);c/=2;m--}for(g=0;g<m;g++){var j={},k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing);c=h=="hide"?c*2:c/2}if(h=="hide"){g={opacity:0};g[f]=(d=="pos"?"-=":"+=")+c;a.animate(g,i/2,b.options.easing,function(){a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);
-b.callback&&b.callback.apply(this,arguments)})}else{j={};k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){e.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments)})}a.queue("fx",function(){a.dequeue()});a.dequeue()})}})(jQuery);
-;/*
- * jQuery UI Effects Clip 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Clip
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(b){b.effects.clip=function(e){return this.queue(function(){var a=b(this),i=["position","top","bottom","left","right","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){d.css(g.size,0);d.css(g.position,
-c/2)}var h={};h[g.size]=f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{queue:false,duration:e.duration,easing:e.options.easing,complete:function(){f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Drop 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Drop
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(c){c.effects.drop=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true})/2:a.outerWidth({margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={opacity:e==
-"show"?1:0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Explode 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Explode
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(j){j.effects.explode=function(a){return this.queue(function(){var c=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=a.options.mode=="toggle"?j(this).is(":visible")?"hide":"show":a.options.mode;var b=j(this).show().css("visibility","hidden"),g=b.offset();g.top-=parseInt(b.css("marginTop"),10)||0;g.left-=parseInt(b.css("marginLeft"),10)||0;for(var h=b.outerWidth(true),i=b.outerHeight(true),e=0;e<c;e++)for(var f=
-0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+
-e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery);
-;/*
- * jQuery UI Effects Fade 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Fade
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Fold 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Fold
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],
-10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery);
-;/*
- * jQuery UI Effects Highlight 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Highlight
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
-this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Pulsate 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Pulsate
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c<times;c++){b.animate({opacity:animateTo},duration,a.options.easing);animateTo=(animateTo+1)%2}b.animate({opacity:animateTo},duration,
-a.options.easing,function(){animateTo==0&&b.hide();a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()}).dequeue()})}})(jQuery);
-;/*
- * jQuery UI Effects Scale 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Scale
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(c){c.effects.puff=function(b){return this.queue(function(){var a=c(this),e=c.effects.setMode(a,b.options.mode||"hide"),g=parseInt(b.options.percent,10)||150,h=g/100,i={height:a.height(),width:a.width()};c.extend(b.options,{fade:true,mode:e,percent:e=="hide"?g:100,from:e=="hide"?i:{height:i.height*h,width:i.width*h}});a.effect("scale",b.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=function(b){return this.queue(function(){var a=c(this),e=c.extend(true,{},b.options),g=c.effects.setMode(a,
-b.options.mode||"effect"),h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:g=="hide"?0:100),i=b.options.direction||"both",f=b.options.origin;if(g!="effect"){e.origin=f||["middle","center"];e.restore=true}f={height:a.height(),width:a.width()};a.from=b.options.from||(g=="show"?{height:0,width:0}:f);h={y:i!="horizontal"?h/100:1,x:i!="vertical"?h/100:1};a.to={height:f.height*h.y,width:f.width*h.x};if(b.options.fade){if(g=="show"){a.from.opacity=0;a.to.opacity=1}if(g=="hide"){a.from.opacity=
-1;a.to.opacity=0}}e.from=a.from;e.to=a.to;e.mode=g;a.effect("size",e,b.duration,b.callback);a.dequeue()})};c.effects.size=function(b){return this.queue(function(){var a=c(this),e=["position","top","bottom","left","right","width","height","overflow","opacity"],g=["position","top","bottom","left","right","overflow","opacity"],h=["width","height","overflow"],i=["fontSize"],f=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],k=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],
-p=c.effects.setMode(a,b.options.mode||"effect"),n=b.options.restore||false,m=b.options.scale||"both",l=b.options.origin,j={height:a.height(),width:a.width()};a.from=b.options.from||j;a.to=b.options.to||j;if(l){l=c.effects.getBaseline(l,j);a.from.top=(j.height-a.from.height)*l.y;a.from.left=(j.width-a.from.width)*l.x;a.to.top=(j.height-a.to.height)*l.y;a.to.left=(j.width-a.to.width)*l.x}var d={from:{y:a.from.height/j.height,x:a.from.width/j.width},to:{y:a.to.height/j.height,x:a.to.width/j.width}};
-if(m=="box"||m=="both"){if(d.from.y!=d.to.y){e=e.concat(f);a.from=c.effects.setTransition(a,f,d.from.y,a.from);a.to=c.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=d.to.x){e=e.concat(k);a.from=c.effects.setTransition(a,k,d.from.x,a.from);a.to=c.effects.setTransition(a,k,d.to.x,a.to)}}if(m=="content"||m=="both")if(d.from.y!=d.to.y){e=e.concat(i);a.from=c.effects.setTransition(a,i,d.from.y,a.from);a.to=c.effects.setTransition(a,i,d.to.y,a.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);
-a.css("overflow","hidden").css(a.from);if(m=="content"||m=="both"){f=f.concat(["marginTop","marginBottom"]).concat(i);k=k.concat(["marginLeft","marginRight"]);h=e.concat(f).concat(k);a.find("*[width]").each(function(){child=c(this);n&&c.effects.save(child,h);var o={height:child.height(),width:child.width()};child.from={height:o.height*d.from.y,width:o.width*d.from.x};child.to={height:o.height*d.to.y,width:o.width*d.to.x};if(d.from.y!=d.to.y){child.from=c.effects.setTransition(child,f,d.from.y,child.from);
-child.to=c.effects.setTransition(child,f,d.to.y,child.to)}if(d.from.x!=d.to.x){child.from=c.effects.setTransition(child,k,d.from.x,child.from);child.to=c.effects.setTransition(child,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){n&&c.effects.restore(child,h)})})}a.animate(a.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){a.to.opacity===0&&a.css("opacity",a.from.opacity);p=="hide"&&a.hide();c.effects.restore(a,
-n?e:g);c.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Shake 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Shake
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(d){d.effects.shake=function(a){return this.queue(function(){var b=d(this),j=["position","top","bottom","left","right"];d.effects.setMode(b,a.options.mode||"effect");var c=a.options.direction||"left",e=a.options.distance||20,l=a.options.times||3,f=a.duration||a.options.duration||140;d.effects.save(b,j);b.show();d.effects.createWrapper(b);var g=c=="up"||c=="down"?"top":"left",h=c=="up"||c=="left"?"pos":"neg";c={};var i={},k={};c[g]=(h=="pos"?"-=":"+=")+e;i[g]=(h=="pos"?"+=":"-=")+e*2;k[g]=
-(h=="pos"?"-=":"+=")+e*2;b.animate(c,f,a.options.easing);for(e=1;e<l;e++)b.animate(i,f,a.options.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing).animate(c,f/2,a.options.easing,function(){d.effects.restore(b,j);d.effects.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()});b.dequeue()})}})(jQuery);
-;/*
- * jQuery UI Effects Slide 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Slide
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(c){c.effects.slide=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right"],f=c.effects.setMode(a,d.options.mode||"show"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a).css({overflow:"hidden"});var g=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var e=d.options.distance||(g=="top"?a.outerHeight({margin:true}):a.outerWidth({margin:true}));if(f=="show")a.css(g,b=="pos"?isNaN(e)?"-"+e:-e:e);
-var i={};i[g]=(f=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+e;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){f=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
-;/*
- * jQuery UI Effects Transfer 1.8.13
- *
- * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
- * Dual licensed under the MIT or GPL Version 2 licenses.
- * http://jquery.org/license
- *
- * http://docs.jquery.com/UI/Effects/Transfer
- *
- * Depends:
- * jquery.effects.core.js
- */
-(function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);
-b.dequeue()})})}})(jQuery);
-;
\ No newline at end of file
--- a/metadataplayer/libs/jquery.min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-/*! jQuery v1.7.1 jquery.com | jquery.org/license */
-(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
-f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
-{for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
\ No newline at end of file
--- a/metadataplayer/libs/jquery.mousewheel.min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-/*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
- * Licensed under the MIT License (LICENSE.txt).
- *
- * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
- * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
- * Thanks to: Seamus Leahy for adding deltaX and deltaY
- *
- * Version: 3.0.6
- *
- * Requires: 1.2.2+
- */
-(function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
--- a/metadataplayer/libs/json2.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,487 +0,0 @@
-/*
- json2.js
- 2011-10-19
-
- Public Domain.
-
- NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
-
- See http://www.JSON.org/js.html
-
-
- This code should be minified before deployment.
- See http://javascript.crockford.com/jsmin.html
-
- USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO
- NOT CONTROL.
-
-
- This file creates a global JSON object containing two methods: stringify
- and parse.
-
- JSON.stringify(value, replacer, space)
- value any JavaScript value, usually an object or array.
-
- replacer an optional parameter that determines how object
- values are stringified for objects. It can be a
- function or an array of strings.
-
- space an optional parameter that specifies the indentation
- of nested structures. If it is omitted, the text will
- be packed without extra whitespace. If it is a number,
- it will specify the number of spaces to indent at each
- level. If it is a string (such as '\t' or ' '),
- it contains the characters used to indent at each level.
-
- This method produces a JSON text from a JavaScript value.
-
- When an object value is found, if the object contains a toJSON
- method, its toJSON method will be called and the result will be
- stringified. A toJSON method does not serialize: it returns the
- value represented by the name/value pair that should be serialized,
- or undefined if nothing should be serialized. The toJSON method
- will be passed the key associated with the value, and this will be
- bound to the value
-
- For example, this would serialize Dates as ISO strings.
-
- Date.prototype.toJSON = function (key) {
- function f(n) {
- // Format integers to have at least two digits.
- return n < 10 ? '0' + n : n;
- }
-
- return this.getUTCFullYear() + '-' +
- f(this.getUTCMonth() + 1) + '-' +
- f(this.getUTCDate()) + 'T' +
- f(this.getUTCHours()) + ':' +
- f(this.getUTCMinutes()) + ':' +
- f(this.getUTCSeconds()) + 'Z';
- };
-
- You can provide an optional replacer method. It will be passed the
- key and value of each member, with this bound to the containing
- object. The value that is returned from your method will be
- serialized. If your method returns undefined, then the member will
- be excluded from the serialization.
-
- If the replacer parameter is an array of strings, then it will be
- used to select the members to be serialized. It filters the results
- such that only members with keys listed in the replacer array are
- stringified.
-
- Values that do not have JSON representations, such as undefined or
- functions, will not be serialized. Such values in objects will be
- dropped; in arrays they will be replaced with null. You can use
- a replacer function to replace those with JSON values.
- JSON.stringify(undefined) returns undefined.
-
- The optional space parameter produces a stringification of the
- value that is filled with line breaks and indentation to make it
- easier to read.
-
- If the space parameter is a non-empty string, then that string will
- be used for indentation. If the space parameter is a number, then
- the indentation will be that many spaces.
-
- Example:
-
- text = JSON.stringify(['e', {pluribus: 'unum'}]);
- // text is '["e",{"pluribus":"unum"}]'
-
-
- text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
- // text is '[\n\t"e",\n\t{\n\t\t"pluribus": "unum"\n\t}\n]'
-
- text = JSON.stringify([new Date()], function (key, value) {
- return this[key] instanceof Date ?
- 'Date(' + this[key] + ')' : value;
- });
- // text is '["Date(---current time---)"]'
-
-
- JSON.parse(text, reviver)
- This method parses a JSON text to produce an object or array.
- It can throw a SyntaxError exception.
-
- The optional reviver parameter is a function that can filter and
- transform the results. It receives each of the keys and values,
- and its return value is used instead of the original value.
- If it returns what it received, then the structure is not modified.
- If it returns undefined then the member is deleted.
-
- Example:
-
- // Parse the text. Values that look like ISO date strings will
- // be converted to Date objects.
-
- myData = JSON.parse(text, function (key, value) {
- var a;
- if (typeof value === 'string') {
- a =
-/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value);
- if (a) {
- return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
- +a[5], +a[6]));
- }
- }
- return value;
- });
-
- myData = JSON.parse('["Date(09/09/2001)"]', function (key, value) {
- var d;
- if (typeof value === 'string' &&
- value.slice(0, 5) === 'Date(' &&
- value.slice(-1) === ')') {
- d = new Date(value.slice(5, -1));
- if (d) {
- return d;
- }
- }
- return value;
- });
-
-
- This is a reference implementation. You are free to copy, modify, or
- redistribute.
-*/
-
-/*jslint evil: true, regexp: true */
-
-/*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
- call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
- getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join,
- lastIndex, length, parse, prototype, push, replace, slice, stringify,
- test, toJSON, toString, valueOf
-*/
-
-
-// Create a JSON object only if one does not already exist. We create the
-// methods in a closure to avoid creating global variables.
-
-var JSON;
-if (!JSON) {
- JSON = {};
-}
-
-(function () {
- 'use strict';
-
- function f(n) {
- // Format integers to have at least two digits.
- return n < 10 ? '0' + n : n;
- }
-
- if (typeof Date.prototype.toJSON !== 'function') {
-
- Date.prototype.toJSON = function (key) {
-
- return isFinite(this.valueOf())
- ? this.getUTCFullYear() + '-' +
- f(this.getUTCMonth() + 1) + '-' +
- f(this.getUTCDate()) + 'T' +
- f(this.getUTCHours()) + ':' +
- f(this.getUTCMinutes()) + ':' +
- f(this.getUTCSeconds()) + 'Z'
- : null;
- };
-
- String.prototype.toJSON =
- Number.prototype.toJSON =
- Boolean.prototype.toJSON = function (key) {
- return this.valueOf();
- };
- }
-
- var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
- escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
- gap,
- indent,
- meta = { // table of character substitutions
- '\b': '\\b',
- '\t': '\\t',
- '\n': '\\n',
- '\f': '\\f',
- '\r': '\\r',
- '"' : '\\"',
- '\\': '\\\\'
- },
- rep;
-
-
- function quote(string) {
-
-// If the string contains no control characters, no quote characters, and no
-// backslash characters, then we can safely slap some quotes around it.
-// Otherwise we must also replace the offending characters with safe escape
-// sequences.
-
- escapable.lastIndex = 0;
- return escapable.test(string) ? '"' + string.replace(escapable, function (a) {
- var c = meta[a];
- return typeof c === 'string'
- ? c
- : '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
- }) + '"' : '"' + string + '"';
- }
-
-
- function str(key, holder) {
-
-// Produce a string from holder[key].
-
- var i, // The loop counter.
- k, // The member key.
- v, // The member value.
- length,
- mind = gap,
- partial,
- value = holder[key];
-
-// If the value has a toJSON method, call it to obtain a replacement value.
-
- if (value && typeof value === 'object' &&
- typeof value.toJSON === 'function') {
- value = value.toJSON(key);
- }
-
-// If we were called with a replacer function, then call the replacer to
-// obtain a replacement value.
-
- if (typeof rep === 'function') {
- value = rep.call(holder, key, value);
- }
-
-// What happens next depends on the value's type.
-
- switch (typeof value) {
- case 'string':
- return quote(value);
-
- case 'number':
-
-// JSON numbers must be finite. Encode non-finite numbers as null.
-
- return isFinite(value) ? String(value) : 'null';
-
- case 'boolean':
- case 'null':
-
-// If the value is a boolean or null, convert it to a string. Note:
-// typeof null does not produce 'null'. The case is included here in
-// the remote chance that this gets fixed someday.
-
- return String(value);
-
-// If the type is 'object', we might be dealing with an object or an array or
-// null.
-
- case 'object':
-
-// Due to a specification blunder in ECMAScript, typeof null is 'object',
-// so watch out for that case.
-
- if (!value) {
- return 'null';
- }
-
-// Make an array to hold the partial results of stringifying this object value.
-
- gap += indent;
- partial = [];
-
-// Is the value an array?
-
- if (Object.prototype.toString.apply(value) === '[object Array]') {
-
-// The value is an array. Stringify every element. Use null as a placeholder
-// for non-JSON values.
-
- length = value.length;
- for (i = 0; i < length; i += 1) {
- partial[i] = str(i, value) || 'null';
- }
-
-// Join all of the elements together, separated with commas, and wrap them in
-// brackets.
-
- v = partial.length === 0
- ? '[]'
- : gap
- ? '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']'
- : '[' + partial.join(',') + ']';
- gap = mind;
- return v;
- }
-
-// If the replacer is an array, use it to select the members to be stringified.
-
- if (rep && typeof rep === 'object') {
- length = rep.length;
- for (i = 0; i < length; i += 1) {
- if (typeof rep[i] === 'string') {
- k = rep[i];
- v = str(k, value);
- if (v) {
- partial.push(quote(k) + (gap ? ': ' : ':') + v);
- }
- }
- }
- } else {
-
-// Otherwise, iterate through all of the keys in the object.
-
- for (k in value) {
- if (Object.prototype.hasOwnProperty.call(value, k)) {
- v = str(k, value);
- if (v) {
- partial.push(quote(k) + (gap ? ': ' : ':') + v);
- }
- }
- }
- }
-
-// Join all of the member texts together, separated with commas,
-// and wrap them in braces.
-
- v = partial.length === 0
- ? '{}'
- : gap
- ? '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}'
- : '{' + partial.join(',') + '}';
- gap = mind;
- return v;
- }
- }
-
-// If the JSON object does not yet have a stringify method, give it one.
-
- if (typeof JSON.stringify !== 'function') {
- JSON.stringify = function (value, replacer, space) {
-
-// The stringify method takes a value and an optional replacer, and an optional
-// space parameter, and returns a JSON text. The replacer can be a function
-// that can replace values, or an array of strings that will select the keys.
-// A default replacer method can be provided. Use of the space parameter can
-// produce text that is more easily readable.
-
- var i;
- gap = '';
- indent = '';
-
-// If the space parameter is a number, make an indent string containing that
-// many spaces.
-
- if (typeof space === 'number') {
- for (i = 0; i < space; i += 1) {
- indent += ' ';
- }
-
-// If the space parameter is a string, it will be used as the indent string.
-
- } else if (typeof space === 'string') {
- indent = space;
- }
-
-// If there is a replacer, it must be a function or an array.
-// Otherwise, throw an error.
-
- rep = replacer;
- if (replacer && typeof replacer !== 'function' &&
- (typeof replacer !== 'object' ||
- typeof replacer.length !== 'number')) {
- throw new Error('JSON.stringify');
- }
-
-// Make a fake root object containing our value under the key of ''.
-// Return the result of stringifying the value.
-
- return str('', {'': value});
- };
- }
-
-
-// If the JSON object does not yet have a parse method, give it one.
-
- if (typeof JSON.parse !== 'function') {
- JSON.parse = function (text, reviver) {
-
-// The parse method takes a text and an optional reviver function, and returns
-// a JavaScript value if the text is a valid JSON text.
-
- var j;
-
- function walk(holder, key) {
-
-// The walk method is used to recursively walk the resulting structure so
-// that modifications can be made.
-
- var k, v, value = holder[key];
- if (value && typeof value === 'object') {
- for (k in value) {
- if (Object.prototype.hasOwnProperty.call(value, k)) {
- v = walk(value, k);
- if (v !== undefined) {
- value[k] = v;
- } else {
- delete value[k];
- }
- }
- }
- }
- return reviver.call(holder, key, value);
- }
-
-
-// Parsing happens in four stages. In the first stage, we replace certain
-// Unicode characters with escape sequences. JavaScript handles many characters
-// incorrectly, either silently deleting them, or treating them as line endings.
-
- text = String(text);
- cx.lastIndex = 0;
- if (cx.test(text)) {
- text = text.replace(cx, function (a) {
- return '\\u' +
- ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
- });
- }
-
-// In the second stage, we run the text against regular expressions that look
-// for non-JSON patterns. We are especially concerned with '()' and 'new'
-// because they can cause invocation, and '=' because it can cause mutation.
-// But just to be safe, we want to reject all unexpected forms.
-
-// We split the second stage into 4 regexp operations in order to work around
-// crippling inefficiencies in IE's and Safari's regexp engines. First we
-// replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
-// replace all simple value tokens with ']' characters. Third, we delete all
-// open brackets that follow a colon or comma or that begin the text. Finally,
-// we look to see that the remaining characters are only whitespace or ']' or
-// ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
-
- if (/^[\],:{}\s]*$/
- .test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
- .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']')
- .replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
-
-// In the third stage we use the eval function to compile the text into a
-// JavaScript structure. The '{' operator is subject to a syntactic ambiguity
-// in JavaScript: it can begin a block or an object literal. We wrap the text
-// in parens to eliminate the ambiguity.
-
- j = eval('(' + text + ')');
-
-// In the optional fourth stage, we recursively walk the new structure, passing
-// each name/value pair to a reviver function for possible transformation.
-
- return typeof reviver === 'function'
- ? walk({'': j}, '')
- : j;
- }
-
-// If the text is not JSON parseable, then a SyntaxError is thrown.
-
- throw new SyntaxError('JSON.parse');
- };
- }
-}());
--- a/metadataplayer/libs/jwplayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-if(typeof jwplayer=="undefined"){var jwplayer=function(a){if(jwplayer.api){return jwplayer.api.selectPlayer(a)}};var $jw=jwplayer;jwplayer.version="5.9.2156";jwplayer.vid=document.createElement("video");jwplayer.audio=document.createElement("audio");jwplayer.source=document.createElement("source");(function(b){b.utils=function(){};b.utils.typeOf=function(d){var c=typeof d;if(c==="object"){if(d){if(d instanceof Array){c="array"}}else{c="null"}}return c};b.utils.extend=function(){var c=b.utils.extend["arguments"];if(c.length>1){for(var e=1;e<c.length;e++){for(var d in c[e]){c[0][d]=c[e][d]}}return c[0]}return null};b.utils.clone=function(f){var c;var d=b.utils.clone["arguments"];if(d.length==1){switch(b.utils.typeOf(d[0])){case"object":c={};for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;case"array":c=[];for(var e in d[0]){c[e]=b.utils.clone(d[0][e])}break;default:return d[0];break}}return c};b.utils.extension=function(c){if(!c){return""}c=c.substring(c.lastIndexOf("/")+1,c.length);c=c.split("?")[0];if(c.lastIndexOf(".")>-1){return c.substr(c.lastIndexOf(".")+1,c.length).toLowerCase()}return};b.utils.html=function(c,d){c.innerHTML=d};b.utils.wrap=function(c,d){if(c.parentNode){c.parentNode.replaceChild(d,c)}d.appendChild(c)};b.utils.ajax=function(g,f,c){var e;if(window.XMLHttpRequest){e=new XMLHttpRequest()}else{e=new ActiveXObject("Microsoft.XMLHTTP")}e.onreadystatechange=function(){if(e.readyState===4){if(e.status===200){if(f){if(!b.utils.exists(e.responseXML)){try{if(window.DOMParser){var h=(new DOMParser()).parseFromString(e.responseText,"text/xml");if(h){e=b.utils.extend({},e,{responseXML:h})}}else{h=new ActiveXObject("Microsoft.XMLDOM");h.async="false";h.loadXML(e.responseText);e=b.utils.extend({},e,{responseXML:h})}}catch(j){if(c){c(g)}}}f(e)}}else{if(c){c(g)}}}};try{e.open("GET",g,true);e.send(null)}catch(d){if(c){c(g)}}return e};b.utils.load=function(d,e,c){d.onreadystatechange=function(){if(d.readyState===4){if(d.status===200){if(e){e()}}else{if(c){c()}}}}};b.utils.find=function(d,c){return d.getElementsByTagName(c)};b.utils.append=function(c,d){c.appendChild(d)};b.utils.isIE=function(){return((!+"\v1")||(typeof window.ActiveXObject!="undefined"))};b.utils.userAgentMatch=function(d){var c=navigator.userAgent.toLowerCase();return(c.match(d)!==null)};b.utils.isIOS=function(){return b.utils.userAgentMatch(/iP(hone|ad|od)/i)};b.utils.isIPad=function(){return b.utils.userAgentMatch(/iPad/i)};b.utils.isIPod=function(){return b.utils.userAgentMatch(/iP(hone|od)/i)};b.utils.isAndroid=function(){return b.utils.userAgentMatch(/android/i)};b.utils.isLegacyAndroid=function(){return b.utils.userAgentMatch(/android 2.[012]/i)};b.utils.isBlackberry=function(){return b.utils.userAgentMatch(/blackberry/i)};b.utils.isMobile=function(){return b.utils.userAgentMatch(/(iP(hone|ad|od))|android/i)};b.utils.getFirstPlaylistItemFromConfig=function(c){var d={};var e;if(c.playlist&&c.playlist.length){e=c.playlist[0]}else{e=c}d.file=e.file;d.levels=e.levels;d.streamer=e.streamer;d.playlistfile=e.playlistfile;d.provider=e.provider;if(!d.provider){if(d.file&&(d.file.toLowerCase().indexOf("youtube.com")>-1||d.file.toLowerCase().indexOf("youtu.be")>-1)){d.provider="youtube"}if(d.streamer&&d.streamer.toLowerCase().indexOf("rtmp://")==0){d.provider="rtmp"}if(e.type){d.provider=e.type.toLowerCase()}}if(d.provider=="audio"){d.provider="sound"}return d};b.utils.getOuterHTML=function(c){if(c.outerHTML){return c.outerHTML}else{try{return new XMLSerializer().serializeToString(c)}catch(d){return""}}};b.utils.setOuterHTML=function(f,e){if(f.outerHTML){f.outerHTML=e}else{var g=document.createElement("div");g.innerHTML=e;var c=document.createRange();c.selectNodeContents(g);var d=c.extractContents();f.parentNode.insertBefore(d,f);f.parentNode.removeChild(f)}};b.utils.hasFlash=function(){if(typeof navigator.plugins!="undefined"&&typeof navigator.plugins["Shockwave Flash"]!="undefined"){return true}if(typeof window.ActiveXObject!="undefined"){try{new ActiveXObject("ShockwaveFlash.ShockwaveFlash");return true}catch(c){}}return false};b.utils.getPluginName=function(c){if(c.lastIndexOf("/")>=0){c=c.substring(c.lastIndexOf("/")+1,c.length)}if(c.lastIndexOf("-")>=0){c=c.substring(0,c.lastIndexOf("-"))}if(c.lastIndexOf(".swf")>=0){c=c.substring(0,c.lastIndexOf(".swf"))}if(c.lastIndexOf(".js")>=0){c=c.substring(0,c.lastIndexOf(".js"))}return c};b.utils.getPluginVersion=function(c){if(c.lastIndexOf("-")>=0){if(c.lastIndexOf(".js")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".js"))}else{if(c.lastIndexOf(".swf")>=0){return c.substring(c.lastIndexOf("-")+1,c.lastIndexOf(".swf"))}else{return c.substring(c.lastIndexOf("-")+1)}}}return""};b.utils.getAbsolutePath=function(j,h){if(!b.utils.exists(h)){h=document.location.href}if(!b.utils.exists(j)){return undefined}if(a(j)){return j}var k=h.substring(0,h.indexOf("://")+3);var g=h.substring(k.length,h.indexOf("/",k.length+1));var d;if(j.indexOf("/")===0){d=j.split("/")}else{var e=h.split("?")[0];e=e.substring(k.length+g.length+1,e.lastIndexOf("/"));d=e.split("/").concat(j.split("/"))}var c=[];for(var f=0;f<d.length;f++){if(!d[f]||!b.utils.exists(d[f])||d[f]=="."){continue}else{if(d[f]==".."){c.pop()}else{c.push(d[f])}}}return k+g+"/"+c.join("/")};function a(d){if(!b.utils.exists(d)){return}var e=d.indexOf("://");var c=d.indexOf("?");return(e>0&&(c<0||(c>e)))}b.utils.pluginPathType={ABSOLUTE:"ABSOLUTE",RELATIVE:"RELATIVE",CDN:"CDN"};b.utils.getPluginPathType=function(d){if(typeof d!="string"){return}d=d.split("?")[0];var e=d.indexOf("://");if(e>0){return b.utils.pluginPathType.ABSOLUTE}var c=d.indexOf("/");var f=b.utils.extension(d);if(e<0&&c<0&&(!f||!isNaN(f))){return b.utils.pluginPathType.CDN}return b.utils.pluginPathType.RELATIVE};b.utils.mapEmpty=function(c){for(var d in c){return false}return true};b.utils.mapLength=function(d){var c=0;for(var e in d){c++}return c};b.utils.log=function(d,c){if(typeof console!="undefined"&&typeof console.log!="undefined"){if(c){console.log(d,c)}else{console.log(d)}}};b.utils.css=function(d,g,c){if(b.utils.exists(d)){for(var e in g){try{if(typeof g[e]==="undefined"){continue}else{if(typeof g[e]=="number"&&!(e=="zIndex"||e=="opacity")){if(isNaN(g[e])){continue}if(e.match(/color/i)){g[e]="#"+b.utils.strings.pad(g[e].toString(16),6)}else{g[e]=Math.ceil(g[e])+"px"}}}d.style[e]=g[e]}catch(f){}}}};b.utils.isYouTube=function(c){return(c.indexOf("youtube.com")>-1||c.indexOf("youtu.be")>-1)};b.utils.transform=function(e,d,c,g,h){if(!b.utils.exists(d)){d=1}if(!b.utils.exists(c)){c=1}if(!b.utils.exists(g)){g=0}if(!b.utils.exists(h)){h=0}if(d==1&&c==1&&g==0&&h==0){e.style.webkitTransform="";e.style.MozTransform="";e.style.OTransform=""}else{var f="scale("+d+","+c+") translate("+g+"px,"+h+"px)";e.style.webkitTransform=f;e.style.MozTransform=f;e.style.OTransform=f}};b.utils.stretch=function(k,q,p,g,n,h){if(typeof p=="undefined"||typeof g=="undefined"||typeof n=="undefined"||typeof h=="undefined"){return}var d=p/n;var f=g/h;var m=0;var l=0;var e=false;var c={};if(q.parentElement){q.parentElement.style.overflow="hidden"}b.utils.transform(q);switch(k.toUpperCase()){case b.utils.stretching.NONE:c.width=n;c.height=h;c.top=(g-c.height)/2;c.left=(p-c.width)/2;break;case b.utils.stretching.UNIFORM:if(d>f){c.width=n*f;c.height=h*f;if(c.width/p>0.95){e=true;d=Math.ceil(100*p/c.width)/100;f=1;c.width=p}}else{c.width=n*d;c.height=h*d;if(c.height/g>0.95){e=true;d=1;f=Math.ceil(100*g/c.height)/100;c.height=g}}c.top=(g-c.height)/2;c.left=(p-c.width)/2;break;case b.utils.stretching.FILL:if(d>f){c.width=n*d;c.height=h*d}else{c.width=n*f;c.height=h*f}c.top=(g-c.height)/2;c.left=(p-c.width)/2;break;case b.utils.stretching.EXACTFIT:c.width=n;c.height=h;var o=Math.round((n/2)*(1-1/d));var j=Math.round((h/2)*(1-1/f));e=true;c.top=c.left=0;break;default:break}if(e){b.utils.transform(q,d,f,o,j)}b.utils.css(q,c)};b.utils.stretching={NONE:"NONE",FILL:"FILL",UNIFORM:"UNIFORM",EXACTFIT:"EXACTFIT"};b.utils.deepReplaceKeyName=function(k,e,c){switch(b.utils.typeOf(k)){case"array":for(var g=0;g<k.length;g++){k[g]=b.utils.deepReplaceKeyName(k[g],e,c)}break;case"object":for(var f in k){var j,h;if(e instanceof Array&&c instanceof Array){if(e.length!=c.length){continue}else{j=e;h=c}}else{j=[e];h=[c]}var d=f;for(var g=0;g<j.length;g++){d=d.replace(new RegExp(e[g],"g"),c[g])}k[d]=b.utils.deepReplaceKeyName(k[f],e,c);if(f!=d){delete k[f]}}break}return k};b.utils.isInArray=function(e,d){if(!(e)||!(e instanceof Array)){return false}for(var c=0;c<e.length;c++){if(d===e[c]){return true}}return false};b.utils.exists=function(c){switch(typeof(c)){case"string":return(c.length>0);break;case"object":return(c!==null);case"undefined":return false}return true};b.utils.empty=function(c){if(typeof c.hasChildNodes=="function"){while(c.hasChildNodes()){c.removeChild(c.firstChild)}}};b.utils.parseDimension=function(c){if(typeof c=="string"){if(c===""){return 0}else{if(c.lastIndexOf("%")>-1){return c}else{return parseInt(c.replace("px",""),10)}}}return c};b.utils.getDimensions=function(c){if(c&&c.style){return{x:b.utils.parseDimension(c.style.left),y:b.utils.parseDimension(c.style.top),width:b.utils.parseDimension(c.style.width),height:b.utils.parseDimension(c.style.height)}}else{return{}}};b.utils.getElementWidth=function(c){if(!c){return null}else{if(c==document.body){return b.utils.parentNode(c).clientWidth}else{if(c.clientWidth>0){return c.clientWidth}else{if(c.style){return b.utils.parseDimension(c.style.width)}else{return null}}}}};b.utils.getElementHeight=function(c){if(!c){return null}else{if(c==document.body){return b.utils.parentNode(c).clientHeight}else{if(c.clientHeight>0){return c.clientHeight}else{if(c.style){return b.utils.parseDimension(c.style.height)}else{return null}}}}};b.utils.timeFormat=function(c){str="00:00";if(c>0){str=Math.floor(c/60)<10?"0"+Math.floor(c/60)+":":Math.floor(c/60)+":";str+=Math.floor(c%60)<10?"0"+Math.floor(c%60):Math.floor(c%60)}return str};b.utils.useNativeFullscreen=function(){return(navigator&&navigator.vendor&&navigator.vendor.indexOf("Apple")==0)};b.utils.parentNode=function(c){if(!c){return docuemnt.body}else{if(c.parentNode){return c.parentNode}else{if(c.parentElement){return c.parentElement}else{return c}}}};b.utils.getBoundingClientRect=function(c){if(typeof c.getBoundingClientRect=="function"){return c.getBoundingClientRect()}else{return{left:c.offsetLeft+document.body.scrollLeft,top:c.offsetTop+document.body.scrollTop,width:c.offsetWidth,height:c.offsetHeight}}};b.utils.translateEventResponse=function(e,c){var g=b.utils.extend({},c);if(e==b.api.events.JWPLAYER_FULLSCREEN&&!g.fullscreen){g.fullscreen=g.message=="true"?true:false;delete g.message}else{if(typeof g.data=="object"){g=b.utils.extend(g,g.data);delete g.data}else{if(typeof g.metadata=="object"){b.utils.deepReplaceKeyName(g.metadata,["__dot__","__spc__","__dsh__"],["."," ","-"])}}}var d=["position","duration","offset"];for(var f in d){if(g[d[f]]){g[d[f]]=Math.round(g[d[f]]*1000)/1000}}return g};b.utils.saveCookie=function(c,d){document.cookie="jwplayer."+c+"="+d+"; path=/"};b.utils.getCookies=function(){var f={};var e=document.cookie.split("; ");for(var d=0;d<e.length;d++){var c=e[d].split("=");if(c[0].indexOf("jwplayer.")==0){f[c[0].substring(9,c[0].length)]=c[1]}}return f};b.utils.readCookie=function(c){return b.utils.getCookies()[c]}})(jwplayer);(function(a){a.events=function(){};a.events.COMPLETE="COMPLETE";a.events.ERROR="ERROR"})(jwplayer);(function(jwplayer){jwplayer.events.eventdispatcher=function(debug){var _debug=debug;var _listeners;var _globallisteners;this.resetEventListeners=function(){_listeners={};_globallisteners=[]};this.resetEventListeners();this.addEventListener=function(type,listener,count){try{if(!jwplayer.utils.exists(_listeners[type])){_listeners[type]=[]}if(typeof(listener)=="string"){eval("listener = "+listener)}_listeners[type].push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeEventListener=function(type,listener){if(!_listeners[type]){return}try{for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){if(_listeners[type][listenerIndex].listener.toString()==listener.toString()){_listeners[type].splice(listenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.addGlobalListener=function(listener,count){try{if(typeof(listener)=="string"){eval("listener = "+listener)}_globallisteners.push({listener:listener,count:count})}catch(err){jwplayer.utils.log("error",err)}return false};this.removeGlobalListener=function(listener){if(!listener){return}try{for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){if(_globallisteners[globalListenerIndex].listener.toString()==listener.toString()){_globallisteners.splice(globalListenerIndex,1);break}}}catch(err){jwplayer.utils.log("error",err)}return false};this.sendEvent=function(type,data){if(!jwplayer.utils.exists(data)){data={}}if(_debug){jwplayer.utils.log(type,data)}if(typeof _listeners[type]!="undefined"){for(var listenerIndex=0;listenerIndex<_listeners[type].length;listenerIndex++){try{_listeners[type][listenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_listeners[type][listenerIndex].listener)}if(_listeners[type][listenerIndex]){if(_listeners[type][listenerIndex].count===1){delete _listeners[type][listenerIndex]}else{if(_listeners[type][listenerIndex].count>0){_listeners[type][listenerIndex].count=_listeners[type][listenerIndex].count-1}}}}}for(var globalListenerIndex=0;globalListenerIndex<_globallisteners.length;globalListenerIndex++){try{_globallisteners[globalListenerIndex].listener(data)}catch(err){jwplayer.utils.log("There was an error while handling a listener: "+err.toString(),_globallisteners[globalListenerIndex].listener)}if(_globallisteners[globalListenerIndex]){if(_globallisteners[globalListenerIndex].count===1){delete _globallisteners[globalListenerIndex]}else{if(_globallisteners[globalListenerIndex].count>0){_globallisteners[globalListenerIndex].count=_globallisteners[globalListenerIndex].count-1}}}}}}})(jwplayer);(function(a){var b={};a.utils.animations=function(){};a.utils.animations.transform=function(c,d){c.style.webkitTransform=d;c.style.MozTransform=d;c.style.OTransform=d;c.style.msTransform=d};a.utils.animations.transformOrigin=function(c,d){c.style.webkitTransformOrigin=d;c.style.MozTransformOrigin=d;c.style.OTransformOrigin=d;c.style.msTransformOrigin=d};a.utils.animations.rotate=function(c,d){a.utils.animations.transform(c,["rotate(",d,"deg)"].join(""))};a.utils.cancelAnimation=function(c){delete b[c.id]};a.utils.fadeTo=function(m,f,e,j,h,d){if(b[m.id]!=d&&a.utils.exists(d)){return}if(m.style.opacity==f){return}var c=new Date().getTime();if(d>c){setTimeout(function(){a.utils.fadeTo(m,f,e,j,0,d)},d-c)}if(m.style.display=="none"){m.style.display="block"}if(!a.utils.exists(j)){j=m.style.opacity===""?1:m.style.opacity}if(m.style.opacity==f&&m.style.opacity!==""&&a.utils.exists(d)){if(f===0){m.style.display="none"}return}if(!a.utils.exists(d)){d=c;b[m.id]=d}if(!a.utils.exists(h)){h=0}var k=(e>0)?((c-d)/(e*1000)):0;k=k>1?1:k;var l=f-j;var g=j+(k*l);if(g>1){g=1}else{if(g<0){g=0}}m.style.opacity=g;if(h>0){b[m.id]=d+h*1000;a.utils.fadeTo(m,f,e,j,0,b[m.id]);return}setTimeout(function(){a.utils.fadeTo(m,f,e,j,0,d)},10)}})(jwplayer);(function(a){a.utils.arrays=function(){};a.utils.arrays.indexOf=function(c,d){for(var b=0;b<c.length;b++){if(c[b]==d){return b}}return -1};a.utils.arrays.remove=function(c,d){var b=a.utils.arrays.indexOf(c,d);if(b>-1){c.splice(b,1)}}})(jwplayer);(function(a){a.utils.extensionmap={"3gp":{html5:"video/3gpp",flash:"video"},"3gpp":{html5:"video/3gpp"},"3g2":{html5:"video/3gpp2",flash:"video"},"3gpp2":{html5:"video/3gpp2"},flv:{flash:"video"},f4a:{html5:"audio/mp4"},f4b:{html5:"audio/mp4",flash:"video"},f4v:{html5:"video/mp4",flash:"video"},mov:{html5:"video/quicktime",flash:"video"},m4a:{html5:"audio/mp4",flash:"video"},m4b:{html5:"audio/mp4"},m4p:{html5:"audio/mp4"},m4v:{html5:"video/mp4",flash:"video"},mp4:{html5:"video/mp4",flash:"video"},rbs:{flash:"sound"},aac:{html5:"audio/aac",flash:"video"},mp3:{html5:"audio/mp3",flash:"sound"},ogg:{html5:"audio/ogg"},oga:{html5:"audio/ogg"},ogv:{html5:"video/ogg"},webm:{html5:"video/webm"},m3u8:{html5:"audio/x-mpegurl"},gif:{flash:"image"},jpeg:{flash:"image"},jpg:{flash:"image"},swf:{flash:"image"},png:{flash:"image"},wav:{html5:"audio/x-wav"}}})(jwplayer);(function(e){e.utils.mediaparser=function(){};var g={element:{width:"width",height:"height",id:"id","class":"className",name:"name"},media:{src:"file",preload:"preload",autoplay:"autostart",loop:"repeat",controls:"controls"},source:{src:"file",type:"type",media:"media","data-jw-width":"width","data-jw-bitrate":"bitrate"},video:{poster:"image"}};var f={};e.utils.mediaparser.parseMedia=function(j){return d(j)};function c(k,j){if(!e.utils.exists(j)){j=g[k]}else{e.utils.extend(j,g[k])}return j}function d(n,j){if(f[n.tagName.toLowerCase()]&&!e.utils.exists(j)){return f[n.tagName.toLowerCase()](n)}else{j=c("element",j);var o={};for(var k in j){if(k!="length"){var m=n.getAttribute(k);if(e.utils.exists(m)){o[j[k]]=m}}}var l=n.style["#background-color"];if(l&&!(l=="transparent"||l=="rgba(0, 0, 0, 0)")){o.screencolor=l}return o}}function h(n,k){k=c("media",k);var l=[];var j=e.utils.selectors("source",n);for(var m in j){if(!isNaN(m)){l.push(a(j[m]))}}var o=d(n,k);if(e.utils.exists(o.file)){l[0]={file:o.file}}o.levels=l;return o}function a(l,k){k=c("source",k);var j=d(l,k);j.width=j.width?j.width:0;j.bitrate=j.bitrate?j.bitrate:0;return j}function b(l,k){k=c("video",k);var j=h(l,k);return j}f.media=h;f.audio=h;f.source=a;f.video=b})(jwplayer);(function(a){a.utils.loaderstatus={NEW:"NEW",LOADING:"LOADING",ERROR:"ERROR",COMPLETE:"COMPLETE"};a.utils.scriptloader=function(c){var d=a.utils.loaderstatus.NEW;var b=new a.events.eventdispatcher();a.utils.extend(this,b);this.load=function(){if(d==a.utils.loaderstatus.NEW){d=a.utils.loaderstatus.LOADING;var e=document.createElement("script");e.onload=function(f){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)};e.onerror=function(f){d=a.utils.loaderstatus.ERROR;b.sendEvent(a.events.ERROR)};e.onreadystatechange=function(){if(e.readyState=="loaded"||e.readyState=="complete"){d=a.utils.loaderstatus.COMPLETE;b.sendEvent(a.events.COMPLETE)}};document.getElementsByTagName("head")[0].appendChild(e);e.src=c}};this.getStatus=function(){return d}}})(jwplayer);(function(a){a.utils.selectors=function(b,e){if(!a.utils.exists(e)){e=document}b=a.utils.strings.trim(b);var c=b.charAt(0);if(c=="#"){return e.getElementById(b.substr(1))}else{if(c=="."){if(e.getElementsByClassName){return e.getElementsByClassName(b.substr(1))}else{return a.utils.selectors.getElementsByTagAndClass("*",b.substr(1))}}else{if(b.indexOf(".")>0){var d=b.split(".");return a.utils.selectors.getElementsByTagAndClass(d[0],d[1])}else{return e.getElementsByTagName(b)}}}return null};a.utils.selectors.getElementsByTagAndClass=function(e,h,g){var j=[];if(!a.utils.exists(g)){g=document}var f=g.getElementsByTagName(e);for(var d=0;d<f.length;d++){if(a.utils.exists(f[d].className)){var c=f[d].className.split(" ");for(var b=0;b<c.length;b++){if(c[b]==h){j.push(f[d])}}}}return j}})(jwplayer);(function(a){a.utils.strings=function(){};a.utils.strings.trim=function(b){return b.replace(/^\s*/,"").replace(/\s*$/,"")};a.utils.strings.pad=function(c,d,b){if(!b){b="0"}while(c.length<d){c=b+c}return c};a.utils.strings.serialize=function(b){if(b==null){return null}else{if(b=="true"){return true}else{if(b=="false"){return false}else{if(isNaN(Number(b))||b.length>5||b.length==0){return b}else{return Number(b)}}}}};a.utils.strings.seconds=function(d){d=d.replace(",",".");var b=d.split(":");var c=0;if(d.substr(-1)=="s"){c=Number(d.substr(0,d.length-1))}else{if(d.substr(-1)=="m"){c=Number(d.substr(0,d.length-1))*60}else{if(d.substr(-1)=="h"){c=Number(d.substr(0,d.length-1))*3600}else{if(b.length>1){c=Number(b[b.length-1]);c+=Number(b[b.length-2])*60;if(b.length==3){c+=Number(b[b.length-3])*3600}}else{c=Number(d)}}}}return c};a.utils.strings.xmlAttribute=function(b,c){for(var d=0;d<b.attributes.length;d++){if(b.attributes[d].name&&b.attributes[d].name.toLowerCase()==c.toLowerCase()){return b.attributes[d].value.toString()}}return""};a.utils.strings.jsonToString=function(f){var h=h||{};if(h&&h.stringify){return h.stringify(f)}var c=typeof(f);if(c!="object"||f===null){if(c=="string"){f='"'+f.replace(/"/g,'\\"')+'"'}else{return String(f)}}else{var g=[],b=(f&&f.constructor==Array);for(var d in f){var e=f[d];switch(typeof(e)){case"string":e='"'+e.replace(/"/g,'\\"')+'"';break;case"object":if(a.utils.exists(e)){e=a.utils.strings.jsonToString(e)}break}if(b){if(typeof(e)!="function"){g.push(String(e))}}else{if(typeof(e)!="function"){g.push('"'+d+'":'+String(e))}}}if(b){return"["+String(g)+"]"}else{return"{"+String(g)+"}"}}}})(jwplayer);(function(c){var d=new RegExp(/^(#|0x)[0-9a-fA-F]{3,6}/);c.utils.typechecker=function(g,f){f=!c.utils.exists(f)?b(g):f;return e(g,f)};function b(f){var g=["true","false","t","f"];if(g.toString().indexOf(f.toLowerCase().replace(" ",""))>=0){return"boolean"}else{if(d.test(f)){return"color"}else{if(!isNaN(parseInt(f,10))&&parseInt(f,10).toString().length==f.length){return"integer"}else{if(!isNaN(parseFloat(f))&&parseFloat(f).toString().length==f.length){return"float"}}}}return"string"}function e(g,f){if(!c.utils.exists(f)){return g}switch(f){case"color":if(g.length>0){return a(g)}return null;case"integer":return parseInt(g,10);case"float":return parseFloat(g);case"boolean":if(g.toLowerCase()=="true"){return true}else{if(g=="1"){return true}}return false}return g}function a(f){switch(f.toLowerCase()){case"blue":return parseInt("0000FF",16);case"green":return parseInt("00FF00",16);case"red":return parseInt("FF0000",16);case"cyan":return parseInt("00FFFF",16);case"magenta":return parseInt("FF00FF",16);case"yellow":return parseInt("FFFF00",16);case"black":return parseInt("000000",16);case"white":return parseInt("FFFFFF",16);default:f=f.replace(/(#|0x)?([0-9A-F]{3,6})$/gi,"$2");if(f.length==3){f=f.charAt(0)+f.charAt(0)+f.charAt(1)+f.charAt(1)+f.charAt(2)+f.charAt(2)}return parseInt(f,16)}return parseInt("000000",16)}})(jwplayer);(function(a){a.utils.parsers=function(){};a.utils.parsers.localName=function(b){if(!b){return""}else{if(b.localName){return b.localName}else{if(b.baseName){return b.baseName}else{return""}}}};a.utils.parsers.textContent=function(b){if(!b){return""}else{if(b.textContent){return b.textContent}else{if(b.text){return b.text}else{return""}}}}})(jwplayer);(function(a){a.utils.parsers.jwparser=function(){};a.utils.parsers.jwparser.PREFIX="jwplayer";a.utils.parsers.jwparser.parseEntry=function(c,d){for(var b=0;b<c.childNodes.length;b++){if(c.childNodes[b].prefix==a.utils.parsers.jwparser.PREFIX){d[a.utils.parsers.localName(c.childNodes[b])]=a.utils.strings.serialize(a.utils.parsers.textContent(c.childNodes[b]));if(a.utils.parsers.localName(c.childNodes[b])=="file"&&d.levels){delete d.levels}}if(!d.file&&String(d.link).toLowerCase().indexOf("youtube")>-1){d.file=d.link}}return d};a.utils.parsers.jwparser.getProvider=function(c){if(c.type){return c.type}else{if(c.file.indexOf("youtube.com/w")>-1||c.file.indexOf("youtube.com/v")>-1||c.file.indexOf("youtu.be/")>-1){return"youtube"}else{if(c.streamer&&c.streamer.indexOf("rtmp")==0){return"rtmp"}else{if(c.streamer&&c.streamer.indexOf("http")==0){return"http"}else{var b=a.utils.strings.extension(c.file);if(extensions.hasOwnProperty(b)){return extensions[b]}}}}}return""}})(jwplayer);(function(a){a.utils.parsers.mediaparser=function(){};a.utils.parsers.mediaparser.PREFIX="media";a.utils.parsers.mediaparser.parseGroup=function(d,f){var e=false;for(var c=0;c<d.childNodes.length;c++){if(d.childNodes[c].prefix==a.utils.parsers.mediaparser.PREFIX){if(!a.utils.parsers.localName(d.childNodes[c])){continue}switch(a.utils.parsers.localName(d.childNodes[c]).toLowerCase()){case"content":if(!e){f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}if(a.utils.strings.xmlAttribute(d.childNodes[c],"duration")){f.duration=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"duration"))}if(a.utils.strings.xmlAttribute(d.childNodes[c],"start")){f.start=a.utils.strings.seconds(a.utils.strings.xmlAttribute(d.childNodes[c],"start"))}if(d.childNodes[c].childNodes&&d.childNodes[c].childNodes.length>0){f=a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f)}if(a.utils.strings.xmlAttribute(d.childNodes[c],"width")||a.utils.strings.xmlAttribute(d.childNodes[c],"bitrate")||a.utils.strings.xmlAttribute(d.childNodes[c],"url")){if(!f.levels){f.levels=[]}f.levels.push({width:a.utils.strings.xmlAttribute(d.childNodes[c],"width"),bitrate:a.utils.strings.xmlAttribute(d.childNodes[c],"bitrate"),file:a.utils.strings.xmlAttribute(d.childNodes[c],"url")})}break;case"title":f.title=a.utils.parsers.textContent(d.childNodes[c]);break;case"description":f.description=a.utils.parsers.textContent(d.childNodes[c]);break;case"keywords":f.tags=a.utils.parsers.textContent(d.childNodes[c]);break;case"thumbnail":f.image=a.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"credit":f.author=a.utils.parsers.textContent(d.childNodes[c]);break;case"player":var b=d.childNodes[c].url;if(b.indexOf("youtube.com")>=0||b.indexOf("youtu.be")>=0){e=true;f.file=a.utils.strings.xmlAttribute(d.childNodes[c],"url")}break;case"group":a.utils.parsers.mediaparser.parseGroup(d.childNodes[c],f);break}}}return f}})(jwplayer);(function(b){b.utils.parsers.rssparser=function(){};b.utils.parsers.rssparser.parse=function(f){var c=[];for(var e=0;e<f.childNodes.length;e++){if(b.utils.parsers.localName(f.childNodes[e]).toLowerCase()=="channel"){for(var d=0;d<f.childNodes[e].childNodes.length;d++){if(b.utils.parsers.localName(f.childNodes[e].childNodes[d]).toLowerCase()=="item"){c.push(a(f.childNodes[e].childNodes[d]))}}}}return c};function a(d){var e={};for(var c=0;c<d.childNodes.length;c++){if(!b.utils.parsers.localName(d.childNodes[c])){continue}switch(b.utils.parsers.localName(d.childNodes[c]).toLowerCase()){case"enclosure":e.file=b.utils.strings.xmlAttribute(d.childNodes[c],"url");break;case"title":e.title=b.utils.parsers.textContent(d.childNodes[c]);break;case"pubdate":e.date=b.utils.parsers.textContent(d.childNodes[c]);break;case"description":e.description=b.utils.parsers.textContent(d.childNodes[c]);break;case"link":e.link=b.utils.parsers.textContent(d.childNodes[c]);break;case"category":if(e.tags){e.tags+=b.utils.parsers.textContent(d.childNodes[c])}else{e.tags=b.utils.parsers.textContent(d.childNodes[c])}break}}e=b.utils.parsers.mediaparser.parseGroup(d,e);e=b.utils.parsers.jwparser.parseEntry(d,e);return new b.html5.playlistitem(e)}})(jwplayer);(function(a){var c={};var b={};a.plugins=function(){};a.plugins.loadPlugins=function(e,d){b[e]=new a.plugins.pluginloader(new a.plugins.model(c),d);return b[e]};a.plugins.registerPlugin=function(h,f,e){var d=a.utils.getPluginName(h);if(c[d]){c[d].registerPlugin(h,f,e)}else{a.utils.log("A plugin ("+h+") was registered with the player that was not loaded. Please check your configuration.");for(var g in b){b[g].pluginFailed()}}}})(jwplayer);(function(a){a.plugins.model=function(b){this.addPlugin=function(c){var d=a.utils.getPluginName(c);if(!b[d]){b[d]=new a.plugins.plugin(c)}return b[d]}}})(jwplayer);(function(a){a.plugins.pluginmodes={FLASH:"FLASH",JAVASCRIPT:"JAVASCRIPT",HYBRID:"HYBRID"};a.plugins.plugin=function(b){var d="http://plugins.longtailvideo.com";var j=a.utils.loaderstatus.NEW;var k;var h;var l;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function e(){switch(a.utils.getPluginPathType(b)){case a.utils.pluginPathType.ABSOLUTE:return b;case a.utils.pluginPathType.RELATIVE:return a.utils.getAbsolutePath(b,window.location.href);case a.utils.pluginPathType.CDN:var o=a.utils.getPluginName(b);var n=a.utils.getPluginVersion(b);var m=(window.location.href.indexOf("https://")==0)?d.replace("http://","https://secure"):d;return m+"/"+a.version.split(".")[0]+"/"+o+"/"+o+(n!==""?("-"+n):"")+".js"}}function g(m){l=setTimeout(function(){j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)},1000)}function f(m){j=a.utils.loaderstatus.ERROR;c.sendEvent(a.events.ERROR)}this.load=function(){if(j==a.utils.loaderstatus.NEW){if(b.lastIndexOf(".swf")>0){k=b;j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE);return}j=a.utils.loaderstatus.LOADING;var m=new a.utils.scriptloader(e());m.addEventListener(a.events.COMPLETE,g);m.addEventListener(a.events.ERROR,f);m.load()}};this.registerPlugin=function(o,n,m){if(l){clearTimeout(l);l=undefined}if(n&&m){k=m;h=n}else{if(typeof n=="string"){k=n}else{if(typeof n=="function"){h=n}else{if(!n&&!m){k=o}}}}j=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)};this.getStatus=function(){return j};this.getPluginName=function(){return a.utils.getPluginName(b)};this.getFlashPath=function(){if(k){switch(a.utils.getPluginPathType(k)){case a.utils.pluginPathType.ABSOLUTE:return k;case a.utils.pluginPathType.RELATIVE:if(b.lastIndexOf(".swf")>0){return a.utils.getAbsolutePath(k,window.location.href)}return a.utils.getAbsolutePath(k,e());case a.utils.pluginPathType.CDN:if(k.indexOf("-")>-1){return k+"h"}return k+"-h"}}return null};this.getJS=function(){return h};this.getPluginmode=function(){if(typeof k!="undefined"&&typeof h!="undefined"){return a.plugins.pluginmodes.HYBRID}else{if(typeof k!="undefined"){return a.plugins.pluginmodes.FLASH}else{if(typeof h!="undefined"){return a.plugins.pluginmodes.JAVASCRIPT}}}};this.getNewInstance=function(n,m,o){return new h(n,m,o)};this.getURL=function(){return b}}})(jwplayer);(function(a){a.plugins.pluginloader=function(h,e){var g={};var k=a.utils.loaderstatus.NEW;var d=false;var b=false;var c=new a.events.eventdispatcher();a.utils.extend(this,c);function f(){if(!b){b=true;k=a.utils.loaderstatus.COMPLETE;c.sendEvent(a.events.COMPLETE)}}function j(){if(!b){var m=0;for(plugin in g){var l=g[plugin].getStatus();if(l==a.utils.loaderstatus.LOADING||l==a.utils.loaderstatus.NEW){m++}}if(m==0){f()}}}this.setupPlugins=function(n,l,s){var m={length:0,plugins:{}};var p={length:0,plugins:{}};for(var o in g){var q=g[o].getPluginName();if(g[o].getFlashPath()){m.plugins[g[o].getFlashPath()]=l.plugins[o];m.plugins[g[o].getFlashPath()].pluginmode=g[o].getPluginmode();m.length++}if(g[o].getJS()){var r=document.createElement("div");r.id=n.id+"_"+q;r.style.position="absolute";r.style.zIndex=p.length+10;p.plugins[q]=g[o].getNewInstance(n,l.plugins[o],r);p.length++;if(typeof p.plugins[q].resize!="undefined"){n.onReady(s(p.plugins[q],r,true));n.onResize(s(p.plugins[q],r))}}}n.plugins=p.plugins;return m};this.load=function(){k=a.utils.loaderstatus.LOADING;d=true;for(var l in e){if(a.utils.exists(l)){g[l]=h.addPlugin(l);g[l].addEventListener(a.events.COMPLETE,j);g[l].addEventListener(a.events.ERROR,j)}}for(l in g){g[l].load()}d=false;j()};this.pluginFailed=function(){f()};this.getStatus=function(){return k}}})(jwplayer);(function(b){var a=[];b.api=function(d){this.container=d;this.id=d.id;var m={};var t={};var p={};var c=[];var g=undefined;var k=false;var h=[];var r=undefined;var o=b.utils.getOuterHTML(d);var s={};var j={};this.getBuffer=function(){return this.callInternal("jwGetBuffer")};this.getContainer=function(){return this.container};function e(v,u){return function(A,w,x,y){if(v.renderingMode=="flash"||v.renderingMode=="html5"){var z;if(w){j[A]=w;z="jwplayer('"+v.id+"').callback('"+A+"')"}else{if(!w&&j[A]){delete j[A]}}g.jwDockSetButton(A,z,x,y)}return u}}this.getPlugin=function(u){var w=this;var v={};if(u=="dock"){return b.utils.extend(v,{setButton:e(w,v),show:function(){w.callInternal("jwDockShow");return v},hide:function(){w.callInternal("jwDockHide");return v},onShow:function(x){w.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_SHOW,x);return v},onHide:function(x){w.componentListener("dock",b.api.events.JWPLAYER_COMPONENT_HIDE,x);return v}})}else{if(u=="controlbar"){return b.utils.extend(v,{show:function(){w.callInternal("jwControlbarShow");return v},hide:function(){w.callInternal("jwControlbarHide");return v},onShow:function(x){w.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_SHOW,x);return v},onHide:function(x){w.componentListener("controlbar",b.api.events.JWPLAYER_COMPONENT_HIDE,x);return v}})}else{if(u=="display"){return b.utils.extend(v,{show:function(){w.callInternal("jwDisplayShow");return v},hide:function(){w.callInternal("jwDisplayHide");return v},onShow:function(x){w.componentListener("display",b.api.events.JWPLAYER_COMPONENT_SHOW,x);return v},onHide:function(x){w.componentListener("display",b.api.events.JWPLAYER_COMPONENT_HIDE,x);return v}})}else{return this.plugins[u]}}}};this.callback=function(u){if(j[u]){return j[u]()}};this.getDuration=function(){return this.callInternal("jwGetDuration")};this.getFullscreen=function(){return this.callInternal("jwGetFullscreen")};this.getHeight=function(){return this.callInternal("jwGetHeight")};this.getLockState=function(){return this.callInternal("jwGetLockState")};this.getMeta=function(){return this.getItemMeta()};this.getMute=function(){return this.callInternal("jwGetMute")};this.getPlaylist=function(){var v=this.callInternal("jwGetPlaylist");if(this.renderingMode=="flash"){b.utils.deepReplaceKeyName(v,["__dot__","__spc__","__dsh__"],["."," ","-"])}for(var u=0;u<v.length;u++){if(!b.utils.exists(v[u].index)){v[u].index=u}}return v};this.getPlaylistItem=function(u){if(!b.utils.exists(u)){u=this.getCurrentItem()}return this.getPlaylist()[u]};this.getPosition=function(){return this.callInternal("jwGetPosition")};this.getRenderingMode=function(){return this.renderingMode};this.getState=function(){return this.callInternal("jwGetState")};this.getVolume=function(){return this.callInternal("jwGetVolume")};this.getWidth=function(){return this.callInternal("jwGetWidth")};this.setFullscreen=function(u){if(!b.utils.exists(u)){this.callInternal("jwSetFullscreen",!this.callInternal("jwGetFullscreen"))}else{this.callInternal("jwSetFullscreen",u)}return this};this.setMute=function(u){if(!b.utils.exists(u)){this.callInternal("jwSetMute",!this.callInternal("jwGetMute"))}else{this.callInternal("jwSetMute",u)}return this};this.lock=function(){return this};this.unlock=function(){return this};this.load=function(u){this.callInternal("jwLoad",u);return this};this.playlistItem=function(u){this.callInternal("jwPlaylistItem",u);return this};this.playlistPrev=function(){this.callInternal("jwPlaylistPrev");return this};this.playlistNext=function(){this.callInternal("jwPlaylistNext");return this};this.resize=function(v,u){if(this.renderingMode=="html5"){g.jwResize(v,u)}else{this.container.width=v;this.container.height=u;var w=document.getElementById(this.id+"_wrapper");if(w){w.style.width=v+"px";w.style.height=u+"px"}}return this};this.play=function(u){if(typeof u=="undefined"){u=this.getState();if(u==b.api.events.state.PLAYING||u==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPlay",u)}return this};this.pause=function(u){if(typeof u=="undefined"){u=this.getState();if(u==b.api.events.state.PLAYING||u==b.api.events.state.BUFFERING){this.callInternal("jwPause")}else{this.callInternal("jwPlay")}}else{this.callInternal("jwPause",u)}return this};this.stop=function(){this.callInternal("jwStop");return this};this.seek=function(u){this.callInternal("jwSeek",u);return this};this.setVolume=function(u){this.callInternal("jwSetVolume",u);return this};this.loadInstream=function(v,u){r=new b.api.instream(this,g,v,u);return r};this.onBufferChange=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER,u)};this.onBufferFull=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,u)};this.onError=function(u){return this.eventListener(b.api.events.JWPLAYER_ERROR,u)};this.onFullscreen=function(u){return this.eventListener(b.api.events.JWPLAYER_FULLSCREEN,u)};this.onMeta=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_META,u)};this.onMute=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_MUTE,u)};this.onPlaylist=function(u){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_LOADED,u)};this.onPlaylistItem=function(u){return this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,u)};this.onReady=function(u){return this.eventListener(b.api.events.API_READY,u)};this.onResize=function(u){return this.eventListener(b.api.events.JWPLAYER_RESIZE,u)};this.onComplete=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,u)};this.onSeek=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_SEEK,u)};this.onTime=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_TIME,u)};this.onVolume=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_VOLUME,u)};this.onBeforePlay=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BEFOREPLAY,u)};this.onBeforeComplete=function(u){return this.eventListener(b.api.events.JWPLAYER_MEDIA_BEFORECOMPLETE,u)};this.onBuffer=function(u){return this.stateListener(b.api.events.state.BUFFERING,u)};this.onPause=function(u){return this.stateListener(b.api.events.state.PAUSED,u)};this.onPlay=function(u){return this.stateListener(b.api.events.state.PLAYING,u)};this.onIdle=function(u){return this.stateListener(b.api.events.state.IDLE,u)};this.remove=function(){if(!k){throw"Cannot call remove() before player is ready";return}q(this)};function q(u){h=[];if(b.utils.getOuterHTML(u.container)!=o){b.api.destroyPlayer(u.id,o)}}this.setup=function(v){if(b.embed){var u=this.id;q(this);var w=b(u);w.config=v;return new b.embed(w)}return this};this.registerPlugin=function(w,v,u){b.plugins.registerPlugin(w,v,u)};this.setPlayer=function(u,v){g=u;this.renderingMode=v};this.stateListener=function(u,v){if(!t[u]){t[u]=[];this.eventListener(b.api.events.JWPLAYER_PLAYER_STATE,f(u))}t[u].push(v);return this};this.detachMedia=function(){if(this.renderingMode=="html5"){return this.callInternal("jwDetachMedia")}};this.attachMedia=function(){if(this.renderingMode=="html5"){return this.callInternal("jwAttachMedia")}};function f(u){return function(w){var v=w.newstate,y=w.oldstate;if(v==u){var x=t[v];if(x){for(var z=0;z<x.length;z++){if(typeof x[z]=="function"){x[z].call(this,{oldstate:y,newstate:v})}}}}}}this.componentListener=function(u,v,w){if(!p[u]){p[u]={}}if(!p[u][v]){p[u][v]=[];this.eventListener(v,l(u,v))}p[u][v].push(w);return this};function l(u,v){return function(x){if(u==x.component){var w=p[u][v];if(w){for(var y=0;y<w.length;y++){if(typeof w[y]=="function"){w[y].call(this,x)}}}}}}this.addInternalListener=function(u,v){try{u.jwAddEventListener(v,'function(dat) { jwplayer("'+this.id+'").dispatchEvent("'+v+'", dat); }')}catch(w){b.utils.log("Could not add internal listener")}};this.eventListener=function(u,v){if(!m[u]){m[u]=[];if(g&&k){this.addInternalListener(g,u)}}m[u].push(v);return this};this.dispatchEvent=function(w){if(m[w]){var v=_utils.translateEventResponse(w,arguments[1]);for(var u=0;u<m[w].length;u++){if(typeof m[w][u]=="function"){m[w][u].call(this,v)}}}};this.dispatchInstreamEvent=function(u){if(r){r.dispatchEvent(u,arguments)}};this.callInternal=function(){if(k){var w=arguments[0],u=[];for(var v=1;v<arguments.length;v++){u.push(arguments[v])}if(typeof g!="undefined"&&typeof g[w]=="function"){if(u.length==2){return(g[w])(u[0],u[1])}else{if(u.length==1){return(g[w])(u[0])}else{return(g[w])()}}}return null}else{h.push(arguments)}};this.playerReady=function(v){k=true;if(!g){this.setPlayer(document.getElementById(v.id))}this.container=document.getElementById(this.id);for(var u in m){this.addInternalListener(g,u)}this.eventListener(b.api.events.JWPLAYER_PLAYLIST_ITEM,function(w){s={}});this.eventListener(b.api.events.JWPLAYER_MEDIA_META,function(w){b.utils.extend(s,w.metadata)});this.dispatchEvent(b.api.events.API_READY);while(h.length>0){this.callInternal.apply(this,h.shift())}};this.getItemMeta=function(){return s};this.getCurrentItem=function(){return this.callInternal("jwGetPlaylistIndex")};function n(w,y,x){var u=[];if(!y){y=0}if(!x){x=w.length-1}for(var v=y;v<=x;v++){u.push(w[v])}return u}return this};b.api.selectPlayer=function(d){var c;if(!b.utils.exists(d)){d=0}if(d.nodeType){c=d}else{if(typeof d=="string"){c=document.getElementById(d)}}if(c){var e=b.api.playerById(c.id);if(e){return e}else{return b.api.addPlayer(new b.api(c))}}else{if(typeof d=="number"){return b.getPlayers()[d]}}return null};b.api.events={API_READY:"jwplayerAPIReady",JWPLAYER_READY:"jwplayerReady",JWPLAYER_FULLSCREEN:"jwplayerFullscreen",JWPLAYER_RESIZE:"jwplayerResize",JWPLAYER_ERROR:"jwplayerError",JWPLAYER_MEDIA_BEFOREPLAY:"jwplayerMediaBeforePlay",JWPLAYER_MEDIA_BEFORECOMPLETE:"jwplayerMediaBeforeComplete",JWPLAYER_COMPONENT_SHOW:"jwplayerComponentShow",JWPLAYER_COMPONENT_HIDE:"jwplayerComponentHide",JWPLAYER_MEDIA_BUFFER:"jwplayerMediaBuffer",JWPLAYER_MEDIA_BUFFER_FULL:"jwplayerMediaBufferFull",JWPLAYER_MEDIA_ERROR:"jwplayerMediaError",JWPLAYER_MEDIA_LOADED:"jwplayerMediaLoaded",JWPLAYER_MEDIA_COMPLETE:"jwplayerMediaComplete",JWPLAYER_MEDIA_SEEK:"jwplayerMediaSeek",JWPLAYER_MEDIA_TIME:"jwplayerMediaTime",JWPLAYER_MEDIA_VOLUME:"jwplayerMediaVolume",JWPLAYER_MEDIA_META:"jwplayerMediaMeta",JWPLAYER_MEDIA_MUTE:"jwplayerMediaMute",JWPLAYER_PLAYER_STATE:"jwplayerPlayerState",JWPLAYER_PLAYLIST_LOADED:"jwplayerPlaylistLoaded",JWPLAYER_PLAYLIST_ITEM:"jwplayerPlaylistItem",JWPLAYER_INSTREAM_CLICK:"jwplayerInstreamClicked",JWPLAYER_INSTREAM_DESTROYED:"jwplayerInstreamDestroyed"};b.api.events.state={BUFFERING:"BUFFERING",IDLE:"IDLE",PAUSED:"PAUSED",PLAYING:"PLAYING"};b.api.playerById=function(d){for(var c=0;c<a.length;c++){if(a[c].id==d){return a[c]}}return null};b.api.addPlayer=function(c){for(var d=0;d<a.length;d++){if(a[d]==c){return c}}a.push(c);return c};b.api.destroyPlayer=function(g,d){var f=-1;for(var j=0;j<a.length;j++){if(a[j].id==g){f=j;continue}}if(f>=0){var c=document.getElementById(a[f].id);if(document.getElementById(a[f].id+"_wrapper")){c=document.getElementById(a[f].id+"_wrapper")}if(c){if(d){b.utils.setOuterHTML(c,d)}else{var h=document.createElement("div");var e=c.id;if(c.id.indexOf("_wrapper")==c.id.length-8){newID=c.id.substring(0,c.id.length-8)}h.setAttribute("id",e);c.parentNode.replaceChild(h,c)}}a.splice(f,1)}return null};b.getPlayers=function(){return a.slice(0)}})(jwplayer);var _userPlayerReady=(typeof playerReady=="function")?playerReady:undefined;playerReady=function(b){var a=jwplayer.api.playerById(b.id);if(a){a.playerReady(b)}else{jwplayer.api.selectPlayer(b.id).playerReady(b)}if(_userPlayerReady){_userPlayerReady.call(this,b)}};(function(a){a.api.instream=function(c,j,n,q){var h=c;var b=j;var g=n;var k=q;var e={};var p={};function f(){h.callInternal("jwLoadInstream",n,q)}function m(r,s){b.jwInstreamAddEventListener(s,'function(dat) { jwplayer("'+h.id+'").dispatchInstreamEvent("'+s+'", dat); }')}function d(r,s){if(!e[r]){e[r]=[];m(b,r)}e[r].push(s);return this}function o(r,s){if(!p[r]){p[r]=[];d(a.api.events.JWPLAYER_PLAYER_STATE,l(r))}p[r].push(s);return this}function l(r){return function(t){var s=t.newstate,v=t.oldstate;if(s==r){var u=p[s];if(u){for(var w=0;w<u.length;w++){if(typeof u[w]=="function"){u[w].call(this,{oldstate:v,newstate:s,type:t.type})}}}}}}this.dispatchEvent=function(u,t){if(e[u]){var s=_utils.translateEventResponse(u,t[1]);for(var r=0;r<e[u].length;r++){if(typeof e[u][r]=="function"){e[u][r].call(this,s)}}}};this.onError=function(r){return d(a.api.events.JWPLAYER_ERROR,r)};this.onFullscreen=function(r){return d(a.api.events.JWPLAYER_FULLSCREEN,r)};this.onMeta=function(r){return d(a.api.events.JWPLAYER_MEDIA_META,r)};this.onMute=function(r){return d(a.api.events.JWPLAYER_MEDIA_MUTE,r)};this.onComplete=function(r){return d(a.api.events.JWPLAYER_MEDIA_COMPLETE,r)};this.onSeek=function(r){return d(a.api.events.JWPLAYER_MEDIA_SEEK,r)};this.onTime=function(r){return d(a.api.events.JWPLAYER_MEDIA_TIME,r)};this.onVolume=function(r){return d(a.api.events.JWPLAYER_MEDIA_VOLUME,r)};this.onBuffer=function(r){return o(a.api.events.state.BUFFERING,r)};this.onPause=function(r){return o(a.api.events.state.PAUSED,r)};this.onPlay=function(r){return o(a.api.events.state.PLAYING,r)};this.onIdle=function(r){return o(a.api.events.state.IDLE,r)};this.onInstreamClick=function(r){return d(a.api.events.JWPLAYER_INSTREAM_CLICK,r)};this.onInstreamDestroyed=function(r){return d(a.api.events.JWPLAYER_INSTREAM_DESTROYED,r)};this.play=function(r){b.jwInstreamPlay(r)};this.pause=function(r){b.jwInstreamPause(r)};this.seek=function(r){b.jwInstreamSeek(r)};this.destroy=function(){b.jwInstreamDestroy()};this.getState=function(){return b.jwInstreamGetState()};this.getDuration=function(){return b.jwInstreamGetDuration()};this.getPosition=function(){return b.jwInstreamGetPosition()};f()}})(jwplayer);(function(a){var c=a.utils;a.embed=function(h){var k={width:400,height:300,components:{controlbar:{position:"over"}}};var g=c.mediaparser.parseMedia(h.container);var f=new a.embed.config(c.extend(k,g,h.config),this);var j=a.plugins.loadPlugins(h.id,f.plugins);function d(n,m){for(var l in m){if(typeof n[l]=="function"){(n[l]).call(n,m[l])}}}function e(){if(j.getStatus()==c.loaderstatus.COMPLETE){for(var n=0;n<f.modes.length;n++){if(f.modes[n].type&&a.embed[f.modes[n].type]){var p=f.modes[n].config;var t=f;if(p){t=c.extend(c.clone(f),p);var s=["file","levels","playlist"];for(var m=0;m<s.length;m++){var q=s[m];if(c.exists(p[q])){for(var l=0;l<s.length;l++){if(l!=m){var o=s[l];if(c.exists(t[o])&&!c.exists(p[o])){delete t[o]}}}}}}var r=new a.embed[f.modes[n].type](document.getElementById(h.id),f.modes[n],t,j,h);if(r.supportsConfig()){r.embed();d(h,f.events);return h}}}c.log("No suitable players found");new a.embed.logo(c.extend({hide:true},f.components.logo),"none",h.id)}}j.addEventListener(a.events.COMPLETE,e);j.addEventListener(a.events.ERROR,e);j.load();return h};function b(){if(!document.body){return setTimeout(b,15)}var d=c.selectors.getElementsByTagAndClass("video","jwplayer");for(var e=0;e<d.length;e++){var f=d[e];if(f.id==""){f.id="jwplayer_"+Math.round(Math.random()*100000)}a(f.id).setup({})}}b()})(jwplayer);(function(e){var k=e.utils;function h(m){var l=[{type:"flash",src:m?m:"/jwplayer/player.swf"},{type:"html5"},{type:"download"}];if(k.isAndroid()){l[0]=l.splice(1,1,l[0])[0]}return l}var a={players:"modes",autoplay:"autostart"};function b(o){var n=o.toLowerCase();var m=["left","right","top","bottom"];for(var l=0;l<m.length;l++){if(n==m[l]){return true}}return false}function c(m){var l=false;l=(m instanceof Array)||(typeof m=="object"&&!m.position&&!m.size);return l}function j(l){if(typeof l=="string"){if(parseInt(l).toString()==l||l.toLowerCase().indexOf("px")>-1){return parseInt(l)}}return l}var g=["playlist","dock","controlbar","logo","display"];function f(l){var o={};switch(k.typeOf(l.plugins)){case"object":for(var n in l.plugins){o[k.getPluginName(n)]=n}break;case"string":var p=l.plugins.split(",");for(var m=0;m<p.length;m++){o[k.getPluginName(p[m])]=p[m]}break}return o}function d(p,o,n,l){if(k.typeOf(p[o])!="object"){p[o]={}}var m=p[o][n];if(k.typeOf(m)!="object"){p[o][n]=m={}}if(l){if(o=="plugins"){var q=k.getPluginName(n);m[l]=p[q+"."+l];delete p[q+"."+l]}else{m[l]=p[n+"."+l];delete p[n+"."+l]}}}e.embed.deserialize=function(m){var n=f(m);for(var l in n){d(m,"plugins",n[l])}for(var q in m){if(q.indexOf(".")>-1){var p=q.split(".");var o=p[0];var q=p[1];if(k.isInArray(g,o)){d(m,"components",o,q)}else{if(n[o]){d(m,"plugins",n[o],q)}}}}return m};e.embed.config=function(l,v){var u=k.extend({},l);var s;if(c(u.playlist)){s=u.playlist;delete u.playlist}u=e.embed.deserialize(u);u.height=j(u.height);u.width=j(u.width);if(typeof u.plugins=="string"){var m=u.plugins.split(",");if(typeof u.plugins!="object"){u.plugins={}}for(var q=0;q<m.length;q++){var r=k.getPluginName(m[q]);if(typeof u[r]=="object"){u.plugins[m[q]]=u[r];delete u[r]}else{u.plugins[m[q]]={}}}}for(var t=0;t<g.length;t++){var p=g[t];if(k.exists(u[p])){if(typeof u[p]!="object"){if(!u.components[p]){u.components[p]={}}if(p=="logo"){u.components[p].file=u[p]}else{u.components[p].position=u[p]}delete u[p]}else{if(!u.components[p]){u.components[p]={}}k.extend(u.components[p],u[p]);delete u[p]}}if(typeof u[p+"size"]!="undefined"){if(!u.components[p]){u.components[p]={}}u.components[p].size=u[p+"size"];delete u[p+"size"]}}if(typeof u.icons!="undefined"){if(!u.components.display){u.components.display={}}u.components.display.icons=u.icons;delete u.icons}for(var o in a){if(u[o]){if(!u[a[o]]){u[a[o]]=u[o]}delete u[o]}}var n;if(u.flashplayer&&!u.modes){n=h(u.flashplayer);delete u.flashplayer}else{if(u.modes){if(typeof u.modes=="string"){n=h(u.modes)}else{if(u.modes instanceof Array){n=u.modes}else{if(typeof u.modes=="object"&&u.modes.type){n=[u.modes]}}}delete u.modes}else{n=h()}}u.modes=n;if(s){u.playlist=s}return u}})(jwplayer);(function(a){a.embed.download=function(c,g,b,d,f){this.embed=function(){var k=a.utils.extend({},b);var q={};var j=b.width?b.width:480;if(typeof j!="number"){j=parseInt(j,10)}var m=b.height?b.height:320;if(typeof m!="number"){m=parseInt(m,10)}var u,o,n;var s={};if(b.playlist&&b.playlist.length){s.file=b.playlist[0].file;o=b.playlist[0].image;s.levels=b.playlist[0].levels}else{s.file=b.file;o=b.image;s.levels=b.levels}if(s.file){u=s.file}else{if(s.levels&&s.levels.length){u=s.levels[0].file}}n=u?"pointer":"auto";var l={display:{style:{cursor:n,width:j,height:m,backgroundColor:"#000",position:"relative",textDecoration:"none",border:"none",display:"block"}},display_icon:{style:{cursor:n,position:"absolute",display:u?"block":"none",top:0,left:0,border:0,margin:0,padding:0,zIndex:3,width:50,height:50,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdJREFUeNrs18ENgjAYhmFouDOCcQJGcARHgE10BDcgTOIosAGwQOuPwaQeuFRi2p/3Sb6EC5L3QCxZBgAAAOCorLW1zMn65TrlkH4NcV7QNcUQt7Gn7KIhxA+qNIR81spOGkL8oFJDyLJRdosqKDDkK+iX5+d7huzwM40xptMQMkjIOeRGo+VkEVvIPfTGIpKASfYIfT9iCHkHrBEzf4gcUQ56aEzuGK/mw0rHpy4AAACAf3kJMACBxjAQNRckhwAAAABJRU5ErkJggg==)"}},display_iconBackground:{style:{cursor:n,position:"absolute",display:u?"block":"none",top:((m-50)/2),left:((j-50)/2),border:0,width:50,height:50,margin:0,padding:0,zIndex:2,backgroundImage:"url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEpJREFUeNrszwENADAIA7DhX8ENoBMZ5KR10EryckCJiIiIiIiIiIiIiIiIiIiIiIh8GmkRERERERERERERERERERERERGRHSPAAPlXH1phYpYaAAAAAElFTkSuQmCC)"}},display_image:{style:{width:j,height:m,display:o?"block":"none",position:"absolute",cursor:n,left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1,border:"none"}}};var h=function(v,x,y){var w=document.createElement(v);if(y){w.id=y}else{w.id=c.id+"_jwplayer_"+x}a.utils.css(w,l[x].style);return w};q.display=h("a","display",c.id);if(u){q.display.setAttribute("href",a.utils.getAbsolutePath(u))}q.display_image=h("img","display_image");q.display_image.setAttribute("alt","Click to download...");if(o){q.display_image.setAttribute("src",a.utils.getAbsolutePath(o))}if(true){q.display_icon=h("div","display_icon");q.display_iconBackground=h("div","display_iconBackground");q.display.appendChild(q.display_image);q.display_iconBackground.appendChild(q.display_icon);q.display.appendChild(q.display_iconBackground)}_css=a.utils.css;_hide=function(v){_css(v,{display:"none"})};function r(v){_imageWidth=q.display_image.naturalWidth;_imageHeight=q.display_image.naturalHeight;t()}function t(){a.utils.stretch(a.utils.stretching.UNIFORM,q.display_image,j,m,_imageWidth,_imageHeight)}q.display_image.onerror=function(v){_hide(q.display_image)};q.display_image.onload=r;c.parentNode.replaceChild(q.display,c);var p=(b.plugins&&b.plugins.logo)?b.plugins.logo:{};q.display.appendChild(new a.embed.logo(b.components.logo,"download",c.id));f.container=document.getElementById(f.id);f.setPlayer(q.display,"download")};this.supportsConfig=function(){if(b){var j=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof j.file=="undefined"&&typeof j.levels=="undefined"){return true}else{if(j.file){return e(j.file,j.provider,j.playlistfile)}else{if(j.levels&&j.levels.length){for(var h=0;h<j.levels.length;h++){if(j.levels[h].file&&e(j.levels[h].file,j.provider,j.playlistfile)){return true}}}}}}else{return true}};function e(j,l,h){if(h){return false}var k=["image","sound","youtube","http"];if(l&&(k.toString().indexOf(l)>-1)){return true}if(!l||(l&&l=="video")){var m=a.utils.extension(j);if(m&&a.utils.extensionmap[m]){return true}}return false}}})(jwplayer);(function(a){a.embed.flash=function(f,g,l,e,j){function m(o,n,p){var q=document.createElement("param");q.setAttribute("name",n);q.setAttribute("value",p);o.appendChild(q)}function k(o,p,n){return function(q){if(n){document.getElementById(j.id+"_wrapper").appendChild(p)}var s=document.getElementById(j.id).getPluginConfig("display");o.resize(s.width,s.height);var r={left:s.x,top:s.y};a.utils.css(p,r)}}function d(p){if(!p){return{}}var r={};for(var o in p){var n=p[o];for(var q in n){r[o+"."+q]=n[q]}}return r}function h(q,p){if(q[p]){var s=q[p];for(var o in s){var n=s[o];if(typeof n=="string"){if(!q[o]){q[o]=n}}else{for(var r in n){if(!q[o+"."+r]){q[o+"."+r]=n[r]}}}}delete q[p]}}function b(q){if(!q){return{}}var t={},s=[];for(var n in q){var p=a.utils.getPluginName(n);var o=q[n];s.push(n);for(var r in o){t[p+"."+r]=o[r]}}t.plugins=s.join(",");return t}function c(p){var n=p.netstreambasepath?"":"netstreambasepath="+encodeURIComponent(window.location.href.split("#")[0])+"&";for(var o in p){if(typeof(p[o])=="object"){n+=o+"="+encodeURIComponent("[[JSON]]"+a.utils.strings.jsonToString(p[o]))+"&"}else{n+=o+"="+encodeURIComponent(p[o])+"&"}}return n.substring(0,n.length-1)}this.embed=function(){l.id=j.id;var A;var r=a.utils.extend({},l);var o=r.width;var y=r.height;if(f.id+"_wrapper"==f.parentNode.id){A=document.getElementById(f.id+"_wrapper")}else{A=document.createElement("div");A.id=f.id+"_wrapper";a.utils.wrap(f,A);a.utils.css(A,{position:"relative",width:o,height:y})}var p=e.setupPlugins(j,r,k);if(p.length>0){a.utils.extend(r,b(p.plugins))}else{delete r.plugins}var s=["height","width","modes","events"];for(var v=0;v<s.length;v++){delete r[s[v]]}var q="opaque";if(r.wmode){q=r.wmode}h(r,"components");h(r,"providers");if(typeof r["dock.position"]!="undefined"){if(r["dock.position"].toString().toLowerCase()=="false"){r.dock=r["dock.position"];delete r["dock.position"]}}var x=a.utils.getCookies();for(var n in x){if(typeof(r[n])=="undefined"){r[n]=x[n]}}var z="#000000";var u;if(a.utils.isIE()){var w='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" bgcolor="'+z+'" width="100%" height="100%" id="'+f.id+'" name="'+f.id+'" tabindex=0"">';w+='<param name="movie" value="'+g.src+'">';w+='<param name="allowfullscreen" value="true">';w+='<param name="allowscriptaccess" value="always">';w+='<param name="seamlesstabbing" value="true">';w+='<param name="wmode" value="'+q+'">';w+='<param name="flashvars" value="'+c(r)+'">';w+="</object>";a.utils.setOuterHTML(f,w);u=document.getElementById(f.id)}else{var t=document.createElement("object");t.setAttribute("type","application/x-shockwave-flash");t.setAttribute("data",g.src);t.setAttribute("width","100%");t.setAttribute("height","100%");t.setAttribute("bgcolor","#000000");t.setAttribute("id",f.id);t.setAttribute("name",f.id);t.setAttribute("tabindex",0);m(t,"allowfullscreen","true");m(t,"allowscriptaccess","always");m(t,"seamlesstabbing","true");m(t,"wmode",q);m(t,"flashvars",c(r));f.parentNode.replaceChild(t,f);u=t}j.container=u;j.setPlayer(u,"flash")};this.supportsConfig=function(){if(a.utils.hasFlash()){if(l){var o=a.utils.getFirstPlaylistItemFromConfig(l);if(typeof o.file=="undefined"&&typeof o.levels=="undefined"){return true}else{if(o.file){return flashCanPlay(o.file,o.provider)}else{if(o.levels&&o.levels.length){for(var n=0;n<o.levels.length;n++){if(o.levels[n].file&&flashCanPlay(o.levels[n].file,o.provider)){return true}}}}}}else{return true}}return false};flashCanPlay=function(n,p){var o=["video","http","sound","image"];if(p&&(o.toString().indexOf(p)<0)){return true}var q=a.utils.extension(n);if(!q){return true}if(a.utils.exists(a.utils.extensionmap[q])&&!a.utils.exists(a.utils.extensionmap[q].flash)){return false}return true}}})(jwplayer);(function(a){a.embed.html5=function(c,g,b,d,f){function e(j,k,h){return function(l){var m=document.getElementById(c.id+"_displayarea");if(h){m.appendChild(k)}j.resize(m.clientWidth,m.clientHeight);k.left=m.style.left;k.top=m.style.top}}this.embed=function(){if(a.html5){d.setupPlugins(f,b,e);c.innerHTML="";var j=a.utils.extend({screencolor:"0x000000"},b);var h=["plugins","modes","events"];for(var k=0;k<h.length;k++){delete j[h[k]]}if(j.levels&&!j.sources){j.sources=b.levels}if(j.skin&&j.skin.toLowerCase().indexOf(".zip")>0){j.skin=j.skin.replace(/\.zip/i,".xml")}var l=new (a.html5(c)).setup(j);f.container=document.getElementById(f.id);f.setPlayer(l,"html5")}else{return null}};this.supportsConfig=function(){if(!!a.vid.canPlayType){if(b){var j=a.utils.getFirstPlaylistItemFromConfig(b);if(typeof j.file=="undefined"&&typeof j.levels=="undefined"){return true}else{if(j.file){return html5CanPlay(a.vid,j.file,j.provider,j.playlistfile)}else{if(j.levels&&j.levels.length){for(var h=0;h<j.levels.length;h++){if(j.levels[h].file&&html5CanPlay(a.vid,j.levels[h].file,j.provider,j.playlistfile)){return true}}}}}}else{return true}}return false};html5CanPlay=function(k,j,l,h){if(h){return false}if(l&&l=="youtube"){return true}if(l&&l!="video"&&l!="http"&&l!="sound"){return false}if(navigator.userAgent.match(/BlackBerry/i)!==null){return false}var m=a.utils.extension(j);if(!a.utils.exists(m)||!a.utils.exists(a.utils.extensionmap[m])){return true}if(!a.utils.exists(a.utils.extensionmap[m].html5)){return false}if(a.utils.isLegacyAndroid()&&m.match(/m4v|mp4/)){return true}return browserCanPlay(k,a.utils.extensionmap[m].html5)};browserCanPlay=function(j,h){if(!h){return true}if(j.canPlayType(h)){return true}else{if(h=="audio/mp3"&&navigator.userAgent.match(/safari/i)){return j.canPlayType("audio/mpeg")}else{return false}}}}})(jwplayer);(function(a){a.embed.logo=function(m,l,d){var j={prefix:"http://l.longtailvideo.com/"+l+"/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",linktarget:"_top",margin:8,out:0.5,over:1,timeout:5,hide:false,position:"bottom-left"};_css=a.utils.css;var b;var h;k();function k(){o();c();f()}function o(){if(j.prefix){var q=a.version.split(/\W/).splice(0,2).join("/");if(j.prefix.indexOf(q)<0){j.prefix+=q+"/"}}h=a.utils.extend({},j)}function p(){var s={border:"none",textDecoration:"none",position:"absolute",cursor:"pointer",zIndex:10};s.display=h.hide?"none":"block";var r=h.position.toLowerCase().split("-");for(var q in r){s[r[q]]=h.margin}return s}function c(){b=document.createElement("img");b.id=d+"_jwplayer_logo";b.style.display="none";b.onload=function(q){_css(b,p());e()};if(!h.file){return}if(h.file.indexOf("http://")===0){b.src=h.file}else{b.src=h.prefix+h.file}}if(!h.file){return}function f(){if(h.link){b.onmouseover=g;b.onmouseout=e;b.onclick=n}else{this.mouseEnabled=false}}function n(q){if(typeof q!="undefined"){q.preventDefault();q.stopPropagation()}if(h.link){window.open(h.link,h.linktarget)}return}function e(q){if(h.link){b.style.opacity=h.out}return}function g(q){if(h.hide){b.style.opacity=h.over}return}return b}})(jwplayer);(function(a){a.html5=function(b){var c=b;this.setup=function(d){a.utils.extend(this,new a.html5.api(c,d));return this};return this}})(jwplayer);(function(a){var c=a.utils;var b=c.css;a.html5.view=function(l,D,g){var k=l;var v=D;var h=g;var M;var f;var q;var m;var B;var L;var K;var A=false;var u=false;var x,J;var e,N,r;function H(){M=document.createElement("div");M.id=v.id;M.className=v.className;_videowrapper=document.createElement("div");_videowrapper.id=M.id+"_video_wrapper";v.id=M.id+"_video";b(M,{position:"relative",height:h.height,width:h.width,padding:0,backgroundColor:P(),zIndex:0});function P(){if(k.skin.getComponentSettings("display")&&k.skin.getComponentSettings("display").backgroundcolor){return k.skin.getComponentSettings("display").backgroundcolor}return parseInt("000000",16)}b(v,{width:"100%",height:"100%",top:0,left:0,zIndex:1,margin:"auto",display:"block"});b(_videowrapper,{overflow:"hidden",position:"absolute",top:0,left:0,bottom:0,right:0});c.wrap(v,M);c.wrap(v,_videowrapper);m=document.createElement("div");m.id=M.id+"_displayarea";M.appendChild(m);_instreamArea=document.createElement("div");_instreamArea.id=M.id+"_instreamarea";b(_instreamArea,{overflow:"hidden",position:"absolute",top:0,left:0,bottom:0,right:0,zIndex:100,background:"000000",display:"none"});M.appendChild(_instreamArea)}function G(){for(var P=0;P<h.plugins.order.length;P++){var Q=h.plugins.order[P];if(c.exists(h.plugins.object[Q].getDisplayElement)){h.plugins.object[Q].height=c.parseDimension(h.plugins.object[Q].getDisplayElement().style.height);h.plugins.object[Q].width=c.parseDimension(h.plugins.object[Q].getDisplayElement().style.width);h.plugins.config[Q].currentPosition=h.plugins.config[Q].position}}s()}function p(P){u=h.fullscreen}function n(P){if(N){return}if(h.getMedia()&&h.getMedia().hasChrome()){m.style.display="none"}else{switch(P.newstate){case P.newstate==a.api.events.state.PLAYING:m.style.display="none";break;default:m.style.display="block";break}}j()}function s(Q){var S=h.getMedia()?h.getMedia().getDisplayElement():null;if(c.exists(S)){if(K!=S){if(K&&K.parentNode){K.parentNode.replaceChild(S,K)}K=S}for(var P=0;P<h.plugins.order.length;P++){var R=h.plugins.order[P];if(c.exists(h.plugins.object[R].getDisplayElement)){h.plugins.config[R].currentPosition=h.plugins.config[R].position}}}C(h.width,h.height)}this.setup=function(){if(h&&h.getMedia()){v=h.getMedia().getDisplayElement()}H();G();k.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,n);k.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_LOADED,s);k.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_BEFOREPLAY,p);k.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_META,function(Q){j()});var P;if(c.exists(window.onresize)){P=window.onresize}window.onresize=function(Q){if(c.exists(P)){try{P(Q)}catch(S){}}if(k.jwGetFullscreen()){if(!y()){var R=c.getBoundingClientRect(document.body);h.width=Math.abs(R.left)+Math.abs(R.right);h.height=window.innerHeight;C(h.width,h.height)}}else{C(h.width,h.height)}}};function I(P){switch(P.keyCode){case 27:if(k.jwGetFullscreen()){k.jwSetFullscreen(false)}break;case 32:if(k.jwGetState()!=a.api.events.state.IDLE&&k.jwGetState()!=a.api.events.state.PAUSED){k.jwPause()}else{k.jwPlay()}break}}function C(P,Y){if(M.style.display=="none"){return}var S=[].concat(h.plugins.order);S.reverse();B=S.length+2;if(u&&y()){try{if(h.fullscreen&&!h.getMedia().getDisplayElement().webkitDisplayingFullscreen){h.fullscreen=false}}catch(V){}}if(!h.fullscreen){f=P;q=Y;if(typeof P=="string"&&P.indexOf("%")>0){f=c.getElementWidth(c.parentNode(M))*parseInt(P.replace("%"),"")/100}else{f=P}if(typeof Y=="string"&&Y.indexOf("%")>0){q=c.getElementHeight(c.parentNode(M))*parseInt(Y.replace("%"),"")/100}else{q=Y}var T={top:0,bottom:0,left:0,right:0,width:f,height:q,position:"absolute"};b(m,T);var Z={};var W;try{W=h.plugins.object.display.getDisplayElement()}catch(V){}if(W){Z.width=c.parseDimension(W.style.width);Z.height=c.parseDimension(W.style.height)}var X=c.extend({},T,Z,{zIndex:_instreamArea.style.zIndex,display:_instreamArea.style.display});b(_instreamArea,X);b(M,{height:q,width:f});var U=t(E,S);if(U.length>0){B+=U.length;var R=U.indexOf("playlist"),Q=U.indexOf("controlbar");if(R>=0&&Q>=0){U[R]=U.splice(Q,1,U[R])[0]}t(o,U,true)}x=c.getElementWidth(m);J=c.getElementHeight(m)}else{if(!y()){t(d,S,true)}}j()}function t(W,S,T){var U=[];for(var R=0;R<S.length;R++){var V=S[R];if(c.exists(h.plugins.object[V].getDisplayElement)){if(h.plugins.config[V].currentPosition!=a.html5.view.positions.NONE){var P=W(V,B--);if(!P){U.push(V)}else{var Q=P.width;var X=P.height;if(T){delete P.width;delete P.height}b(h.plugins.object[V].getDisplayElement(),P);h.plugins.object[V].resize(Q,X)}}else{b(h.plugins.object[V].getDisplayElement(),{display:"none"})}}}return U}function E(Q,R){if(c.exists(h.plugins.object[Q].getDisplayElement)){if(h.plugins.config[Q].position&&O(h.plugins.config[Q].position)){if(!c.exists(h.plugins.object[Q].getDisplayElement().parentNode)){M.appendChild(h.plugins.object[Q].getDisplayElement())}var P=w(Q);P.zIndex=R;return P}}return false}function o(P,Q){if(!c.exists(h.plugins.object[P].getDisplayElement().parentNode)){m.appendChild(h.plugins.object[P].getDisplayElement())}return{position:"absolute",width:(c.getElementWidth(m)-c.parseDimension(m.style.right)),height:(c.getElementHeight(m)-c.parseDimension(m.style.bottom)),zIndex:Q}}function d(P,Q){return{position:"fixed",width:h.width,height:h.height,zIndex:Q}}var j=this.resizeMedia=function(){m.style.position="absolute";var R=h.getMedia()?h.getMedia().getDisplayElement():r;if(!R){return}if(R&&R.tagName.toLowerCase()=="video"){if(!R.videoWidth||!R.videoHeight){R.style.width=m.style.width;R.style.height=m.style.height;return}R.style.position="absolute";c.fadeTo(R,1,0.25);if(R.parentNode){R.parentNode.style.left=m.style.left;R.parentNode.style.top=m.style.top}if(h.fullscreen&&k.jwGetStretching()==a.utils.stretching.EXACTFIT&&!c.isMobile()){var P=document.createElement("div");c.stretch(a.utils.stretching.UNIFORM,P,c.getElementWidth(m),c.getElementHeight(m),x,J);c.stretch(a.utils.stretching.EXACTFIT,R,c.parseDimension(P.style.width),c.parseDimension(P.style.height),R.videoWidth?R.videoWidth:400,R.videoHeight?R.videoHeight:300);b(R,{left:P.style.left,top:P.style.top})}else{c.stretch(k.jwGetStretching(),R,c.getElementWidth(m),c.getElementHeight(m),R.videoWidth?R.videoWidth:400,R.videoHeight?R.videoHeight:300)}}else{var Q=h.plugins.object.display.getDisplayElement();if(Q){h.getMedia().resize(c.parseDimension(Q.style.width),c.parseDimension(Q.style.height))}else{h.getMedia().resize(c.parseDimension(m.style.width),c.parseDimension(m.style.height))}}};var w=this.getComponentPosition=function(Q){var R={position:"absolute",margin:0,padding:0,top:null};var P=h.plugins.config[Q].currentPosition.toLowerCase();switch(P.toUpperCase()){case a.html5.view.positions.TOP:R.top=c.parseDimension(m.style.top);R.left=c.parseDimension(m.style.left);R.width=c.getElementWidth(m)-c.parseDimension(m.style.left)-c.parseDimension(m.style.right);R.height=h.plugins.object[Q].height;m.style[P]=c.parseDimension(m.style[P])+h.plugins.object[Q].height+"px";m.style.height=c.getElementHeight(m)-R.height+"px";break;case a.html5.view.positions.RIGHT:R.top=c.parseDimension(m.style.top);R.right=c.parseDimension(m.style.right);R.width=h.plugins.object[Q].width;R.height=c.getElementHeight(m)-c.parseDimension(m.style.top)-c.parseDimension(m.style.bottom);m.style.width=c.getElementWidth(m)-R.width+"px";break;case a.html5.view.positions.BOTTOM:R.bottom=c.parseDimension(m.style.bottom);R.left=c.parseDimension(m.style.left);R.width=c.getElementWidth(m)-c.parseDimension(m.style.left)-c.parseDimension(m.style.right);R.height=h.plugins.object[Q].height;m.style.height=c.getElementHeight(m)-R.height+"px";break;case a.html5.view.positions.LEFT:R.top=c.parseDimension(m.style.top);R.left=c.parseDimension(m.style.left);R.width=h.plugins.object[Q].width;R.height=c.getElementHeight(m)-c.parseDimension(m.style.top)-c.parseDimension(m.style.bottom);m.style[P]=c.parseDimension(m.style[P])+h.plugins.object[Q].width+"px";m.style.width=c.getElementWidth(m)-R.width+"px";break;default:break}return R};this.resize=C;var F;this.fullscreen=function(S){var U;try{U=h.getMedia().getDisplayElement()}catch(T){}if(y()&&U&&U.webkitSupportsFullscreen){if(S&&!U.webkitDisplayingFullscreen){try{c.transform(U);F=m.style.display;m.style.display="none";U.webkitEnterFullscreen()}catch(R){}}else{if(!S){j();if(U.webkitDisplayingFullscreen){try{U.webkitExitFullscreen()}catch(R){}}m.style.display=F}}A=false}else{if(S){document.onkeydown=I;clearInterval(L);var Q=c.getBoundingClientRect(document.body);h.width=Math.abs(Q.left)+Math.abs(Q.right);h.height=window.innerHeight;var P={position:"fixed",width:"100%",height:"100%",top:0,left:0,zIndex:2147483000};b(M,P);P.zIndex=1;if(h.getMedia()&&h.getMedia().getDisplayElement()){b(h.getMedia().getDisplayElement(),P)}P.zIndex=2;b(m,P);A=true}else{document.onkeydown="";h.width=f;h.height=q;b(M,{position:"relative",height:h.height,width:h.width,zIndex:0});A=false}C(h.width,h.height)}};function O(P){return([a.html5.view.positions.TOP,a.html5.view.positions.RIGHT,a.html5.view.positions.BOTTOM,a.html5.view.positions.LEFT].toString().indexOf(P.toUpperCase())>-1)}function y(){if(k.jwGetState()!=a.api.events.state.IDLE&&!A&&(h.getMedia()&&h.getMedia().getDisplayElement()&&h.getMedia().getDisplayElement().webkitSupportsFullscreen)&&c.useNativeFullscreen()){return true}return false}this.setupInstream=function(P,Q){c.css(_instreamArea,{display:"block",position:"absolute"});m.style.display="none";_instreamArea.appendChild(P);r=Q;N=true};var z=this.destroyInstream=function(){_instreamArea.style.display="none";_instreamArea.innerHTML="";m.style.display="block";r=null;N=false;C(h.width,h.height)}};a.html5.view.positions={TOP:"TOP",RIGHT:"RIGHT",BOTTOM:"BOTTOM",LEFT:"LEFT",OVER:"OVER",NONE:"NONE"}})(jwplayer);(function(a){var b={backgroundcolor:"",margin:10,font:"Arial,sans-serif",fontsize:10,fontcolor:parseInt("000000",16),fontstyle:"normal",fontweight:"bold",buttoncolor:parseInt("ffffff",16),position:a.html5.view.positions.BOTTOM,idlehide:false,hideplaylistcontrols:false,forcenextprev:false,layout:{left:{position:"left",elements:[{name:"play",type:"button"},{name:"divider",type:"divider"},{name:"prev",type:"button"},{name:"divider",type:"divider"},{name:"next",type:"button"},{name:"divider",type:"divider"},{name:"elapsed",type:"text"}]},center:{position:"center",elements:[{name:"time",type:"slider"}]},right:{position:"right",elements:[{name:"duration",type:"text"},{name:"blank",type:"button"},{name:"divider",type:"divider"},{name:"mute",type:"button"},{name:"volume",type:"slider"},{name:"divider",type:"divider"},{name:"fullscreen",type:"button"}]}}};_utils=a.utils;_css=_utils.css;_hide=function(c){_css(c,{display:"none"})};_show=function(c){_css(c,{display:"block"})};a.html5.controlbar=function(m,X){window.controlbar=this;var l=m;var D=_utils.extend({},b,l.skin.getComponentSettings("controlbar"),X);if(D.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[D.position]=="undefined"){return}if(_utils.mapLength(l.skin.getComponentLayout("controlbar"))>0){D.layout=l.skin.getComponentLayout("controlbar")}var af;var Q;var ae;var E;var w="none";var h;var k;var ag;var g;var f;var z;var R={};var q=false;var c={};var ab;var j=false;var p;var d;var U=false;var G=false;var H;var Z=new a.html5.eventdispatcher();_utils.extend(this,Z);function K(){if(!ab){ab=l.skin.getSkinElement("controlbar","background");if(!ab){ab={width:0,height:0,src:null}}}return ab}function O(){ae=0;E=0;Q=0;if(!q){var ao={height:K().height,backgroundColor:D.backgroundcolor};af=document.createElement("div");af.id=l.id+"_jwplayer_controlbar";_css(af,ao)}var an=(l.skin.getSkinElement("controlbar","capLeft"));var am=(l.skin.getSkinElement("controlbar","capRight"));if(an){y("capLeft","left",false,af)}ac("background",af,{position:"absolute",height:K().height,left:(an?an.width:0),zIndex:0},"img");if(K().src){R.background.src=K().src}ac("elements",af,{position:"relative",height:K().height,zIndex:1});if(am){y("capRight","right",false,af)}}this.getDisplayElement=function(){return af};this.resize=function(ao,am){S();_utils.cancelAnimation(af);f=ao;z=am;if(G!=l.jwGetFullscreen()){G=l.jwGetFullscreen();if(!G){Y()}d=undefined}var an=x();J({id:l.id,duration:ag,position:k});v({id:l.id,bufferPercent:g});return an};this.show=function(){if(j){j=false;_show(af);V()}};this.hide=function(){if(!j){j=true;_hide(af);ad()}};function r(){var an=["timeSlider","volumeSlider","timeSliderRail","volumeSliderRail"];for(var ao in an){var am=an[ao];if(typeof R[am]!="undefined"){c[am]=_utils.getBoundingClientRect(R[am])}}}var e;function Y(am){if(j){return}clearTimeout(p);if(D.position==a.html5.view.positions.OVER||l.jwGetFullscreen()){switch(l.jwGetState()){case a.api.events.state.PAUSED:case a.api.events.state.IDLE:if(af&&af.style.opacity<1&&(!D.idlehide||_utils.exists(am))){e=false;setTimeout(function(){if(!e){W()}},100)}if(D.idlehide){p=setTimeout(function(){A()},2000)}break;default:e=true;if(am){W()}p=setTimeout(function(){A()},2000);break}}else{W()}}function A(){if(!j){ad();if(af.style.opacity==1){_utils.cancelAnimation(af);_utils.fadeTo(af,0,0.1,1,0)}}}function W(){if(!j){V();if(af.style.opacity==0){_utils.cancelAnimation(af);_utils.fadeTo(af,1,0.1,0,0)}}}function I(am){return function(){if(U&&d!=am){d=am;Z.sendEvent(am,{component:"controlbar",boundingRect:P()})}}}var V=I(a.api.events.JWPLAYER_COMPONENT_SHOW);var ad=I(a.api.events.JWPLAYER_COMPONENT_HIDE);function P(){if(D.position==a.html5.view.positions.OVER||l.jwGetFullscreen()){return _utils.getDimensions(af)}else{return{x:0,y:0,width:0,height:0}}}function ac(aq,ap,ao,am){var an;if(!q){if(!am){am="div"}an=document.createElement(am);R[aq]=an;an.id=af.id+"_"+aq;ap.appendChild(an)}else{an=document.getElementById(af.id+"_"+aq)}if(_utils.exists(ao)){_css(an,ao)}return an}function N(){if(l.jwGetHeight()<=40){D.layout=_utils.clone(D.layout);for(var am=0;am<D.layout.left.elements.length;am++){if(D.layout.left.elements[am].name=="fullscreen"){D.layout.left.elements.splice(am,1)}}for(am=0;am<D.layout.right.elements.length;am++){if(D.layout.right.elements[am].name=="fullscreen"){D.layout.right.elements.splice(am,1)}}o()}al(D.layout.left);al(D.layout.center);al(D.layout.right)}function al(ap,am){var aq=ap.position=="right"?"right":"left";var ao=_utils.extend([],ap.elements);if(_utils.exists(am)){ao.reverse()}var ap=ac(ap.position+"Group",R.elements,{"float":"left",styleFloat:"left",cssFloat:"left",height:"100%"});for(var an=0;an<ao.length;an++){C(ao[an],aq,ap)}}function L(){return Q++}function C(aq,at,av){var ap,an,ao,am,aw;if(!av){av=R.elements}if(aq.type=="divider"){y("divider"+L(),at,true,av,undefined,aq.width,aq.element);return}switch(aq.name){case"play":y("playButton",at,false,av);y("pauseButton",at,true,av);T("playButton","jwPlay");T("pauseButton","jwPause");break;case"prev":y("prevButton",at,true,av);T("prevButton","jwPlaylistPrev");break;case"stop":y("stopButton",at,true,av);T("stopButton","jwStop");break;case"next":y("nextButton",at,true,av);T("nextButton","jwPlaylistNext");break;case"elapsed":y("elapsedText",at,true,av,null,null,l.skin.getSkinElement("controlbar","elapsedBackground"));break;case"time":an=!_utils.exists(l.skin.getSkinElement("controlbar","timeSliderCapLeft"))?0:l.skin.getSkinElement("controlbar","timeSliderCapLeft").width;ao=!_utils.exists(l.skin.getSkinElement("controlbar","timeSliderCapRight"))?0:l.skin.getSkinElement("controlbar","timeSliderCapRight").width;ap=at=="left"?an:ao;aw={height:K().height,position:"relative","float":"left",styleFloat:"left",cssFloat:"left"};var ar=ac("timeSlider",av,aw);y("timeSliderCapLeft",at,true,ar,"relative");y("timeSliderRail",at,false,ar,"relative");y("timeSliderBuffer",at,false,ar,"absolute");y("timeSliderProgress",at,false,ar,"absolute");y("timeSliderThumb",at,false,ar,"absolute");y("timeSliderCapRight",at,true,ar,"relative");aa("time");break;case"fullscreen":y("fullscreenButton",at,false,av);y("normalscreenButton",at,true,av);T("fullscreenButton","jwSetFullscreen",true);T("normalscreenButton","jwSetFullscreen",false);break;case"volume":an=!_utils.exists(l.skin.getSkinElement("controlbar","volumeSliderCapLeft"))?0:l.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;ao=!_utils.exists(l.skin.getSkinElement("controlbar","volumeSliderCapRight"))?0:l.skin.getSkinElement("controlbar","volumeSliderCapRight").width;ap=at=="left"?an:ao;am=l.skin.getSkinElement("controlbar","volumeSliderRail").width+an+ao;aw={height:K().height,position:"relative",width:am,"float":"left",styleFloat:"left",cssFloat:"left"};var au=ac("volumeSlider",av,aw);y("volumeSliderCapLeft",at,false,au,"relative");y("volumeSliderRail",at,false,au,"relative");y("volumeSliderProgress",at,false,au,"absolute");y("volumeSliderThumb",at,false,au,"absolute");y("volumeSliderCapRight",at,false,au,"relative");aa("volume");break;case"mute":y("muteButton",at,false,av);y("unmuteButton",at,true,av);T("muteButton","jwSetMute",true);T("unmuteButton","jwSetMute",false);break;case"duration":y("durationText",at,true,av,null,null,l.skin.getSkinElement("controlbar","durationBackground"));break}}function y(ap,at,an,aw,aq,am,ao){if(_utils.exists(l.skin.getSkinElement("controlbar",ap))||ap.indexOf("Text")>0||ap.indexOf("divider")===0){var ar={height:"100%",position:aq?aq:"relative",display:"block","float":"left",styleFloat:"left",cssFloat:"left"};if((ap.indexOf("next")===0||ap.indexOf("prev")===0)&&(l.jwGetPlaylist().length<2||D.hideplaylistcontrols.toString()=="true")){if(D.forcenextprev.toString()!="true"){an=false;ar.display="none"}}var ax;if(ap.indexOf("Text")>0){ap.innerhtml="00:00";ar.font=D.fontsize+"px/"+(K().height+1)+"px "+D.font;ar.color=D.fontcolor;ar.textAlign="center";ar.fontWeight=D.fontweight;ar.fontStyle=D.fontstyle;ar.cursor="default";if(ao){ar.background="url("+ao.src+") no-repeat center";ar.backgroundSize="100% "+K().height+"px"}ar.padding="0 5px"}else{if(ap.indexOf("divider")===0){if(am){if(!isNaN(parseInt(am))){ax=parseInt(am)}}else{if(ao){var au=l.skin.getSkinElement("controlbar",ao);if(au){ar.background="url("+au.src+") repeat-x center left";ax=au.width}}else{ar.background="url("+l.skin.getSkinElement("controlbar","divider").src+") repeat-x center left";ax=l.skin.getSkinElement("controlbar","divider").width}}}else{ar.background="url("+l.skin.getSkinElement("controlbar",ap).src+") repeat-x center left";ax=l.skin.getSkinElement("controlbar",ap).width}}if(at=="left"){if(an){ae+=ax}}else{if(at=="right"){if(an){E+=ax}}}if(_utils.typeOf(aw)=="undefined"){aw=R.elements}ar.width=ax;if(q){_css(R[ap],ar)}else{var av=ac(ap,aw,ar);if(_utils.exists(l.skin.getSkinElement("controlbar",ap+"Over"))){av.onmouseover=function(ay){av.style.backgroundImage=["url(",l.skin.getSkinElement("controlbar",ap+"Over").src,")"].join("")};av.onmouseout=function(ay){av.style.backgroundImage=["url(",l.skin.getSkinElement("controlbar",ap).src,")"].join("")}}if(ap.indexOf("divider")==0){av.setAttribute("class","divider")}av.innerHTML=" "}}}function F(){l.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,B);l.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,t);l.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_BUFFER,v);l.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,s);l.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_TIME,J);l.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,ak);l.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_VOLUME,n);l.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_COMPLETE,M)}function B(){if(!D.hideplaylistcontrols){if(l.jwGetPlaylist().length>1||D.forcenextprev.toString()=="true"){_show(R.nextButton);_show(R.prevButton)}else{_hide(R.nextButton);_hide(R.prevButton)}x();ah()}}function t(am){ag=l.jwGetPlaylist()[am.index].duration;J({id:l.id,duration:ag,position:0});v({id:l.id,bufferProgress:0})}function ah(){J({id:l.id,duration:l.jwGetDuration(),position:0});v({id:l.id,bufferProgress:0});ak({id:l.id,mute:l.jwGetMute()});s({id:l.id,newstate:a.api.events.state.IDLE});n({id:l.id,volume:l.jwGetVolume()})}function T(ao,ap,an){if(q){return}if(_utils.exists(l.skin.getSkinElement("controlbar",ao))){var am=R[ao];if(_utils.exists(am)){_css(am,{cursor:"pointer"});if(ap=="fullscreen"){am.onmouseup=function(aq){aq.stopPropagation();l.jwSetFullscreen(!l.jwGetFullscreen())}}else{am.onmouseup=function(aq){aq.stopPropagation();if(_utils.exists(an)){l[ap](an)}else{l[ap]()}}}}}}function aa(am){if(q){return}var an=R[am+"Slider"];_css(R.elements,{cursor:"pointer"});_css(an,{cursor:"pointer"});an.onmousedown=function(ao){w=am};an.onmouseup=function(ao){ao.stopPropagation();aj(ao.pageX)};an.onmousemove=function(ao){if(w=="time"){h=true;var ap=ao.pageX-c[am+"Slider"].left-window.pageXOffset;_css(R[w+"SliderThumb"],{left:ap})}}}function aj(an){h=false;var am;if(w=="time"){am=an-c.timeSliderRail.left+window.pageXOffset;var ap=am/c.timeSliderRail.width*ag;if(ap<0){ap=0}else{if(ap>ag){ap=ag-3}}if(l.jwGetState()==a.api.events.state.PAUSED||l.jwGetState()==a.api.events.state.IDLE){l.jwPlay()}l.jwSeek(ap)}else{if(w=="volume"){am=an-c.volumeSliderRail.left-window.pageXOffset;var ao=Math.round(am/c.volumeSliderRail.width*100);if(ao<10){ao=0}else{if(ao>100){ao=100}}if(l.jwGetMute()){l.jwSetMute(false)}l.jwSetVolume(ao)}}w="none"}function v(an){if(_utils.exists(an.bufferPercent)){g=an.bufferPercent}if(c.timeSliderRail){var ap=l.skin.getSkinElement("controlbar","timeSliderCapLeft");var ao=c.timeSliderRail.width;var am=isNaN(Math.round(ao*g/100))?0:Math.round(ao*g/100);_css(R.timeSliderBuffer,{width:am,left:ap?ap.width:0})}}function ak(am){if(am.mute){_hide(R.muteButton);_show(R.unmuteButton);_hide(R.volumeSliderProgress)}else{_show(R.muteButton);_hide(R.unmuteButton);_show(R.volumeSliderProgress)}}function s(am){if(am.newstate==a.api.events.state.BUFFERING||am.newstate==a.api.events.state.PLAYING){_show(R.pauseButton);_hide(R.playButton)}else{_hide(R.pauseButton);_show(R.playButton)}Y();if(am.newstate==a.api.events.state.IDLE){_hide(R.timeSliderBuffer);_hide(R.timeSliderProgress);_hide(R.timeSliderThumb);J({id:l.id,duration:l.jwGetDuration(),position:0})}else{_show(R.timeSliderBuffer);if(am.newstate!=a.api.events.state.BUFFERING){_show(R.timeSliderProgress);_show(R.timeSliderThumb)}}}function M(am){v({bufferPercent:0});J(_utils.extend(am,{position:0,duration:ag}))}function J(aq){if(_utils.exists(aq.position)){k=aq.position}var am=false;if(_utils.exists(aq.duration)&&aq.duration!=ag){ag=aq.duration;am=true}var ao=(k===ag===0)?0:k/ag;var at=c.timeSliderRail;if(at){var an=isNaN(Math.round(at.width*ao))?0:Math.round(at.width*ao);var ar=l.skin.getSkinElement("controlbar","timeSliderCapLeft");var ap=an+(ar?ar.width:0);if(R.timeSliderProgress){_css(R.timeSliderProgress,{width:an,left:ar?ar.width:0});if(!h){if(R.timeSliderThumb){R.timeSliderThumb.style.left=ap+"px"}}}}if(R.durationText){R.durationText.innerHTML=_utils.timeFormat(ag)}if(R.elapsedText){R.elapsedText.innerHTML=_utils.timeFormat(k)}if(am){x()}}function o(){var am=R.elements.childNodes;var ar,ap;for(var ao=0;ao<am.length;ao++){var aq=am[ao].childNodes;for(var an in aq){if(isNaN(parseInt(an,10))){continue}if(aq[an].id.indexOf(af.id+"_divider")===0&&ap&&ap.id.indexOf(af.id+"_divider")===0&&aq[an].style.backgroundImage==ap.style.backgroundImage){aq[an].style.display="none"}else{if(aq[an].id.indexOf(af.id+"_divider")===0&&ar&&ar.style.display!="none"){aq[an].style.display="block"}}if(aq[an].style.display!="none"){ap=aq[an]}ar=aq[an]}}}function ai(){if(l.jwGetFullscreen()){_show(R.normalscreenButton);_hide(R.fullscreenButton)}else{_hide(R.normalscreenButton);_show(R.fullscreenButton)}if(l.jwGetState()==a.api.events.state.BUFFERING||l.jwGetState()==a.api.events.state.PLAYING){_show(R.pauseButton);_hide(R.playButton)}else{_hide(R.pauseButton);_show(R.playButton)}if(l.jwGetMute()==true){_hide(R.muteButton);_show(R.unmuteButton);_hide(R.volumeSliderProgress)}else{_show(R.muteButton);_hide(R.unmuteButton);_show(R.volumeSliderProgress)}}function x(){o();ai();var ao={width:f};var aw={"float":"left",styleFloat:"left",cssFloat:"left"};if(D.position==a.html5.view.positions.OVER||l.jwGetFullscreen()){ao.left=D.margin;ao.width-=2*D.margin;ao.top=z-K().height-D.margin;ao.height=K().height}var aq=l.skin.getSkinElement("controlbar","capLeft");var au=l.skin.getSkinElement("controlbar","capRight");aw.width=ao.width-(aq?aq.width:0)-(au?au.width:0);var ap=_utils.getBoundingClientRect(R.leftGroup).width;var at=_utils.getBoundingClientRect(R.rightGroup).width;var ar=aw.width-ap-at-1;var an=ar;var am=l.skin.getSkinElement("controlbar","timeSliderCapLeft");var av=l.skin.getSkinElement("controlbar","timeSliderCapRight");if(_utils.exists(am)){an-=am.width}if(_utils.exists(av)){an-=av.width}R.timeSlider.style.width=ar+"px";R.timeSliderRail.style.width=an+"px";_css(af,ao);_css(R.elements,aw);_css(R.background,aw);r();return ao}function n(ar){if(_utils.exists(R.volumeSliderRail)){var ao=isNaN(ar.volume/100)?1:ar.volume/100;var ap=_utils.parseDimension(R.volumeSliderRail.style.width);var am=isNaN(Math.round(ap*ao))?0:Math.round(ap*ao);var at=_utils.parseDimension(R.volumeSliderRail.style.right);var an=(!_utils.exists(l.skin.getSkinElement("controlbar","volumeSliderCapLeft")))?0:l.skin.getSkinElement("controlbar","volumeSliderCapLeft").width;_css(R.volumeSliderProgress,{width:am,left:an});if(R.volumeSliderThumb){var aq=(am-Math.round(_utils.parseDimension(R.volumeSliderThumb.style.width)/2));aq=Math.min(Math.max(aq,0),ap-_utils.parseDimension(R.volumeSliderThumb.style.width));_css(R.volumeSliderThumb,{left:aq})}if(_utils.exists(R.volumeSliderCapLeft)){_css(R.volumeSliderCapLeft,{left:0})}}}function S(){try{var an=(l.id.indexOf("_instream")>0?l.id.replace("_instream",""):l.id);H=document.getElementById(an);H.addEventListener("mousemove",Y)}catch(am){_utils.log("Could not add mouse listeners to controlbar: "+am)}}function u(){O();N();r();q=true;F();D.idlehide=(D.idlehide.toString().toLowerCase()=="true");if(D.position==a.html5.view.positions.OVER&&D.idlehide){af.style.opacity=0;U=true}else{af.style.opacity=1;setTimeout((function(){U=true;V()}),1)}S();ah()}u();return this}})(jwplayer);(function(b){var a=["width","height","state","playlist","item","position","buffer","duration","volume","mute","fullscreen"];var c=b.utils;b.html5.controller=function(o,K,f,h){var n=o,m=f,j=h,y=K,M=true,G=-1,A=false,d=false,P,C=[],q=false;var D=(c.exists(m.config.debug)&&(m.config.debug.toString().toLowerCase()=="console")),N=new b.html5.eventdispatcher(y.id,D);c.extend(this,N);function L(T){if(q){N.sendEvent(T.type,T)}else{C.push(T)}}function s(T){if(!q){q=true;N.sendEvent(b.api.events.JWPLAYER_READY,T);if(b.utils.exists(window.playerReady)){playerReady(T)}if(b.utils.exists(window[f.config.playerReady])){window[f.config.playerReady](T)}while(C.length>0){var V=C.shift();N.sendEvent(V.type,V)}if(f.config.autostart&&!b.utils.isIOS()){O()}while(x.length>0){var U=x.shift();B(U.method,U.arguments)}}}m.addGlobalListener(L);m.addEventListener(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL,function(){m.getMedia().play()});m.addEventListener(b.api.events.JWPLAYER_MEDIA_TIME,function(T){if(T.position>=m.playlist[m.item].start&&G>=0){m.playlist[m.item].start=G;G=-1}});m.addEventListener(b.api.events.JWPLAYER_MEDIA_COMPLETE,function(T){setTimeout(E,25)});m.addEventListener(b.api.events.JWPLAYER_PLAYLIST_LOADED,O);m.addEventListener(b.api.events.JWPLAYER_FULLSCREEN,p);function F(){try{P=F;if(!A){A=true;N.sendEvent(b.api.events.JWPLAYER_MEDIA_BEFOREPLAY);A=false;if(d){d=false;P=null;return}}v(m.item);if(m.playlist[m.item].levels[0].file.length>0){if(M||m.state==b.api.events.state.IDLE){m.getMedia().load(m.playlist[m.item]);M=false}else{if(m.state==b.api.events.state.PAUSED){m.getMedia().play()}}}return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T);P=null}return false}function e(){try{if(m.playlist[m.item].levels[0].file.length>0){switch(m.state){case b.api.events.state.PLAYING:case b.api.events.state.BUFFERING:if(m.getMedia()){m.getMedia().pause()}break;default:if(A){d=true}}}return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function z(T){try{if(m.playlist[m.item].levels[0].file.length>0){if(typeof T!="number"){T=parseFloat(T)}switch(m.state){case b.api.events.state.IDLE:if(G<0){G=m.playlist[m.item].start;m.playlist[m.item].start=T}if(!A){F()}break;case b.api.events.state.PLAYING:case b.api.events.state.PAUSED:case b.api.events.state.BUFFERING:m.seek(T);break}}return true}catch(U){N.sendEvent(b.api.events.JWPLAYER_ERROR,U)}return false}function w(T){P=null;if(!c.exists(T)){T=true}try{if((m.state!=b.api.events.state.IDLE||T)&&m.getMedia()){m.getMedia().stop(T)}if(A){d=true}return true}catch(U){N.sendEvent(b.api.events.JWPLAYER_ERROR,U)}return false}function k(){try{if(m.playlist[m.item].levels[0].file.length>0){if(m.config.shuffle){v(S())}else{if(m.item+1==m.playlist.length){v(0)}else{v(m.item+1)}}}if(m.state!=b.api.events.state.IDLE){var U=m.state;m.state=b.api.events.state.IDLE;N.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:U,newstate:b.api.events.state.IDLE})}F();return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function I(){try{if(m.playlist[m.item].levels[0].file.length>0){if(m.config.shuffle){v(S())}else{if(m.item===0){v(m.playlist.length-1)}else{v(m.item-1)}}}if(m.state!=b.api.events.state.IDLE){var U=m.state;m.state=b.api.events.state.IDLE;N.sendEvent(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:U,newstate:b.api.events.state.IDLE})}F();return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function S(){var T=null;if(m.playlist.length>1){while(!c.exists(T)){T=Math.floor(Math.random()*m.playlist.length);if(T==m.item){T=null}}}else{T=0}return T}function H(U){if(!m.playlist||!m.playlist[U]){return false}try{if(m.playlist[U].levels[0].file.length>0){var V=m.state;if(V!==b.api.events.state.IDLE){if(m.playlist[m.item]&&m.playlist[m.item].provider==m.playlist[U].provider){w(false)}else{w()}}v(U);F()}return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function v(T){if(!m.playlist[T]){return}m.setActiveMediaProvider(m.playlist[T]);if(m.item!=T){m.item=T;M=true;N.sendEvent(b.api.events.JWPLAYER_PLAYLIST_ITEM,{index:T})}}function g(U){try{v(m.item);var V=m.getMedia();switch(typeof(U)){case"number":V.volume(U);break;case"string":V.volume(parseInt(U,10));break}m.setVolume(U);return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function r(U){try{v(m.item);var V=m.getMedia();if(typeof U=="undefined"){V.mute(!m.mute);m.setMute(!m.mute)}else{if(U.toString().toLowerCase()=="true"){V.mute(true);m.setMute(true)}else{V.mute(false);m.setMute(false)}}return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function J(U,T){try{m.width=U;m.height=T;j.resize(U,T);N.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:m.width,height:m.height});return true}catch(V){N.sendEvent(b.api.events.JWPLAYER_ERROR,V)}return false}function u(U,V){try{if(typeof U=="undefined"){U=!m.fullscreen}if(typeof V=="undefined"){V=true}if(U!=m.fullscreen){m.fullscreen=(U.toString().toLowerCase()=="true");j.fullscreen(m.fullscreen);if(V){N.sendEvent(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:m.fullscreen})}N.sendEvent(b.api.events.JWPLAYER_RESIZE,{width:m.width,height:m.height})}return true}catch(T){N.sendEvent(b.api.events.JWPLAYER_ERROR,T)}return false}function R(T){try{w();if(A){d=false}m.loadPlaylist(T);if(m.playlist[m.item].provider){v(m.item);if(m.config.autostart.toString().toLowerCase()=="true"&&!c.isIOS()&&!A){F()}return true}else{return false}}catch(U){N.sendEvent(b.api.events.JWPLAYER_ERROR,U)}return false}function O(T){if(!c.isIOS()){v(m.item);if(m.config.autostart.toString().toLowerCase()=="true"&&!c.isIOS()){F()}}}function p(T){u(T.fullscreen,false)}function t(){try{return m.getMedia().detachMedia()}catch(T){return null}}function l(){try{var T=m.getMedia().attachMedia();if(typeof P=="function"){P()}}catch(U){return null}}b.html5.controller.repeatoptions={LIST:"LIST",ALWAYS:"ALWAYS",SINGLE:"SINGLE",NONE:"NONE"};function E(){if(m.state!=b.api.events.state.IDLE){return}P=E;switch(m.config.repeat.toUpperCase()){case b.html5.controller.repeatoptions.SINGLE:F();break;case b.html5.controller.repeatoptions.ALWAYS:if(m.item==m.playlist.length-1&&!m.config.shuffle){H(0)}else{k()}break;case b.html5.controller.repeatoptions.LIST:if(m.item==m.playlist.length-1&&!m.config.shuffle){w();v(0)}else{k()}break;default:w();break}}var x=[];function Q(T){return function(){if(q){B(T,arguments)}else{x.push({method:T,arguments:arguments})}}}function B(V,U){var T=[];for(i=0;i<U.length;i++){T.push(U[i])}V.apply(this,T)}this.play=Q(F);this.pause=Q(e);this.seek=Q(z);this.stop=Q(w);this.next=Q(k);this.prev=Q(I);this.item=Q(H);this.setVolume=Q(g);this.setMute=Q(r);this.resize=Q(J);this.setFullscreen=Q(u);this.load=Q(R);this.playerReady=s;this.detachMedia=t;this.attachMedia=l;this.beforePlay=function(){return A}}})(jwplayer);(function(a){a.html5.defaultSkin=function(){this.text='<?xml version="1.0" ?><skin author="LongTail Video" name="Five" version="1.1"><components><component name="controlbar"><settings><setting name="margin" value="20"/><setting name="fontsize" value="11"/><setting name="fontcolor" value="0x000000"/></settings><layout><group position="left"><button name="play"/><divider name="divider"/><button name="prev"/><divider name="divider"/><button name="next"/><divider name="divider"/><text name="elapsed"/></group><group position="center"><slider name="time"/></group><group position="right"><text name="duration"/><divider name="divider"/><button name="blank"/><divider name="divider"/><button name="mute"/><slider name="volume"/><divider name="divider"/><button name="fullscreen"/></group></layout><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAIAAABvFaqvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAElJREFUOI3t1LERACAMQlFgGvcfxNIhHMK4gsUvUviOmgtNsiAZkBSEKxKEnCYkkQrJn/YwbUNiSDDYRZaQRDaShv+oX9GBZEIuK+8hXVLs+/YAAAAASUVORK5CYII="/><element name="blankButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAYCAYAAAAyJzegAAAAFElEQVQYV2P8//8/AzpgHBUc7oIAGZdH0RjKN8EAAAAASUVORK5CYII="/><element name="capLeft" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAYAAAA7zJfaAAAAQElEQVQIWz3LsRGAMADDQJ0XB5bMINABZ9GENGrszxhjT2WLSqxEJG2JQrTMdV2q5LpOAvyRaVmsi7WdeZ/7+AAaOTq7BVrfOQAAAABJRU5ErkJggg=="/><element name="capRight" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAYAAAA7zJfaAAAAQElEQVQIWz3LsRGAMADDQJ0XB5bMINABZ9GENGrszxhjT2WLSqxEJG2JQrTMdV2q5LpOAvyRaVmsi7WdeZ/7+AAaOTq7BVrfOQAAAABJRU5ErkJggg=="/><element name="divider" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAYCAIAAAC0rgCNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADhJREFUCB0FwcENgEAAw7Aq+893g8APUILNOQcbFRktVGqUVFRkWNz3xTa2sUaLNUosKlRUvvf5AdbWOTtzmzyWAAAAAElFTkSuQmCC"/><element name="playButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAANUlEQVR42u2RsQkAAAjD/NTTPaW6dXLrINJA1kBpGPMAjDWmOgp1HFQXx+b1KOefO4oxY57R73YnVYCQUCQAAAAASUVORK5CYII="/><element name="pauseButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAIUlEQVQ4jWNgGAWjYOiD/0gYG3/U0FFDB4Oho2AUDAYAAEwiL9HrpdMVAAAAAElFTkSuQmCC"/><element name="prevButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAQklEQVQ4y2NgGAWjYOiD/1AMA/JAfB5NjCJD/YH4PRaLyDa0H4lNNUP/DxlD59PCUBCIp3ZEwYA+NZLUKBgFgwEAAN+HLX9sB8u8AAAAAElFTkSuQmCC"/><element name="nextButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAAAQElEQVQ4y2NgGAWjYOiD/0B8Hojl0cT+U2ooCL8HYn9qGwrD/bQw9P+QMXQ+tSMqnpoRBUpS+tRMUqNgFAwGAADxZy1/mHvFnAAAAABJRU5ErkJggg=="/><element name="timeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAOElEQVRIDe3BwQkAIRADwAhhw/nU/kWwUK+KPITMABFh19Y+F0acY8CJvX9wYpXgRElwolSIiMf9ZWEDhtwurFsAAAAASUVORK5CYII="/><element name="timeSliderBuffer" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAN0lEQVRIDe3BwQkAMQwDMBcc55mRe9zi7RR+FCwBEWG39vcfGHFm4MTuhhMlwYlVBSdKhYh43AW/LQMKm1spzwAAAABJRU5ErkJggg=="/><element name="timeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAIElEQVRIiWNgGAWjYBTQBfynMR61YCRYMApGwSigMQAAiVWPcbq6UkIAAAAASUVORK5CYII="/><element name="timeSliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAYCAYAAAA/OUfnAAAAO0lEQVQYlWP4//8/Awwz0JgDBP/BeN6Cxf/hnI2btiI4u/fsQ3AOHjqK4Jw4eQbBOX/hEoKDYjSd/AMA4cS4mfLsorgAAAAASUVORK5CYII="/><element name="muteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAJklEQVQ4y2NgGAUjDcwH4v/kaPxPikZkxcNVI9mBQ5XoGAWDFwAAsKAXKQQmfbUAAAAASUVORK5CYII="/><element name="unmuteButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAYCAYAAADKx8xXAAAAMklEQVQ4y2NgGAWDHPyntub5xBr6Hwv/Pzk2/yfVG/8psRFE25Oq8T+tQnsIaB4FVAcAi2YVysVY52AAAAAASUVORK5CYII="/><element name="volumeSliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYAgMAAACdGdVrAAAACVBMVEUAAACmpqampqbBXAu8AAAAAnRSTlMAgJsrThgAAAArSURBVAhbY2AgErBAyA4I2QEhOyBkB4TsYOhAoaCCUCUwDTDtMMNgRuMHAFB5FoGH5T0UAAAAAElFTkSuQmCC"/><element name="volumeSliderProgress" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYAgMAAACdGdVrAAAACVBMVEUAAAAAAAAAAACDY+nAAAAAAnRSTlMAgJsrThgAAAArSURBVAhbY2AgErBAyA4I2QEhOyBkB4TsYOhAoaCCUCUwDTDtMMNgRuMHAFB5FoGH5T0UAAAAAElFTkSuQmCC"/><element name="volumeSliderCapRight" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAYCAYAAAAyJzegAAAAFElEQVQYV2P8//8/AzpgHBUc7oIAGZdH0RjKN8EAAAAASUVORK5CYII="/><element name="fullscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAQklEQVRIiWNgGAWjYMiD/0iYFDmSLbDHImdPLQtgBpEiR7Zl2NijAA5oEkT/0Whi5UiyAJ8BVMsHNMtoo2AUDAIAAGdcIN3IDNXoAAAAAElFTkSuQmCC"/><element name="normalscreenButton" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAP0lEQVRIx2NgGAWjYMiD/1RSQ5QB/wmIUWzJfzx8qhj+n4DYCAY0DyJ7PBbYU8sHMEvwiZFtODXUjIJRMJgBACpWIN2ZxdPTAAAAAElFTkSuQmCC"/></elements></component><component name="display"><elements><element name="background" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlOZpuml+rYAAAASSURBVBhXY2AYJuA/GBwY6jQAyDyoK8QcL4QAAAAASUVORK5CYII="/><element name="playIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAiUlEQVR42u3XSw2AMBREURwgAQlIQAISKgUpSEFKJeCg5b0E0kWBTVcD9ySTsL0Jn9IBAAAA+K2UUrBlW/Rr5ZDoIeeuoFkxJD9ss03aIXXQqB9SttoG7ZA6qNcOKdttiwcJh9RB+iFl4SshkRBuLR72+9cvH0SOKI2HRo7x/Fi1/uoCAAAAwLsD8ki99IlO2dQAAAAASUVORK5CYII="/><element name="muteIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAVUlEQVR42u3WMQrAIAxAUW/g/SdvGmvpoOBeSHgPsjj5QTANAACARCJilIhYM0tEvJM+Ik3Id9E957kQIb+F3OdCPC0hPkQriqWx9hp/x/QGAABQyAPLB22VGrpLDgAAAABJRU5ErkJggg=="/><element name="errorIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAA/0lEQVR42u2U0QmEMBAF7cASLMESUoIlpARLSCkpwRJSgiWkhOvAXD4WsgRkyaG5DbyB+Yvg8KITAAAAAAAYk+u61mwk15EjPtlEfihmqIiZR1Qx80ghjgdUuiHXGHSVsoag0x6x8DUoyjD5KovmEJ9NTDMRPIT0mtdIUkjlonuNohO+Ha99DTmkuGgKCTcvebAzx82ZoCWC3/3aIMWSRucaxcjORSFY4xpFdjYJGp1rFGcyCYZ/RVh6AUnfcNZ2zih3/mGj1jVCdiNDwyrq1rA/xMdeEXvDVdnYc1vDc3uPkDObXrlaxbNHSOohQhr/WOeLEWfWTgAAAAAAADzNF9sHJ7PJ57MlAAAAAElFTkSuQmCC"/><element name="bufferIcon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAACBklEQVR42u3Zv0sCYRzH8USTzOsHHEWGkC1HgaDgkktGDjUYtDQ01RDSljQ1BLU02+rk1NTm2NLq4Nx/0L/h9fnCd3j4cnZe1/U8xiO8h3uurufF0/3COd/3/0UWYiEWYiEWYiGJQ+J8xuPxKhXjEMZANinjIZhkGuVRNioE4wVURo4JkHm0xKWmhRAc1bh1EyCUw5BcBIjHiApKa4CErko6DEJwuRo6IRKzyJD8FJAyI3Zp2zRImiBcRhlfo5RtlxCcE3CcDNpGrhYIT2IhAJKilO0VRmzJ32fAMTpBTS0QMfGwlcuKMRftE0DJ0wCJdcOsCkBdXP3Mh9CEFUBTPS9mDZJBG6io4aqVzMdCokCw9H3kT6j/C/9iDdSeUMNC7DkyyxAs/Rk6Qss8FPWRZgdVtUH4DjxEn1zxh+/zj1wHlf4MQhNGrwqA6sY40U8JonRJwEQh+AO3AvCG6gHv4U7IY4krxkroWoAOkoQMGfCBrgIm+YBGqPENpIJ66CJg3x66Y0gnSUidAEEnNr9jjLiWMn5DiWP0OC/oAsCgkq43xBdGDMQr7YASP/vEkHvdl1+JOCcEV5sC4hGEOzTlPuKgd0b0xD4JkRcOgnRRTjdErkYhAsQVq6IdUuPJtmk7BCL3t/h88cx91pKQkI/pkDx6pmYTIjEoxiHsN1YWYiEWYiEWknhflZ5IErA5nr8AAAAASUVORK5CYII="/></elements></component><component name="dock"><settings><setting name="fontcolor" value="0xffffff"/></settings><elements><element name="button" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyAQMAAAAk8RryAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlOZpuml+rYAAAASSURBVBhXY2AYJuA/GBwY6jQAyDyoK8QcL4QAAAAASUVORK5CYII="/></elements></component><component name="playlist"><settings><setting name="backgroundcolor" value="0xe8e8e8"/></settings><elements><element name="item" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAIAAAC1nk4lAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHBJREFUaN7t2MENwCAMBEEe9N8wSKYC/D8YV7CyJoRkVtVImxkZPQInMxoP0XiIxkM0HsGbjjSNBx544IEHHnjggUe/6UQeey0PIh7XTftGxKPj4eXCtLsHHh+ZxkO0Iw8PR55Ni8ZD9Hu/EAoP0dc5RRg9qeRjVF8AAAAASUVORK5CYII="/><element name="sliderCapTop" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAHCAYAAADnCQYGAAAAFUlEQVQokWP8//8/A7UB46ihI9hQAKt6FPPXhVGHAAAAAElFTkSuQmCC"/><element name="sliderRail" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAUCAYAAABiS3YzAAAAKElEQVQ4y2P4//8/Az68bNmy/+iYkB6GUUNHDR01dNTQUUNHDaXcUABUDOKhcxnsSwAAAABJRU5ErkJggg=="/><element name="sliderThumb" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAUCAYAAABiS3YzAAAAJUlEQVQ4T2P4//8/Ay4MBP9xYbz6Rg0dNXTU0FFDRw0dNZRyQwHH4NBa7GJsXAAAAABJRU5ErkJggg=="/><element name="sliderCapBottom" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAHCAYAAADnCQYGAAAAFUlEQVQokWP8//8/A7UB46ihI9hQAKt6FPPXhVGHAAAAAElFTkSuQmCC"/></elements></component></components></skin>';this.xml=null;if(window.DOMParser){parser=new DOMParser();this.xml=parser.parseFromString(this.text,"text/xml")}else{this.xml=new ActiveXObject("Microsoft.XMLDOM");this.xml.async="false";this.xml.loadXML(this.text)}return this}})(jwplayer);(function(a){_utils=a.utils;_css=_utils.css;_hide=function(b){_css(b,{display:"none"})};_show=function(b){_css(b,{display:"block"})};a.html5.display=function(k,K){var j={icons:true,showmute:false};var X=_utils.extend({},j,K);var h=k;var W={};var e;var w;var z;var T;var u;var M;var E;var N=!_utils.exists(h.skin.getComponentSettings("display").bufferrotation)?15:parseInt(h.skin.getComponentSettings("display").bufferrotation,10);var s=!_utils.exists(h.skin.getComponentSettings("display").bufferinterval)?100:parseInt(h.skin.getComponentSettings("display").bufferinterval,10);var D=-1;var v=a.api.events.state.IDLE;var O=true;var d;var C=false,V=true;var p="";var g=false;var o=false;var m;var y,R;var L=new a.html5.eventdispatcher();_utils.extend(this,L);var H={display:{style:{cursor:"pointer",top:0,left:0,overflow:"hidden"},click:n},display_icon:{style:{cursor:"pointer",position:"absolute",top:((h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display","playIcon").height)/2),left:((h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display","playIcon").width)/2),border:0,margin:0,padding:0,zIndex:3,display:"none"}},display_iconBackground:{style:{cursor:"pointer",position:"absolute",top:((w-h.skin.getSkinElement("display","background").height)/2),left:((e-h.skin.getSkinElement("display","background").width)/2),border:0,backgroundImage:(["url(",h.skin.getSkinElement("display","background").src,")"]).join(""),width:h.skin.getSkinElement("display","background").width,height:h.skin.getSkinElement("display","background").height,margin:0,padding:0,zIndex:2,display:"none"}},display_image:{style:{display:"none",width:e,height:w,position:"absolute",cursor:"pointer",left:0,top:0,margin:0,padding:0,textDecoration:"none",zIndex:1}},display_text:{style:{zIndex:4,position:"relative",opacity:0.8,backgroundColor:parseInt("000000",16),color:parseInt("ffffff",16),textAlign:"center",fontFamily:"Arial,sans-serif",padding:"0 5px",fontSize:14}}};h.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,q);h.jwAddEventListener(a.api.events.JWPLAYER_MEDIA_MUTE,q);h.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,P);h.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,q);h.jwAddEventListener(a.api.events.JWPLAYER_ERROR,r);Q();function Q(){W.display=G("div","display");W.display_text=G("div","display_text");W.display.appendChild(W.display_text);W.display_image=G("img","display_image");W.display_image.onerror=function(Y){_hide(W.display_image)};W.display_image.onload=B;W.display_icon=G("div","display_icon");W.display_iconBackground=G("div","display_iconBackground");W.display.appendChild(W.display_image);W.display_iconBackground.appendChild(W.display_icon);W.display.appendChild(W.display_iconBackground);f();setTimeout((function(){o=true;if(X.icons.toString()=="true"){J()}}),1)}this.getDisplayElement=function(){return W.display};this.resize=function(Z,Y){if(h.jwGetFullscreen()&&_utils.isMobile()){return}_css(W.display,{width:Z,height:Y});_css(W.display_text,{width:(Z-10),top:((Y-_utils.getBoundingClientRect(W.display_text).height)/2)});_css(W.display_iconBackground,{top:((Y-h.skin.getSkinElement("display","background").height)/2),left:((Z-h.skin.getSkinElement("display","background").width)/2)});if(e!=Z||w!=Y){e=Z;w=Y;d=undefined;J()}if(!h.jwGetFullscreen()){y=Z;R=Y}c();q({})};this.show=function(){if(g){g=false;t(h.jwGetState())}};this.hide=function(){if(!g){F();g=true}};function B(Y){z=W.display_image.naturalWidth;T=W.display_image.naturalHeight;c();if(h.jwGetState()==a.api.events.state.IDLE){_css(W.display_image,{display:"block",opacity:0});_utils.fadeTo(W.display_image,1,0.1)}C=false}function c(){if(h.jwGetFullscreen()&&h.jwGetStretching()==a.utils.stretching.EXACTFIT){var Y=document.createElement("div");_utils.stretch(a.utils.stretching.UNIFORM,Y,e,w,y,R);_utils.stretch(a.utils.stretching.EXACTFIT,W.display_image,_utils.parseDimension(Y.style.width),_utils.parseDimension(Y.style.height),z,T);_css(W.display_image,{left:Y.style.left,top:Y.style.top})}else{_utils.stretch(h.jwGetStretching(),W.display_image,e,w,z,T)}}function G(Y,aa){var Z=document.createElement(Y);Z.id=h.id+"_jwplayer_"+aa;_css(Z,H[aa].style);return Z}function f(){for(var Y in W){if(_utils.exists(H[Y].click)){W[Y].onclick=H[Y].click}}}function n(Y){if(typeof Y.preventDefault!="undefined"){Y.preventDefault()}else{Y.returnValue=false}if(typeof m=="function"){m(Y);return}else{if(h.jwGetState()!=a.api.events.state.PLAYING){h.jwPlay()}else{h.jwPause()}}}function U(Y){if(E){F();return}W.display_icon.style.backgroundImage=(["url(",h.skin.getSkinElement("display",Y).src,")"]).join("");_css(W.display_icon,{width:h.skin.getSkinElement("display",Y).width,height:h.skin.getSkinElement("display",Y).height,top:(h.skin.getSkinElement("display","background").height-h.skin.getSkinElement("display",Y).height)/2,left:(h.skin.getSkinElement("display","background").width-h.skin.getSkinElement("display",Y).width)/2});b();if(_utils.exists(h.skin.getSkinElement("display",Y+"Over"))){W.display_icon.onmouseover=function(Z){W.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Y+"Over").src,")"].join("")};W.display_icon.onmouseout=function(Z){W.display_icon.style.backgroundImage=["url(",h.skin.getSkinElement("display",Y).src,")"].join("")}}else{W.display_icon.onmouseover=null;W.display_icon.onmouseout=null}}function F(){if(X.icons.toString()=="true"){_hide(W.display_icon);_hide(W.display_iconBackground);S()}}function b(){if(!g&&X.icons.toString()=="true"){_show(W.display_icon);_show(W.display_iconBackground);J()}}function r(Y){E=true;F();W.display_text.innerHTML=Y.message;_show(W.display_text);W.display_text.style.top=((w-_utils.getBoundingClientRect(W.display_text).height)/2)+"px"}function I(){V=false;W.display_image.style.display="none"}function P(){v=""}function q(Y){if((Y.type==a.api.events.JWPLAYER_PLAYER_STATE||Y.type==a.api.events.JWPLAYER_PLAYLIST_ITEM)&&E){E=false;_hide(W.display_text)}var Z=h.jwGetState();if(Z==v){return}v=Z;if(D>=0){clearTimeout(D)}if(O||h.jwGetState()==a.api.events.state.PLAYING||h.jwGetState()==a.api.events.state.PAUSED){t(h.jwGetState())}else{D=setTimeout(l(h.jwGetState()),500)}}function l(Y){return(function(){t(Y)})}function t(Y){if(_utils.exists(M)){clearInterval(M);M=null;_utils.animations.rotate(W.display_icon,0)}switch(Y){case a.api.events.state.BUFFERING:if(_utils.isIPod()){I();F()}else{if(h.jwGetPlaylist()[h.jwGetPlaylistIndex()].provider=="sound"){x()}u=0;M=setInterval(function(){u+=N;_utils.animations.rotate(W.display_icon,u%360)},s);U("bufferIcon");O=true}break;case a.api.events.state.PAUSED:if(!_utils.isIPod()){if(h.jwGetPlaylist()[h.jwGetPlaylistIndex()].provider!="sound"){_css(W.display_image,{background:"transparent no-repeat center center"})}U("playIcon");O=true}break;case a.api.events.state.IDLE:if(h.jwGetPlaylist()[h.jwGetPlaylistIndex()]&&h.jwGetPlaylist()[h.jwGetPlaylistIndex()].image){x()}else{I()}U("playIcon");O=true;break;default:if(h.jwGetPlaylist()[h.jwGetPlaylistIndex()]&&h.jwGetPlaylist()[h.jwGetPlaylistIndex()].provider=="sound"){if(_utils.isIPod()){I();O=false}else{x()}}else{I();O=false}if(h.jwGetMute()&&X.showmute){U("muteIcon")}else{F()}break}D=-1}function x(){if(h.jwGetPlaylist()[h.jwGetPlaylistIndex()]){var Y=h.jwGetPlaylist()[h.jwGetPlaylistIndex()].image;if(Y){if(Y!=p){p=Y;C=true;W.display_image.src=_utils.getAbsolutePath(Y)}else{if(!(C||V)){V=true;W.display_image.style.opacity=0;W.display_image.style.display="block";_utils.fadeTo(W.display_image,1,0.1)}}}}}function A(Y){return function(){if(!o){return}if(!g&&d!=Y){d=Y;L.sendEvent(Y,{component:"display",boundingRect:_utils.getDimensions(W.display_iconBackground)})}}}var J=A(a.api.events.JWPLAYER_COMPONENT_SHOW);var S=A(a.api.events.JWPLAYER_COMPONENT_HIDE);this.setAlternateClickHandler=function(Y){m=Y};this.revertAlternateClickHandler=function(){m=undefined};return this}})(jwplayer);(function(a){var c=a.utils;var b=c.css;a.html5.dock=function(w,D){function x(){return{align:a.html5.view.positions.RIGHT}}var n=c.extend({},x(),D);if(n.align=="FALSE"){return}var j={};var A=[];var k;var F;var f=false;var C=false;var g={x:0,y:0,width:0,height:0};var z;var o;var y;var m=new a.html5.eventdispatcher();c.extend(this,m);var r=document.createElement("div");r.id=w.id+"_jwplayer_dock";r.style.opacity=1;p();w.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,q);this.getDisplayElement=function(){return r};this.setButton=function(K,H,I,J){if(!H&&j[K]){c.arrays.remove(A,K);r.removeChild(j[K].div);delete j[K]}else{if(H){if(!j[K]){j[K]={}}j[K].handler=H;j[K].outGraphic=I;j[K].overGraphic=J;if(!j[K].div){A.push(K);j[K].div=document.createElement("div");j[K].div.style.position="absolute";r.appendChild(j[K].div);j[K].div.appendChild(document.createElement("div"));j[K].div.childNodes[0].style.position="relative";j[K].div.childNodes[0].style.width="100%";j[K].div.childNodes[0].style.height="100%";j[K].div.childNodes[0].style.zIndex=10;j[K].div.childNodes[0].style.cursor="pointer";j[K].div.appendChild(document.createElement("img"));j[K].div.childNodes[1].style.position="absolute";j[K].div.childNodes[1].style.left=0;j[K].div.childNodes[1].style.top=0;if(w.skin.getSkinElement("dock","button")){j[K].div.childNodes[1].src=w.skin.getSkinElement("dock","button").src}j[K].div.childNodes[1].style.zIndex=9;j[K].div.childNodes[1].style.cursor="pointer";j[K].div.onmouseover=function(){if(j[K].overGraphic){j[K].div.childNodes[0].style.background=h(j[K].overGraphic)}if(w.skin.getSkinElement("dock","buttonOver")){j[K].div.childNodes[1].src=w.skin.getSkinElement("dock","buttonOver").src}};j[K].div.onmouseout=function(){if(j[K].outGraphic){j[K].div.childNodes[0].style.background=h(j[K].outGraphic)}if(w.skin.getSkinElement("dock","button")){j[K].div.childNodes[1].src=w.skin.getSkinElement("dock","button").src}};if(w.skin.getSkinElement("dock","button")){j[K].div.childNodes[1].src=w.skin.getSkinElement("dock","button").src}}if(j[K].outGraphic){j[K].div.childNodes[0].style.background=h(j[K].outGraphic)}else{if(j[K].overGraphic){j[K].div.childNodes[0].style.background=h(j[K].overGraphic)}}if(H){j[K].div.onclick=function(L){L.preventDefault();a(w.id).callback(K);if(j[K].overGraphic){j[K].div.childNodes[0].style.background=h(j[K].overGraphic)}if(w.skin.getSkinElement("dock","button")){j[K].div.childNodes[1].src=w.skin.getSkinElement("dock","button").src}}}}}l(k,F)};function h(H){return"url("+H+") no-repeat center center"}function t(H){}function l(H,T){p();if(A.length>0){var I=10;var S=I;var P=-1;var Q=w.skin.getSkinElement("dock","button").height;var O=w.skin.getSkinElement("dock","button").width;var M=H-O-I;var R,L;if(n.align==a.html5.view.positions.LEFT){P=1;M=I}for(var J=0;J<A.length;J++){var U=Math.floor(S/T);if((S+Q+I)>((U+1)*T)){S=((U+1)*T)+I;U=Math.floor(S/T)}var K=j[A[J]].div;K.style.top=(S%T)+"px";K.style.left=(M+(w.skin.getSkinElement("dock","button").width+I)*U*P)+"px";var N={x:c.parseDimension(K.style.left),y:c.parseDimension(K.style.top),width:O,height:Q};if(!R||(N.x<=R.x&&N.y<=R.y)){R=N}if(!L||(N.x>=L.x&&N.y>=L.y)){L=N}K.style.width=O+"px";K.style.height=Q+"px";S+=w.skin.getSkinElement("dock","button").height+I}g={x:R.x,y:R.y,width:L.x-R.x+L.width,height:R.y-L.y+L.height}}if(C!=w.jwGetFullscreen()||k!=H||F!=T){k=H;F=T;C=w.jwGetFullscreen();z=undefined;setTimeout(s,1)}}function d(H){return function(){if(!f&&z!=H&&A.length>0){z=H;m.sendEvent(H,{component:"dock",boundingRect:g})}}}function q(H){if(c.isMobile()){if(H.newstate==a.api.events.state.IDLE){v()}else{e()}}else{B()}}function B(H){if(f){return}clearTimeout(y);if(D.position==a.html5.view.positions.OVER||w.jwGetFullscreen()){switch(w.jwGetState()){case a.api.events.state.PAUSED:case a.api.events.state.IDLE:if(r&&r.style.opacity<1&&(!D.idlehide||c.exists(H))){E()}if(D.idlehide){y=setTimeout(function(){u()},2000)}break;default:if(c.exists(H)){E()}y=setTimeout(function(){u()},2000);break}}else{E()}}var s=d(a.api.events.JWPLAYER_COMPONENT_SHOW);var G=d(a.api.events.JWPLAYER_COMPONENT_HIDE);this.resize=l;var v=function(){b(r,{display:"block"});if(f){f=false;s()}};var e=function(){b(r,{display:"none"});if(!f){G();f=true}};function u(){if(!f){G();if(r.style.opacity==1){c.cancelAnimation(r);c.fadeTo(r,0,0.1,1,0)}}}function E(){if(!f){s();if(r.style.opacity==0){c.cancelAnimation(r);c.fadeTo(r,1,0.1,0,0)}}}function p(){try{o=document.getElementById(w.id);o.addEventListener("mousemove",B)}catch(H){c.log("Could not add mouse listeners to dock: "+H)}}this.hide=e;this.show=v;return this}})(jwplayer);(function(a){a.html5.eventdispatcher=function(d,b){var c=new a.events.eventdispatcher(b);a.utils.extend(this,c);this.sendEvent=function(e,f){if(!a.utils.exists(f)){f={}}a.utils.extend(f,{id:d,version:a.version,type:e});c.sendEvent(e,f)}}})(jwplayer);(function(a){var b=a.utils;a.html5.instream=function(y,m,x,z){var t={controlbarseekable:"always",controlbarpausable:true,controlbarstoppable:true,playlistclickable:true};var v,A,C=y,E=m,j=x,w=z,r,H,o,G,e,f,g,l,q,h=false,k,d,n=this;this.load=function(M,K){c();h=true;A=b.extend(t,K);v=a.html5.playlistitem(M);F();d=document.createElement("div");d.id=n.id+"_instream_container";w.detachMedia();r=g.getDisplayElement();f=E.playlist[E.item];e=C.jwGetState();if(e==a.api.events.state.BUFFERING||e==a.api.events.state.PLAYING){r.pause()}H=r.src?r.src:r.currentSrc;o=r.innerHTML;G=r.currentTime;q=new a.html5.display(n,b.extend({},E.plugins.config.display));q.setAlternateClickHandler(function(N){if(_fakemodel.state==a.api.events.state.PAUSED){n.jwInstreamPlay()}else{D(a.api.events.JWPLAYER_INSTREAM_CLICK,N)}});d.appendChild(q.getDisplayElement());if(!b.isMobile()){l=new a.html5.controlbar(n,b.extend({},E.plugins.config.controlbar,{}));if(E.plugins.config.controlbar.position==a.html5.view.positions.OVER){d.appendChild(l.getDisplayElement())}else{var L=E.plugins.object.controlbar.getDisplayElement().parentNode;L.appendChild(l.getDisplayElement())}}j.setupInstream(d,r);p();g.load(v)};this.jwInstreamDestroy=function(K){if(!h){return}h=false;if(e!=a.api.events.state.IDLE){g.load(f,false);g.stop(false)}else{g.stop(true)}g.detachMedia();j.destroyInstream();if(l){try{l.getDisplayElement().parentNode.removeChild(l.getDisplayElement())}catch(L){}}D(a.api.events.JWPLAYER_INSTREAM_DESTROYED,{reason:(K?"complete":"destroyed")},true);w.attachMedia();if(e==a.api.events.state.BUFFERING||e==a.api.events.state.PLAYING){r.play();if(E.playlist[E.item]==f){E.getMedia().seek(G)}}return};this.jwInstreamAddEventListener=function(K,L){k.addEventListener(K,L)};this.jwInstreamRemoveEventListener=function(K,L){k.removeEventListener(K,L)};this.jwInstreamPlay=function(){if(!h){return}g.play(true)};this.jwInstreamPause=function(){if(!h){return}g.pause(true)};this.jwInstreamSeek=function(K){if(!h){return}g.seek(K)};this.jwInstreamGetState=function(){if(!h){return undefined}return _fakemodel.state};this.jwInstreamGetPosition=function(){if(!h){return undefined}return _fakemodel.position};this.jwInstreamGetDuration=function(){if(!h){return undefined}return _fakemodel.duration};this.playlistClickable=function(){return(!h||A.playlistclickable.toString().toLowerCase()=="true")};function s(){_fakemodel=new a.html5.model(this,E.getMedia()?E.getMedia().getDisplayElement():E.container,E);k=new a.html5.eventdispatcher();C.jwAddEventListener(a.api.events.JWPLAYER_RESIZE,p);C.jwAddEventListener(a.api.events.JWPLAYER_FULLSCREEN,p)}function c(){_fakemodel.setMute(E.mute);_fakemodel.setVolume(E.volume)}function F(){if(!g){g=new a.html5.mediavideo(_fakemodel,E.getMedia()?E.getMedia().getDisplayElement():E.container);g.addGlobalListener(I);g.addEventListener(a.api.events.JWPLAYER_MEDIA_META,J);g.addEventListener(a.api.events.JWPLAYER_MEDIA_COMPLETE,u);g.addEventListener(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL,B)}g.attachMedia()}function I(K){if(h){D(K.type,K)}}function B(K){if(h){g.play()}}function u(K){if(h){setTimeout(function(){n.jwInstreamDestroy(true)},10)}}function J(K){if(K.metadata.width&&K.metadata.height){j.resizeMedia()}}function D(K,L,M){if(h||M){k.sendEvent(K,L)}}function p(){var K=E.plugins.object.display.getDisplayElement().style;if(l){var L=E.plugins.object.controlbar.getDisplayElement().style;l.resize(b.parseDimension(K.width),b.parseDimension(L.height));_css(l.getDisplayElement(),b.extend({},L,{zIndex:1001,opacity:1}))}if(q){q.resize(b.parseDimension(K.width),b.parseDimension(K.height));_css(q.getDisplayElement(),b.extend({},K,{zIndex:1000}))}if(j){j.resizeMedia()}}this.jwPlay=function(K){if(A.controlbarpausable.toString().toLowerCase()=="true"){this.jwInstreamPlay()}};this.jwPause=function(K){if(A.controlbarpausable.toString().toLowerCase()=="true"){this.jwInstreamPause()}};this.jwStop=function(){if(A.controlbarstoppable.toString().toLowerCase()=="true"){this.jwInstreamDestroy();C.jwStop()}};this.jwSeek=function(K){switch(A.controlbarseekable.toLowerCase()){case"always":this.jwInstreamSeek(K);break;case"backwards":if(_fakemodel.position>K){this.jwInstreamSeek(K)}break}};this.jwGetPosition=function(){};this.jwGetDuration=function(){};this.jwGetWidth=C.jwGetWidth;this.jwGetHeight=C.jwGetHeight;this.jwGetFullscreen=C.jwGetFullscreen;this.jwSetFullscreen=C.jwSetFullscreen;this.jwGetVolume=function(){return E.volume};this.jwSetVolume=function(K){g.volume(K);C.jwSetVolume(K)};this.jwGetMute=function(){return E.mute};this.jwSetMute=function(K){g.mute(K);C.jwSetMute(K)};this.jwGetState=function(){return _fakemodel.state};this.jwGetPlaylist=function(){return[v]};this.jwGetPlaylistIndex=function(){return 0};this.jwGetStretching=function(){return E.config.stretching};this.jwAddEventListener=function(L,K){k.addEventListener(L,K)};this.jwRemoveEventListener=function(L,K){k.removeEventListener(L,K)};this.skin=C.skin;this.id=C.id+"_instream";s();return this}})(jwplayer);(function(a){var b={prefix:"http://l.longtailvideo.com/html5/",file:"logo.png",link:"http://www.longtailvideo.com/players/jw-flv-player/",linktarget:"_top",margin:8,out:0.5,over:1,timeout:5,hide:true,position:"bottom-left"};_css=a.utils.css;a.html5.logo=function(n,r){var q=n;var u;var d;var t;var h=false;g();function g(){o();q.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,j);c();l()}function o(){if(b.prefix){var v=n.version.split(/\W/).splice(0,2).join("/");if(b.prefix.indexOf(v)<0){b.prefix+=v+"/"}}if(r.position==a.html5.view.positions.OVER){r.position=b.position}try{if(window.location.href.indexOf("https")==0){b.prefix=b.prefix.replace("http://l.longtailvideo.com","https://securel.longtailvideo.com")}}catch(w){}d=a.utils.extend({},b)}function c(){t=document.createElement("img");t.id=q.id+"_jwplayer_logo";t.style.display="none";t.onload=function(v){_css(t,k());p()};if(!d.file){return}if(d.file.indexOf("/")>=0){t.src=d.file}else{t.src=d.prefix+d.file}}if(!d.file){return}this.resize=function(w,v){};this.getDisplayElement=function(){return t};function l(){if(d.link){t.onmouseover=f;t.onmouseout=p;t.onclick=s}else{this.mouseEnabled=false}}function s(v){if(typeof v!="undefined"){v.stopPropagation()}if(!h){return}q.jwPause();q.jwSetFullscreen(false);if(d.link){window.open(d.link,d.linktarget)}return}function p(v){if(d.link&&h){t.style.opacity=d.out}return}function f(v){if(h){t.style.opacity=d.over}return}function k(){var x={textDecoration:"none",position:"absolute",cursor:"pointer"};x.display=(d.hide.toString()=="true"&&!h)?"none":"block";var w=d.position.toLowerCase().split("-");for(var v in w){x[w[v]]=parseInt(d.margin)}return x}function m(){if(d.hide.toString()=="true"){t.style.display="block";t.style.opacity=0;a.utils.fadeTo(t,d.out,0.1,parseFloat(t.style.opacity));u=setTimeout(function(){e()},d.timeout*1000)}h=true}function e(){h=false;if(d.hide.toString()=="true"){a.utils.fadeTo(t,0,0.1,parseFloat(t.style.opacity))}}function j(v){if(v.newstate==a.api.events.state.BUFFERING){clearTimeout(u);m()}}return this}})(jwplayer);(function(b){var d={ended:b.api.events.state.IDLE,playing:b.api.events.state.PLAYING,pause:b.api.events.state.PAUSED,buffering:b.api.events.state.BUFFERING};var e=b.utils;var a=e.isMobile();var c={};b.html5.mediavideo=function(h,F){var J={abort:y,canplay:p,canplaythrough:p,durationchange:u,emptied:y,ended:p,error:o,loadeddata:u,loadedmetadata:u,loadstart:p,pause:p,play:y,playing:p,progress:D,ratechange:y,seeked:p,seeking:p,stalled:p,suspend:p,timeupdate:N,volumechange:l,waiting:p,canshowcurrentframe:y,dataunavailable:y,empty:y,load:g,loadedfirstframe:y,webkitfullscreenchange:k};var K=new b.html5.eventdispatcher();e.extend(this,K);var j=h,B=F,m,f,C,T,E,M,L=false,t=false,x=false,I,G,Q;R();this.load=function(V,W){if(typeof W=="undefined"){W=true}if(!t){return}T=V;x=(T.duration>0);j.duration=T.duration;e.empty(m);Q=0;q(V.levels);if(V.levels&&V.levels.length>0){if(V.levels.length==1||e.isIOS()){m.src=V.levels[0].file}else{if(m.src){m.removeAttribute("src")}for(var U=0;U<V.levels.length;U++){var X=m.ownerDocument.createElement("source");X.src=V.levels[U].file;m.appendChild(X);Q++}}}else{m.src=V.file}m.style.display="block";m.style.opacity=1;m.volume=j.volume/100;m.muted=j.mute;if(a){P()}I=G=C=false;j.buffer=0;if(!e.exists(V.start)){V.start=0}M=(V.start>0)?V.start:-1;s(b.api.events.JWPLAYER_MEDIA_LOADED);if((!a&&V.levels.length==1)||!L){m.load()}L=false;if(W){w(b.api.events.state.BUFFERING);s(b.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});A()}if(m.videoWidth>0&&m.videoHeight>0){u()}};this.play=function(){if(!t){return}A();if(G){w(b.api.events.state.PLAYING)}else{w(b.api.events.state.BUFFERING)}m.play()};this.pause=function(){if(!t){return}m.pause();w(b.api.events.state.PAUSED)};this.seek=function(U){if(!t){return}if(!C&&m.readyState>0){if(!(j.duration<=0||isNaN(j.duration))&&!(j.position<=0||isNaN(j.position))){m.currentTime=U;m.play()}}else{M=U}};var z=this.stop=function(U){if(!t){return}if(!e.exists(U)){U=true}r();if(U){G=false;var V=navigator.userAgent;if(m.webkitSupportsFullscreen){try{m.webkitExitFullscreen()}catch(W){}}m.style.opacity=0;v();if(e.isIE()){m.src=""}else{m.removeAttribute("src")}e.empty(m);m.load();L=true}w(b.api.events.state.IDLE)};this.fullscreen=function(U){if(U===true){this.resize("100%","100%")}else{this.resize(j.config.width,j.config.height)}};this.resize=function(V,U){};this.volume=function(U){if(!a){m.volume=U/100;s(b.api.events.JWPLAYER_MEDIA_VOLUME,{volume:(U/100)})}};this.mute=function(U){if(!a){m.muted=U;s(b.api.events.JWPLAYER_MEDIA_MUTE,{mute:U})}};this.getDisplayElement=function(){return m};this.hasChrome=function(){return a&&(f==b.api.events.state.PLAYING)};this.detachMedia=function(){t=false;return this.getDisplayElement()};this.attachMedia=function(){t=true};function H(V,U){return function(W){if(e.exists(W.target.parentNode)){U(W)}}}function R(){f=b.api.events.state.IDLE;t=true;m=n();m.setAttribute("x-webkit-airplay","allow");if(B.parentNode){m.id=B.id;B.parentNode.replaceChild(m,B)}}function n(){var U=c[j.id];if(!U){if(B.tagName.toLowerCase()=="video"){U=B}else{U=document.createElement("video")}c[j.id]=U;if(!U.id){U.id=B.id}}for(var V in J){U.addEventListener(V,H(V,J[V]),true)}return U}function w(U){if(U==b.api.events.state.PAUSED&&f==b.api.events.state.IDLE){return}if(a){switch(U){case b.api.events.state.PLAYING:P();break;case b.api.events.state.BUFFERING:case b.api.events.state.PAUSED:v();break}}if(f!=U){var V=f;j.state=f=U;s(b.api.events.JWPLAYER_PLAYER_STATE,{oldstate:V,newstate:U})}}function y(U){}function l(U){var V=Math.round(m.volume*100);s(b.api.events.JWPLAYER_MEDIA_VOLUME,{volume:V},true);s(b.api.events.JWPLAYER_MEDIA_MUTE,{mute:m.muted},true)}function D(W){if(!t){return}var V;if(e.exists(W)&&W.lengthComputable&&W.total){V=W.loaded/W.total*100}else{if(e.exists(m.buffered)&&(m.buffered.length>0)){var U=m.buffered.length-1;if(U>=0){V=m.buffered.end(U)/m.duration*100}}}if(e.useNativeFullscreen()&&e.exists(m.webkitDisplayingFullscreen)){if(j.fullscreen!=m.webkitDisplayingFullscreen){s(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:m.webkitDisplayingFullscreen},true)}}if(G===false&&f==b.api.events.state.BUFFERING){s(b.api.events.JWPLAYER_MEDIA_BUFFER_FULL);G=true}if(!I){if(V==100){I=true}if(e.exists(V)&&(V>j.buffer)){j.buffer=Math.round(V);s(b.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:Math.round(V)})}}}function N(V){if(!t){return}if(e.exists(V)&&e.exists(V.target)){if(x>0){if(!isNaN(V.target.duration)&&(isNaN(j.duration)||j.duration<1)){if(V.target.duration==Infinity){j.duration=0}else{j.duration=Math.round(V.target.duration*10)/10}}}if(!C&&m.readyState>0){w(b.api.events.state.PLAYING)}if(f==b.api.events.state.PLAYING){if(m.readyState>0&&(M>-1||!C)){C=true;try{if(m.currentTime!=M&&M>-1){m.currentTime=M;M=-1}}catch(U){}m.volume=j.volume/100;m.muted=j.mute}j.position=j.duration>0?(Math.round(V.target.currentTime*10)/10):0;s(b.api.events.JWPLAYER_MEDIA_TIME,{position:j.position,duration:j.duration});if(j.position>=j.duration&&(j.position>0||j.duration>0)){O();return}}}D(V)}function g(U){}function p(U){if(!t){return}if(d[U.type]){if(U.type=="ended"){O()}else{w(d[U.type])}}}function u(V){if(!t){return}var U=Math.round(m.duration*10)/10;var W={height:m.videoHeight,width:m.videoWidth,duration:U};if(!x){if((j.duration<U||isNaN(j.duration))&&m.duration!=Infinity){j.duration=U}}s(b.api.events.JWPLAYER_MEDIA_META,{metadata:W})}function o(W){if(!t){return}if(f==b.api.events.state.IDLE){return}var V="There was an error: ";if((W.target.error&&W.target.tagName.toLowerCase()=="video")||W.target.parentNode.error&&W.target.parentNode.tagName.toLowerCase()=="video"){var U=!e.exists(W.target.error)?W.target.parentNode.error:W.target.error;switch(U.code){case U.MEDIA_ERR_ABORTED:e.log("User aborted the video playback.");return;case U.MEDIA_ERR_NETWORK:V="A network error caused the video download to fail part-way: ";break;case U.MEDIA_ERR_DECODE:V="The video playback was aborted due to a corruption problem or because the video used features your browser did not support: ";break;case U.MEDIA_ERR_SRC_NOT_SUPPORTED:V="The video could not be loaded, either because the server or network failed or because the format is not supported: ";break;default:V="An unknown error occurred: ";break}}else{if(W.target.tagName.toLowerCase()=="source"){Q--;if(Q>0){return}if(e.userAgentMatch(/firefox/i)){e.log("The video could not be loaded, either because the server or network failed or because the format is not supported.");z(false);return}else{V="The video could not be loaded, either because the server or network failed or because the format is not supported: "}}else{e.log("An unknown error occurred. Continuing...");return}}z(false);V+=S();_error=true;s(b.api.events.JWPLAYER_ERROR,{message:V});return}function S(){var W="";for(var V in T.levels){var U=T.levels[V];var X=B.ownerDocument.createElement("source");W+=b.utils.getAbsolutePath(U.file);if(V<(T.levels.length-1)){W+=", "}}return W}function A(){if(!e.exists(E)){E=setInterval(function(){D()},100)}}function r(){clearInterval(E);E=null}function O(){if(f==b.api.events.state.PLAYING){z(false);s(b.api.events.JWPLAYER_MEDIA_BEFORECOMPLETE);s(b.api.events.JWPLAYER_MEDIA_COMPLETE)}}function k(U){if(e.exists(m.webkitDisplayingFullscreen)){if(j.fullscreen&&!m.webkitDisplayingFullscreen){s(b.api.events.JWPLAYER_FULLSCREEN,{fullscreen:false},true)}}}function q(W){if(W.length>0&&e.userAgentMatch(/Safari/i)&&!e.userAgentMatch(/Chrome/i)){var U=-1;for(var V=0;V<W.length;V++){switch(e.extension(W[V].file)){case"mp4":if(U<0){U=V}break;case"webm":W.splice(V,1);break}}if(U>0){var X=W.splice(U,1)[0];W.unshift(X)}}}function P(){setTimeout(function(){m.setAttribute("controls","controls")},100)}function v(){setTimeout(function(){m.removeAttribute("controls")},250)}function s(U,W,V){if(t||V){if(W){K.sendEvent(U,W)}else{K.sendEvent(U)}}}}})(jwplayer);(function(a){var c={ended:a.api.events.state.IDLE,playing:a.api.events.state.PLAYING,pause:a.api.events.state.PAUSED,buffering:a.api.events.state.BUFFERING};var b=a.utils.css;a.html5.mediayoutube=function(j,e){var f=new a.html5.eventdispatcher();a.utils.extend(this,f);var l=j;var h=document.getElementById(e.id);var g=a.api.events.state.IDLE;var n,m;function k(p){if(g!=p){var q=g;l.state=p;g=p;f.sendEvent(a.api.events.JWPLAYER_PLAYER_STATE,{oldstate:q,newstate:p})}}this.getDisplayElement=this.detachMedia=function(){return h};this.attachMedia=function(){};this.play=function(){if(g==a.api.events.state.IDLE){f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:100});f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER_FULL);k(a.api.events.state.PLAYING)}else{if(g==a.api.events.state.PAUSED){k(a.api.events.state.PLAYING)}}};this.pause=function(){k(a.api.events.state.PAUSED)};this.seek=function(p){};this.stop=function(p){if(!_utils.exists(p)){p=true}l.position=0;k(a.api.events.state.IDLE);if(p){b(h,{display:"none"})}};this.volume=function(p){l.setVolume(p);f.sendEvent(a.api.events.JWPLAYER_MEDIA_VOLUME,{volume:Math.round(p)})};this.mute=function(p){h.muted=p;f.sendEvent(a.api.events.JWPLAYER_MEDIA_MUTE,{mute:p})};this.resize=function(q,p){if(q*p>0&&n){n.width=m.width=q;n.height=m.height=p}};this.fullscreen=function(p){if(p===true){this.resize("100%","100%")}else{this.resize(l.config.width,l.config.height)}};this.load=function(p){o(p);b(n,{display:"block"});k(a.api.events.state.BUFFERING);f.sendEvent(a.api.events.JWPLAYER_MEDIA_BUFFER,{bufferPercent:0});f.sendEvent(a.api.events.JWPLAYER_MEDIA_LOADED);this.play()};this.hasChrome=function(){return(g!=a.api.events.state.IDLE)};function o(v){var s=v.levels[0].file;s=["http://www.youtube.com/v/",d(s),"&hl=en_US&fs=1&autoplay=1"].join("");n=document.createElement("object");n.id=h.id;n.style.position="absolute";var u={movie:s,allowfullscreen:"true",allowscriptaccess:"always"};for(var p in u){var t=document.createElement("param");t.name=p;t.value=u[p];n.appendChild(t)}m=document.createElement("embed");n.appendChild(m);var q={src:s,type:"application/x-shockwave-flash",allowfullscreen:"true",allowscriptaccess:"always",width:n.width,height:n.height};for(var r in q){m.setAttribute(r,q[r])}n.appendChild(m);n.style.zIndex=2147483000;if(h!=n&&h.parentNode){h.parentNode.replaceChild(n,h)}h=n}function d(q){var p=q.split(/\?|\#\!/);var s="";for(var r=0;r<p.length;r++){if(p[r].substr(0,2)=="v="){s=p[r].substr(2)}}if(s==""){if(q.indexOf("/v/")>=0){s=q.substr(q.indexOf("/v/")+3)}else{if(q.indexOf("youtu.be")>=0){s=q.substr(q.indexOf("youtu.be/")+9)}else{s=q}}}if(s.indexOf("?")>-1){s=s.substr(0,s.indexOf("?"))}if(s.indexOf("&")>-1){s=s.substr(0,s.indexOf("&"))}return s}this.embed=m;return this}})(jwplayer);(function(jwplayer){var _configurableStateVariables=["width","height","start","duration","volume","mute","fullscreen","item","plugins","stretching"];var _utils=jwplayer.utils;jwplayer.html5.model=function(api,container,options){var _api=api;var _container=container;var _cookies=_utils.getCookies();var _model={id:_container.id,playlist:[],state:jwplayer.api.events.state.IDLE,position:0,buffer:0,container:_container,config:{width:480,height:320,item:-1,skin:undefined,file:undefined,image:undefined,start:0,duration:0,bufferlength:5,volume:_cookies.volume?_cookies.volume:90,mute:_cookies.mute&&_cookies.mute.toString().toLowerCase()=="true"?true:false,fullscreen:false,repeat:"",stretching:jwplayer.utils.stretching.UNIFORM,autostart:false,debug:undefined,screencolor:undefined}};var _media;var _eventDispatcher=new jwplayer.html5.eventdispatcher();var _components=["display","logo","controlbar","playlist","dock"];jwplayer.utils.extend(_model,_eventDispatcher);for(var option in options){if(typeof options[option]=="string"){var type=/color$/.test(option)?"color":null;options[option]=jwplayer.utils.typechecker(options[option],type)}var config=_model.config;var path=option.split(".");for(var edge in path){if(edge==path.length-1){config[path[edge]]=options[option]}else{if(!jwplayer.utils.exists(config[path[edge]])){config[path[edge]]={}}config=config[path[edge]]}}}for(var index in _configurableStateVariables){var configurableStateVariable=_configurableStateVariables[index];_model[configurableStateVariable]=_model.config[configurableStateVariable]}var pluginorder=_components.concat([]);if(jwplayer.utils.exists(_model.plugins)){if(typeof _model.plugins=="string"){var userplugins=_model.plugins.split(",");for(var userplugin in userplugins){if(typeof userplugins[userplugin]=="string"){pluginorder.push(userplugins[userplugin].replace(/^\s+|\s+$/g,""))}}}}if(jwplayer.utils.isMobile()){pluginorder=["display","logo","dock","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}else{if(_model.config.chromeless){pluginorder=["logo","dock","playlist"];if(!jwplayer.utils.exists(_model.config.repeat)){_model.config.repeat="list"}}}_model.plugins={order:pluginorder,config:{},object:{}};if(typeof _model.config.components!="undefined"){for(var component in _model.config.components){_model.plugins.config[component]=_model.config.components[component]}}var playlistVisible=false;for(var pluginIndex in _model.plugins.order){var pluginName=_model.plugins.order[pluginIndex];var pluginConfig=!jwplayer.utils.exists(_model.plugins.config[pluginName])?{}:_model.plugins.config[pluginName];_model.plugins.config[pluginName]=!jwplayer.utils.exists(_model.plugins.config[pluginName])?pluginConfig:jwplayer.utils.extend(_model.plugins.config[pluginName],pluginConfig);if(!jwplayer.utils.exists(_model.plugins.config[pluginName].position)){if(pluginName=="playlist"){_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.NONE}else{_model.plugins.config[pluginName].position=jwplayer.html5.view.positions.OVER}}else{if(pluginName=="playlist"){playlistVisible=true}_model.plugins.config[pluginName].position=_model.plugins.config[pluginName].position.toString().toUpperCase()}}if(_model.plugins.config.controlbar&&playlistVisible){_model.plugins.config.controlbar.hideplaylistcontrols=true}if(typeof _model.plugins.config.dock!="undefined"){if(typeof _model.plugins.config.dock!="object"){var position=_model.plugins.config.dock.toString().toUpperCase();_model.plugins.config.dock={position:position}}if(typeof _model.plugins.config.dock.position!="undefined"){_model.plugins.config.dock.align=_model.plugins.config.dock.position;_model.plugins.config.dock.position=jwplayer.html5.view.positions.OVER}if(typeof _model.plugins.config.dock.idlehide=="undefined"){try{_model.plugins.config.dock.idlehide=_model.plugins.config.controlbar.idlehide}catch(e){}}}function _loadExternal(playlistfile){var loader=new jwplayer.html5.playlistloader();loader.addEventListener(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,function(evt){_model.playlist=new jwplayer.html5.playlist(evt);_loadComplete(true)});loader.addEventListener(jwplayer.api.events.JWPLAYER_ERROR,function(evt){_model.playlist=new jwplayer.html5.playlist({playlist:[]});_loadComplete(false)});loader.load(playlistfile)}function _loadComplete(){if(_model.config.shuffle){_model.item=_getShuffleItem()}else{if(_model.config.item>=_model.playlist.length){_model.config.item=_model.playlist.length-1}else{if(_model.config.item<0){_model.config.item=0}}_model.item=_model.config.item}_model.position=0;_model.duration=_model.playlist.length>0?_model.playlist[_model.item].duration:0;_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:_model.playlist});_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_PLAYLIST_ITEM,{index:_model.item})}_model.loadPlaylist=function(arg){var input;if(typeof arg=="string"){if(arg.indexOf("[")==0||arg.indexOf("{")=="0"){try{input=eval(arg)}catch(err){input=arg}}else{input=arg}}else{input=arg}var config;switch(jwplayer.utils.typeOf(input)){case"object":config=input;break;case"array":config={playlist:input};break;default:config={file:input};break}_model.playlist=new jwplayer.html5.playlist(config);_model.item=_model.config.item>=0?_model.config.item:0;if(!_model.playlist[0].provider&&_model.playlist[0].file){_loadExternal(_model.playlist[0].file)}else{_loadComplete()}};function _getShuffleItem(){var result=null;if(_model.playlist.length>1){while(!jwplayer.utils.exists(result)){result=Math.floor(Math.random()*_model.playlist.length);if(result==_model.item){result=null}}}else{result=0}return result}function forward(evt){switch(evt.type){case jwplayer.api.events.JWPLAYER_MEDIA_LOADED:_container=_media.getDisplayElement();break;case jwplayer.api.events.JWPLAYER_MEDIA_MUTE:this.mute=evt.mute;break;case jwplayer.api.events.JWPLAYER_MEDIA_VOLUME:this.volume=evt.volume;break}_eventDispatcher.sendEvent(evt.type,evt)}var _mediaProviders={};_model.setActiveMediaProvider=function(playlistItem){if(playlistItem.provider=="audio"){playlistItem.provider="sound"}var provider=playlistItem.provider;var current=_media?_media.getDisplayElement():null;if(provider=="sound"||provider=="http"||provider==""){provider="video"}if(!jwplayer.utils.exists(_mediaProviders[provider])){switch(provider){case"video":_media=new jwplayer.html5.mediavideo(_model,current?current:_container);break;case"youtube":_media=new jwplayer.html5.mediayoutube(_model,current?current:_container);break}if(!jwplayer.utils.exists(_media)){return false}_media.addGlobalListener(forward);_mediaProviders[provider]=_media}else{if(_media!=_mediaProviders[provider]){if(_media){_media.stop()}_media=_mediaProviders[provider]}}return true};_model.getMedia=function(){return _media};_model.seek=function(pos){_eventDispatcher.sendEvent(jwplayer.api.events.JWPLAYER_MEDIA_SEEK,{position:_model.position,offset:pos});return _media.seek(pos)};_model.setVolume=function(newVol){_utils.saveCookie("volume",newVol);_model.volume=newVol};_model.setMute=function(state){_utils.saveCookie("mute",state);_model.mute=state};_model.setupPlugins=function(){if(!jwplayer.utils.exists(_model.plugins)||!jwplayer.utils.exists(_model.plugins.order)||_model.plugins.order.length==0){jwplayer.utils.log("No plugins to set up");return _model}for(var i=0;i<_model.plugins.order.length;i++){try{var pluginName=_model.plugins.order[i];if(jwplayer.utils.exists(jwplayer.html5[pluginName])){if(pluginName=="playlist"){_model.plugins.object[pluginName]=new jwplayer.html5.playlistcomponent(_api,_model.plugins.config[pluginName])}else{_model.plugins.object[pluginName]=new jwplayer.html5[pluginName](_api,_model.plugins.config[pluginName])}}else{_model.plugins.order.splice(plugin,plugin+1)}if(typeof _model.plugins.object[pluginName].addGlobalListener=="function"){_model.plugins.object[pluginName].addGlobalListener(forward)}}catch(err){jwplayer.utils.log("Could not setup "+pluginName)}}};return _model}})(jwplayer);(function(a){a.html5.playlist=function(b){var d=[];if(b.playlist&&b.playlist instanceof Array&&b.playlist.length>0){for(var c in b.playlist){if(!isNaN(parseInt(c))){d.push(new a.html5.playlistitem(b.playlist[c]))}}}else{d.push(new a.html5.playlistitem(b))}return d}})(jwplayer);(function(a){var c={size:180,position:a.html5.view.positions.NONE,itemheight:60,thumbs:true,fontcolor:"#000000",overcolor:"",activecolor:"",backgroundcolor:"#f8f8f8",font:"_sans",fontsize:"",fontstyle:"",fontweight:""};var b={_sans:"Arial, Helvetica, sans-serif",_serif:"Times, Times New Roman, serif",_typewriter:"Courier New, Courier, monospace"};_utils=a.utils;_css=_utils.css;_hide=function(d){_css(d,{display:"none"})};_show=function(d){_css(d,{display:"block"})};a.html5.playlistcomponent=function(r,C){var x=r;var e=a.utils.extend({},c,x.skin.getComponentSettings("playlist"),C);if(e.position==a.html5.view.positions.NONE||typeof a.html5.view.positions[e.position]=="undefined"){return}var y;var l;var D;var d;var g;var f;var k=-1;var h={background:undefined,item:undefined,itemOver:undefined,itemImage:undefined,itemActive:undefined};this.getDisplayElement=function(){return y};this.resize=function(G,E){l=G;D=E;if(x.jwGetFullscreen()){_hide(y)}else{var F={display:"block",width:l,height:D};_css(y,F)}};this.show=function(){_show(y)};this.hide=function(){_hide(y)};function j(){y=document.createElement("div");y.id=x.id+"_jwplayer_playlistcomponent";y.style.overflow="hidden";switch(e.position){case a.html5.view.positions.RIGHT:case a.html5.view.positions.LEFT:y.style.width=e.size+"px";break;case a.html5.view.positions.TOP:case a.html5.view.positions.BOTTOM:y.style.height=e.size+"px";break}B();if(h.item){e.itemheight=h.item.height}y.style.backgroundColor="#C6C6C6";x.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,s);x.jwAddEventListener(a.api.events.JWPLAYER_PLAYLIST_ITEM,v);x.jwAddEventListener(a.api.events.JWPLAYER_PLAYER_STATE,m)}function p(){var E=document.createElement("ul");_css(E,{width:y.style.width,minWidth:y.style.width,height:y.style.height,backgroundColor:e.backgroundcolor,backgroundImage:h.background?"url("+h.background.src+")":"",color:e.fontcolor,listStyle:"none",margin:0,padding:0,fontFamily:b[e.font]?b[e.font]:b._sans,fontSize:(e.fontsize?e.fontsize:11)+"px",fontStyle:e.fontstyle,fontWeight:e.fontweight,overflowY:"auto"});return E}function z(E){return function(){var F=f.getElementsByClassName("item")[E];var G=e.fontcolor;var H=h.item?"url("+h.item.src+")":"";if(E==x.jwGetPlaylistIndex()){if(e.activecolor!==""){G=e.activecolor}if(h.itemActive){H="url("+h.itemActive.src+")"}}_css(F,{color:e.overcolor!==""?e.overcolor:G,backgroundImage:h.itemOver?"url("+h.itemOver.src+")":H})}}function o(E){return function(){var F=f.getElementsByClassName("item")[E];var G=e.fontcolor;var H=h.item?"url("+h.item.src+")":"";if(E==x.jwGetPlaylistIndex()){if(e.activecolor!==""){G=e.activecolor}if(h.itemActive){H="url("+h.itemActive.src+")"}}_css(F,{color:G,backgroundImage:H})}}function q(J){var Q=d[J];var P=document.createElement("li");P.className="item";_css(P,{height:e.itemheight,display:"block",cursor:"pointer",backgroundImage:h.item?"url("+h.item.src+")":"",backgroundSize:"100% "+e.itemheight+"px"});P.onmouseover=z(J);P.onmouseout=o(J);var K=document.createElement("div");var G=new Image();var L=0;var M=0;var N=0;if(w()&&(Q.image||Q["playlist.image"]||h.itemImage)){G.className="image";if(h.itemImage){L=(e.itemheight-h.itemImage.height)/2;M=h.itemImage.width;N=h.itemImage.height}else{M=e.itemheight*4/3;N=e.itemheight}_css(K,{height:N,width:M,"float":"left",styleFloat:"left",cssFloat:"left",margin:"0 5px 0 0",background:"black",overflow:"hidden",margin:L+"px",position:"relative"});_css(G,{position:"relative"});K.appendChild(G);G.onload=function(){a.utils.stretch(a.utils.stretching.FILL,G,M,N,this.naturalWidth,this.naturalHeight)};if(Q["playlist.image"]){G.src=Q["playlist.image"]}else{if(Q.image){G.src=Q.image}else{if(h.itemImage){G.src=h.itemImage.src}}}P.appendChild(K)}var F=l-M-L*2;if(D<e.itemheight*d.length){F-=15}var E=document.createElement("div");_css(E,{position:"relative",height:"100%",overflow:"hidden"});var H=document.createElement("span");if(Q.duration>0){H.className="duration";_css(H,{fontSize:(e.fontsize?e.fontsize:11)+"px",fontWeight:(e.fontweight?e.fontweight:"bold"),width:"40px",height:e.fontsize?e.fontsize+10:20,lineHeight:24,"float":"right",styleFloat:"right",cssFloat:"right"});H.innerHTML=_utils.timeFormat(Q.duration);E.appendChild(H)}var O=document.createElement("span");O.className="title";_css(O,{padding:"5px 5px 0 "+(L?0:"5px"),height:e.fontsize?e.fontsize+10:20,lineHeight:e.fontsize?e.fontsize+10:20,overflow:"hidden","float":"left",styleFloat:"left",cssFloat:"left",width:((Q.duration>0)?F-50:F)-10+"px",fontSize:(e.fontsize?e.fontsize:13)+"px",fontWeight:(e.fontweight?e.fontweight:"bold")});O.innerHTML=Q?Q.title:"";E.appendChild(O);if(Q.description){var I=document.createElement("span");I.className="description";_css(I,{display:"block","float":"left",styleFloat:"left",cssFloat:"left",margin:0,paddingLeft:O.style.paddingLeft,paddingRight:O.style.paddingRight,lineHeight:(e.fontsize?e.fontsize+4:16)+"px",overflow:"hidden",position:"relative"});I.innerHTML=Q.description;E.appendChild(I)}P.appendChild(E);return P}function s(F){y.innerHTML="";d=t();if(!d){return}items=[];f=p();for(var G=0;G<d.length;G++){var E=q(G);E.onclick=A(G);f.appendChild(E);items.push(E)}k=x.jwGetPlaylistIndex();o(k)();y.appendChild(f);if(_utils.isIOS()&&window.iScroll){f.style.height=e.itemheight*d.length+"px";var H=new iScroll(y.id)}}function t(){var F=x.jwGetPlaylist();var G=[];for(var E=0;E<F.length;E++){if(!F[E]["ova.hidden"]){G.push(F[E])}}return G}function A(E){return function(){x.jwPlaylistItem(E);x.jwPlay(true)}}function n(){f.scrollTop=x.jwGetPlaylistIndex()*e.itemheight}function w(){return e.thumbs.toString().toLowerCase()=="true"}function v(E){if(k>=0){o(k)();k=E.index}o(E.index)();n()}function m(){if(e.position==a.html5.view.positions.OVER){switch(x.jwGetState()){case a.api.events.state.IDLE:_show(y);break;default:_hide(y);break}}}function B(){for(var E in h){h[E]=u(E)}}function u(E){return x.skin.getSkinElement("playlist",E)}j();return this}})(jwplayer);(function(b){b.html5.playlistitem=function(d){var e={author:"",date:"",description:"",image:"",link:"",mediaid:"",tags:"",title:"",provider:"",file:"",streamer:"",duration:-1,start:0,currentLevel:-1,levels:[]};var c=b.utils.extend({},e,d);if(c.type){c.provider=c.type;delete c.type}if(c.levels.length===0){c.levels[0]=new b.html5.playlistitemlevel(c)}if(!c.provider){c.provider=a(c.levels[0])}else{c.provider=c.provider.toLowerCase()}return c};function a(e){if(b.utils.isYouTube(e.file)){return"youtube"}else{var f=b.utils.extension(e.file);var c;if(f&&b.utils.extensionmap[f]){if(f=="m3u8"){return"video"}c=b.utils.extensionmap[f].html5}else{if(e.type){c=e.type}}if(c){var d=c.split("/")[0];if(d=="audio"){return"sound"}else{if(d=="video"){return d}}}}return""}})(jwplayer);(function(a){a.html5.playlistitemlevel=function(b){var d={file:"",streamer:"",bitrate:0,width:0};for(var c in d){if(a.utils.exists(b[c])){d[c]=b[c]}}return d}})(jwplayer);(function(a){a.html5.playlistloader=function(){var c=new a.html5.eventdispatcher();a.utils.extend(this,c);this.load=function(e){a.utils.ajax(e,d,b)};function d(g){var f=[];try{var f=a.utils.parsers.rssparser.parse(g.responseXML.firstChild);c.sendEvent(a.api.events.JWPLAYER_PLAYLIST_LOADED,{playlist:new a.html5.playlist({playlist:f})})}catch(h){b("Could not parse the playlist")}}function b(e){c.sendEvent(a.api.events.JWPLAYER_ERROR,{message:e?e:"Could not load playlist an unknown reason."})}}})(jwplayer);(function(a){a.html5.skin=function(){var b={};var c=false;this.load=function(d,e){new a.html5.skinloader(d,function(f){c=true;b=f;e()},function(){new a.html5.skinloader("",function(f){c=true;b=f;e()})})};this.getSkinElement=function(d,e){if(c){try{return b[d].elements[e]}catch(f){a.utils.log("No such skin component / element: ",[d,e])}}return null};this.getComponentSettings=function(d){if(c&&b&&b[d]){return b[d].settings}return null};this.getComponentLayout=function(d){if(c){return b[d].layout}return null}}})(jwplayer);(function(a){a.html5.skinloader=function(f,p,k){var o={};var c=p;var l=k;var e=true;var j;var n=f;var s=false;function m(){if(typeof n!="string"||n===""){d(a.html5.defaultSkin().xml)}else{a.utils.ajax(a.utils.getAbsolutePath(n),function(t){try{if(a.utils.exists(t.responseXML)){d(t.responseXML);return}}catch(u){h()}d(a.html5.defaultSkin().xml)},function(t){d(a.html5.defaultSkin().xml)})}}function d(y){var E=y.getElementsByTagName("component");if(E.length===0){return}for(var H=0;H<E.length;H++){var C=E[H].getAttribute("name");var B={settings:{},elements:{},layout:{}};o[C]=B;var G=E[H].getElementsByTagName("elements")[0].getElementsByTagName("element");for(var F=0;F<G.length;F++){b(G[F],C)}var z=E[H].getElementsByTagName("settings")[0];if(z&&z.childNodes.length>0){var K=z.getElementsByTagName("setting");for(var P=0;P<K.length;P++){var Q=K[P].getAttribute("name");var I=K[P].getAttribute("value");var x=/color$/.test(Q)?"color":null;o[C].settings[Q]=a.utils.typechecker(I,x)}}var L=E[H].getElementsByTagName("layout")[0];if(L&&L.childNodes.length>0){var M=L.getElementsByTagName("group");for(var w=0;w<M.length;w++){var A=M[w];o[C].layout[A.getAttribute("position")]={elements:[]};for(var O=0;O<A.attributes.length;O++){var D=A.attributes[O];o[C].layout[A.getAttribute("position")][D.name]=D.value}var N=A.getElementsByTagName("*");for(var v=0;v<N.length;v++){var t=N[v];o[C].layout[A.getAttribute("position")].elements.push({type:t.tagName});for(var u=0;u<t.attributes.length;u++){var J=t.attributes[u];o[C].layout[A.getAttribute("position")].elements[v][J.name]=J.value}if(!a.utils.exists(o[C].layout[A.getAttribute("position")].elements[v].name)){o[C].layout[A.getAttribute("position")].elements[v].name=t.tagName}}}}e=false;r()}}function r(){clearInterval(j);if(!s){j=setInterval(function(){q()},100)}}function b(y,x){var w=new Image();var t=y.getAttribute("name");var v=y.getAttribute("src");var A;if(v.indexOf("data:image/png;base64,")===0){A=v}else{var u=a.utils.getAbsolutePath(n);var z=u.substr(0,u.lastIndexOf("/"));A=[z,x,v].join("/")}o[x].elements[t]={height:0,width:0,src:"",ready:false,image:w};w.onload=function(B){g(w,t,x)};w.onerror=function(B){s=true;r();l()};w.src=A}function h(){for(var u in o){var w=o[u];for(var t in w.elements){var x=w.elements[t];var v=x.image;v.onload=null;v.onerror=null;delete x.image;delete w.elements[t]}delete o[u]}}function q(){for(var t in o){if(t!="properties"){for(var u in o[t].elements){if(!o[t].elements[u].ready){return}}}}if(e===false){clearInterval(j);c(o)}}function g(t,v,u){if(o[u]&&o[u].elements[v]){o[u].elements[v].height=t.height;o[u].elements[v].width=t.width;o[u].elements[v].src=t.src;o[u].elements[v].ready=true;r()}else{a.utils.log("Loaded an image for a missing element: "+u+"."+v)}}m()}})(jwplayer);(function(a){a.html5.api=function(c,p){var n={};var g=document.createElement("div");c.parentNode.replaceChild(g,c);g.id=c.id;n.version=a.version;n.id=g.id;var m=new a.html5.model(n,g,p);var k=new a.html5.view(n,g,m);var l=new a.html5.controller(n,g,m,k);n.skin=new a.html5.skin();n.jwPlay=function(q){if(typeof q=="undefined"){f()}else{if(q.toString().toLowerCase()=="true"){l.play()}else{l.pause()}}};n.jwPause=function(q){if(typeof q=="undefined"){f()}else{if(q.toString().toLowerCase()=="true"){l.pause()}else{l.play()}}};function f(){if(m.state==a.api.events.state.PLAYING||m.state==a.api.events.state.BUFFERING){l.pause()}else{l.play()}}n.jwStop=l.stop;n.jwSeek=l.seek;n.jwPlaylistItem=function(q){if(d){if(d.playlistClickable()){d.jwInstreamDestroy();return l.item(q)}}else{return l.item(q)}};n.jwPlaylistNext=l.next;n.jwPlaylistPrev=l.prev;n.jwResize=l.resize;n.jwLoad=l.load;n.jwDetachMedia=l.detachMedia;n.jwAttachMedia=l.attachMedia;function j(q){return function(){return m[q]}}function e(q,s,r){return function(){var t=m.plugins.object[q];if(t&&t[s]&&typeof t[s]=="function"){t[s].apply(t,r)}}}n.jwGetPlaylistIndex=j("item");n.jwGetPosition=j("position");n.jwGetDuration=j("duration");n.jwGetBuffer=j("buffer");n.jwGetWidth=j("width");n.jwGetHeight=j("height");n.jwGetFullscreen=j("fullscreen");n.jwSetFullscreen=l.setFullscreen;n.jwGetVolume=j("volume");n.jwSetVolume=l.setVolume;n.jwGetMute=j("mute");n.jwSetMute=l.setMute;n.jwGetStretching=function(){return m.stretching.toUpperCase()};n.jwGetState=j("state");n.jwGetVersion=function(){return n.version};n.jwGetPlaylist=function(){return m.playlist};n.jwAddEventListener=l.addEventListener;n.jwRemoveEventListener=l.removeEventListener;n.jwSendEvent=l.sendEvent;n.jwDockSetButton=function(t,q,r,s){if(m.plugins.object.dock&&m.plugins.object.dock.setButton){m.plugins.object.dock.setButton(t,q,r,s)}};n.jwControlbarShow=e("controlbar","show");n.jwControlbarHide=e("controlbar","hide");n.jwDockShow=e("dock","show");n.jwDockHide=e("dock","hide");n.jwDisplayShow=e("display","show");n.jwDisplayHide=e("display","hide");var d;n.jwLoadInstream=function(r,q){if(!d){d=new a.html5.instream(n,m,k,l)}setTimeout(function(){d.load(r,q)},10)};n.jwInstreamDestroy=function(){if(d){d.jwInstreamDestroy()}};n.jwInstreamAddEventListener=o("jwInstreamAddEventListener");n.jwInstreamRemoveEventListener=o("jwInstreamRemoveEventListener");n.jwInstreamGetState=o("jwInstreamGetState");n.jwInstreamGetDuration=o("jwInstreamGetDuration");n.jwInstreamGetPosition=o("jwInstreamGetPosition");n.jwInstreamPlay=o("jwInstreamPlay");n.jwInstreamPause=o("jwInstreamPause");n.jwInstreamSeek=o("jwInstreamSeek");function o(q){return function(){if(d&&typeof d[q]=="function"){return d[q].apply(this,arguments)}else{_utils.log("Could not call instream method - instream API not initialized")}}}n.jwGetLevel=function(){};n.jwGetBandwidth=function(){};n.jwGetLockState=function(){};n.jwLock=function(){};n.jwUnlock=function(){};function b(){if(m.config.playlistfile){m.addEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,h);m.loadPlaylist(m.config.playlistfile)}else{if(typeof m.config.playlist=="string"){m.addEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,h);m.loadPlaylist(m.config.playlist)}else{m.loadPlaylist(m.config);setTimeout(h,25)}}}function h(q){m.removeEventListener(a.api.events.JWPLAYER_PLAYLIST_LOADED,h);m.setupPlugins();k.setup();var q={id:n.id,version:n.version};l.playerReady(q)}if(m.config.chromeless&&!a.utils.isIOS()){b()}else{n.skin.load(m.config.skin,b)}return n}})(jwplayer)};
\ No newline at end of file
--- a/metadataplayer/libs/mustache.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,436 +0,0 @@
-/*
- mustache.js — Logic-less templates in JavaScript
-
- See http://mustache.github.com/ for more info.
-*/
-
-var Mustache = function () {
- var _toString = Object.prototype.toString;
-
- Array.isArray = Array.isArray || function (obj) {
- return _toString.call(obj) == "[object Array]";
- }
-
- var _trim = String.prototype.trim, trim;
-
- if (_trim) {
- trim = function (text) {
- return text == null ? "" : _trim.call(text);
- }
- } else {
- var trimLeft, trimRight;
-
- // IE doesn't match non-breaking spaces with \s.
- if ((/\S/).test("\xA0")) {
- trimLeft = /^[\s\xA0]+/;
- trimRight = /[\s\xA0]+$/;
- } else {
- trimLeft = /^\s+/;
- trimRight = /\s+$/;
- }
-
- trim = function (text) {
- return text == null ? "" :
- text.toString().replace(trimLeft, "").replace(trimRight, "");
- }
- }
-
- var escapeMap = {
- "&": "&",
- "<": "<",
- ">": ">",
- '"': '"',
- "'": '''
- };
-
- function escapeHTML(string) {
- return String(string).replace(/&(?!\w+;)|[<>"']/g, function (s) {
- return escapeMap[s] || s;
- });
- }
-
- var regexCache = {};
- var Renderer = function () {};
-
- Renderer.prototype = {
- otag: "{{",
- ctag: "}}",
- pragmas: {},
- buffer: [],
- pragmas_implemented: {
- "IMPLICIT-ITERATOR": true
- },
- context: {},
-
- render: function (template, context, partials, in_recursion) {
- // reset buffer & set context
- if (!in_recursion) {
- this.context = context;
- this.buffer = []; // TODO: make this non-lazy
- }
-
- // fail fast
- if (!this.includes("", template)) {
- if (in_recursion) {
- return template;
- } else {
- this.send(template);
- return;
- }
- }
-
- // get the pragmas together
- template = this.render_pragmas(template);
-
- // render the template
- var html = this.render_section(template, context, partials);
-
- // render_section did not find any sections, we still need to render the tags
- if (html === false) {
- html = this.render_tags(template, context, partials, in_recursion);
- }
-
- if (in_recursion) {
- return html;
- } else {
- this.sendLines(html);
- }
- },
-
- /*
- Sends parsed lines
- */
- send: function (line) {
- if (line !== "") {
- this.buffer.push(line);
- }
- },
-
- sendLines: function (text) {
- if (text) {
- var lines = text.split("\n");
- for (var i = 0; i < lines.length; i++) {
- this.send(lines[i]);
- }
- }
- },
-
- /*
- Looks for %PRAGMAS
- */
- render_pragmas: function (template) {
- // no pragmas
- if (!this.includes("%", template)) {
- return template;
- }
-
- var that = this;
- var regex = this.getCachedRegex("render_pragmas", function (otag, ctag) {
- return new RegExp(otag + "%([\\w-]+) ?([\\w]+=[\\w]+)?" + ctag, "g");
- });
-
- return template.replace(regex, function (match, pragma, options) {
- if (!that.pragmas_implemented[pragma]) {
- throw({message:
- "This implementation of mustache doesn't understand the '" +
- pragma + "' pragma"});
- }
- that.pragmas[pragma] = {};
- if (options) {
- var opts = options.split("=");
- that.pragmas[pragma][opts[0]] = opts[1];
- }
- return "";
- // ignore unknown pragmas silently
- });
- },
-
- /*
- Tries to find a partial in the curent scope and render it
- */
- render_partial: function (name, context, partials) {
- name = trim(name);
- if (!partials || partials[name] === undefined) {
- throw({message: "unknown_partial '" + name + "'"});
- }
- if (!context || typeof context[name] != "object") {
- return this.render(partials[name], context, partials, true);
- }
- return this.render(partials[name], context[name], partials, true);
- },
-
- /*
- Renders inverted (^) and normal (#) sections
- */
- render_section: function (template, context, partials) {
- if (!this.includes("#", template) && !this.includes("^", template)) {
- // did not render anything, there were no sections
- return false;
- }
-
- var that = this;
-
- var regex = this.getCachedRegex("render_section", function (otag, ctag) {
- // This regex matches _the first_ section ({{#foo}}{{/foo}}), and captures the remainder
- return new RegExp(
- "^([\\s\\S]*?)" + // all the crap at the beginning that is not {{*}} ($1)
-
- otag + // {{
- "(\\^|\\#)\\s*(.+)\\s*" + // #foo (# == $2, foo == $3)
- ctag + // }}
-
- "\n*([\\s\\S]*?)" + // between the tag ($2). leading newlines are dropped
-
- otag + // {{
- "\\/\\s*\\3\\s*" + // /foo (backreference to the opening tag).
- ctag + // }}
-
- "\\s*([\\s\\S]*)$", // everything else in the string ($4). leading whitespace is dropped.
-
- "g");
- });
-
-
- // for each {{#foo}}{{/foo}} section do...
- return template.replace(regex, function (match, before, type, name, content, after) {
- // before contains only tags, no sections
- var renderedBefore = before ? that.render_tags(before, context, partials, true) : "",
-
- // after may contain both sections and tags, so use full rendering function
- renderedAfter = after ? that.render(after, context, partials, true) : "",
-
- // will be computed below
- renderedContent,
-
- value = that.find(name, context);
-
- if (type === "^") { // inverted section
- if (!value || Array.isArray(value) && value.length === 0) {
- // false or empty list, render it
- renderedContent = that.render(content, context, partials, true);
- } else {
- renderedContent = "";
- }
- } else if (type === "#") { // normal section
- if (Array.isArray(value)) { // Enumerable, Let's loop!
- renderedContent = that.map(value, function (row) {
- return that.render(content, that.create_context(row), partials, true);
- }).join("");
- } else if (that.is_object(value)) { // Object, Use it as subcontext!
- renderedContent = that.render(content, that.create_context(value),
- partials, true);
- } else if (typeof value == "function") {
- // higher order section
- renderedContent = value.call(context, content, function (text) {
- return that.render(text, context, partials, true);
- });
- } else if (value) { // boolean section
- renderedContent = that.render(content, context, partials, true);
- } else {
- renderedContent = "";
- }
- }
-
- return renderedBefore + renderedContent + renderedAfter;
- });
- },
-
- /*
- Replace {{foo}} and friends with values from our view
- */
- render_tags: function (template, context, partials, in_recursion) {
- // tit for tat
- var that = this;
-
- var new_regex = function () {
- return that.getCachedRegex("render_tags", function (otag, ctag) {
- return new RegExp(otag + "(=|!|>|&|\\{|%)?([^#\\^]+?)\\1?" + ctag + "+", "g");
- });
- };
-
- var regex = new_regex();
- var tag_replace_callback = function (match, operator, name) {
- switch(operator) {
- case "!": // ignore comments
- return "";
- case "=": // set new delimiters, rebuild the replace regexp
- that.set_delimiters(name);
- regex = new_regex();
- return "";
- case ">": // render partial
- return that.render_partial(name, context, partials);
- case "{": // the triple mustache is unescaped
- case "&": // & operator is an alternative unescape method
- return that.find(name, context);
- default: // escape the value
- return escapeHTML(that.find(name, context));
- }
- };
- var lines = template.split("\n");
- for(var i = 0; i < lines.length; i++) {
- lines[i] = lines[i].replace(regex, tag_replace_callback, this);
- if (!in_recursion) {
- this.send(lines[i]);
- }
- }
-
- if (in_recursion) {
- return lines.join("\n");
- }
- },
-
- set_delimiters: function (delimiters) {
- var dels = delimiters.split(" ");
- this.otag = this.escape_regex(dels[0]);
- this.ctag = this.escape_regex(dels[1]);
- },
-
- escape_regex: function (text) {
- // thank you Simon Willison
- if (!arguments.callee.sRE) {
- var specials = [
- '/', '.', '*', '+', '?', '|',
- '(', ')', '[', ']', '{', '}', '\\'
- ];
- arguments.callee.sRE = new RegExp(
- '(\\' + specials.join('|\\') + ')', 'g'
- );
- }
- return text.replace(arguments.callee.sRE, '\\$1');
- },
-
- /*
- find `name` in current `context`. That is find me a value
- from the view object
- */
- find: function (name, context) {
- name = trim(name);
-
- // Checks whether a value is thruthy or false or 0
- function is_kinda_truthy(bool) {
- return bool === false || bool === 0 || bool;
- }
-
- var value;
-
- // check for dot notation eg. foo.bar
- if (name.match(/([a-z_]+)\./ig)) {
- var childValue = this.walk_context(name, context);
- if (is_kinda_truthy(childValue)) {
- value = childValue;
- }
- } else {
- if (is_kinda_truthy(context[name])) {
- value = context[name];
- } else if (is_kinda_truthy(this.context[name])) {
- value = this.context[name];
- }
- }
-
- if (typeof value == "function") {
- return value.apply(context);
- }
- if (value !== undefined) {
- return value;
- }
- // silently ignore unkown variables
- return "";
- },
-
- walk_context: function (name, context) {
- var path = name.split('.');
- // if the var doesn't exist in current context, check the top level context
- var value_context = (context[path[0]] != undefined) ? context : this.context;
- var value = value_context[path.shift()];
- while (value != undefined && path.length > 0) {
- value_context = value;
- value = value[path.shift()];
- }
- // if the value is a function, call it, binding the correct context
- if (typeof value == "function") {
- return value.apply(value_context);
- }
- return value;
- },
-
- // Utility methods
-
- /* includes tag */
- includes: function (needle, haystack) {
- return haystack.indexOf(this.otag + needle) != -1;
- },
-
- // by @langalex, support for arrays of strings
- create_context: function (_context) {
- if (this.is_object(_context)) {
- return _context;
- } else {
- var iterator = ".";
- if (this.pragmas["IMPLICIT-ITERATOR"]) {
- iterator = this.pragmas["IMPLICIT-ITERATOR"].iterator;
- }
- var ctx = {};
- ctx[iterator] = _context;
- return ctx;
- }
- },
-
- is_object: function (a) {
- return a && typeof a == "object";
- },
-
- /*
- Why, why, why? Because IE. Cry, cry cry.
- */
- map: function (array, fn) {
- if (typeof array.map == "function") {
- return array.map(fn);
- } else {
- var r = [];
- var l = array.length;
- for(var i = 0; i < l; i++) {
- r.push(fn(array[i]));
- }
- return r;
- }
- },
-
- getCachedRegex: function (name, generator) {
- var byOtag = regexCache[this.otag];
- if (!byOtag) {
- byOtag = regexCache[this.otag] = {};
- }
-
- var byCtag = byOtag[this.ctag];
- if (!byCtag) {
- byCtag = byOtag[this.ctag] = {};
- }
-
- var regex = byCtag[name];
- if (!regex) {
- regex = byCtag[name] = generator(this.otag, this.ctag);
- }
-
- return regex;
- }
- };
-
- return({
- name: "mustache.js",
- version: "0.5.0-dev",
-
- /*
- Turns a template and view into HTML
- */
- to_html: function (template, view, partials, send_fun) {
- var renderer = new Renderer();
- if (send_fun) {
- renderer.send = send_fun;
- }
- renderer.render(template, view || {}, partials);
- if (!send_fun) {
- return renderer.buffer.join("\n");
- }
- }
- });
-}();
Binary file metadataplayer/libs/paper.js has changed
Binary file metadataplayer/libs/player.swf has changed
--- a/metadataplayer/libs/popcorn-complete.min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,200 +0,0 @@
-/*
- * popcorn.js version 1.2
- * http://popcornjs.org
- *
- * Copyright 2011, Mozilla Foundation
- * Licensed under the MIT license
- */
-
-(function(g,b){function d(e,m){return function(){if(n.plugin.debug)return e.apply(this,arguments);try{return e.apply(this,arguments)}catch(q){n.plugin.errors.push({plugin:m,thrown:q,source:e.toString()});this.emit("error",n.plugin.errors)}}}if(b.addEventListener){var a=Array.prototype,c=Object.prototype,f=a.forEach,h=a.slice,p=c.hasOwnProperty,o=c.toString,l=g.Popcorn,i=/^(#([\w\-\_\.]+))$/,r=[],k=false,j={events:{hash:{},apis:{}}},v=function(){return g.requestAnimationFrame||g.webkitRequestAnimationFrame||
-g.mozRequestAnimationFrame||g.oRequestAnimationFrame||g.msRequestAnimationFrame||function(e){g.setTimeout(e,16)}}(),w=function(e){var m=e.media.currentTime,q=e.options.frameAnimation,s=e.data.disabled,t=e.data.trackEvents,u=t.animating,x=t.startIndex,A=n.registryByName,B=0,D,E;for(x=Math.min(x+1,t.byStart.length-2);x>0&&t.byStart[x];){B=t.byStart[x];E=(D=B._natives)&&D.type;if(!D||A[E]||e[E])if(B.start<=m&&B.end>m&&s.indexOf(E)===-1){if(!B._running){B._running=true;D.start.call(e,null,B);q&&B&&B._running&&
-B.natives.frame&&D.frame.call(e,null,B,m)}}else if(B._running===true){B._running=false;D.end.call(e,null,B);if(q&&B._natives.frame){B=u.indexOf(B);B>=0&&u.splice(B,1)}}x--}},n=function(e,m){return new n.p.init(e,m||null)};n.version="1.2";n.isSupported=true;n.instances=[];n.p=n.prototype={init:function(e,m){var q,s=this;if(typeof e==="function")if(b.readyState==="complete")e(b,n);else{r.push(e);if(!k){k=true;var t=function(){b.removeEventListener("DOMContentLoaded",t,false);for(var x=0,A=r.length;x<
-A;x++)r[x].call(b,n);r=null};b.addEventListener("DOMContentLoaded",t,false)}}else{this.media=(q=i.exec(e))&&q.length&&q[2]?b.getElementById(q[2]):e;this[this.media.nodeName&&this.media.nodeName.toLowerCase()||"video"]=this.media;n.instances.push(this);this.options=m||{};this.isDestroyed=false;this.data={timeUpdate:n.nop,disabled:[],events:{},hooks:{},history:[],state:{volume:this.media.volume},trackRefs:{},trackEvents:{byStart:[{start:-1,end:-1}],byEnd:[{start:-1,end:-1}],animating:[],startIndex:0,
-endIndex:0,previousUpdateTime:-1}};var u=function(){s.media.removeEventListener("loadeddata",u,false);var x;x=s.media.duration;x=x!=x?Number.MAX_VALUE:x+1;n.addTrackEvent(s,{start:x,end:x});if(s.options.frameAnimation){s.data.timeUpdate=function(){n.timeUpdate(s,{});s.emit("timeupdate");!s.isDestroyed&&v(s.data.timeUpdate)};!s.isDestroyed&&v(s.data.timeUpdate)}else{s.data.timeUpdate=function(A){n.timeUpdate(s,A)};s.isDestroyed||s.media.addEventListener("timeupdate",s.data.timeUpdate,false)}};s.media.readyState>=
-2?u():s.media.addEventListener("loadeddata",u,false);return this}}};n.p.init.prototype=n.p;n.forEach=function(e,m,q){if(!e||!m)return{};q=q||this;var s,t;if(f&&e.forEach===f)return e.forEach(m,q);if(o.call(e)==="[object NodeList]"){s=0;for(t=e.length;s<t;s++)m.call(q,e[s],s,e);return e}for(s in e)p.call(e,s)&&m.call(q,e[s],s,e);return e};n.extend=function(e){var m=h.call(arguments,1);n.forEach(m,function(q){for(var s in q)e[s]=q[s]});return e};n.extend(n,{noConflict:function(e){if(e)g.Popcorn=l;return n},
-error:function(e){throw Error(e);},guid:function(e){n.guid.counter++;return(e?e:"")+(+new Date+n.guid.counter)},sizeOf:function(e){var m=0,q;for(q in e)m++;return m},isArray:Array.isArray||function(e){return o.call(e)==="[object Array]"},nop:function(){},position:function(e){e=e.getBoundingClientRect();var m={},q=b.documentElement,s=b.body,t,u,x;t=q.clientTop||s.clientTop||0;u=q.clientLeft||s.clientLeft||0;x=g.pageYOffset&&q.scrollTop||s.scrollTop;q=g.pageXOffset&&q.scrollLeft||s.scrollLeft;t=Math.ceil(e.top+
-x-t);u=Math.ceil(e.left+q-u);for(var A in e)m[A]=Math.round(e[A]);return n.extend({},m,{top:t,left:u})},disable:function(e,m){var q=e.data.disabled;q.indexOf(m)===-1&&q.push(m);w(e);return e},enable:function(e,m){var q=e.data.disabled,s=q.indexOf(m);s>-1&&q.splice(s,1);w(e);return e},destroy:function(e){var m=e.data.events,q,s,t;for(s in m){q=m[s];for(t in q)delete q[t];m[s]=null}if(!e.isDestroyed){e.data.timeUpdate&&e.media.removeEventListener("timeupdate",e.data.timeUpdate,false);e.isDestroyed=
-true}}});n.guid.counter=1;n.extend(n.p,function(){var e={};n.forEach("load play pause currentTime playbackRate volume duration preload playbackRate autoplay loop controls muted buffered readyState seeking paused played seekable ended".split(/\s+/g),function(m){e[m]=function(q){if(typeof this.media[m]==="function"){if(q!=null&&/play|pause/.test(m))this.media.currentTime=n.util.toSeconds(q);this.media[m]();return this}if(q!=null){this.media[m]=q;return this}return this.media[m]}});return e}());n.forEach("enable disable".split(" "),
-function(e){n.p[e]=function(m){return n[e](this,m)}});n.extend(n.p,{roundTime:function(){return-~this.media.currentTime},exec:function(e,m){n.addTrackEvent(this,{start:e,end:e+1,_running:false,_natives:{start:m||n.nop,end:n.nop,type:"cue"}});return this},mute:function(e){e=e==null||e===true?"muted":"unmuted";if(e==="unmuted"){this.media.muted=false;this.media.volume=this.data.state.volume}if(e==="muted"){this.data.state.volume=this.media.volume;this.media.muted=true}this.emit(e);return this},unmute:function(e){return this.mute(e==
-null?false:!e)},position:function(){return n.position(this.media)},toggle:function(e){return n[this.data.disabled.indexOf(e)>-1?"enable":"disable"](this,e)},defaults:function(e,m){if(n.isArray(e)){n.forEach(e,function(q){for(var s in q)this.defaults(s,q[s])},this);return this}if(!this.options.defaults)this.options.defaults={};this.options.defaults[e]||(this.options.defaults[e]={});n.extend(this.options.defaults[e],m);return this}});n.Events={UIEvents:"blur focus focusin focusout load resize scroll unload",
-MouseEvents:"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave click dblclick",Events:"loadstart progress suspend emptied stalled play pause loadedmetadata loadeddata waiting playing canplay canplaythrough seeking seeked timeupdate ended ratechange durationchange volumechange"};n.Events.Natives=n.Events.UIEvents+" "+n.Events.MouseEvents+" "+n.Events.Events;j.events.apiTypes=["UIEvents","MouseEvents","Events"];(function(e,m){for(var q=j.events.apiTypes,s=e.Natives.split(/\s+/g),
-t=0,u=s.length;t<u;t++)m.hash[s[t]]=true;q.forEach(function(x){m.apis[x]={};for(var A=e[x].split(/\s+/g),B=A.length,D=0;D<B;D++)m.apis[x][A[D]]=true})})(n.Events,j.events);n.events={isNative:function(e){return!!j.events.hash[e]},getInterface:function(e){if(!n.events.isNative(e))return false;var m=j.events,q=m.apiTypes;m=m.apis;for(var s=0,t=q.length,u,x;s<t;s++){x=q[s];if(m[x][e]){u=x;break}}return u},all:n.Events.Natives.split(/\s+/g),fn:{trigger:function(e,m){var q;if(this.data.events[e]&&n.sizeOf(this.data.events[e])){if(q=
-n.events.getInterface(e)){q=b.createEvent(q);q.initEvent(e,true,true,g,1);this.media.dispatchEvent(q);return this}n.forEach(this.data.events[e],function(s){s.call(this,m)},this)}return this},listen:function(e,m){var q=this,s=true,t=n.events.hooks[e],u;if(!this.data.events[e]){this.data.events[e]={};s=false}if(t){t.add&&t.add.call(this,{},m);if(t.bind)e=t.bind;if(t.handler){u=m;m=function(x){t.handler.call(q,x,u)}}s=true;if(!this.data.events[e]){this.data.events[e]={};s=false}}this.data.events[e][m.name||
-m.toString()+n.guid()]=m;!s&&n.events.all.indexOf(e)>-1&&this.media.addEventListener(e,function(x){n.forEach(q.data.events[e],function(A){typeof A==="function"&&A.call(q,x)})},false);return this},unlisten:function(e,m){if(this.data.events[e]&&this.data.events[e][m]){delete this.data.events[e][m];return this}this.data.events[e]=null;return this}},hooks:{canplayall:{bind:"canplaythrough",add:function(e,m){var q=false;if(this.media.readyState){m.call(this,e);q=true}this.data.hooks.canplayall={fired:q}},
-handler:function(e,m){if(!this.data.hooks.canplayall.fired){m.call(this,e);this.data.hooks.canplayall.fired=true}}}}};n.forEach([["trigger","emit"],["listen","on"],["unlisten","off"]],function(e){n.p[e[0]]=n.p[e[1]]=n.events.fn[e[0]]});n.addTrackEvent=function(e,m){if(m&&m._natives&&m._natives.type&&e.options.defaults&&e.options.defaults[m._natives.type])m=n.extend({},e.options.defaults[m._natives.type],m);if(m._natives){m._id=!m.id?n.guid(m._natives.type):m.id;e.data.history.push(m._id)}m.start=
-n.util.toSeconds(m.start,e.options.framerate);m.end=n.util.toSeconds(m.end,e.options.framerate);var q=e.data.trackEvents.byStart,s=e.data.trackEvents.byEnd,t;for(t=q.length-1;t>=0;t--)if(m.start>=q[t].start){q.splice(t+1,0,m);break}for(q=s.length-1;q>=0;q--)if(m.end>s[q].end){s.splice(q+1,0,m);break}if(m._natives&&(n.registryByName[m._natives.type]||e[m._natives.type])){s=e.media.currentTime;if(m.end>s&&m.start<=s&&e.data.disabled.indexOf(m._natives.type)===-1){m._running=true;m._natives.start.call(e,
-null,m);if(e.options.frameAnimation&&m._natives.frame){e.data.trackEvents.animating.push(m);m._natives.frame.call(e,null,m,s)}}}t<=e.data.trackEvents.startIndex&&m.start<=e.data.trackEvents.previousUpdateTime&&e.data.trackEvents.startIndex++;q<=e.data.trackEvents.endIndex&&m.end<e.data.trackEvents.previousUpdateTime&&e.data.trackEvents.endIndex++;this.timeUpdate(e,null,true);m._id&&n.addTrackEvent.ref(e,m)};n.addTrackEvent.ref=function(e,m){e.data.trackRefs[m._id]=m;return e};n.removeTrackEvent=function(e,
-m){for(var q,s,t=e.data.history.length,u=e.data.trackEvents.byStart.length,x=0,A=0,B=[],D=[],E=[],z=[];--u>-1;){q=e.data.trackEvents.byStart[x];s=e.data.trackEvents.byEnd[x];if(!q._id){B.push(q);D.push(s)}if(q._id){q._id!==m&&B.push(q);s._id!==m&&D.push(s);if(q._id===m){A=x;q._natives._teardown&&q._natives._teardown.call(e,q)}}x++}u=e.data.trackEvents.animating.length;x=0;if(u)for(;--u>-1;){q=e.data.trackEvents.animating[x];q._id||E.push(q);q._id&&q._id!==m&&E.push(q);x++}A<=e.data.trackEvents.startIndex&&
-e.data.trackEvents.startIndex--;A<=e.data.trackEvents.endIndex&&e.data.trackEvents.endIndex--;e.data.trackEvents.byStart=B;e.data.trackEvents.byEnd=D;e.data.trackEvents.animating=E;for(u=0;u<t;u++)e.data.history[u]!==m&&z.push(e.data.history[u]);e.data.history=z;n.removeTrackEvent.ref(e,m)};n.removeTrackEvent.ref=function(e,m){delete e.data.trackRefs[m];return e};n.getTrackEvents=function(e){var m=[];e=e.data.trackEvents.byStart;for(var q=e.length,s=0,t;s<q;s++){t=e[s];t._id&&m.push(t)}return m};
-n.getTrackEvents.ref=function(e){return e.data.trackRefs};n.getTrackEvent=function(e,m){return e.data.trackRefs[m]};n.getTrackEvent.ref=function(e,m){return e.data.trackRefs[m]};n.getLastTrackEventId=function(e){return e.data.history[e.data.history.length-1]};n.timeUpdate=function(e,m){var q=e.media.currentTime,s=e.data.trackEvents.previousUpdateTime,t=e.data.trackEvents,u=t.animating,x=t.endIndex,A=t.startIndex,B=0,D=t.byStart.length,E=t.byEnd.length,z=n.registryByName,F,H,G;if(s<=q){for(;t.byEnd[x]&&
-t.byEnd[x].end<=q;){F=t.byEnd[x];G=(s=F._natives)&&s.type;if(!s||z[G]||e[G]){if(F._running===true){F._running=false;s.end.call(e,m,F);e.emit("trackend",n.extend({},F,{plugin:G,type:"trackend"}))}x++}else{n.removeTrackEvent(e,F._id);return}}for(;t.byStart[A]&&t.byStart[A].start<=q;){H=t.byStart[A];G=(s=H._natives)&&s.type;if(!s||z[G]||e[G]){if(H.end>q&&H._running===false&&e.data.disabled.indexOf(G)===-1){H._running=true;s.start.call(e,m,H);e.emit("trackstart",n.extend({},H,{plugin:G,type:"trackstart"}));
-e.options.frameAnimation&&H&&H._running&&H._natives.frame&&u.push(H)}A++}else{n.removeTrackEvent(e,H._id);return}}if(e.options.frameAnimation)for(;B<u.length;){z=u[B];if(z._running){z._natives.frame.call(e,m,z,q);B++}else u.splice(B,1)}}else if(s>q){for(;t.byStart[A]&&t.byStart[A].start>q;){H=t.byStart[A];G=(s=H._natives)&&s.type;if(!s||z[G]||e[G]){if(H._running===true){H._running=false;s.end.call(e,m,H);e.emit("trackend",n.extend({},F,{plugin:G,type:"trackend"}))}A--}else{n.removeTrackEvent(e,H._id);
-return}}for(;t.byEnd[x]&&t.byEnd[x].end>q;){F=t.byEnd[x];G=(s=F._natives)&&s.type;if(!s||z[G]||e[G]){if(F.start<=q&&F._running===false&&e.data.disabled.indexOf(G)===-1){F._running=true;s.start.call(e,m,F);e.emit("trackstart",n.extend({},H,{plugin:G,type:"trackstart"}));e.options.frameAnimation&&F&&F._running&&F._natives.frame&&u.push(F)}x--}else{n.removeTrackEvent(e,F._id);return}}if(e.options.frameAnimation)for(;B<u.length;){z=u[B];if(z._running){z._natives.frame.call(e,m,z,q);B++}else u.splice(B,
-1)}}t.endIndex=x;t.startIndex=A;t.previousUpdateTime=q;t.byStart.length<D&&t.startIndex--;t.byEnd.length<E&&t.endIndex--};n.extend(n.p,{getTrackEvents:function(){return n.getTrackEvents.call(null,this)},getTrackEvent:function(e){return n.getTrackEvent.call(null,this,e)},getLastTrackEventId:function(){return n.getLastTrackEventId.call(null,this)},removeTrackEvent:function(e){n.removeTrackEvent.call(null,this,e);return this},removePlugin:function(e){n.removePlugin.call(null,this,e);return this},timeUpdate:function(e){n.timeUpdate.call(null,
-this,e);return this},destroy:function(){n.destroy.call(null,this);return this}});n.manifest={};n.registry=[];n.registryByName={};n.plugin=function(e,m,q){if(n.protect.natives.indexOf(e.toLowerCase())>=0)n.error("'"+e+"' is a protected function name");else{var s=["start","end"],t={},u=typeof m==="function",x=["_setup","_teardown","start","end","frame"],A=function(E,z){E=E||n.nop;z=z||n.nop;return function(){E.apply(this,arguments);z.apply(this,arguments)}};n.manifest[e]=q=q||m.manifest||{};x.forEach(function(E){m[E]=
-d(m[E]||n.nop,e)});var B=function(E,z){if(!z)return this;var F=z._natives={},H="",G;n.extend(F,E);z._natives.type=e;z._running=false;F.start=F.start||F["in"];F.end=F.end||F.out;F._teardown=A(function(){var I=h.call(arguments);I.unshift(null);I[1]._running&&F.end.apply(this,I)},F._teardown);z.compose=z.compose&&z.compose.split(" ")||[];z.effect=z.effect&&z.effect.split(" ")||[];z.compose=z.compose.concat(z.effect);z.compose.forEach(function(I){H=n.compositions[I]||{};x.forEach(function(J){F[J]=A(F[J],
-H[J])})});z._natives.manifest=q;if(!("start"in z))z.start=z["in"]||0;if(!z.end&&z.end!==0)z.end=z.out||Number.MAX_VALUE;if(!p.call(z,"toString"))z.toString=function(){var I=["start: "+z.start,"end: "+z.end,"id: "+(z.id||z._id)];z.target!=null&&I.push("target: "+z.target);return e+" ( "+I.join(", ")+" )"};if(!z.target){G="options"in q&&q.options;z.target=G&&"target"in G&&G.target}z._natives._setup&&z._natives._setup.call(this,z);n.addTrackEvent(this,n.extend(z,z));n.forEach(E,function(I,J){J!=="type"&&
-s.indexOf(J)===-1&&this.on(J,I)},this);return this};n.p[e]=t[e]=function(E){E=n.extend({},this.options.defaults&&this.options.defaults[e]||{},E);return B.call(this,u?m.call(this,E):m,E)};var D={fn:t[e],definition:m,base:m,parents:[],name:e};n.registry.push(n.extend(t,D,{type:e}));n.registryByName[e]=D;return t}};n.plugin.errors=[];n.plugin.debug=false;n.removePlugin=function(e,m){if(!m){m=e;e=n.p;if(n.protect.natives.indexOf(m.toLowerCase())>=0){n.error("'"+m+"' is a protected function name");return}var q=
-n.registry.length,s;for(s=0;s<q;s++)if(n.registry[s].name===m){n.registry.splice(s,1);delete n.registryByName[m];delete n.manifest[m];delete e[m];return}}q=e.data.trackEvents.byStart;s=e.data.trackEvents.byEnd;var t=e.data.trackEvents.animating,u,x;u=0;for(x=q.length;u<x;u++){if(q[u]&&q[u]._natives&&q[u]._natives.type===m){q[u]._natives._teardown&&q[u]._natives._teardown.call(e,q[u]);q.splice(u,1);u--;x--;if(e.data.trackEvents.startIndex<=u){e.data.trackEvents.startIndex--;e.data.trackEvents.endIndex--}}s[u]&&
-s[u]._natives&&s[u]._natives.type===m&&s.splice(u,1)}u=0;for(x=t.length;u<x;u++)if(t[u]&&t[u]._natives&&t[u]._natives.type===m){t.splice(u,1);u--;x--}};n.compositions={};n.compose=function(e,m,q){n.manifest[e]=q||m.manifest||{};n.compositions[e]=m};n.plugin.effect=n.effect=n.compose;var y=/\?/,C={url:"",data:"",dataType:"",success:n.nop,type:"GET",async:true,xhr:function(){return new g.XMLHttpRequest}};n.xhr=function(e){e.dataType=e.dataType&&e.dataType.toLowerCase()||null;if(e.dataType&&(e.dataType===
-"jsonp"||e.dataType==="script"))n.xhr.getJSONP(e.url,e.success,e.dataType==="script");else{e=n.extend({},C,e);e.ajax=e.xhr();if(e.ajax){if(e.type==="GET"&&e.data){e.url+=(y.test(e.url)?"&":"?")+e.data;e.data=null}e.ajax.open(e.type,e.url,e.async);e.ajax.send(e.data||null);return n.xhr.httpData(e)}}};n.xhr.httpData=function(e){var m,q=null,s,t=null;e.ajax.onreadystatechange=function(){if(e.ajax.readyState===4){try{q=JSON.parse(e.ajax.responseText)}catch(u){}m={xml:e.ajax.responseXML,text:e.ajax.responseText,
-json:q};if(!m.xml||!m.xml.documentElement){m.xml=null;try{s=new DOMParser;t=s.parseFromString(e.ajax.responseText,"text/xml");if(!t.getElementsByTagName("parsererror").length)m.xml=t}catch(x){}}if(e.dataType)m=m[e.dataType];e.success.call(e.ajax,m)}};return m};n.xhr.getJSONP=function(e,m,q){var s=b.head||b.getElementsByTagName("head")[0]||b.documentElement,t=b.createElement("script"),u=e.split("?")[1],x=false,A=[],B,D;if(u&&!q)A=u.split("&");if(A.length)D=A[A.length-1].split("=");B=A.length?D[1]?
-D[1]:D[0]:"jsonp";if(!u&&!q)e+="?callback="+B;if(B&&!q){if(window[B])B=n.guid(B);window[B]=function(E){m&&m(E);x=true};e=e.replace(D.join("="),D[0]+"="+B)}t.addEventListener("load",function(){q&&m&&m();x&&delete window[B];s.removeChild(t)},false);t.src=e;s.insertBefore(t,s.firstChild)};n.getJSONP=n.xhr.getJSONP;n.getScript=n.xhr.getScript=function(e,m){return n.xhr.getJSONP(e,m,true)};n.util={toSeconds:function(e,m){var q=/^([0-9]+:){0,2}[0-9]+([.;][0-9]+)?$/,s,t,u;if(typeof e==="number")return e;
-typeof e==="string"&&!q.test(e)&&n.error("Invalid time format");q=e.split(":");s=q.length-1;t=q[s];if(t.indexOf(";")>-1){t=t.split(";");u=0;if(m&&typeof m==="number")u=parseFloat(t[1],10)/m;q[s]=parseInt(t[0],10)+u}s=q[0];return{1:parseFloat(s,10),2:parseInt(s,10)*60+parseFloat(q[1],10),3:parseInt(s,10)*3600+parseInt(q[1],10)*60+parseFloat(q[2],10)}[q.length||1]}};n.p.cue=n.p.exec;n.protect={natives:function(e){return Object.keys?Object.keys(e):function(m){var q,s=[];for(q in m)p.call(m,q)&&s.push(q);
-return s}(e)}(n.p).map(function(e){return e.toLowerCase()})};n.forEach({listen:"on",unlisten:"off",trigger:"emit",exec:"cue"},function(e,m){var q=n.p[m];n.p[m]=function(){if(typeof console!=="undefined"&&console.warn){console.warn("Deprecated method '"+m+"', "+(e==null?"do not use.":"use '"+e+"' instead."));n.p[m]=q}return n.p[e].apply(this,[].slice.call(arguments))}});g.Popcorn=n}else{g.Popcorn={isSupported:false};for(a="removeInstance addInstance getInstanceById removeInstanceById forEach extend effects error guid sizeOf isArray nop position disable enable destroyaddTrackEvent removeTrackEvent getTrackEvents getTrackEvent getLastTrackEventId timeUpdate plugin removePlugin compose effect xhr getJSONP getScript".split(/\s+/);a.length;)g.Popcorn[a.shift()]=
-function(){}}})(window,window.document);(function(g,b){var d=g.document,a=g.location,c=/:\/\//,f=a.href.replace(a.href.split("/").slice(-1)[0],""),h=function(o,l,i){o=o||0;l=(l||o||0)+1;i=i||1;l=Math.ceil((l-o)/i)||0;var r=0,k=[];for(k.length=l;r<l;){k[r++]=o;o+=i}return k};b.sequence=function(o,l){return new b.sequence.init(o,l)};b.sequence.init=function(o,l){this.parent=d.getElementById(o);this.seqId=b.guid("__sequenced");this.queue=[];this.playlist=[];this.inOuts={ofVideos:[],ofClips:[]};this.dims={width:0,height:0};this.active=0;this.playing=
-this.cycling=false;this.times={last:0};this.events={};var i=this,r=0;b.forEach(l,function(k,j){var v=d.createElement("video");v.preload="auto";v.controls=true;v.style.display=j&&"none"||"";v.id=i.seqId+"-"+j;i.queue.push(v);var w=k["in"],n=k.out;i.inOuts.ofVideos.push({"in":w!==undefined&&w||1,out:n!==undefined&&n||0});i.inOuts.ofVideos[j].out=i.inOuts.ofVideos[j].out||i.inOuts.ofVideos[j]["in"]+2;v.src=!c.test(k.src)?f+k.src:k.src;v.setAttribute("data-sequence-owner",o);v.setAttribute("data-sequence-guid",
-i.seqId);v.setAttribute("data-sequence-id",j);v.setAttribute("data-sequence-clip",[i.inOuts.ofVideos[j]["in"],i.inOuts.ofVideos[j].out].join(":"));i.parent.appendChild(v);i.playlist.push(b("#"+v.id))});i.inOuts.ofVideos.forEach(function(k){k={"in":r,out:r+(k.out-k["in"])};i.inOuts.ofClips.push(k);r=k.out+1});b.forEach(this.queue,function(k,j){function v(){if(!j){i.dims.width=k.videoWidth;i.dims.height=k.videoHeight}k.currentTime=i.inOuts.ofVideos[j]["in"]-0.5;k.removeEventListener("canplaythrough",
-v,false);return true}k.addEventListener("canplaythrough",v,false);k.addEventListener("play",function(){i.playing=true},false);k.addEventListener("pause",function(){i.playing=false},false);k.addEventListener("timeupdate",function(w){w=w.srcElement||w.target;w=+(w.dataset&&w.dataset.sequenceId||w.getAttribute("data-sequence-id"));var n=Math.floor(k.currentTime);if(i.times.last!==n&&w===i.active){i.times.last=n;n===i.inOuts.ofVideos[w].out&&b.sequence.cycle.call(i,w)}},false)});return this};b.sequence.init.prototype=
-b.sequence.prototype;b.sequence.cycle=function(o){this.queue||b.error("Popcorn.sequence.cycle is not a public method");var l=this.queue,i=this.inOuts.ofVideos,r=l[o],k=0,j;if(l[o+1])k=o+1;if(l[o+1]){l=l[k];i=i[k];b.extend(l,{width:this.dims.width,height:this.dims.height});j=this.playlist[k];r.pause();this.active=k;this.times.last=i["in"]-1;j.currentTime(i["in"]);j[k?"play":"pause"]();this.trigger("cycle",{position:{previous:o,current:k}});if(k){r.style.display="none";l.style.display=""}this.cycling=
-false}else this.playlist[o].pause();return this};var p=["timeupdate","play","pause"];b.extend(b.sequence.prototype,{eq:function(o){return this.playlist[o]},remove:function(){this.parent.innerHTML=null},clip:function(o){return this.inOuts.ofVideos[o]},duration:function(){for(var o=0,l=this.inOuts.ofClips,i=0;i<l.length;i++)o+=l[i].out-l[i]["in"]+1;return o-1},play:function(){this.playlist[this.active].play();return this},exec:function(o,l){var i=this.active;this.inOuts.ofClips.forEach(function(r,k){if(o>=
-r["in"]&&o<=r.out)i=k});o+=this.inOuts.ofVideos[i]["in"]-this.inOuts.ofClips[i]["in"];b.addTrackEvent(this.playlist[i],{start:o-1,end:o,_running:false,_natives:{start:l||b.nop,end:b.nop,type:"exec"}});return this},listen:function(o,l){var i=this,r=this.playlist,k=r.length,j=0;if(!l)l=b.nop;if(b.Events.Natives.indexOf(o)>-1)b.forEach(r,function(v){v.listen(o,function(w){w.active=i;if(p.indexOf(o)>-1)l.call(v,w);else++j===k&&l.call(v,w)})});else{this.events[o]||(this.events[o]={});r=l.name||b.guid("__"+
-o);this.events[o][r]=l}return this},unlisten:function(){},trigger:function(o,l){var i=this;if(!(b.Events.Natives.indexOf(o)>-1)){this.events[o]&&b.forEach(this.events[o],function(r){r.call(i,{type:o},l)});return this}}});b.forEach(b.manifest,function(o,l){b.sequence.prototype[l]=function(i){var r={},k=[],j,v,w,n,y;for(j=0;j<this.inOuts.ofClips.length;j++){k=this.inOuts.ofClips[j];v=h(k["in"],k.out);w=v.indexOf(i.start);n=v.indexOf(i.end);if(w>-1)r[j]=b.extend({},k,{start:v[w],clipIdx:w});if(n>-1)r[j]=
-b.extend({},k,{end:v[n],clipIdx:n})}j=Object.keys(r).map(function(e){return+e});k=h(j[0],j[1]);for(j=0;j<k.length;j++){w={};n=k[j];var C=r[n];if(C){y=this.inOuts.ofVideos[n];v=C.clipIdx;y=h(y["in"],y.out);if(C.start){w.start=y[v];w.end=y[y.length-1]}if(C.end){w.start=y[0];w.end=y[v]}}else{w.start=this.inOuts.ofVideos[n]["in"];w.end=this.inOuts.ofVideos[n].out}this.playlist[n][l](b.extend({},i,w))}return this}})})(this,Popcorn);(function(g){document.addEventListener("DOMContentLoaded",function(){var b=document.querySelectorAll("[data-timeline-sources]");g.forEach(b,function(d,a){var c=b[a],f,h,p;if(!c.id)c.id=g.guid("__popcorn");if(c.nodeType&&c.nodeType===1){p=g("#"+c.id);f=(c.getAttribute("data-timeline-sources")||"").split(",");f[0]&&g.forEach(f,function(o){h=o.split("!");if(h.length===1){h=o.match(/(.*)[\/\\]([^\/\\]+\.\w+)$/)[2].split(".");h[0]="parse"+h[1].toUpperCase();h[1]=o}f[0]&&p[h[0]]&&p[h[0]](h[1])});p.autoplay&&
-p.play()}})},false)})(Popcorn);(function(g,b){function d(f){f=typeof f==="string"?f:[f.language,f.region].join("-");var h=f.split("-");return{iso6391:f,language:h[0]||"",region:h[1]||""}}var a=g.navigator,c=d(a.userLanguage||a.language);b.locale={get:function(){return c},set:function(f){c=d(f);b.locale.broadcast();return c},broadcast:function(f){var h=b.instances,p=h.length,o=0,l;for(f=f||"locale:changed";o<p;o++){l=h[o];f in l.data.events&&l.trigger(f)}}}})(this,this.Popcorn);(function(g){var b=Object.prototype.hasOwnProperty;g.parsers={};g.parser=function(d,a,c){if(g.protect.natives.indexOf(d.toLowerCase())>=0)g.error("'"+d+"' is a protected function name");else{if(typeof a==="function"&&!c){c=a;a=""}if(!(typeof c!=="function"||typeof a!=="string")){var f={};f[d]=function(h,p){if(!h)return this;var o=this;g.xhr({url:h,dataType:a,success:function(l){var i,r,k=0;l=c(l).data||[];if(i=l.length){for(;k<i;k++){r=l[k];for(var j in r)b.call(r,j)&&o[j]&&o[j](r[j])}p&&p()}}});
-return this};g.extend(g.p,f);return f}}}})(Popcorn);(function(g){var b=function(a,c){a=a||g.nop;c=c||g.nop;return function(){a.apply(this,arguments);c.apply(this,arguments)}},d=/^(#([\w\-\_\.]+))$/;g.player=function(a,c){if(!g[a]){c=c||{};var f=function(h,p,o){o=o||{};var l=new Date/1E3,i=l,r=0,k=0,j=1,v=false,w={},n=document.getElementById(d.exec(h)&&d.exec(h)[2])||document.getElementById(h)||h,y={};Object.prototype.__defineGetter__||(y=n||document.createElement("div"));for(var C in n)if(!(C in y))if(typeof n[C]==="object")y[C]=n[C];else if(typeof n[C]===
-"function")y[C]=function(m){return"length"in n[m]&&!n[m].call?n[m]:function(){return n[m].apply(n,arguments)}}(C);else g.player.defineProperty(y,C,{get:function(m){return function(){return n[m]}}(C),set:g.nop,configurable:true});var e=function(){l=new Date/1E3;if(!y.paused){y.currentTime+=l-i;y.dispatchEvent("timeupdate");setTimeout(e,10)}i=l};y.play=function(){this.paused=false;if(y.readyState>=4){i=new Date/1E3;y.dispatchEvent("play");e()}};y.pause=function(){this.paused=true;y.dispatchEvent("pause")};
-g.player.defineProperty(y,"currentTime",{get:function(){return r},set:function(m){r=+m;y.dispatchEvent("timeupdate");return r},configurable:true});g.player.defineProperty(y,"volume",{get:function(){return j},set:function(m){j=+m;y.dispatchEvent("volumechange");return j},configurable:true});g.player.defineProperty(y,"muted",{get:function(){return v},set:function(m){v=+m;y.dispatchEvent("volumechange");return v},configurable:true});g.player.defineProperty(y,"readyState",{get:function(){return k},set:function(m){return k=
-m},configurable:true});y.addEventListener=function(m,q){w[m]||(w[m]=[]);w[m].push(q);return q};y.removeEventListener=function(m,q){var s,t=w[m];if(t){for(s=w[m].length-1;s>=0;s--)q===t[s]&&t.splice(s,1);return q}};y.dispatchEvent=function(m){var q,s=m.type;if(!s){s=m;if(m=g.events.getInterface(s)){q=document.createEvent(m);q.initEvent(s,true,true,window,1)}}if(w[s])for(m=w[s].length-1;m>=0;m--)w[s][m].call(this,q,this)};y.src=p||"";y.duration=0;y.paused=true;y.ended=0;o&&o.events&&g.forEach(o.events,
-function(m,q){y.addEventListener(q,m,false)});if(c._canPlayType(n.nodeName,p)!==false)if(c._setup)c._setup.call(y,o);else{y.readyState=4;y.dispatchEvent("loadedmetadata");y.dispatchEvent("loadeddata");y.dispatchEvent("canplaythrough")}else y.dispatchEvent("error");y.addEventListener("loadedmetadata",function(){y.currentTime=r;y.volume=j;y.muted=v});y.addEventListener("loadeddata",function(){!y.paused&&y.play()});h=new g.p.init(y,o);if(c._teardown)h.destroy=b(h.destroy,function(){c._teardown.call(y,
-o)});return h};f.canPlayType=c._canPlayType=c._canPlayType||g.nop;g[a]=g.player.registry[a]=f}};g.player.registry={};g.player.defineProperty=Object.defineProperty||function(a,c,f){a.__defineGetter__(c,f.get||g.nop);a.__defineSetter__(c,f.set||g.nop)};g.smart=function(a,c,f){var h=d.exec(a);h=h&&h.length&&h[2]?document.getElementById(h[2]):a;if(h.nodeType==="VIDEO"&&!c){if(typeof c==="object")f=c;return g(h,f)}for(var p in g.player.registry)if(g.player.registry.hasOwnProperty(p))if(g.player.registry[p].canPlayType(h.nodeName,
-c))return g[p](a,c,f);if(h.nodeType!=="VIDEO"){a=document.createElement("video");h.appendChild(a);h=a}f&&f.events&&f.events.error&&h.addEventListener("error",f.events.error,false);h.src=c;return g(h,f)}})(Popcorn);(function(g){var b=function(d,a){var c=0,f=0,h;g.forEach(a.classes,function(p,o){h=[];if(p==="parent")h[0]=document.querySelectorAll("#"+a.target)[0].parentNode;else h=document.querySelectorAll("#"+a.target+" "+p);c=0;for(f=h.length;c<f;c++)h[c].classList.toggle(o)})};g.compose("applyclass",{manifest:{about:{name:"Popcorn applyclass Effect",version:"0.1",author:"@scottdowne",website:"scottdowne.wordpress.com"},options:{}},_setup:function(d){d.classes={};d.applyclass=d.applyclass||"";for(var a=d.applyclass.replace(/\s/g,
-"").split(","),c=[],f=0,h=a.length;f<h;f++){c=a[f].split(":");if(c[0])d.classes[c[0]]=c[1]||""}},start:b,end:b})})(Popcorn);(function(g){g.plugin("attribution",function(){var b={"cc-by":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAeeSURBVHja7JpfbNvGHce/R9JBU9Qa89QN2gD5TepLmGTJYyyte9mypiSC7aXrIj8NqDFI6lavLezISpwuE5LJwpACw7aaWJ8L0/kD7B8iyi2wRXYiGikgvUkPNbY+ybXbh5l/bg8kT6RlO7Zjq2maM0488e4o8sPv/e53vzOhlEYIIZ/hadr3RCklBAAFgNt/vwWO48BxHHieB8fx4DkOHO8dOQ6EcOAIASEEIMS/CigoqEPhUAeO42bbtt2jY8O2HTiOzeoc6rD2lFL/Zlj5SUg/fvknAAACgPpweZ53M8d3yzzv1nG8B5mAEC7I14PjgXVcmLbt5WDZDkN2HIeBDYJ+kiALAMJweQFC6Ojmm3O3UKlUUKvVsLa6FrrQYGQQp06dQup7Kbx09kewHR4cZ7kvxOZAQLx3GRg+DnVHArwxRPYH7v2FOrQPNDQajdD5RCIB+ZyM4yeP9RUyAUD/duevEASBQRUEwc28gKo+j+KVIpaXl3d0wWg0irG3xjA8fBqWbcO2LViWl20LlmUzhW+m5L2q+L//+RTXy9fRbDQBAMlkEpIkAQAMw4Cu6wCAeCKO0cwovvmt5/uiYAKA/rP6Dwi80AUrDGBAEJCfmIQ2q7EOoihClmXEYjEMDw8DAKrVKtrtNjRNw8rKCmsrKzJ+NfZLHH72MCzLgmlZsCwTlmWFTYYP2PFs+R5s8eernyMzmsXq6ipkWUapVEIsFgu1abfbyOVy0DQNkUgEl4uXDxwyA3znwzsY8MEOCBgQBkJwRVFENptFJpOBKIpbXlBVVeRyOQY6nojjT+/9Ec8cPgzLMmGaJlPyppDp3gBPvHkBzUYT6XQaMzMz3eHpmaDg9VRVxcjICOKJOC5duXjggDkA4D0bLPA8BD6sXEmSUK/Xkc/nt4ULAOl0Gq1Wiw3NZqOJq8VrIVvOMY+EdLP3txHMTm1us9GELMsYe+ONh7ZPp9OQZRnNRhP3F+oHbiY4AOB8t4znUdXnQ3ArlUrPcNsuiaKISqXCIGuzGqrVefC8sDlkznf7EIK806R94N5rqVRC4oUXNvqhm46GUqkU6nvggF0FuyouXikyUDMzMw9V7XaQ/b7F3xQ9X9qDSzyfmvM8DIIuZLI7yI1GA8lkskcEIyMjbISMjIyE6mKxGJLJZI+ncXAK9h7+5twt5i1ks1mmwr0kURSZUpaXl3Hzxi22YHEhb20idps2u09VVTctb9fnwAD7aqpUKgxOJpNhjXRdh6IoSKVSSKVSKBQKW9ZNT0+H7J2v4sqdSkC9XdNAyKOZiMc9uQsNQsARglqt5rpYsszA6LqOVCoV6qTrOnRdRyaTgaIoPXVLS0tsNpdlGaqqolaruSvAAFigC7frle/+IQzD2HQy85WbTqd31OcAFew+qL9CO3r0KGuQy+WY3Wq1WmzSO3/+PFOyJElotVqYnZ0N+cgAWHltda1rDtjR57p3E5FIJKDrOtrtduh80F0Lln2fWNd1JBKJ/ih44+QStE/+m06n04jFYgy0P5H4KvXrZFnumVC67hf72LcHkM/JaEw1kMvlMDs7u6M+vmjkc3J/FPxVTsdPHkM8EYemaT3ewlZwNU1DPBHvS1yC84MtQX8xaJ98NauqipWVFRiGgaGhIRQKha6v6y2Tg3XB4dj1S9nHvj7Er98eQyQSgaqqUBSF/WbQD26321AUBdPT04hEIhjNjPZvkvNvZDAyiLXVNSwtLbEG+Xye3fSRI0dC4Pw6wzB66vzkX2swMghKA8thUPjv1Pu254d4LvIcyten8dt3itA0DZqmQZIkSJIEURSh6zoTTT+DPWzevnvvLg4dOoTChQK0WQ2iKKLT6YQ8g3K5zGIMyWQS+XyeqbdcLrO2wToAGBoaQrvdxovffxHXSlfxv/V1mOY6TMuEaVqw/biEY8OxHRaE32vo8nEKV7Jgz78X/4WBgUP4aP4jZH6RYcvJbDb7SD/gB1YAYOqdKfzwzA+wbq5j3TRhmSZMawPgRwj4PK4Bdw4A29JJpoYRjUYBAIVCocf12U1aWVlhs3U0GvUC8X5o0oHj2WLfXDypiQMAhzqwbXcf7dLliwyQoiihGO9u4KZSKdZ37M0xL8BudyEHQpRskqVP1pYRm9wB0PH8OF24X6PGgzp99Wev+lM9lSSJ1ut1utPUarWoJEmsv6zI1HhQpwv3a/Ti5Yvs/Ncod79kX8/QxfoCNT42qKzI7LwoinRycpJ2Op0twXY6HTo5OUlFUWT9Tp46SZc+NuiisUDH8+NfR7i0Z/U/kR/Hy4oMQRBwrXgN7//l/T1vGRUuTcKyLNy9W8NrP3/t4IdiwLwEdzOCq9SN3/tmIoJ5Ij/uKvlBnb6n/plGo9Edv7FoNErLvy9T40GdLhoL9N0/vNs3tVBKty0Hz31pCvZT9vUMXvnpK2wXQq9UcWPuxrbb9mfls0gmh9le29zcDUwVpvqnlE0U/GUq96EBwuMnjmEifwHf/k40sBsRDDci5Lf6/3iy/Mkn+N3VEuar8/0digGIj4Np2HEE9vTwaZx56QxOfPcEvhGJhGO4nmv12eoq7i3ew+2bt/sO9iur4KdpHwBTSp8lhHzxFMWBjCjy/wEATHqgDqiBjQoAAAAASUVORK5CYII=",
-"cc-by-sa":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAj2SURBVHja7FpLbBvHGf72IaMyInZ9SgKqiHQTdfH6eUossmlTuI7tZS27dtzUpA8NGqMgldpy2kiiKFupo9qh2MIx2iYS4/QaaP0CGqcwV2qAWpRtUnAA6kYGkFDnJIVKAVvc3elhd4e7FPWgHkHj+BeGOzuPf3e/+eaff/4RQwhxMQzzFZ7ImgshhGEAEAC4cfM6WJYFy7LgOA4sy4FjWbCceWVZMAwLlmHAMAzAMJYWEBAQnUAnOnTdSJqmGVddg6bp0HWN1ulEp+0JIdbL0PzjIAf3HwIAMACIBS7HcUZiuVKe44w6ljNBZsAwrB1fExwTWN0AU9PMZM9rTpB1XafA2oF+nEDmATjB5XjwjquRrl25jmQyiVQqhdnCrENRnasOO3fuhO+HPuzd9zI0nQPLqsaAaCwYMOZY2qaPToyZAHMOMYuDe28sDfljGdls1lHu8XggHZCwdceWVYGxXvoZAOSTW/8Az/MUVJ7njcTxGFZG0HeuD1NTU8tS6Ha70f67drS07IKqadA0FapqJk2FqmqU4ZWYXM7iB//5EhfjFzGRnQAAeL1eiKIIAMhkMlAUBQDQ5GnCidAJPPPs01UBsJ76D+4/ZAD8z+FPwXN8CVi+BjU8j0hnN+QhmXYQBAGSJKGhoQEtLS0AgOHhYeTzeciyjJmZGdpW8ks42f5b1G6shaqqKKoqVLUIVVWdJsMCWDdtuQ3orwtfI3QijEKhAEmSEIvF0NDQ4PiIfD6PtrY2yLIMl8uF3r7eZYOw3vopwLf+dQs1FrA1PGr4Gge4giAgHA4jFApBEIQFFSYSCbS1tVGgmzxNeH/gb/hebS1UtYhisUiZXBHkMnvc+WYXJrITCAQCGBwcLE0707TYmZ5IJBAMBtHkacKZcz3LAqCS/snJSUxNThqzsb4e9fX1K9Z/cP8hsADAmTaY5zjwnJO5oiginU4jEoksCi4ABAIB5HI5OsUmshM433fBYctZ6pEwpWT+2QG8N5bGRHYCkiSh/dSpJT8mEAhAkiRMZCdwbyy9LJtbrv/vly/D+/wLOHr4CI4ePgLv8y/g05s3V6TfEhYAWMst4zgMKyMOcJPJ5Lxps5gIgoBkMklBlodkDA+PgOP4yiCzltsHB8jyx8Y7xGIxeJqby/3LigtiLBZz9F1MyvWP3r6N7q4I6p95Fl6vDwdaWwEAv/7Va/hTf3/V+h0AGww2WNx3ro8CNTg4uCRrFwPZ6tv3hz7TlzbBZUyfmjU9DAYlkM3pn81m4fV65w1uMBikzA8Gg466hoYGeL3eeZ5AJbHrLxQKyKbvAwD2Sz/D+4kBvHP+j3irq9MwDwODVet3Mtj8+GtXrlNvIRwOUxauRARBoCM+NTWFa1ev0w2LAfLCJsKSSs9PJBIV84v1WUjsbXvfNYj11w8/oGU/fuklAEChUMCXDx5UrZ8CbLEpmUxScEKhEG2kKAr8fj98Ph98Ph+i0eiCdf3mdLLslsXi5K2kjb0l08AwlU3ENykulwvxeBwbXXW4dOlSxTYPHz5akW5jo8EwYBkGqVTKcLEkiQKjKAp8Pp+jk6IoUBQFoVAIfr9/Xt34+DhdlSVJQiKRQCqVMnaANmCBErglr7ykK5PJVFzMLOYGAoF59ZX6LCT2tjU8j/aTJ7GxtpaWjd6+TfPPNTxXtX4bg40PtXZomzdvpg3a2tqo/cnlcnTRO3bsGGWyKIrI5XIYGhpy+MgAaH62MFsyB/Rq4TrfRHg8HiiKgnw+7yi3u2v2vOWzKooCj8ez5IeX65+cnER3VwSv/PwwenvOoLfnDLo6OgAAp06frlq/A2D74lJuZ6wRCwQC1MjncjkEAgFaZ20+JEmidfaFp+R+0Z8lX0w6IDkGeDlitbX6VqM/ePw4gsePGwM3MIDBgQE8evgIe/a+jCNHX6lav8NE/D/K1h1b0ORpgizLCAaD89haCVxZltHkaVpW3KCS/re6OvGT3bvxxRcGq5ubm6mLWK1+J4OJc1dktzMWmxOJBGZmZpDJZNDY2IhoNFrydc1tsr3OPm1L/iv9WdbLnf59O1wuFxKJBPx+P9Vl94Pz+Tz8fj/6+/vhcrlwInRi2R9fSf/2HdtxoLUVB1pb4WluXpV+ymDrhetcdZgtzGJ8fJw2iEQi9OGbNm1yAGfVZTKZeXWWWLrqXHUgxLYdBoE1pubdvJd7yvUU4hf78c7bfZBlGbIsQxRFiKIIQRCgKAolw0qCMeutn67bo3dHsWHDBkS7opCHZAiCgOnpaYdnEI/HaYzB6/UiEolQ9sbjcdrWXgcAjY2NyOfzePFHL+JC7Dwezc2hWJxDUS2iWFShWXEJXYOu6TQIX75T+zaGK2mw5/adf6OmZgM+G/kMod+E6LYwHA6v6qWtAAkAnH37LH66ZzfminOYKxahFosoqmUAVwj4fNsD7iwAeqTj9bXA7XYDAKLR6DwXqRqZmZmhq67b7TYD8VZoUodu2mLLXDyuwgKATnRomnGOdqa3hwLk9/sdMd5qwPX5fLRv+5vtZoBdK4FsC1HSRZY8XkdGdHEHQDoiHWTsXopk7qfJq7981VrqiSiKJJ1Ok+VKLpcjoijS/pJfIpn7aTJ2L0V6ento+XcolW7Cb4TInfQYyXyeIZJfouWCIJDu7m4yPT29ILDT09Oku7ubCIJA++3YuYOMf54hdzJjpCPS8V0ElzDlTmlnpAP7/RJ4nseFvgv46PJHKz4yip7phqqqGB1N4fXXXl/5FLOZDftphn33WX6/Vs+w36/KRNhTZ6TDYPL9NBlIfEDcbveyR8ztdpP4n+Mkcz9N7mTGyHt/eW/VLCCELJq3l61W/1LPXDWDLQm/EcLRXxylpxBKchhXr1xd9Nh+n7QPXm8LPWu7cuUqzkbPrn6RqMCutWJu+TMqnfethsXMYvvWrdu2oDPShfofuG2nEfZwIxx+q/WPJ1OTk3j3fAwjwyNrswrbQFxr07DQsxZ75poBbMmull3Ys3cPtm3fhu+7XM4YrulafVUo4O6du7hx7caaAftNMXgpG7/uAD+RlQtDCNnIMMx/n0CxDhsMQpj/DQDwRbusfJXB0QAAAABJRU5ErkJggg==",
-"cc-by-nd":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAgrSURBVHja7FpNbBvHFf72R0YdROz6lBZsAQrogczFtB37aFF1AqR1bC1h2Jc0NXUqEKEgmTZqWkimaMupS9ilicJJA7fRojkHWvkH6B/MpRqgNSWLKzgAeSjAPURoe5IipYeKuzs97O5wl1xSFCWljeNnjHa5M/Ptzjdv3nvzxgwhJMAwzKd4KnsuhBCGAUAA4P4f74FlWbAsC47jwLIcOJYFy9lXlgXDsGAZBgzDAAzjoICAgJgEJjFhmlYxDMO6mgYMw4RpGrTOJCZtTwhxPobePwlyfvQCAIABQBxyOY6zCss17znOqmM5m2QGDMO6+bXJsYk1LTINwy7ue8NLsmmalFg30U8SyTwAL7kcD95ztcrd+XsoFosol8vY3Nj0AA0GBnHixAmMfHsEZ86+AsPkwLK6NSEGCwaMPZeu5WMSayXAXkNMd3KXFyuQP5RRrVY9zyORCMRzIo4eP7IrMvYLnwFA/vDg9+B5npLK87xVOB4lZQG5azmsrq72BBgMBjHx0wkMD5+EbhgwDB26bhdDh64bVMP9NLlVi//5j3/hVuEWatUaACAWiyEajQIAVFWFoigAgHAkjPHkOL729ed2RMB+4p8fvWAR/OfSn8BzfJNYfgADPI/M1DTkOZl2EAQBoigiFApheHgYAFAqlaBpGmRZxvr6Om0rxkX8eOJHOPjMQei6joauQ9cb0HXdazIcgk3blruI/mzjMyTHU9jY2IAoisjn8wiFQp5BaJqGdDoNWZYRCARwNXe1ZxL2G58S/OAvDzDgEDvAY4Af8JArCAJSqRSSySQEQegIKEkS0uk0JTocCeM379/GVw4ehK430Gg0qCb7ktxij6feuoRatYZEIoHZ2dnmsrNNi1vTJUnC2NgYwpEwrly73BMBnfA7jW2n+OdHL4AFAM62wTzHgee8mhuNRlGpVJDJZLqSCwCJRAL1ep0usVq1huu5Gx5bztKIhGkW+5+bwOXFCmrVGkRRxMSbb247mEQiAVEUUavWsLxY6cnm7ie+IywAsE5YxnEoKQsecovFYtuy6SaCIKBYLFKS5TkZpdICOI73J5l1wj54SJY/tL4hn88j8vzzrfGlr0PM5/Oevt2kG34n2Qm+h2BLgy0tzl3LUaJmZ2e31dpuJDt9cz/P2bG0TS5jx9SsHWEwaJJsL/9qtYpYLNY2uWNjY1Tzx8bGPHWhUAixWKwtEvATP/xvhYZ8Sz/4Xg22B393/h6NFlKpFNXCfkQQBDrjq6uruHvnHt2wWCR3NhGO+L1fkiTf+259Oklr25deftm39IsPwIqDHW0qFouUnGQySRspioJCoUCdVywWQyaT8a0bHR1FKpWidstxesUHRbxy5rStvbZpMJskOyaC4H+30Xj31+/uOaa10WAYsAyDcrlshViiSJe3oigYGRnxdFIUBYqiIJlMIh6Pt9WtrKxQryyKIiRJQrlctnaArItUNMltRuVNLFVVfZ2No7mJRKKt3q9PJ2lt6zYHbvm7Vu8Ln5oIZ8DODu3w4cO0QTqdpvanXq9Tp3fx4kVks1m6bOr1Oubm5jwxMgB6v7mx2TQH9Orw2m4iIpEIFEWBpmme5+5wqjW00jQNiqIgEolsO3A//FMvvehb+sH3aLDbubTaGWfGEokEQqEQJdpxOI6WOnWiKLY5nmb4Rf9s+2HiORHVmSrS6TTm5uZ6GoyjDOI5sS/8927f3jN8jwb/P8rR40cQjoQhy3JbtNBp8LIsIxwJ95Q32G98L8HEuyty2xlHmyVJwvr6OlRVxdDQELLZbDPWtbfJ7jr3smrGr/RPTx/3k59NIBAIQJIkxONxiuWOgzVNQzwex82bNxEIBDCeHO958J3wW81Ov/jURDgfPBgYxObGJlZWVmiDTCZDX37o0CHPi506VVXb6hxxsAYDgyDEtR0GgTOn9q+2j3s28CwKt27iF2/nIMsyZFlGNBpFNBqFIAhQFIUqQz/JmP3Gp3774aOHOHDgALKXspDnZAiCgLW1tZ7CNFmWUSgUaFt3HQAMDQ1B0zScevEUbuSv4z9bW2g0ttDQG2g0dBhOXsI0YBomTcK37tS+iOlKmuz529JfMTBwAB8tfITkD5N0W+jEs/2KkyABgJm3Z/Dd09/BVmMLW40G9EYDDb2FYJ+Ezxc94c4CoEc6sZFhBINBAEA2m/W1Sb3K+vo69brBYNBOxDupSROmbYsdc/GkCgsAJjFhGNY52pWrlylB8Xjck+PdCbkjIyO078RbE3aC3WiS7EpRUidLnqwjI+rcAZDJzCRZXC4T9XGFvPb91xxXT6LRKKlUKqRXqdfrJBqN0v5iXCTq4wpZXC6Ty1cv0+dfotL8kXojSZYqi0T9WCViXKTPBUEg09PTZG1trSOxa2trZHp6mgiCQPsdP3GcrHyskiV1kUxmJr+M5BKmNSidykxiNC6C53ncyN3AB7/7oO8jo+yVaei6jocPy3j9B6/3v8RcZsN9muHefbb+3im+H5bfe/s2Ee4ylZm0NPlxhbwv/ZYEg8GeZywYDJLCrwpEfVwhS+oieee9d3atBYSQrvfuZ/3ib4fb7zuYTtuq1BtJvPq9V+kphFIs4c78na7H9mfFs4jFhulZ2/z8HcxkZ3bvJLpo0m40109j/a67eQ/Tbd969NgRTGUu4RvfDLpOI9zpRnjiVuc/nqx+8gl+eT2PhdLC3njhLgPdS4Ldk/m5EOzIyeGTOH3mNI69cAxfDQS8OVw7tPp0YwOPlh7h/t37e0bs563B+2GDeyL4qfQvDCHkGYZh/v2Uin3YYBDC/HcArOiX8zGX6zMAAAAASUVORK5CYII=",
-"cc-by-nc":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAk0SURBVHja7FpdbNvWFf5IysFS1BrztA1yMBt7sQqskZMmy4Ytlta9LJ4TCnaCFkkWuQ812mCTlB+3S+3Iyk8TK/Zkb0iBYVstrCjahwZm/oDNGSLaKzBbTiIZaSM9rJCK2FiHDbArpwVmkbx7EHlF2pIty3axpjnGFX/uvR/J75577jnnmiGEWBmG+RSPZc2FEMIwAAgA3Bi+DpZlwbIsOI4Dy3LgWBYspx1ZFgzDgmUYMAwDMIyOAgICohKoRIWq5ouiKPmjqkBRVKiqQutUotL2hBD9Zej5oyD79u4HADAAiE4ux3H5wnKFc47L17GcRjIDhmGN/GrkaMSqeTIVRSvGc8VMsqqqlFgj0Y8SyRYAZnI5CyymY75cu3Id0WgUsVgMc9k5E1C1tRo7duyA68cuNO/5GRSVA8vK+QFRWDBgtLE0TB+V5GcCtDnELE3u3Yk4xMsiksmk6b7dbofQImDr9oZVkbFe+AwA8pdbf4bFYqGkWiyWfOEsGJFGEboQwvT0dFmANpsNHb/qQGPjLsiKAkWRIctaUWTIskI1vJgmL9TiT/75L1wauIRUMgUAcDqdcDgcAIBEIgFJkgAA9fZ6HPEewTe/9Y0VEbCe+Pv27s8T/NeRm7BwlgKxlipUWSwIdHVDHBJpB57nIQgCamtr0djYCAAYGRlBJpOBKIqYnZ2lbQW3gOMdx7DxiY2QZRk5WYYs5yDLstlk6ASrmi03EP0w+xDeIz5ks1kIgoBwOIza2lrTR2QyGfj9foiiCKvVinOhc2WTsN74lOBbf7uFKp3YKguqLFUmcnmeh8/ng9frBc/zJQEjkQj8fj8lut5ejz+8+Xt8beNGyHIOuVyOanJRkhfY465XTyGVTMHj8WBwcLAw7TTTYtT0SCSCtrY21NvrcebC6bIIKIX/m/5+jI+N4+1331kV/r69+8ECAKfZYAvHwcKZNdfhcCAejyMQCCxJLgB4PB6k02k6xVLJFHpDfSZbzlKPhCkU7c9I4N2JOFLJFARBQMeJE8t+jMfjgSAISCVTuDsRL8vmppIpbG1owA92ft9E7oVQCNdu3MArx09gamqqInxdWABgdbeM4zAijZrIjUaji6bNUsLzPKLRKCVZHBIxMjIKjrMUJ5nV3T6YSBYv598hHA7D/tRTC/3LogtiOBw29V1K9DafP/wMPefPw/nDH+GlF9vh9fvR3t6OkydPItTXi/GxsYrwTQTnNTivxaELIUrU4ODgslq7FMl639D5kOZLa+Qymk/Nah4GgwLJ2vRPJpNwOp2LBretrY1qfltbm6mutrYWTqdzkSdQTHT85uZm7Nu/H1NTU7g5PIzvfLsWn889xMFDB3H/ww/R0tpaEb5Zg7WPv3blOvUWfD4f1cJKhOd5OuLT09O4dvU6DVjyJJc2EboUe34kEil6vlSfUuJwOBDq68X5UA/efvcdtLS24qOPMwj19WLz5s2IvDmI5P37FeNTgnVtikajlByv10sbSZIEt9sNl8sFl8uFYDBYsq6/v99kF3Utjt6KGrS3YBoYpriJ+KLlezt3oqf3Ih48eICOY8fR8N2ncfm999C8uwkHnnseN4eHK8LNBxoMA5ZhEIvF8i6WIFBiJEmCy+UydZIkCZIkwev1wu12L6qbnJykq7IgCIhEIojFYvkI0EAsUCC34JUXsBKJRNHFTNdcj8ezqL5Yn1KysG02m8XN4WH09F6E534bmnc3AQDGx8YwPjaGmpoaMFWWSjQ4/6F6hLZlyxbawO/3U/uTTqfponf48GGqyQ6HA+l0GkNDQyYfGQA9n8vOFcwBPeq8LjYRdrsdkiQhk8mY7hvdKeO57rNKkgS73b7shxfDf+nFdpw7fQZbn96CA889j48+zqCltRU9vRdx4ODBFeGbCDYuLgvtjD7KHo+HGvl0Og2Px0Pr9OBDEARaZ1wYCu4X/Vn2xYQWwTTA5YjeVu+7Uvye3otoe+EFfPKff+Mf6TQGwmG8dqoLLa2tCJ49g4btz5SNbyb4/1C2bm9Avb0eoigu8hZKkSuKIurt9WXlDYrh19TU4LVTXTjmP4rmpib80ueD1WqtCN9MMDFHRUbbpGtzJBLB7OwsEokE6urqEAwGC76uFiYb64zTtuC/0p+yXu6Vkx2wWq2IRCJwu90Uy+gHZzIZuN1u9Pf3w2q14oj3SNkfXwr/2InjNIpbDT5d5PQXrrZWYy47h8nJSdogEAjQh2/atMlEnF6XSCQW1emiY1Vbq0GIIRwGgT6m2tWil3vS+iQGLvWj5/UQRFGEKIpwOBxwOBzgeR6SJFFlqCQZs974dN0evzOODRs2IHgqCHFIBM/zmJmZMXkGAwMDNMfgdDoRCASo9g4MDNC2xjoAqKurQyaTwbM/eRZ94V78d34eudw8cnIOuZwMRc9LqApURaVJ+IWR2pcxXUmTPWO3/46qqg14f/R9eH/hpWGhz+db1UvrCRIAOPv6Wexu+inmc/OYz+Ug53LIyQsILpLw+bIn3FkAdEvH6WqEzWYDAASDwUUu0kpkdnaWrtA2m01LxOupSRWqZot1c/GoCgsAKlGhKPl9tDPnTlOC3G63Kce7EnJdLhft2/Fqh5ZgVwokG1KUdJElj9aWEV3cAZDOQCeZuBsjiXtxcujnh/SlnjgcDhKPx0m5kk6nicPhoP0Ft0AS9+Jk4m6MnD53mt7/CpXChe+ol9yOT5DEBwkiuAV6n+d50t3dTWZmZkoSOzMzQ7q7uwnP87Tf9h3byeQHCXI7MUE6A51fRXIJs9Ap7Qp0Yq9bgMViQV+oD2/96a2Kt4yCZ7ohyzLGx2N4uf3lyqeYwWwYdzOM0efC65Xil8LSn10pNoqx3hXozGvyvTh5M/JHYrPZyh4xm81GBn47QBL34uR2YoK88bs3Vq0FhJAlz433KsVfDrfSZzClwirfUS8OHDxAdyGk6AiuXrm65Lb9HmEPnM5Gutd25cpVnA2eXf0iUUSD10JzF2KUOq5GmKXi1q3bGtAVOIWazTbDboQx3QiT36r/48n01BR+3RvG6Mjo2qzCC6bsWpmG5UzCUs9dE4J12dW4C03NTdj2zDZ83Wo153A11+rTbBZ3bt/BjWs31ozYL1qD18MGl0XwY1mFiSCEPMEwzGePqViHAIMQ5n8DAFb/49reYmyHAAAAAElFTkSuQmCC",
-"cc-by-nc-sa":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAApvSURBVHja7FptbFPXGX7utYlGJzz/2yYHYYQ2xZFWHAq0dLSx161TS9NcLylfocNmWtuVdUlKCNvIl4FAY0Id91Ob1sRrV7VaqTBfaxc6fEPQ4sRJbEaL82OVjZKoVJvm4KCpxB/vflzfE9/EThxo1Y72lY7v8T3nPPfc57znPe95z+WISMNx3FV8JZ+6EBHHASAAON19CjzPg+d5qFQq8LwKKp4Hr0pfeR4cx4PnOHAcB3CcjAICgVKEFKWQSkkpmUxK11QSyWQKqVSSlaUoxeoTkdwZlr8V5JHyjQAADgDJ5KpUKinxqum8SiWV8ao0yRw4js/kN01OmtiURGYymU6Z+aSS5FQqxYjNJPpWIlkNQEmuSg214iqlk8dPwev1YmBgAJOxSQXQEs0SrF27FuYfmFH28ENIplTg+YQ0IEkeHLj0WGZMnxRJMwHpOcRJ5A77A/C87UEoFFLUNxgMECoErFpTktfLfVFwOAD017PvQq1WM1LVarWUVGr0iOfgeMaB8fHxvDqk0+lQ/5t6lJbei0QyiWQygUQinZIJJBJJpuGZmvzR+Ed4vuMFjIRGAAAmkwlGoxEAEAwGIYoiAKDIUISd1TvxrW9/M+vzr3z0MV50vfiFwHmkfKNE8Hs9Z6BWqaeJVS/CIrUazY0t8BzzsAZarRaCIECv16O0tBQA0NPTg0gkAo/Hg4mJCVZXsAioq9+FxbctRiKRQDyRQCIRRyKRUJoMSuFq9Cp++cRTiMViEAQBTqcTer1e0dlIJILa2lp4PB5oNBq0OlpnvdS12DVU76z5wuDIdpjO9p6l3r5z1Ofvo8Ggny68HyTBIlB68pJWq6WWlhaKRqM0l3R1dZFWq2XtigxFdL6vlwaDg+Qb7KPevnPk7T1LZ8Ruevdv79Dp7lN04p3jZDAYCABZrVYFnowz8xky9lvH/6xIRYairDgup5O2btp8Uzijo6Pk6+sjX18fjY6O5oUDgHgAUKVtsFqlglql1Fyj0YhAIIDm5mZotdo5zYPVakU4HGZTaSQ0gnbHEYUt55lHInkjfp8foVAIgiCgfvfueU2Q1WqFIAgYCY1g2B9Q2MqR0AhWlZTg7rvWsfvPdXTgGYcDJ0+fxp663RgbG8sLJ7M/f3r1VZjW34OqzVtQtXkLTOvvwZnu7jlxFOtNr6+XfIM+Gr4wRK7nXUxzjEbjvFqbTaLRKBmNRobjesFFw/8Ypv4hH5339ZL3vKTF77z3FzIUS9obDofzxg+HwwSADAYD0xZ5FhR957u0YpmeSr+/np74+WMEgFpaWujQwUMEgI6+9VZeOHJ/fH19Et6d6+hn221Uv6uOVizT04plenI5nTlxsmiwpMWOZxzM3nZ1dc2rtdlEq9XC6/Wyto5DjrQvndZgLu1T8zxCl0IwmUyzbJzNZmNabrPZFGV6vR4mk0mxsodCEk5ZWRke2bgRY2NjONPdjRXL9Pjv5DVse3QbLn3wASoqK/PC0ev1iMViCAUuAgDKhZ/gD+5OtLUfxt6mRgCAu7MrJ44svOym8bzkisneQk1NDZvqNyJarRZOpxMAMD4+jpMnTrENi0Qyx9y0bM9xu91Z87Jka2M0GuE40o5Djja8/uYbqKisxIeXI3AcacfSpUvh7uxC6NKlvHBkaX1WUrjf//EVdu9H998PAIjFYvj4ypWcOIxgWZu8Xi8jp7q6mlUSRREWiwVmsxlmsxl2uz1nWUdHh8JeylrsPevN0F4OHD9N8Gchd951F9raD2N0dBT1u+pQ8r3b8fbRoyh7cAOqNm9hNnQu0Wg0cLlcuE2zBC+//HLWOp98cn1ODGmjwXHgOQ4DAwOSiyUIjBhRFGE2mxWNRFGEKIqorq6GxWKZVXbhwgV0dXUxLLfbjYGBAWkHmCZWIpdjfmW2xUzWXKvVOqs8W5uZ92KxGM50d6Ot/TCsl2woe3ADAKDf50O/z4fCwkJwi9Rz4ixSq1FfV4fbFi9m9/p9PpZfpl+Wsz8ZGiy9sLxDW7lyJatQW1vL7Ew4HIbX64Ver8f27duZJhuNRoTDYRw7dkzhIwNg+cnYpPQccBlXoLi4GKIoIhKJKDomD9DMvOyDiqIIg8Gg2FnNxPnFY4+jdd9+rLp9Jao2b8GHlyOoqKxEW/thVG3blhfO2NgYWpqasXXTZrTu24/WffvR1NAAANi9Z0/O/igIBgfFdM20J/LIWK1WZszD4TCsVisrkzcfgiCwssyFhG0bOfYz7YxvqlQMZD4i1xUqhOmNTTqfidPWfhi2HTtw5d//wj/DYbicTuxtakRFZSXsB/ajZM3qeXFsO3bAtmOHNNCdnejq7MT1T65jQ9lD2FK1NWd/FCbi85R169fBUGyAx+OBzWabpa3ZyPV4PCgyFCniAKvWlKDIUKTAKSwsxN6mRnxt8WIMDw3hVzU1N4Szt6kRP37gAVy+LGl1cXExDMXFc+IoNZiUUaxMeyJrs9vtxsTEBILBIJYvXw673c7K5G1yZlnmdJ6Oj7IfRScaWxqh0WjgdrthsVhYm8woWyQSgcViQUdHBzQaDXZW75z1Mnt+W58VZ9fuOrz+5hs3hbN6zWpUVFaiorIShuLivHBYsMc/PICCggKsv/seTMYmYbVamSZ5PJ5ZC5lsMsrLy3OWye1ra2vR0dGBJZolOP/3XkxNTWEqPoV4Io54PCEFg5IJRP8zgYP2g8yXNBqNMBqN0Gq1EEWRDfp8QZprsWtoO+hgQZrPE4cFe/qH+lFQUAB7kx2eYx5otVpEo1GFZ+ByuVgwx2Qyobm5mQ2Ay+VidTPLAGD58uWIRCK474f34YizHdenphCfQbAcN04lU/D3+3Hs6K0RrmQE+wb7sGhRAc6fO4/qpyT/1+l0oibDZt2IuN1utgs7cPAAHtzwAKbiU5iKx5GIxxFPzCA4SwD+/z3gzgNgRzomcyl0Oh0AwG63z3KdFiITExNsddXpdOlAfPoUI5VCKm2LKX3kdKsKDwApSiGZlM7R9rfuYwRZLBZFjHch5JrNZta2/tf16QB7cprkjCMjtsjSrXVkxBZ3ANTQ3ED+4QEKXgzQoz99VBFRCwQCC4p0ZUbSBItAwYsB8g8P0L7Wfez+lyhN/6l5upoGA34K3kDAPRqNUktLiyLgvmbtGrrwfpAGg35qaG74MpJL3EyntLG5AeUWAWq1GkccR/Daq6/d8JGRfX8LEokE+vsH8OTjT+bzHUHGro9j9zJ3mTP/58LJ1UZ+Rr6Bplx9WhDGzNTY3CBp8sUAdbpfIZ1Ol/eI6XQ6cj3vouDFAA0G/fTS717Ku+3MY6KZ+cx78+HM1z4frGx1FooxS4NlqXm6GlXbqthRj+jtwYnjJ+Y8tn9YeBgmUyk70Dx+/AQO2A8s5EuYWdqyEM2dWTfXdYFf52TV3lz9zLqTy1W46o4SNDY3oXCpLuM0IjPcCIXfKn94Mj42hmfbnTjXc27BL3MzpmE+kzAX/kIHLV+MOQmW5d7Se7GhbAPuWH0HvqHRpD+dmjYwRISrsRiGBodw+uTpBRP7WWnwzdrg+daET43gr+QmNhpE9PWvaPiMNhhE3P8GAG3CFDKJWtqSAAAAAElFTkSuQmCC",
-"cc-by-nc-nd":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAAAfCAYAAABjyArgAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAEZ0FNQQAAsY58+1GTAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAm8SURBVHja7FpdcBvVFf52pXgGplH11mbkDPbQdqy8oIQmMZRiufwMxRivJiHtFChyZwqUlMoiiWlaO5JCfkBNKqvhp30oUsswMCVMlL9CHRqt4xTLkmKtE7D8UMZisIf2pZLltDO1Vnv6sNprrS1bsgNDGjgz17vW3fvt3W/PPfe75y5HRCaO46bxhX3iRkQcB4AA4HT/KfA8D57nYTAYwPMGGHgevKF05HlwHA+e48BxHMBxGgoIBFIICilQFLUUi0X1qBRRLCpQlCKrU0hh1xOR1hl2fi3YAx3bAAAcANLINRgMauENc+cGg1rHG0okc+A4vpzfEjklYhWVzGKxVMrPi3qSFUVhxJYTfS2RbASgJ9dghFF3VMvJ46cQjUYRj8cxk5/RAa02rcamTZvQ+p1WtN9/H4qKATwvqy+kyIMDV3qXZcNHIXUkoDSGOJXckUQKkTcjSKfTuuutViuELQI2bFxf08NdLTgcAPrL2bdhNBoZqUajUS0GIwbEc/A/68fU1FRNHbJYLOje3Y2WltshF4soFmXIcqkUZchykXl4uSd/PPUxjvQ9j/H0OADAbrfDZrMBACRJgiiKAIAmaxO2u7bjq2u+UvH+//j4n3gh+MJVgfNAxzaV4HcGzsBoMM4Ra1yFVUYjPL1eRI5FWAOz2QxBENDQ0ICWlhYAwMDAADKZDCKRCHK5HLtWcAjY2b0D111/HWRZRkGWIcsFyLKsDxmkYDo7jZ8+/iTy+TwEQUAgEEBDQ4Ous5lMBm63G5FIBCaTCfv9+xc81OX8Zbi2d101OFocprODZ2lw6BwNJYYoKSVo9D2JBIdApcFLZrOZvF4vZbNZWspCoRCZzWbWrsnaROeHBikpJSmWHKLBoXMUHTxLZ8R+evuvb9Hp/lN04q3jZLVaCQA5nU4dnoYz/x4a9hvH/6QrTdamijjBQIB+8L3vXzHOYs+8GA4A4gHAUIrBRoMBRoPec202G1KpFDweD8xm85Lhwel0YmJigg2l8fQ4DvkP62I5zxSJqkYSsQTS6TQEQUD3rl1VQ5DT6YQgCBhPj2MkkdLFyvH0ODasX49bm29hv/+mrw/P+v04efo0nt65C5OTkzXhXGl/dPPNYGyQYskYjYxeoOCRIPMcm81W1WsrWTabJZvNxnCCzwdp5OIIDV+I0fnYIEXPq1781jt/Jus61XsnJiZqxp+YmCAAZLVambdoo6Dp69+gG29ooJZv3UaP//hRAkBer5cOHjhIAOjoG2/UhHOl/angwaoX+5/1s3gbCoWqem0lM5vNiEajrK3/oL+kpUsezJU0Nc8jPZaG3W5fEOM6OzuZl3d2durqGhoaYLfbdTN7Oq3itLe344Ft2zA5OYkz/f248YYG/GfmMh56+CGMvf8+tmzdWhNOeX++1tBYsSyFoxmvyTSeV6WYpha6urrYUF+Jmc1mBAIBAMDU1BROnjjFFiwqyRyTaZXuEw6HK55rVqmNzWaD//AhHPQ/h1dffw1btm7FBx9m4D98CGvXrkX45RDSY2M14ZTbXffcU7FUwwGg6mDNm6LRKCPH5XKxi0RRRDAYZCrBbrfD4/FUrOvo6EBXVxeLT263G7lcDtGzUdzX3lbyXg4cz4FTuE9N5G9ubsbm5mY82eXCkb4gzvT3482jR/Hm0aPY3NwM5486cdfdd9eE9dJvX1pxP9SFBseB5zjE43FVYgkCG96iKKK1tVXXSBRFiKIIl8sFh8OxoG50dBShUIhhhcNhxONxdQXIc2zoa4sPSZIqTh6a5zqdzgX1ldrM/y2fz+NMfz+eO/QrOMc60X5vGwBgOBbDcCyG+vp6cKuMVXHKw0G5/T0zsWR/yjxYfWBthXbTTTexC9xuN4sz0WgUmUwGnZ2deOSRR+Dz+djwOHbsGCRJgtvtZhoZAFpaWhAOhzGTn1HvA67sCKxbtw6iKCKTyejiXigUYgRrL6tcg4qiCKvVqltZzcf5yaOPYTgWw5G+IADggw8z6N6xE5uaN+OiNIo/hMP4cGqyKs4dd925pJdW6o9ORSSlBF0au8hm/Wg0ukCLer3eBbPnUnWaRaNRdt2lsYuUlJL0bvxdGvibSO8MnCGPbw8BIEEQFsWfb4KgavTdPbvZjL27Z/cCnI8++oj2+fbSmjVraPWXVlMwEKDp6ell41SzSjg6FfFZ2i233QLrOisikcgCtVDJtNVTk7VJlwfYsHE9mqxNOpz6+nr8ck8vdrifQntbG37W1QWTybRsnJX0R6ciQPosVnk80WbHcDiMXC4HSZLQ2NgIn8/H6rRlcnld+fCZy4+yP7pO9Hp7YTKZEA6H4XA4WJvyLFsmk4HD4UBfXx9MJhO2u7YveJinf9FdEWfHrp149fXXrhhnfliohsOSPYmROOrq6nDbrd/GTH4GTqeTxb1IJLJgItMmno6OjkXrtPZutxt9fX1YbVqN8+8OYnZ2FrOFWRTkAgoFWU0GFWVk/5XDAd8BpiVtNhtsNhvMZjNEUWQvvVqS5nL+Mp474GdJms8ShyV7hi8Mo66uDr49PkSORWA2m5HNZmuSaZFIBMFgkF1bXgcAjY2NyGQyuOPOO3A4cAj/nZ1FYR7BWt5YKSpIDCdw7Oi1ka5kBMeSQ1i1qg7nz52H60lV/wYCAaZnV2rhcJjFsX0H9uHetu9itjCL2UIBcqGAgjyP4AoJ+P/3hDsPgG3p2FtbYLFYAAA+n69i7KnVcrkck3gWi6WUiC/tYigKlFIsptKW07VqPAAopKBYVPfRntm/lxHkcDh0Od7lkNva2sradv+8u5RgL86RXLZlxCZZura2jNjkDoB6PD2UGImTdClFD//wYV1GLZVKLSuzVJ5JExwCSZdSlBiJ0979e9nvn6My90/XUy5KphIkrSDhns1myev16hLuGzdtpNH3JEpKCerx9HweySVuvijt9fSgwyHAaDTisP8wXvnjKyveMvI944UsyxgejuOJx56o5TuCOf1YyrQRlW2OVvh/MZzF2mj3qIaxFE6lflYNEeWl19OjevKlFL0c/j1ZLJaa35jFYqHgkSBJl1KUlBL04u9erLnt/OXx/PPy36rhVGtfC9YngbPAgzXresqFBx96kG31iNEBnDh+Yslt+/uF+2G3t7ANzePHT2Cfb99yvoRZ1DNq8dxKnlbpuJz+VMOphrkowQCw4eb16PXsQf1aS9luRHm6ETrdqn14MjU5iV8fCuDcwLnlfmp0RaGhWkhYDjGfFM6SBGt2e8vtaGtvw83fvBlfNplKn07NBRgiwnQ+jwvJCzh98vSyif20PPhqiME1EfyFrdw4Irqe47h/f0HFp7DAIOL+NwDFrtvhh4x87AAAAABJRU5ErkJggg=="},
-d;return{_setup:function(a){var c="",f=a.license&&b[a.license.toLowerCase()];a._container=document.createElement("div");a._container.style.display="none";d=document.getElementById(a.target);if(a.nameofworkurl)c+="<a href='"+a.nameofworkurl+"' target=_blank>";if(a.nameofwork)c+=a.nameofwork;if(a.nameofworkurl)c+="</a>";if(a.copyrightholderurl)c+="<a href='"+a.copyrightholderurl+"' target=_blank>";if(a.copyrightholder)c+=", "+a.copyrightholder;if(a.copyrightholderurl)c+="</a>";if(c==="")c=a.text;if(a.license)if(f)c=
-a.licenseurl?"<a href='"+a.licenseurl+"' target=_blank><img src='"+f+"' border='0'/></a> "+c:"<img src='"+f+"' />"+c;else{c+=", license: ";c+=a.licenseurl?"<a href='"+a.licenseurl+"' target=_blank>"+a.license+"</a> ":a.license}else if(a.licenseurl)c+=", <a href='"+a.licenseurl+"' target=_blank>license</a> ";a._container.innerHTML=c;if(!d&&g.plugin.debug)throw Error("target container doesn't exist");d&&d.appendChild(a._container)},start:function(a,c){c._container.style.display="inline"},end:function(a,
-c){c._container.style.display="none"},_teardown:function(a){(d=document.getElementById(a.target))&&d.removeChild(a._container)}}}(),{about:{name:"Popcorn Attribution Plugin",version:"0.2",author:"@rwaldron",website:"github.com/rwldrn"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},nameofwork:{elem:"input",type:"text",label:"Name of Work"},nameofworkurl:{elem:"input",type:"url",label:"Url of Work",optional:true},copyrightholder:{elem:"input",type:"text",
-label:"Copyright Holder"},copyrightholderurl:{elem:"input",type:"url",label:"Copyright Holder Url",optional:true},license:{elem:"input",type:"text",label:"License type"},licenseurl:{elem:"input",type:"url",label:"License URL",optional:true},target:"attribution-container"}})})(Popcorn);(function(g){g.plugin("code",function(b){var d=false,a=function(){var c=function(f){return function(h){var p=function(){d&&h();d&&f(p)};p()}};return window.webkitRequestAnimationFrame?c(window.webkitRequestAnimationFrame):window.mozRequestAnimationFrame?c(window.mozRequestAnimationFrame):c(function(f){window.setTimeout(f,16)})}();if(!b.onStart||typeof b.onStart!=="function"){if(g.plugin.debug)throw Error("Popcorn Code Plugin Error: onStart must be a function.");b.onStart=g.nop}if(b.onEnd&&typeof b.onEnd!==
-"function"){if(g.plugin.debug)throw Error("Popcorn Code Plugin Error: onEnd must be a function.");b.onEnd=undefined}if(b.onFrame&&typeof b.onFrame!=="function"){if(g.plugin.debug)throw Error("Popcorn Code Plugin Error: onFrame must be a function.");b.onFrame=undefined}return{start:function(c,f){f.onStart(f);if(f.onFrame){d=true;a(f.onFrame,f)}},end:function(c,f){if(f.onFrame)d=false;f.onEnd&&f.onEnd(f)}}},{about:{name:"Popcorn Code Plugin",version:"0.1",author:"David Humphrey (@humphd)",website:"http://vocamus.net/dave"},
-options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},onStart:{elem:"input",type:"function",label:"onStart"},onFrame:{elem:"input",type:"function",label:"onFrame",optional:true},onEnd:{elem:"input",type:"function",label:"onEnd"}}})})(Popcorn);(function(g){var b=0;g.plugin("flickr",function(d){var a,c=document.getElementById(d.target),f,h,p,o,l=d.numberofimages||4,i=d.height||"50px",r=d.width||"50px",k=d.padding||"5px",j=d.border||"0px";a=document.createElement("div");a.id="flickr"+b;a.style.width="100%";a.style.height="100%";a.style.display="none";b++;if(!c&&g.plugin.debug)throw Error("flickr target container doesn't exist");c&&c.appendChild(a);var v=function(){if(f)setTimeout(function(){v()},5);else{h="http://api.flickr.com/services/rest/?method=flickr.people.findByUsername&";
-h+="username="+d.username+"&api_key="+d.apikey+"&format=json&jsoncallback=flickr";g.getJSONP(h,function(n){f=n.user.nsid;w()})}},w=function(){h="http://api.flickr.com/services/feeds/photos_public.gne?";if(f)h+="id="+f+"&";if(d.tags)h+="tags="+d.tags+"&";h+="lang=en-us&format=json&jsoncallback=flickr";g.xhr.getJSONP(h,function(n){var y=document.createElement("div");y.innerHTML="<p style='padding:"+k+";'>"+n.title+"<p/>";g.forEach(n.items,function(C,e){if(e<l){p=document.createElement("a");p.setAttribute("href",
-C.link);p.setAttribute("target","_blank");o=document.createElement("img");o.setAttribute("src",C.media.m);o.setAttribute("height",i);o.setAttribute("width",r);o.setAttribute("style","border:"+j+";padding:"+k);p.appendChild(o);y.appendChild(p)}else return false});a.appendChild(y)})};if(d.username&&d.apikey)v();else{f=d.userid;w()}return{start:function(){a.style.display="inline"},end:function(){a.style.display="none"},_teardown:function(n){document.getElementById(n.target)&&document.getElementById(n.target).removeChild(a)}}},
-{about:{name:"Popcorn Flickr Plugin",version:"0.2",author:"Scott Downe, Steven Weerdenburg, Annasob",website:"http://scottdowne.wordpress.com/"},options:{start:{elem:"input",type:"number",label:"In"},end:{elem:"input",type:"number",label:"Out"},userid:{elem:"input",type:"text",label:"UserID",optional:true},tags:{elem:"input",type:"text",label:"Tags"},username:{elem:"input",type:"text",label:"Username",optional:true},apikey:{elem:"input",type:"text",label:"Api_key",optional:true},target:"flickr-container",
-height:{elem:"input",type:"text",label:"Height",optional:true},width:{elem:"input",type:"text",label:"Width",optional:true},padding:{elem:"input",type:"text",label:"Padding",optional:true},border:{elem:"input",type:"text",label:"Border",optional:true},numberofimages:{elem:"input",type:"text",label:"Number of Images"}}})})(Popcorn);(function(g){g.forEach(["footnote","text"],function(b){g.plugin(b,{manifest:{about:{name:"Popcorn "+b+" Plugin",version:"0.2",author:"@annasob, @rwaldron",website:"annasob.wordpress.com"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},text:{elem:"input",type:"text",label:"Text"},target:b+"-container"}},_setup:function(d){var a=document.getElementById(d.target);d._container=document.createElement("div");d._container.style.display="none";d._container.innerHTML=
-d.text;if(!a&&g.plugin.debug)throw Error("target container doesn't exist");a&&a.appendChild(d._container)},start:function(d,a){a._container.style.display="inline"},end:function(d,a){a._container.style.display="none"},_teardown:function(d){document.getElementById(d.target)&&document.getElementById(d.target).removeChild(d._container)}})})})(Popcorn);(function(g,b){var d=false;g.plugin("facebook",{manifest:{about:{name:"Popcorn Facebook Plugin",version:"0.1",author:"Dan Ventura, Matthew Schranz: @mjschranz",website:"dsventura.blogspot.com, mschranz.wordpress.com"},options:{type:{elem:"select",options:["LIKE","LIKE-BOX","ACTIVITY","FACEPILE","LIVE-STREAM","SEND","COMMENTS"],label:"Type"},target:"facebook-container",start:{elem:"input",type:"number",label:"In"},end:{elem:"input",type:"number",label:"Out"},font:{elem:"input",type:"text",label:"font",
-optional:true},xid:{elem:"input",type:"text",label:"Xid",optional:true},href:{elem:"input",type:"url",label:"Href",optional:true},site:{elem:"input",type:"url",label:"Site",optional:true},height:{elem:"input",type:"text",label:"Height",optional:true},width:{elem:"input",type:"text",label:"Width",optional:true},action:{elem:"select",options:["like","recommend"],label:"Action",optional:true},stream:{elem:"select",options:["false","true"],label:"Stream",optional:true},header:{elem:"select",options:["false",
-"true"],label:"Header",optional:true},layout:{elem:"select",options:["standard","button_count","box_count"],label:"Layout",optional:true},max_rows:{elem:"input",type:"text",label:"Max_rows",optional:true},border_color:{elem:"input",type:"text",label:"Border_color",optional:true},event_app_id:{elem:"input",type:"text",label:"Event_app_id",optional:true},colorscheme:{elem:"select",options:["light","dark"],label:"Colorscheme",optional:true},show_faces:{elem:"select",options:["false","true"],label:"Showfaces",
-optional:true},recommendations:{elem:"select",options:["false","true"],label:"Recommendations",optional:true},always_post_to_friends:{elem:"input",options:["false","true"],label:"Always_post_to_friends",optional:true},num_posts:{elem:"input",type:"text",label:"Number_of_Comments",optional:true}}},_setup:function(a){var c=document.getElementById(a.target),f=a.type;if(!document.getElementById("fb-root")){var h=document.createElement("div");h.setAttribute("id","fb-root");document.body.appendChild(h)}if(!d||
-a.event_app_id){d=true;g.getScript("//connect.facebook.net/en_US/all.js");b.fbAsyncInit=function(){FB.init({appId:a.event_app_id||"",status:true,cookie:true,xfbml:true})}}f=f.toLowerCase();if(!(["like","like-box","activity","facepile","live-stream","send","comments"].indexOf(f)>-1))throw Error("Facebook plugin type was invalid.");a._container=document.createElement("div");a._container.id="facebookdiv-"+g.guid();a._facebookdiv=document.createElement("fb:"+f);a._container.appendChild(a._facebookdiv);
-a._container.style.display="none";f=f==="activity"?"site":"href";a._facebookdiv.setAttribute(f,a[f]||document.URL);f="width height layout show_faces stream header colorscheme maxrows border_color recommendations font always_post_to_friends xid num_posts".split(" ");g.forEach(f,function(p){a[p]!=null&&a._facebookdiv.setAttribute(p,a[p])});if(!c&&g.plugin.debug)throw Error("Facebook target container doesn't exist");c&&c.appendChild(a._container)},start:function(a,c){c._container.style.display=""},end:function(a,
-c){c._container.style.display="none"},_teardown:function(a){var c=document.getElementById(a.target);c&&c.removeChild(a._container)}})})(Popcorn,this);var googleCallback;
-(function(g){var b=1,d=false,a=false,c,f;googleCallback=function(h){if(typeof google!=="undefined"&&google.maps&&google.maps.Geocoder&&google.maps.LatLng){c=new google.maps.Geocoder;a=true}else setTimeout(function(){googleCallback(h)},1)};f=function(){if(document.body){d=true;g.getScript("//maps.google.com/maps/api/js?sensor=false&callback=googleCallback")}else setTimeout(function(){f()},1)};g.plugin("googlemap",function(h){var p,o,l,i=document.getElementById(h.target);d||f();p=document.createElement("div");
-p.id="actualmap"+b;p.style.width="100%";p.style.height="100%";b++;if(!i&&g.plugin.debug)throw Error("target container doesn't exist");i&&i.appendChild(p);var r=function(){if(a)if(h.location)c.geocode({address:h.location},function(k,j){if(j===google.maps.GeocoderStatus.OK){h.lat=k[0].geometry.location.lat();h.lng=k[0].geometry.location.lng();l=new google.maps.LatLng(h.lat,h.lng);o=new google.maps.Map(p,{mapTypeId:google.maps.MapTypeId[h.type]||google.maps.MapTypeId.HYBRID});o.getDiv().style.display=
-"none"}});else{l=new google.maps.LatLng(h.lat,h.lng);o=new google.maps.Map(p,{mapTypeId:google.maps.MapTypeId[h.type]||google.maps.MapTypeId.HYBRID});o.getDiv().style.display="none"}else setTimeout(function(){r()},5)};r();return{start:function(k,j){var v=this,w,n=function(){if(o){o.getDiv().style.display="block";google.maps.event.trigger(o,"resize");o.setCenter(l);if(j.zoom&&typeof j.zoom!=="number")j.zoom=+j.zoom;j.zoom=j.zoom||8;o.setZoom(j.zoom);if(j.heading&&typeof j.heading!=="number")j.heading=
-+j.heading;if(j.pitch&&typeof j.pitch!=="number")j.pitch=+j.pitch;if(j.type==="STREETVIEW"){o.setStreetView(w=new google.maps.StreetViewPanorama(p,{position:l,pov:{heading:j.heading=j.heading||0,pitch:j.pitch=j.pitch||0,zoom:j.zoom}}));var y=function(u,x){var A=google.maps.geometry.spherical.computeHeading;setTimeout(function(){var B=v.media.currentTime;if(typeof j.tween==="object"){for(var D=0,E=u.length;D<E;D++){var z=u[D];if(B>=z.interval*(D+1)/1E3&&(B<=z.interval*(D+2)/1E3||B>=z.interval*E/1E3)){s.setPosition(new google.maps.LatLng(z.position.lat,
-z.position.lng));s.setPov({heading:z.pov.heading||A(z,u[D+1])||0,zoom:z.pov.zoom||0,pitch:z.pov.pitch||0})}}y(u,u[0].interval)}else{D=0;for(E=u.length;D<E;D++){z=j.interval;if(B>=z*(D+1)/1E3&&(B<=z*(D+2)/1E3||B>=z*E/1E3)){C.setPov({heading:A(u[D],u[D+1])||0,zoom:j.zoom,pitch:j.pitch||0});C.setPosition(e[D])}}y(e,j.interval)}},x)};if(j.location&&typeof j.tween==="string"){var C=w,e=[],m=new google.maps.DirectionsService,q=new google.maps.DirectionsRenderer(C);m.route({origin:j.location,destination:j.tween,
-travelMode:google.maps.TravelMode.DRIVING},function(u,x){if(x==google.maps.DirectionsStatus.OK){q.setDirections(u);for(var A=u.routes[0].overview_path,B=0,D=A.length;B<D;B++)e.push(new google.maps.LatLng(A[B].lat(),A[B].lng()));j.interval=j.interval||1E3;y(e,10)}})}else if(typeof j.tween==="object"){var s=w;m=0;for(var t=j.tween.length;m<t;m++){j.tween[m].interval=j.tween[m].interval||1E3;y(j.tween,10)}}}}else setTimeout(function(){n()},13)};n()},end:function(){if(o)o.getDiv().style.display="none"},
-_teardown:function(k){(k=document.getElementById(k.target))&&k.removeChild(p);p=o=l=null}}},{about:{name:"Popcorn Google Map Plugin",version:"0.1",author:"@annasob",website:"annasob.wordpress.com"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"map-container",type:{elem:"select",options:["ROADMAP","SATELLITE","STREETVIEW","HYBRID","TERRAIN"],label:"Type",optional:true},zoom:{elem:"input",type:"text",label:"Zoom",optional:true},lat:{elem:"input",
-type:"text",label:"Lat",optional:true},lng:{elem:"input",type:"text",label:"Lng",optional:true},location:{elem:"input",type:"text",label:"Location"},heading:{elem:"input",type:"text",label:"Heading",optional:true},pitch:{elem:"input",type:"text",label:"Pitch",optional:true}}})})(Popcorn);(function(g){g.plugin("image",{manifest:{about:{name:"Popcorn image Plugin",version:"0.1",author:"Scott Downe",website:"http://scottdowne.wordpress.com/"},options:{start:{elem:"input",type:"number",label:"In"},end:{elem:"input",type:"number",label:"Out"},href:{elem:"input",type:"url",label:"anchor URL",optional:true},target:"image-container",src:{elem:"input",type:"url",label:"Source URL"},text:{elem:"input",type:"text",label:"TEXT",optional:true}}},_setup:function(b){var d=document.createElement("img"),
-a=document.getElementById(b.target);b.anchor=document.createElement("a");b.anchor.style.position="relative";b.anchor.style.textDecoration="none";b.anchor.style.display="none";if(!a&&g.plugin.debug)throw Error("target container doesn't exist");a&&a.appendChild(b.anchor);d.addEventListener("load",function(){d.style.borderStyle="none";b.anchor.href=b.href||b.src||"#";b.anchor.target="_blank";var c,f;if(b.text){c=d.height/12+"px";f=document.createElement("div");g.extend(f.style,{color:"black",fontSize:c,
-fontWeight:"bold",position:"relative",textAlign:"center",width:d.width+"px",zIndex:"10"});f.innerHTML=b.text||"";f.style.top=d.height/2-f.offsetHeight/2+"px";b.anchor.appendChild(f)}b.anchor.appendChild(d)},false);d.src=b.src},start:function(b,d){d.anchor.style.display="inline"},end:function(b,d){d.anchor.style.display="none"},_teardown:function(b){document.getElementById(b.target)&&document.getElementById(b.target).removeChild(b.anchor)}})})(Popcorn);(function(g){var b=function(d){var a=0,c=0,f=0,h=null,p=null,o=false,l=0,i=function(){},r=function(){d.background(0);c=f=0;h=p=null};d.draw=function(){i()};d.setup=function(){};d.construct=function(k,j,v){var w=function(){if(j){l=j.gml.tag.drawing.stroke;var n=(v.end-v.start)/(l.pt||function(C){for(var e=[],m=0,q=C.length;m<q;m++)e=e.concat(C[m].pt);return e}(l)).length,y=j.gml.tag;y=y.header&&y.header.client&&y.header.client.name;o=y==="Graffiti Analysis 2.0: DustTag"||y==="DustTag: Graffiti Analysis 2.0"||
-y==="Fat Tag - Katsu Edition";i=function(){if(k.currentTime<v.endDrawing){var C=(k.currentTime-v.start)/n;for(C<c&&r();c<=C;){if(!l)break;a=l[f]||l;var e=a.pt[c],m=c;if(h!=null){var q=e.x,s=e.y,t=void 0,u=void 0,x=void 0,A=void 0;if(o){t=p*d.height;u=d.width-h*d.width;x=s*d.height;A=d.width-q*d.width}else{t=h*d.width;u=p*d.height;x=q*d.width;A=s*d.height}d.stroke(0);d.strokeWeight(13);d.strokeCap(d.SQUARE);d.line(t,u,x,A);d.stroke(255);d.strokeWeight(12);d.strokeCap(d.ROUND);d.line(t,u,x,A)}h=e.x;
-p=e.y;c===m&&c++}}}}else setTimeout(w,5)};d.size(640,640);d.frameRate(60);d.smooth();r();d.noLoop();w()}};g.plugin("gml",{_setup:function(d){var a=this,c=document.getElementById(d.target);d.endDrawing=d.endDrawing||d.end;d.container=document.createElement("canvas");d.container.style.display="none";d.container.setAttribute("id","canvas"+d.gmltag);if(!c&&g.plugin.debug)throw Error("target container doesn't exist");c&&c.appendChild(d.container);c=function(){g.getJSONP("//000000book.com/data/"+d.gmltag+
-".json?callback=",function(f){d.pjsInstance=new Processing(d.container,b);d.pjsInstance.construct(a.media,f,d);d._running&&d.pjsInstance.loop()},false)};window.Processing?c():g.getScript("//cloud.github.com/downloads/processing-js/processing-js/processing-1.3.6.min.js",c)},start:function(d,a){a.pjsInstance&&a.pjsInstance.loop();a.container.style.display="block"},end:function(d,a){a.pjsInstance&&a.pjsInstance.noLoop();a.container.style.display="none"},_teardown:function(d){d.pjsInstance&&d.pjsInstance.exit();
-document.getElementById(d.target)&&document.getElementById(d.target).removeChild(d.container)}})})(Popcorn);(function(g){var b={},d=function(a){if(a.artist){var c="";c="<h3>"+a.artist.name+"</h3>";c+="<a href='"+a.artist.url+"' target='_blank' style='float:left;margin:0 10px 0 0;'><img src='"+a.artist.image[2]["#text"]+"' alt=''></a>";c+="<p>"+a.artist.bio.summary+"</p>";c+="<hr /><p><h4>Tags</h4><ul>";g.forEach(a.artist.tags.tag,function(f){c+="<li><a href='"+f.url+"'>"+f.name+"</a></li>"});c+="</ul></p>";c+="<hr /><p><h4>Similar</h4><ul>";g.forEach(a.artist.similar.artist,function(f){c+="<li><a href='"+
-f.url+"'>"+f.name+"</a></li>"});c+="</ul></p>";b[a.artist.name.toLowerCase()].htmlString=c}};g.plugin("lastfm",function(){return{_setup:function(a){a._container=document.createElement("div");a._container.style.display="none";a._container.innerHTML="";a.artist=a.artist&&a.artist.toLowerCase()||"";var c=document.getElementById(a.target);if(!c&&g.plugin.debug)throw Error("target container doesn't exist");c&&c.appendChild(a._container);if(!b[a.artist]){b[a.artist]={count:0,htmlString:"Unknown Artist"};
-g.getJSONP("//ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist="+a.artist+"&api_key="+a.apikey+"&format=json&callback=lastFMcallback",d,false)}b[a.artist].count++},start:function(a,c){c._container.innerHTML=b[c.artist].htmlString;c._container.style.display="inline"},end:function(a,c){c._container.style.display="none";c._container.innerHTML=""},_teardown:function(a){--b[a.artist].count||delete b[a.artist];document.getElementById(a.target)&&document.getElementById(a.target).removeChild(a._container)}}}(),
-{about:{name:"Popcorn LastFM Plugin",version:"0.1",author:"Steven Weerdenburg",website:"http://sweerdenburg.wordpress.com/"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"lastfm-container",artist:{elem:"input",type:"text",label:"Artist"}}})})(Popcorn);(function(g){g.plugin("lowerthird",{manifest:{about:{name:"Popcorn lowerthird Plugin",version:"0.1",author:"Scott Downe",website:"http://scottdowne.wordpress.com/"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"lowerthird-container",salutation:{elem:"input",type:"text",label:"Text",optional:true},name:{elem:"input",type:"text",label:"Text"},role:{elem:"input",type:"text",label:"Text",optional:true}}},_setup:function(b){var d=document.getElementById(b.target);
-if(!this.container){this.container=document.createElement("div");this.container.style.position="absolute";this.container.style.color="white";this.container.style.textShadow="black 2px 2px 6px";this.container.style.fontSize="24px";this.container.style.fontWeight="bold";this.container.style.paddingLeft="40px";this.container.style.width=this.video.offsetWidth+"px";this.container.style.left=this.position().left+"px";this.video.parentNode.appendChild(this.container)}if(b.target&&b.target!=="lowerthird-container"){b.container=
-document.createElement("div");if(!d&&g.plugin.debug)throw Error("target container doesn't exist");d&&d.appendChild(b.container)}else b.container=this.container},start:function(b,d){d.container.innerHTML=(d.salutation?d.salutation+" ":"")+d.name+(d.role?"<br />"+d.role:"");this.container.style.top=this.position().top+this.video.offsetHeight-(40+this.container.offsetHeight)+"px"},end:function(b,d){for(;d.container.firstChild;)d.container.removeChild(d.container.firstChild)}})})(Popcorn);(function(g){var b=1,d=false;g.plugin("googlefeed",function(a){var c=function(){var o=false,l=0,i=document.getElementsByTagName("link"),r=i.length,k=document.head||document.getElementsByTagName("head")[0],j=document.createElement("link");if(window.GFdynamicFeedControl)d=true;else g.getScript("//www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js",function(){d=true});for(;l<r;l++)if(i[l].href==="//www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css")o=true;if(!o){j.type=
-"text/css";j.rel="stylesheet";j.href="//www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.css";k.insertBefore(j,k.firstChild)}};window.google?c():g.getScript("//www.google.com/jsapi",function(){google.load("feeds","1",{callback:function(){c()}})});var f=document.createElement("div"),h=document.getElementById(a.target),p=function(){if(d)a.feed=new GFdynamicFeedControl(a.url,f,{vertical:a.orientation.toLowerCase()==="vertical"?true:false,horizontal:a.orientation.toLowerCase()==="horizontal"?
-true:false,title:a.title=a.title||"Blog"});else setTimeout(function(){p()},5)};if(!a.orientation||a.orientation.toLowerCase()!=="vertical"&&a.orientation.toLowerCase()!=="horizontal")a.orientation="vertical";f.style.display="none";f.id="_feed"+b;f.style.width="100%";f.style.height="100%";b++;if(!h&&g.plugin.debug)throw Error("target container doesn't exist");h&&h.appendChild(f);p();return{start:function(){f.setAttribute("style","display:inline")},end:function(){f.setAttribute("style","display:none")},
-_teardown:function(o){document.getElementById(o.target)&&document.getElementById(o.target).removeChild(f);delete o.feed}}},{about:{name:"Popcorn Google Feed Plugin",version:"0.1",author:"David Seifried",website:"dseifried.wordpress.com"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"feed-container",url:{elem:"input",type:"url",label:"url"},title:{elem:"input",type:"text",label:"title",optional:true},orientation:{elem:"select",options:["Vertical",
-"Horizontal"],label:"orientation",optional:true}}})})(Popcorn);(function(g){var b={},d={},a={};g.plugin("rdio",function(){var c=function(f){var h=function(p){return"http://www.rdio.com/api/oembed/?format=json&url=http://www.rdio.com/%23"+{playlist:function(){return"/people/"+f.person+"/playlists/"+f.id+"/"},album:function(){return"/artist/"+f.artist+"/album/"}}[p]()+f[p]+"/&callback=_loadResults"}(f.type);g.getJSONP(h,function(p){var o=p.title,l=p.html;if(p&&o&&l)b[f.containerid].htmlString="<div>"+l+"</div>";else if(g.plugin.debug)throw Error("Did not receive data from server.");
-},false)};return{_setup:function(f){var h=f.containerid=g.guid(),p=d[h]=document.createElement("div"),o=a[h]=document.getElementById(f.target);if(!o&&g.plugin.debug)throw Error("Target container could not be found.");p.style.display="none";p.innerHTML="";o.appendChild(p);b[h]={htmlString:f.playlist||"Unknown Source"||f.album||"Unknown Source"};c(f)},start:function(f,h){var p=h.containerid,o=d[p];o.innerHTML=b[p].htmlString;o.style.display="inline"},end:function(f,h){container=d[h.containerid];container.style.display=
-"none";container.innerHTML=""},_teardown:function(f){f=f.containerid;var h=a[f];b[f]&&delete b[f];h&&h.removeChild(d[f]);delete a[f];delete d[f]}}}(),{manifest:{about:{name:"Popcorn Rdio Plugin",version:"0.1",author:"Denise Rigato"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"rdio",artist:{elem:"input",type:"text",label:"Artist"},album:{elem:"input",type:"text",label:"Album"},person:{elem:"input",type:"text",label:"Person"},id:{elem:"input",
-type:"text",label:"Id"},playlist:{elem:"input",type:"text",label:"Playlist"}}}})})(Popcorn);(function(g){var b=0,d=function(a,c){var f=a.container=document.createElement("div"),h=f.style,p=a.media,o=function(){var l=a.position();h.fontSize="18px";h.width=p.offsetWidth+"px";h.top=l.top+p.offsetHeight-f.offsetHeight-40+"px";h.left=l.left+"px";setTimeout(o,10)};f.id=c||g.guid();h.position="absolute";h.color="white";h.textShadow="black 2px 2px 6px";h.fontWeight="bold";h.textAlign="center";o();a.media.parentNode.appendChild(f);return f};g.plugin("subtitle",{manifest:{about:{name:"Popcorn Subtitle Plugin",
-version:"0.1",author:"Scott Downe",website:"http://scottdowne.wordpress.com/"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"subtitle-container",text:{elem:"input",type:"text",label:"Text"}}},_setup:function(a){var c=document.createElement("div");c.id="subtitle-"+b++;c.style.display="none";!this.container&&(!a.target||a.target==="subtitle-container")&&d(this);a.container=a.target&&a.target!=="subtitle-container"?document.getElementById(a.target)||
-d(this,a.target):this.container;document.getElementById(a.container.id)&&document.getElementById(a.container.id).appendChild(c);a.innerContainer=c;a.showSubtitle=function(){a.innerContainer.innerHTML=a.text||""}},start:function(a,c){c.innerContainer.style.display="inline";c.showSubtitle(c,c.text)},end:function(a,c){c.innerContainer.style.display="none";c.innerContainer.innerHTML=""},_teardown:function(a){a.container.removeChild(a.innerContainer)}})})(Popcorn);(function(g){var b=[],d=function(){this.name="";this.contains={};this.toString=function(){var a=[],c;for(c in this.contains)this.contains.hasOwnProperty(c)&&a.push(" "+this.contains[c]);return a.toString()}};g.plugin("tagthisperson",function(){return{_setup:function(a){var c=false;if(!document.getElementById(a.target)&&g.plugin.debug)throw Error("target container doesn't exist");for(var f=0;f<b.length;f++)if(b[f].name===a.target){a._p=b[f];c=true;break}if(!c){a._p=new d;a._p.name=a.target;b.push(a._p)}},
-start:function(a,c){c._p.contains[c.person]=c.image?"<img src='"+c.image+"'/> ":"";c._p.contains[c.person]+=c.href?"<a href='"+c.href+"' target='_blank'> "+c.person+"</a>":c.person;document.getElementById(c.target).innerHTML=c._p.toString()},end:function(a,c){delete c._p.contains[c.person];document.getElementById(c.target).innerHTML=c._p.toString()}}}(),{about:{name:"Popcorn tagthisperson Plugin",version:"0.1",author:"@annasob",website:"annasob.wordpress.com"},options:{start:{elem:"input",type:"text",
-label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"tagthisperson-container",person:{elem:"input",type:"text",label:"Name"},image:{elem:"input",type:"url",label:"Image Src",optional:true},href:{elem:"input",type:"url",label:"URL",optional:true}}})})(Popcorn);(function(g){var b=false;g.plugin("twitter",{manifest:{about:{name:"Popcorn Twitter Plugin",version:"0.1",author:"Scott Downe",website:"http://scottdowne.wordpress.com/"},options:{start:{elem:"input",type:"number",label:"In"},end:{elem:"input",type:"number",label:"Out"},src:{elem:"input",type:"text",label:"Source"},target:"twitter-container",height:{elem:"input",type:"number",label:"Height",optional:true},width:{elem:"input",type:"number",label:"Width",optional:true}}},_setup:function(d){if(!window.TWTR&&
-!b){b=true;g.getScript("//widgets.twimg.com/j/2/widget.js")}var a=document.getElementById(d.target);d.container=document.createElement("div");d.container.setAttribute("id",g.guid());d.container.style.display="none";if(!a&&g.plugin.debug)throw Error("target container doesn't exist");a&&a.appendChild(d.container);var c=d.src||"";a=d.width||250;var f=d.height||200,h=/^@/.test(c),p={version:2,id:d.container.getAttribute("id"),rpp:30,width:a,height:f,interval:6E3,theme:{shell:{background:"#ffffff",color:"#000000"},
-tweets:{background:"#ffffff",color:"#444444",links:"#1985b5"}},features:{loop:true,timestamp:true,avatars:true,hashtags:true,toptweets:true,live:true,scrollbar:false,behavior:"default"}},o=function(l){if(window.TWTR)if(h){p.type="profile";(new TWTR.Widget(p)).render().setUser(c).start()}else{p.type="search";p.search=c;p.subject=c;(new TWTR.Widget(p)).render().start()}else setTimeout(function(){o(l)},1)};o(this)},start:function(d,a){a.container.style.display="inline"},end:function(d,a){a.container.style.display=
-"none"},_teardown:function(d){document.getElementById(d.target)&&document.getElementById(d.target).removeChild(d.container)}})})(Popcorn);(function(g){g.plugin("webpage",{manifest:{about:{name:"Popcorn Webpage Plugin",version:"0.1",author:"@annasob",website:"annasob.wordpress.com"},options:{id:{elem:"input",type:"text",label:"Id",optional:true},start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},src:{elem:"input",type:"url",label:"Src"},target:"iframe-container"}},_setup:function(b){var d=document.getElementById(b.target);b.src=b.src.replace(/^(https?:)?(\/\/)?/,"//");b._iframe=document.createElement("iframe");
-b._iframe.setAttribute("width","100%");b._iframe.setAttribute("height","100%");b._iframe.id=b.id;b._iframe.src=b.src;b._iframe.style.display="none";if(!d&&g.plugin.debug)throw Error("target container doesn't exist");d&&d.appendChild(b._iframe)},start:function(b,d){d._iframe.src=d.src;d._iframe.style.display="inline"},end:function(b,d){d._iframe.style.display="none"},_teardown:function(b){document.getElementById(b.target)&&document.getElementById(b.target).removeChild(b._iframe)}})})(Popcorn);var wikiCallback;
-(function(g){g.plugin("wikipedia",{manifest:{about:{name:"Popcorn Wikipedia Plugin",version:"0.1",author:"@annasob",website:"annasob.wordpress.com"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},lang:{elem:"input",type:"text",label:"Language",optional:true},src:{elem:"input",type:"url",label:"Src"},title:{elem:"input",type:"text",label:"Title",optional:true},numberofwords:{elem:"input",type:"text",label:"Num Of Words",optional:true},target:"wikipedia-container"}},
-_setup:function(b){var d,a=g.guid();if(!b.lang)b.lang="en";b.numberofwords=b.numberofwords||200;window["wikiCallback"+a]=function(c){b._link=document.createElement("a");b._link.setAttribute("href",b.src);b._link.setAttribute("target","_blank");b._link.innerHTML=b.title||c.parse.displaytitle;b._desc=document.createElement("p");d=c.parse.text["*"].substr(c.parse.text["*"].indexOf("<p>"));d=d.replace(/((<(.|\n)+?>)|(\((.*?)\) )|(\[(.*?)\]))/g,"");d=d.split(" ");b._desc.innerHTML=d.slice(0,d.length>=
-b.numberofwords?b.numberofwords:d.length).join(" ")+" ...";b._fired=true};if(b.src)g.getScript("//"+b.lang+".wikipedia.org/w/api.php?action=parse&props=text&page="+b.src.slice(b.src.lastIndexOf("/")+1)+"&format=json&callback=wikiCallback"+a);else if(g.plugin.debug)throw Error("Wikipedia plugin needs a 'src'");},start:function(b,d){var a=function(){if(d._fired){if(d._link&&d._desc)if(document.getElementById(d.target)){document.getElementById(d.target).appendChild(d._link);document.getElementById(d.target).appendChild(d._desc);
-d._added=true}}else setTimeout(function(){a()},13)};a()},end:function(b,d){if(d._added){document.getElementById(d.target).removeChild(d._link);document.getElementById(d.target).removeChild(d._desc)}},_teardown:function(b){if(b._added){b._link.parentNode&&document.getElementById(b.target).removeChild(b._link);b._desc.parentNode&&document.getElementById(b.target).removeChild(b._desc);delete b.target}}})})(Popcorn);(function(g){var b={text:function(d){var a=d.post,c=document.createElement("a"),f=document.createTextNode(a.title),h=document.createElement("div");c.setAttribute("href",a.post_url);c.appendChild(f);h.appendChild(c);h.innerHTML+=a.body;d._container.appendChild(h)},photo:function(d){for(var a=d.width||250,c=-1,f=[d.post.photos.length],h=[d.post.photos.length],p=document.createElement("div"),o=document.createElement("img"),l=d.post,i=0,r=l.photos.length;i<r;i++){for(var k=l.photos[i],j=k.alt_sizes,v=
-0,w=j.length;v<w;v++){var n=j[v];if(n.width===a){h[i]=n.url;f[i]=k.caption;c=0;break}else if(n.width===250)c=v}c===-1&&g.error("Clearly your blog has a picture that is so tiny it isn't even 250px wide. Consider using a bigger picture or try a smaller size.");if(v===j.length)h[i]=j[c].url}a=0;for(c=h.length;a<c;a++){p.innerHTML+=f[a]+"<br/>";o.setAttribute("src",h[a]);o.setAttribute("alt","Pic"+a);p.appendChild(o);p.innerHTML+="<br/>"}p.innerHTML+="<br/>"+l.caption;d._container.appendChild(p)},audio:function(d){var a=
-document.createElement("div"),c=document.createElement("a"),f=d.post;if(f.artist){var h=document.createElement("img");a.innerHTML+="Artist: "+f.artist+"<br/>";c.setAttribute("href",f.source_url);h.setAttribute("src",f.album_art);h.setAttribute("alt",f.album);c.appendChild(h);a.appendChild(c);a.innerHTML+="<hr/>"+f.track_number+" - "+f.track_name+"<br/>"}else{h=document.createTextNode(f.source_title);c.setAttribute("href",f.source_url);c.appendChild(h);a.appendChild(c);a.innerHTML+="<br/>"}a.innerHTML+=
-f.player+" "+f.plays+"plays<br/>"+f.caption;d._container.appendChild(a)},video:function(d){for(var a=d.width||400,c=-1,f=d.post,h=document.createElement("div"),p,o=0,l=f.player.length;o<l;o++){var i=f.player[o];if(i.width===a){p=i.embed_code;c=0;break}else if(i.width===400)c=o}if(o===d.post.player.length)p=f.player[c].embed_code;c===-1&&g.error("Specified video size was not found and default was never found. Please try another width.");h.innerHTML+=p+"<br/>"+f.caption;d._container.appendChild(h)},
-chat:function(d){var a=d.post,c,f=document.createElement("div");f.innerHTML+="<strong><u>"+a.title+"</u></strong><br/><br/>";for(var h=0,p=a.dialogue.length;h<p;h++){c=a.dialogue[h];f.innerHTML+=c.label+" "+c.phrase+"<br/>"}d._container.appendChild(f)},quote:function(d){var a=document.createElement("div"),c=document.createElement("a"),f=d.post,h=document.createTextNode(f.text);c.setAttribute("href",f.post_url);c.appendChild(h);a.appendChild(c);a.innerHTML+="<br/><br/>Source: <b>"+f.source+"</b>";
-d._container.appendChild(a)},link:function(d){var a=document.createElement("div"),c=document.createElement("a"),f=d.post,h=document.createTextNode(f.title);c.setAttribute("href",f.post_url);c.appendChild(h);a.appendChild(c);a.innerHTML+="<br/>"+f.description;d._container.appendChild(a)},answer:function(d){var a=document.createElement("div"),c=document.createElement("a"),f=d.post,h=document.createTextNode(f.asking_name);a.innerHTML="Inquirer: ";c.setAttribute("href",f.asking_url);c.appendChild(h);
-a.appendChild(c);a.innerHTML+="<br/><br/>Question: "+f.question+"<br/>Answer: "+f.answer;d._container.appendChild(a)}};g.plugin("tumblr",{manifest:{about:{name:"Popcorn Tumblr Plugin",version:"0.1",author:"Matthew Schranz, @mjschranz",website:"mschranz.wordpress.com"},options:{requestType:{elem:"select",options:["INFO","AVATAR","BLOGPOST"],label:"Type_Of_Plugin"},target:"tumblr-container",start:{elem:"input",type:"number",label:"Start_Time"},end:{elem:"input",type:"number",label:"End_Time"},base_hostname:{elem:"input",
-type:"text",label:"User_Name"},api_key:{elem:"input",type:"text",label:"Application_Key",optional:true},size:{elem:"select",options:[16,24,30,40,48,64,96,128,512],label:"avatarSize",optional:true},blogId:{elem:"input",type:"number",label:"Blog_ID",optional:true},width:{elem:"input",type:"number",label:"Photo_Width",optional:true}}},_setup:function(d){var a=document.getElementById(d.target),c,f,h=this;d.requestType=d.requestType.toLowerCase();(!d.base_hostname||!d.api_key&&(d.requestType==="info"||
-d.requestType==="blogpost"))&&g.error("Must provide a blog URL to the plugin and an api_key for Blog Info and Blog Post requests.");!(["info","avatar","blogpost"].indexOf(d.requestType)>-1)&&g.error("Invalid tumblr plugin type.");d.requestType==="blogpost"&&d.blogId===undefined&&g.error("Error. BlogId required for blogpost requests");!a&&g.plugin.debug&&g.error("Target Tumblr container doesn't exist.");c=d.base_hostname.slice(d.base_hostname.indexOf("/")+2,d.base_hostname.length);f=d.base_hostname.slice(0,
-d.base_hostname.indexOf("/")+2);c=f==="http://"||f==="https://"?c:d.base_hostname;if(c.indexOf("/")>-1)c=c.slice(0,c.indexOf("/"));d.base_hostname=c;d._container=document.createElement("div");d._container.id="tumblrdiv-"+g.guid();if(d.requestType==="avatar")d._container.innerHTML="<img src=http://api.tumblr.com/v2/blog/"+d.base_hostname+"/avatar/"+d.size+" alt='BlogAvatar' />";else{c=d.requestType==="blogpost"?"posts":"info";c="http://api.tumblr.com/v2/blog/"+d.base_hostname+"/"+c+"?api_key="+d.api_key+
-"&id="+d.blogId+"&jsonp=tumblrCallBack";this.listen("tumblrError",function(p){g.error(p)});g.getJSONP(c,function(p){if(p.meta.msg==="OK"){var o=document.createElement("div");if(d.requestType==="blogpost"){d.post=p.response.posts[0];var l=d.post.type;p=d.post.tags;o.innerHTML="Date Published: "+d.post.date.slice(0,d.post.date.indexOf(" "))+"<br/>";if(p.length!==0){o.innerHTML+="Tags: "+p[0];for(var i=1,r=p.length;i<r;i++)o.innerHTML+=", "+p[i]}else o.innerHTML+="Tags: No Tags Used";d._container.appendChild(o);
-b[l](d)}else{l=document.createElement("a");p=p.response.blog;i=document.createTextNode(p.title);l.setAttribute("href",p.url);l.appendChild(i);o.appendChild(l);o.innerHTML+=p.description;d._container.appendChild(o)}}else h.trigger("tumblrError","Error. Request failed. Status code: "+p.meta.status+" - Message: "+p.meta.msg)},false)}d._container.style.display="none";a&&a.appendChild(d._container)},start:function(d,a){if(a._container)a._container.style.display=""},end:function(d,a){if(a._container)a._container.style.display=
-"none"},_teardown:function(d){document.getElementById(d.target)&&document.getElementById(d.target).removeChild(d._container)}})})(Popcorn,this);(function(g){g.plugin("linkedin",{manifest:{about:{name:"Popcorn LinkedIn Plugin",version:"0.1",author:"Dan Ventura",website:"dsventura.blogspot.com"},options:{type:{elem:"input",type:"text",label:"Type"},url:{elem:"input",type:"text",label:"URL"},apikey:{elem:"input",type:"text",label:"API Key"},counter:{elem:"input",type:"text",label:"Counter"},memberid:{elem:"input",type:"text",label:"Member ID",optional:true},format:{elem:"input",type:"text",label:"Format",optional:true},companyid:{elem:"input",
-type:"text",label:"Company ID",optional:true},modules:{elem:"input",type:"text",label:"Modules",optional:true},productid:{elem:"input",type:"text",label:"productid",optional:true},related:{elem:"input",type:"text",label:"related",optional:true},start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"linkedin-container"}},_setup:function(b){var d=b.apikey,a=document.getElementById(b.target),c=document.createElement("script");g.getScript("//platform.linkedin.com/in.js");
-b._container=document.createElement("div");b._container.appendChild(c);if(d)c.innerHTML="api_key: "+d;b.type=b.type&&b.type.toLowerCase()||"";var f=function(h){return{share:function(){c.setAttribute("type","IN/Share");h.counter&&c.setAttribute("data-counter",h.counter);h.url&&c.setAttribute("data-url",h.url)},memberprofile:function(){c.setAttribute("type","IN/MemberProfile");c.setAttribute("data-id",h.memberid);c.setAttribute("data-format",h.format||"inline");h.text&&h.format.toLowerCase()!=="inline"&&
-c.setAttribute("data-text",h.text)},companyinsider:function(){c.setAttribute("type","IN/CompanyInsider");c.setAttribute("data-id",h.companyid);h.modules&&h._container.setAttribute("data-modules",h.modules)},companyprofile:function(){c.setAttribute("type","IN/CompanyProfile");c.setAttribute("data-id",h.companyid);c.setAttribute("data-format",h.format||"inline");h.text&&h.format.toLowerCase()!=="inline"&&c.setAttribute("data-text",h.text);h.related!==undefined&&c.setAttribute("data-related",h.related)},
-recommendproduct:function(){c.setAttribute("type","IN/RecommendProduct");c.setAttribute("data-company",h.companyid||"LinkedIn");c.setAttribute("data-product",h.productid||"201714");h.counter&&c.setAttribute("data-counter",h.counter)}}}(b);if(d)f[b.type]&&f[b.type]();else{b._container=document.createElement("p");b._container.innerHTML="Plugin requires a valid <a href='https://www.linkedin.com/secure/developer'>apikey</a>";if(!a&&g.plugin.debug)throw"target container doesn't exist";a&&a.appendChild(b._container)}if(!a&&
-g.plugin.debug)throw Error("target container doesn't exist");a&&a.appendChild(b._container);b._container.style.display="none"},start:function(b,d){d._container.style.display="block"},end:function(b,d){d._container.style.display="none"},_teardown:function(b){var d=document.getElementById(b.target);d&&d.removeChild(b._container)}})})(Popcorn);(function(g){g.plugin("mustache",function(b){var d,a,c,f;g.getScript("http://mustache.github.com/extras/mustache.js");var h=!!b.dynamic,p=typeof b.template,o=typeof b.data,l=document.getElementById(b.target);if(!l&&g.plugin.debug)throw Error("target container doesn't exist");b.container=l||document.createElement("div");if(p==="function")if(h)c=b.template;else f=b.template(b);else if(p==="string")f=b.template;else if(g.plugin.debug)throw Error("Mustache Plugin Error: options.template must be a String or a Function.");
-else f="";if(o==="function")if(h)d=b.data;else a=b.data(b);else if(o==="string")a=JSON.parse(b.data);else if(o==="object")a=b.data;else if(g.plugin.debug)throw Error("Mustache Plugin Error: options.data must be a String, Object, or Function.");else a="";return{start:function(i,r){var k=function(){if(window.Mustache){if(d)a=d(r);if(c)f=c(r);var j=Mustache.to_html(f,a).replace(/^\s*/mg,"");r.container.innerHTML=j}else setTimeout(function(){k()},10)};k()},end:function(i,r){r.container.innerHTML=""},
-_teardown:function(){d=a=c=f=null}}},{about:{name:"Popcorn Mustache Plugin",version:"0.1",author:"David Humphrey (@humphd)",website:"http://vocamus.net/dave"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"mustache-container",template:{elem:"input",type:"text",label:"Template"},data:{elem:"input",type:"text",label:"Data"},dynamic:{elem:"input",type:"text",label:"Dynamic",optional:true}}})})(Popcorn);(function(g){function b(a,c){if(a.map)a.map.div.style.display=c;else setTimeout(function(){b(a,c)},10)}var d=1;g.plugin("openmap",function(a){var c,f,h,p,o,l,i,r,k=document.getElementById(a.target);c=document.createElement("div");c.id="openmapdiv"+d;c.style.width="100%";c.style.height="100%";d++;if(!k&&g.plugin.debug)throw Error("target container doesn't exist");k&&k.appendChild(c);r=function(){if(window.OpenLayers){if(a.location){location=new OpenLayers.LonLat(0,0);g.getJSONP("//tinygeocoder.com/create-api.php?q="+
-a.location+"&callback=jsonp",function(v){f=new OpenLayers.LonLat(v[1],v[0]);a.map.setCenter(f)})}else f=new OpenLayers.LonLat(a.lng,a.lat);a.type=a.type||"ROADMAP";if(a.type==="SATELLITE"){a.map=new OpenLayers.Map({div:c,maxResolution:0.28125,tileSize:new OpenLayers.Size(512,512)});var j=new OpenLayers.Layer.WorldWind("LANDSAT","//worldwind25.arc.nasa.gov/tile/tile.aspx",2.25,4,{T:"105"});a.map.addLayer(j);p=new OpenLayers.Projection("EPSG:4326");h=new OpenLayers.Projection("EPSG:4326")}else if(a.type===
-"TERRAIN"){p=new OpenLayers.Projection("EPSG:4326");h=new OpenLayers.Projection("EPSG:4326");a.map=new OpenLayers.Map({div:c,projection:h});j=new OpenLayers.Layer.WMS("USGS Terraserver","//terraserver-usa.org/ogcmap.ashx?",{layers:"DRG"});a.map.addLayer(j)}else{h=new OpenLayers.Projection("EPSG:900913");p=new OpenLayers.Projection("EPSG:4326");f=f.transform(p,h);a.map=new OpenLayers.Map({div:c,projection:h,displayProjection:p});j=new OpenLayers.Layer.OSM;a.map.addLayer(j)}if(a.map)a.map.div.style.display=
-"none"}else setTimeout(function(){r()},50)};r();return{_setup:function(j){window.OpenLayers||g.getScript("//openlayers.org/api/OpenLayers.js");var v=function(){if(j.map){j.zoom=j.zoom||2;if(j.zoom&&typeof j.zoom!=="number")j.zoom=+j.zoom;j.map.setCenter(f,j.zoom);if(j.markers){var w=OpenLayers.Util.extend({},OpenLayers.Feature.Vector.style["default"]),n=function(u){clickedFeature=u.feature;if(clickedFeature.attributes.text){i=new OpenLayers.Popup.FramedCloud("featurePopup",clickedFeature.geometry.getBounds().getCenterLonLat(),
-new OpenLayers.Size(120,250),clickedFeature.attributes.text,null,true,function(){l.unselect(this.feature)});clickedFeature.popup=i;i.feature=clickedFeature;j.map.addPopup(i)}},y=function(u){feature=u.feature;if(feature.popup){i.feature=null;j.map.removePopup(feature.popup);feature.popup.destroy();feature.popup=null}},C=function(u){g.getJSONP("//tinygeocoder.com/create-api.php?q="+u.location+"&callback=jsonp",function(x){x=(new OpenLayers.Geometry.Point(x[1],x[0])).transform(p,h);var A=OpenLayers.Util.extend({},
-w);if(!u.size||isNaN(u.size))u.size=14;A.pointRadius=u.size;A.graphicOpacity=1;A.externalGraphic=u.icon;x=new OpenLayers.Feature.Vector(x,null,A);if(u.text)x.attributes={text:u.text};o.addFeatures([x])})};o=new OpenLayers.Layer.Vector("Point Layer",{style:w});j.map.addLayer(o);for(var e=0,m=j.markers.length;e<m;e++){var q=j.markers[e];if(q.text)if(!l){l=new OpenLayers.Control.SelectFeature(o);j.map.addControl(l);l.activate();o.events.on({featureselected:n,featureunselected:y})}if(q.location)C(q);
-else{var s=(new OpenLayers.Geometry.Point(q.lng,q.lat)).transform(p,h),t=OpenLayers.Util.extend({},w);if(!q.size||isNaN(q.size))q.size=14;t.pointRadius=q.size;t.graphicOpacity=1;t.externalGraphic=q.icon;s=new OpenLayers.Feature.Vector(s,null,t);if(q.text)s.attributes={text:q.text};o.addFeatures([s])}}}}else setTimeout(function(){v()},13)};v()},start:function(j,v){b(v,"block")},end:function(j,v){b(v,"none")},_teardown:function(){k&&k.removeChild(c);c=map=f=h=p=o=l=i=null}}},{about:{name:"Popcorn OpenMap Plugin",
-version:"0.3",author:"@mapmeld",website:"mapadelsur.blogspot.com"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"map-container",type:{elem:"select",options:["ROADMAP","SATELLITE","TERRAIN"],label:"Type",optional:true},zoom:{elem:"input",type:"text",label:"Zoom",optional:true},lat:{elem:"input",type:"text",label:"Lat",optional:true},lng:{elem:"input",type:"text",label:"Lng",optional:true},location:{elem:"input",type:"text",label:"Location"},
-markers:{elem:"input",type:"text",label:"List Markers",optional:true}}})})(Popcorn);document.addEventListener("click",function(g){g=g.target;if(g.nodeName==="A"||g.parentNode&&g.parentNode.nodeName==="A")Popcorn.instances.forEach(function(b){b.options.pauseOnLinkClicked&&b.pause()})},false);(function(g){var b={},d=0,a=document.createElement("span"),c=["webkit","Moz","ms","O",""],f=["Transform","TransitionDuration","TransitionTimingFunction"],h={},p;document.getElementsByTagName("head")[0].appendChild(a);for(var o=0,l=f.length;o<l;o++)for(var i=0,r=c.length;i<r;i++){p=c[i]+f[o];if(p in a.style){h[f[o].toLowerCase()]=p;break}}document.getElementsByTagName("head")[0].appendChild(a);g.plugin("wordriver",{manifest:{about:{name:"Popcorn WordRiver Plugin"},options:{start:{elem:"input",type:"text",
-label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"wordriver-container",text:{elem:"input",type:"text",label:"Text"},color:{elem:"input",type:"text",label:"Color",optional:true}}},_setup:function(k){if(!document.getElementById(k.target)&&g.plugin.debug)throw Error("target container doesn't exist");k._duration=k.end-k.start;var j;if(!(j=b[k.target])){j=k.target;b[j]=document.createElement("div");var v=document.getElementById(j);v&&v.appendChild(b[j]);b[j].style.height="100%";b[j].style.position=
-"relative";j=b[j]}k._container=j;k.word=document.createElement("span");k.word.style.position="absolute";k.word.style.whiteSpace="nowrap";k.word.style.opacity=0;k.word.style.MozTransitionProperty="opacity, -moz-transform";k.word.style.webkitTransitionProperty="opacity, -webkit-transform";k.word.style.OTransitionProperty="opacity, -o-transform";k.word.style.transitionProperty="opacity, transform";k.word.style[h.transitionduration]="1s, "+k._duration+"s";k.word.style[h.transitiontimingfunction]="linear";
-k.word.innerHTML=k.text;k.word.style.color=k.color||"black"},start:function(k,j){j._container.appendChild(j.word);j.word.style[h.transform]="";j.word.style.fontSize=~~(30+20*Math.random())+"px";d%=j._container.offsetWidth-j.word.offsetWidth;j.word.style.left=d+"px";d+=j.word.offsetWidth+10;j.word.style[h.transform]="translateY("+(j._container.offsetHeight-j.word.offsetHeight)+"px)";j.word.style.opacity=1;setTimeout(function(){j.word.style.opacity=0},(j.end-j.start-1||1)*1E3)},end:function(k,j){j.word.style.opacity=
-0},_teardown:function(k){var j=document.getElementById(k.target);k.word.parentNode&&k._container.removeChild(k.word);b[k.target]&&!b[k.target].childElementCount&&j&&j.removeChild(b[k.target])&&delete b[k.target]}})})(Popcorn);(function(g){g.plugin("processing",function(b){var d=function(a){function c(f){var h=function(){a.listen("pause",function(){f.canvas.style.display==="inline"&&f.pjsInstance.noLoop()});a.listen("play",function(){f.canvas.style.display==="inline"&&f.pjsInstance.loop()})};if(f.sketch)g.xhr({url:f.sketch,dataType:"text",success:function(p){f.codeReady=false;p=Processing.compile(p);f.pjsInstance=new Processing(f.canvas,p);f.seeking=false;f._running&&!a.media.paused&&f.pjsInstance.loop()||f.pjsInstance.noLoop();
-a.listen("seeking",function(){f._running&&f.canvas.style.display==="inline"&&f.noPause&&f.pjsInstance.loop()});f.noPause=f.noPause||false;!f.noPause&&h();f.codeReady=true}});else if(g.plugin.debug)throw Error("Popcorn.Processing: options.sketch is undefined");}window.Processing?c(b):g.getScript("//cloud.github.com/downloads/processing-js/processing-js/processing-1.3.6.min.js",function(){c(b)})};return{_setup:function(a){a.codeReady=false;a.parentTarget=document.getElementById(a.target);if(!a.parentTarget&&
-g.plugin.debug)throw Error("target container doesn't exist");var c=document.createElement("canvas");c.id=g.guid(a.target+"-sketch");c.style.display="none";a.canvas=c;a.parentTarget&&a.parentTarget.appendChild(a.canvas);d(this)},start:function(a,c){c.codeReady&&!this.media.paused&&c.pjsInstance.loop();c.canvas.style.display="inline"},end:function(a,c){c.pjsInstance&&c.pjsInstance.noLoop();c.canvas.style.display="none"},_teardown:function(a){a.pjsInstance&&a.pjsInstance.exit();a.parentTarget&&a.parentTarget.removeChild(a.canvas)}}},
-{about:{name:"Popcorn Processing Plugin",version:"0.1",author:"Christopher De Cairos, Benjamin Chalovich",website:"cadecairos.blogspot.com, ben1amin.wordpress.org"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:{elem:"input",type:"text",label:"Target"},sketch:{elem:"input",type:"url",label:"Sketch"},noPause:{elem:"select",options:["TRUE","FALSE"],label:"No Loop",optional:true}}})})(Popcorn);(function(g){var b=1;g.plugin("timeline",function(d){var a=document.getElementById(d.target),c=document.createElement("div"),f,h=true;if(a&&!a.firstChild){a.appendChild(f=document.createElement("div"));f.style.width="inherit";f.style.height="inherit";f.style.overflow="auto"}else f=a.firstChild;c.style.display="none";c.id="timelineDiv"+b;d.direction=d.direction||"up";if(d.direction.toLowerCase()==="down")h=false;if(a&&f)h?f.insertBefore(c,f.firstChild):f.appendChild(c);else if(g.plugin.debug)throw Error("target container doesn't exist");
-b++;c.innerHTML="<p><span id='big' style='font-size:24px; line-height: 130%;' >"+d.title+"</span><br /><span id='mid' style='font-size: 16px;'>"+d.text+"</span><br />"+d.innerHTML;return{start:function(p,o){c.style.display="block";if(o.direction==="down")f.scrollTop=f.scrollHeight},end:function(){c.style.display="none"},_teardown:function(){f&&c&&f.removeChild(c)&&!f.firstChild&&a.removeChild(f)}}},{about:{name:"Popcorn Timeline Plugin",version:"0.1",author:"David Seifried @dcseifried",website:"dseifried.wordpress.com"},
-options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"feed-container",title:{elem:"input",type:"text",label:"title"},text:{elem:"input",type:"text",label:"text"},innerHTML:{elem:"input",type:"text",label:"innerHTML",optional:true},direction:{elem:"input",type:"text",label:"direction",optional:true}}})})(Popcorn);(function(g,b){var d={};g.plugin("documentcloud",{manifest:{about:{name:"Popcorn Document Cloud Plugin",version:"0.1",author:"@humphd, @ChrisDeCairos",website:"http://vocamus.net/dave"},options:{start:{elem:"input",type:"text",label:"In"},end:{elem:"input",type:"text",label:"Out"},target:"documentcloud-container",width:{elem:"input",type:"text",label:"Width",optional:true},height:{elem:"input",type:"text",label:"Height",optional:true},src:{elem:"input",type:"text",label:"PDF URL"},preload:{elem:"input",
-type:"boolean",label:"Preload",optional:true},page:{elem:"input",type:"number",label:"Page Number",optional:true},aid:{elem:"input",type:"number",label:"Annotation Id",optional:true}}},_setup:function(a){function c(){function i(u){a._key=u.api.getId();a._changeView=function(x){a.aid?x.pageSet.showAnnotation(x.api.getAnnotation(a.aid)):x.api.setCurrentPage(a.page)}}function r(){d[a._key]={num:1,id:a._containerId};h.loaded=true}h.loaded=false;var k=a.url.replace(/\.html$/,".js"),j=a.target,v=b.getElementById(j),
-w=b.createElement("div"),n=g.position(v),y=a.width||n.width;n=a.height||n.height;var C=a.sidebar||true,e=a.text||true,m=a.pdf||true,q=a.showAnnotations||true,s=a.zoom||700,t=a.search||true;if(!function(u){var x=false;g.forEach(h.viewers,function(A){if(A.api.getSchema().canonicalURL===u){i(A);A=d[a._key];a._containerId=A.id;A.num+=1;x=true;h.loaded=true}});return x}(a.url)){w.id=a._containerId=g.guid(j);j="#"+w.id;v.appendChild(w);p.trigger("documentready");h.load(k,{width:y,height:n,sidebar:C,text:e,
-pdf:m,showAnnotations:q,zoom:s,search:t,container:j,afterLoad:a.page||a.aid?function(u){i(u);a._changeView(u);w.style.visibility="hidden";u.elements.pages.hide();r()}:function(u){i(u);r();w.style.visibility="hidden";u.elements.pages.hide()}})}}function f(){window.DV.loaded?c():setTimeout(f,25)}var h=window.DV=window.DV||{},p=this;if(h.loading)f();else{h.loading=true;h.recordHit="//www.documentcloud.org/pixel.gif";var o=b.createElement("link"),l=b.getElementsByTagName("head")[0];o.rel="stylesheet";
-o.type="text/css";o.media="screen";o.href="//s3.documentcloud.org/viewer/viewer-datauri.css";l.appendChild(o);h.loaded=false;g.getScript("http://s3.documentcloud.org/viewer/viewer.js",function(){h.loading=false;c()})}},start:function(a,c){var f=b.getElementById(c._containerId),h=DV.viewers[c._key];(c.page||c.aid)&&h&&c._changeView(h);if(f&&h){f.style.visibility="visible";h.elements.pages.show()}},end:function(a,c){var f=b.getElementById(c._containerId);if(f&&DV.viewers[c._key]){f.style.visibility=
-"hidden";DV.viewers[c._key].elements.pages.hide()}},_teardown:function(a){var c=b.getElementById(a._containerId);if((a=a._key)&&DV.viewers[a]&&--d[a].num===0){for(DV.viewers[a].api.unload();c.hasChildNodes();)c.removeChild(c.lastChild);c.parentNode.removeChild(c)}}})})(Popcorn,window.document);(function(g){g.parser("parseJSON","JSON",function(b){var d={title:"",remote:"",data:[]};g.forEach(b.data,function(a){d.data.push(a)});return d})})(Popcorn);(function(g){g.parser("parseSBV",function(b){var d={title:"",remote:"",data:[]},a=[],c=0,f=0,h=function(k){k=k.split(":");var j=k.length-1,v;try{v=parseInt(k[j-1],10)*60+parseFloat(k[j],10);if(j===2)v+=parseInt(k[0],10)*3600}catch(w){throw"Bad cue";}return v},p=function(k,j){var v={};v[k]=j;return v};b=b.text.split(/(?:\r\n|\r|\n)/gm);for(f=b.length;c<f;){var o={},l=[],i=b[c++].split(",");try{o.start=h(i[0]);for(o.end=h(i[1]);c<f&&b[c];)l.push(b[c++]);o.text=l.join("<br />");a.push(p("subtitle",o))}catch(r){for(;c<
-f&&b[c];)c++}for(;c<f&&!b[c];)c++}d.data=a;return d})})(Popcorn);(function(g){g.parser("parseSRT",function(b){var d={title:"",remote:"",data:[]},a=[],c=0,f=0,h=0,p,o,l,i=function(k){k=k.split(":");try{var j=k[2].split(",");if(j.length===1)j=k[2].split(".");return parseFloat(k[0],10)*3600+parseFloat(k[1],10)*60+parseFloat(j[0],10)+parseFloat(j[1],10)/1E3}catch(v){return 0}},r=function(k,j){var v={};v[k]=j;return v};b=b.text.split(/(?:\r\n|\r|\n)/gm);f=b.length;for(c=0;c<f;c++){l={};o=[];l.id=parseInt(b[c++],10);p=b[c++].split(/[\t ]*--\>[\t ]*/);l.start=i(p[0]);
-h=p[1].indexOf(" ");if(h!==-1)p[1]=p[1].substr(0,h);for(l.end=i(p[1]);c<f&&b[c];)o.push(b[c++]);l.text=o.join("\\N").replace(/\{(\\[\w]+\(?([\w\d]+,?)+\)?)+\}/gi,"");l.text=l.text.replace(/</g,"<").replace(/>/g,">");l.text=l.text.replace(/<(\/?(font|b|u|i|s))((\s+(\w|\w[\w\-]*\w)(\s*=\s*(?:\".*?\"|'.*?'|[^'\">\s]+))?)+\s*|\s*)(\/?)>/gi,"<$1$3$7>");l.text=l.text.replace(/\\N/gi,"<br />");a.push(r("subtitle",l))}d.data=a;return d})})(Popcorn);(function(g){function b(c,f){var h=c.substr(10).split(","),p;p={start:d(h[f.start]),end:d(h[f.end])};if(p.start===-1||p.end===-1)throw"Invalid time";var o=k.call(i,/\{(\\[\w]+\(?([\w\d]+,?)+\)?)+\}/gi,""),l=o.replace,i;i=h.length;k=[];for(var r=f.text;r<i;r++)k.push(h[r]);i=k.join(",");var k=i.replace;p.text=l.call(o,/\\N/gi,"<br />");return p}function d(c){var f=c.split(":");if(c.length!==10||f.length<3)return-1;return parseInt(f[0],10)*3600+parseInt(f[1],10)*60+parseFloat(f[2],10)}function a(c,
-f){var h={};h[c]=f;return h}g.parser("parseSSA",function(c){var f={title:"",remote:"",data:[]},h=[],p=0,o;c=c.text.split(/(?:\r\n|\r|\n)/gm);for(o=c.length;p<o&&c[p]!=="[Events]";)p++;var l=c[++p].substr(8).split(", "),i={},r,k;k=0;for(r=l.length;k<r;k++)if(l[k]==="Start")i.start=k;else if(l[k]==="End")i.end=k;else if(l[k]==="Text")i.text=k;for(;++p<o&&c[p]&&c[p][0]!=="[";)try{h.push(a("subtitle",b(c[p],i)))}catch(j){}f.data=h;return f})})(Popcorn);(function(g){g.parser("parseTTML",function(b){var d={title:"",remote:"",data:[]},a,c=0,f,h=function(l,i){if(!l)return-1;var r=l.split(":"),k=r.length-1;if(k>=2)return parseInt(r[0],10)*3600+parseInt(r[k-1],10)*60+parseFloat(r[k],10);for(r=l.length-1;r>=0;r--)if(l[r]<="9"&&l[r]>="0")break;r++;k=l.substr(r);i=i||0;if(k==="h")k=3600;else if(k==="m")k=60;else if(k==="s")k=1;else if(k==="ms")k=0.0010;else return-1;return parseFloat(l.substr(0,r))*k+i},p=function(l,i){var r={};r[l]=i;return r},o=function(l,
-i){for(var r=l.firstChild,k;r;){if(r.nodeType===1)if(r.nodeName==="p"){k=r;var j=i,v={};v.text=k.textContent.replace(/^[\s]+|[\s]+$/gm,"").replace(/(?:\r\n|\r|\n)/gm,"<br />");v.id=k.getAttribute("xml:id")||k.getAttribute("id");v.start=h(k.getAttribute("begin"),j);v.end=h(k.getAttribute("end"),j);v.target=f;if(v.end<0){v.end=h(k.getAttribute("duration"),0);if(v.end>=0)v.end+=v.start;else v.end=Number.MAX_VALUE}k=v;d.data.push(p("subtitle",k));c++}else if(r.nodeName==="div"){k=h(r.getAttribute("begin"));
-if(k<0)k=i;o(r,k)}r=r.nextSibling}};if(!b.xml||!b.xml.documentElement||!(a=b.xml.documentElement.firstChild))return d;for(;a.nodeName!=="body";)a=a.nextSibling;f="";o(a,0);return d})})(Popcorn);(function(g){g.parser("parseTTXT",function(b){var d={title:"",remote:"",data:[]},a=function(o){o=o.split(":");var l=0;try{return parseFloat(o[0],10)*60*60+parseFloat(o[1],10)*60+parseFloat(o[2],10)}catch(i){l=0}return l},c=function(o,l){var i={};i[o]=l;return i};b=b.xml.lastChild.lastChild;for(var f=Number.MAX_VALUE,h=[];b;){if(b.nodeType===1&&b.nodeName==="TextSample"){var p={};p.start=a(b.getAttribute("sampleTime"));p.text=b.getAttribute("text");if(p.text){p.end=f-0.0010;h.push(c("subtitle",p))}f=
-p.start}b=b.previousSibling}d.data=h.reverse();return d})})(Popcorn);(function(g){function b(a){var c=a.split(":");a=a.length;var f;if(a!==12&&a!==9)throw"Bad cue";a=c.length-1;try{f=parseInt(c[a-1],10)*60+parseFloat(c[a],10);if(a===2)f+=parseInt(c[0],10)*3600}catch(h){throw"Bad cue";}return f}function d(a,c){var f={};f[a]=c;return f}g.parser("parseVTT",function(a){var c={title:"",remote:"",data:[]},f=[],h=0,p=0,o,l;a=a.text.split(/(?:\r\n|\r|\n)/gm);p=a.length;if(p===0||a[0]!=="WEBVTT")return c;for(h++;h<p;){o=[];try{for(var i=h;i<p&&!a[i];)i++;h=i;var r=a[h++];i=
-void 0;var k={};if(!r||r.indexOf("--\>")===-1)throw"Bad cue";i=r.replace(/--\>/," --\> ").split(/[\t ]+/);if(i.length<2)throw"Bad cue";k.id=r;k.start=b(i[0]);k.end=b(i[2]);for(l=k;h<p&&a[h];)o.push(a[h++]);l.text=o.join("<br />");f.push(d("subtitle",l))}catch(j){for(h=h;h<p&&a[h];)h++;h=h}}c.data=f;return c})})(Popcorn);(function(g){g.parser("parseXML","XML",function(b){var d={title:"",remote:"",data:[]},a={},c=function(i){i=i.split(":");if(i.length===1)return parseFloat(i[0],10);else if(i.length===2)return parseFloat(i[0],10)+parseFloat(i[1]/12,10);else if(i.length===3)return parseInt(i[0]*60,10)+parseFloat(i[1],10)+parseFloat(i[2]/12,10);else if(i.length===4)return parseInt(i[0]*3600,10)+parseInt(i[1]*60,10)+parseFloat(i[2],10)+parseFloat(i[3]/12,10)},f=function(i){for(var r={},k=0,j=i.length;k<j;k++){var v=i.item(k).nodeName,
-w=i.item(k).nodeValue;if(v==="in")r.start=c(w);else if(v==="out")r.end=c(w);else if(v==="resourceid")g.extend(r,a[w]);else r[v]=w}return r},h=function(i,r){var k={};k[i]=r;return k},p=function(i,r,k){var j={};g.extend(j,r,f(i.attributes),{text:i.textContent});r=i.childNodes;if(r.length<1||r.length===1&&r[0].nodeType===3)if(k)a[j.id]=j;else d.data.push(h(i.nodeName,j));else for(i=0;i<r.length;i++)r[i].nodeType===1&&p(r[i],j,k)};b=b.documentElement.childNodes;for(var o=0,l=b.length;o<l;o++)if(b[o].nodeType===
-1)b[o].nodeName==="manifest"?p(b[o],{},true):p(b[o],{},false);return d})})(Popcorn);(function(g,b){function d(l,i){if(l.currentStyle)return l.currentStyle[i];else if(b.getComputedStyle)return document.defaultView.getComputedStyle(l,null).getPropertyValue(i)}function a(l){return'<div><a href="'+l.user.profile+'"><img width="16px height="16px" src="'+l.user.avatar+'"></img>'+l.user.name+"</a> at "+function(i){var r=h(i/60);i=p(i%60);return r+"."+(i<10?"0":"")+i}(l.start)+" "+function(i){function r(k,j){return k+" "+j+(k>1?"s":"")+" ago"}i=((new Date).getTime()-i.getTime())/1E3;if(i<
-60)return r(p(i),"second");i/=60;if(i<60)return r(p(i),"minute");i/=60;if(i<24)return r(p(i),"hour");i/=24;if(i<30)return r(p(i),"day");if(i<365)return r(p(i/30),"month");return r(p(i/365),"year")}(l.date)+"<br />"+l.text+"</span>"}function c(l){if(b.swfobject&&b.soundcloud){var i={enable_api:true,object_id:l._playerId,url:l.src,show_comments:!l._options.api.key&&!l._options.api.commentdiv},r={id:l._playerId,name:l._playerId},k=document.createElement("div");k.setAttribute("id",l._playerId);l._container.appendChild(k);
-swfobject.embedSWF("http://player.soundcloud.com/player.swf",l._playerId,l.offsetWidth,l.height,"9.0.0","expressInstall.swf",i,{allowscriptaccess:"always",wmode:"transparent"},r)}else setTimeout(function(){c(l)},15)}var f=Math.abs,h=Math.floor,p=Math.round,o={};g.soundcloud=function(l,i,r){g.getScript("http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js");g.getScript("http://popcornjs.org/code/players/soundcloud/lib/soundcloud.player.api.js",function(){var k=1;soundcloud.addEventListener("onPlayerReady",
-function(j,v){var w=o[j.api_getFlashId()];w.swfObj=j;w.duration=j.api_getTrackDuration();w.currentTime=j.api_getTrackPosition();w.volume=w.previousVolume=j.api_getVolume()/100;w._mediaId=v.mediaId;w.dispatchEvent("load");w.dispatchEvent("canplay");w.dispatchEvent("durationchange");w.timeupdate()});soundcloud.addEventListener("onMediaStart",function(j){j=o[j.api_getFlashId()];j.played=1;j.dispatchEvent("playing")});soundcloud.addEventListener("onMediaPlay",function(j){if(k)k=0;else o[j.api_getFlashId()].dispatchEvent("play")});
-soundcloud.addEventListener("onMediaPause",function(j){o[j.api_getFlashId()].dispatchEvent("pause")});soundcloud.addEventListener("onMediaBuffering",function(j){j=o[j.api_getFlashId()];j.dispatchEvent("progress");if(j.readyState===0){j.readyState=3;j.dispatchEvent("readystatechange")}});soundcloud.addEventListener("onMediaDoneBuffering",function(j){o[j.api_getFlashId()].dispatchEvent("canplaythrough")});soundcloud.addEventListener("onMediaEnd",function(j){j=o[j.api_getFlashId()];j.paused=1;j.dispatchEvent("ended")});
-soundcloud.addEventListener("onMediaSeek",function(j){var v=o[j.api_getFlashId()];v.setCurrentTime(j.api_getTrackPosition());v.paused&&v.dispatchEvent("timeupdate")});soundcloud.addEventListener("onPlayerError",function(j){o[j.api_getFlashId()].dispatchEvent("error")})});return new g.soundcloud.init(l,i,r)};g.soundcloud.init=function(){function l(i){var r=i._options,k=i._container,j=k.getBoundingClientRect();i.width=r.width||d(k,"width")||"100%";i.height=r.height||d(k,"height")||"81px";i.src=r.src;
-i.autoplay=r.autoplay;if(parseFloat(i.height,10)!==81)i.height="81px";i.offsetLeft=j.left;i.offsetTop=j.top;i.offsetHeight=parseFloat(i.height,10);i.offsetWidth=parseFloat(i.width,10);if(/[\d]+%/.test(i.width)){r=d(k,"width");i._container.style.width=i.width;i.offsetWidth=i._container.offsetWidth;i._container.style.width=r}if(/[\d]+%/.test(i.height)){r=d(k,"height");i._container.style.height=i.height;i.offsetHeight=i._container.offsetHeight;i._container.style.height=r}}return function(i,r,k){if(i)if(r){if(/file/.test(location.protocol))throw"Must run from a web server!";
-}else throw"Must supply a source!";else throw"Must supply an id!";if(!(this._container=document.getElementById(i)))throw"Could not find that container in the DOM!";k=k||{};k.api=k.api||{};k.target=i;k.src=r;k.api.commentformat=k.api.commentformat||a;this._mediaId=0;this._listeners={};this._playerId=g.guid(k.target);this._containerId=k.target;this._options=k;this._comments=[];this._popcorn=null;l(this);this.duration=0;this.volume=1;this.ended=this.currentTime=0;this.paused=1;this.readyState=0;this.playbackRate=
-1;this.left=this.top=0;this.autoplay=null;this.played=0;this.addEventListener("load",function(){var j=this.getBoundingClientRect();this.top=j.top;this.left=j.left;this.offsetWidth=this.swfObj.offsetWidth;this.offsetHeight=this.swfObj.offsetHeight;this.offsetLeft=this.swfObj.offsetLeft;this.offsetTop=this.swfObj.offsetTop});o[this._playerId]=this;c(this)}}();g.soundcloud.init.prototype=g.soundcloud.prototype;g.extend(g.soundcloud.prototype,{setVolume:function(l){if(!(!l&&l!==0)){if(l<0)l=-l;if(l>1)l%=
-1;this.volume=this.previousVolume=l;this.swfObj.api_setVolume(l*100);this.dispatchEvent("volumechange")}},setCurrentTime:function(l){if(!(!l&&l!==0)){this.currentTime=this.previousCurrentTime=l;this.ended=l>=this.duration;this.dispatchEvent("seeked")}},play:function(){if(this.swfObj){if(this.paused){this.paused=0;this.swfObj.api_play()}}else this.addEventListener("load",this.play)},pause:function(){if(this.swfObj){if(!this.paused){this.paused=1;this.swfObj.api_pause()}}else this.addEventListener("load",
-this.pause)},mute:function(){if(this.swfObj)if(this.muted())if(this.paused)this.setVolume(this.oldVol);else this.volume=this.oldVol;else{this.oldVol=this.volume;if(this.paused)this.setVolume(0);else this.volume=0}else this.addEventListener("load",this.mute)},muted:function(){return this.volume===0},load:function(){if(this.swfObj){this.play();this.pause()}else this.addEventListener("load",this.load)},addEventListener:function(l,i){this._listeners[l]||(this._listeners[l]=[]);this._listeners[l].push(i);
-return i},dispatchEvent:function(l){var i=this;l=l.type||l;l==="play"&&this.paused||l==="pause"&&!this.paused?this[l]():g.forEach(this._listeners[l],function(r){r.call(i)})},timeupdate:function(){var l=this,i=this.swfObj.api_getVolume()/100;if(f(this.currentTime-this.previousCurrentTime)>0.25)this.swfObj.api_seekTo(this.currentTime);else this.previousCurrentTime=this.currentTime=this.swfObj.api_getTrackPosition();if(i!==this.previousVolume)this.setVolume(i);else this.volume!==this.previousVolume&&
-this.setVolume(this.volume);this.paused||this.dispatchEvent("timeupdate");l.ended||setTimeout(function(){l.timeupdate.call(l)},33)},getBoundingClientRect:function(){var l;if(this.swfObj){l=this.swfObj.getBoundingClientRect();return{bottom:l.bottom,left:l.left,right:l.right,top:l.top,width:l.width||l.right-l.left,height:l.height||l.bottom-l.top}}else{tmp=this._container.getBoundingClientRect();return{left:tmp.left,top:tmp.top,width:this.offsetWidth,height:this.offsetHeight,bottom:tmp.top+this.width,
-right:tmp.top+this.height}}},registerPopcornWithPlayer:function(l){if(this.swfObj){this._popcorn=l;var i=this._options.api;if(i.key&&i.commentdiv){var r=this;g.xhr({url:"http://api.soundcloud.com/tracks/"+r._mediaId+"/comments.js?consumer_key="+i.key,success:function(k){g.forEach(k.json,function(j){r.addComment({start:j.timestamp/1E3,date:new Date(j.created_at),text:j.body,user:{name:j.user.username,profile:j.user.permalink_url,avatar:j.user.avatar_url}})})}})}}else this.addEventListener("load",function(){this.registerPopcornWithPlayer(l)})}});
-g.extend(g.soundcloud.prototype,{addComment:function(l,i){var r=this,k={start:l.start||0,date:l.date||new Date,text:l.text||"",user:{name:l.user.name||"",profile:l.user.profile||"",avatar:l.user.avatar||""},display:function(){return(i||r._options.api.commentformat)(k)}};this._comments.push(k);this._popcorn&&this._popcorn.subtitle({start:k.start,target:this._options.api.commentdiv,display:"inline",language:"en",text:k.display()})}})})(Popcorn,window);(function(){vimeo_player_loaded=function(g){vimeo_player_loaded[g]&&vimeo_player_loaded[g]()};vimeo_player_loaded.seek={};vimeo_player_loaded.loadProgress={};vimeo_player_loaded.play={};vimeo_player_loaded.pause={};Popcorn.player("vimeo",{_canPlayType:function(g,b){return/(?:http:\/\/www\.|http:\/\/|www\.|\.|^)(vimeo)/.test(b)&&g.toLowerCase()!=="video"},_setup:function(g){var b=this,d,a=document.createElement("div"),c=0,f=false,h=0,p,o;a.id=b.id+Popcorn.guid();b.appendChild(a);o=b.style.width?""+
-b.offsetWidth:"560";p=b.style.height?""+b.offsetHeight:"315";var l=function(){var i;i=b.src;var r=0,k=false;vimeo_player_loaded[a.id]=function(){d=document.getElementById(a.id);vimeo_player_loaded.seek[a.id]=function(w){if(w!==c){c=w;b.dispatchEvent("seeked");b.dispatchEvent("timeupdate")}};vimeo_player_loaded.play[a.id]=function(){if(b.paused){b.paused=false;b.dispatchEvent("play");b.dispatchEvent("playing");j()}};vimeo_player_loaded.pause[a.id]=function(){if(!b.paused){b.paused=true;b.dispatchEvent("pause")}};
-vimeo_player_loaded.loadProgress[a.id]=function(w){if(!k){k=true;b.dispatchEvent("loadstart")}w.percent===100&&b.dispatchEvent("canplaythrough")};d.api_addEventListener("seek","vimeo_player_loaded.seek."+a.id);d.api_addEventListener("loadProgress","vimeo_player_loaded.loadProgress."+a.id);d.api_addEventListener("play","vimeo_player_loaded.play."+a.id);d.api_addEventListener("pause","vimeo_player_loaded.pause."+a.id);var j=function(){if(!b.paused){c=d.api_getCurrentTime();b.dispatchEvent("timeupdate");
-setTimeout(j,10)}},v=function(){var w=d.api_getVolume()===0,n=d.api_getVolume();if(f!==w){f=w;b.dispatchEvent("volumechange")}if(h!==n){h=n;b.dispatchEvent("volumechange")}setTimeout(v,250)};b.play=function(){b.paused=false;b.dispatchEvent("play");b.dispatchEvent("playing");j();d.api_play()};b.pause=function(){if(!b.paused){b.paused=true;b.dispatchEvent("pause");d.api_pause()}};Popcorn.player.defineProperty(b,"currentTime",{set:function(w){if(!w)return c;c=+w;b.dispatchEvent("seeked");b.dispatchEvent("timeupdate");
-d.api_seekTo(c);return c},get:function(){return c}});Popcorn.player.defineProperty(b,"muted",{set:function(w){if(d.api_getVolume()===0!==w)if(w){r=d.api_getVolume();d.api_setVolume(0)}else d.api_setVolume(r)},get:function(){return d.api_getVolume()===0}});Popcorn.player.defineProperty(b,"volume",{set:function(w){if(!w||typeof w!=="number"||w<0||w>1)return d.api_getVolume()/100;if(d.api_getVolume()!==w){d.api_setVolume(w*100);h=d.api_getVolume();b.dispatchEvent("volumechange")}return d.api_getVolume()/
-100},get:function(){return d.api_getVolume()/100}});b.dispatchEvent("loadedmetadata");b.dispatchEvent("loadeddata");b.duration=d.api_getDuration();b.dispatchEvent("durationchange");v();b.readyState=4;b.dispatchEvent("canplaythrough")};i=/\d+$/.exec(i);i={clip_id:i?i[0]:0,api:1,js_swf_id:a.id};Popcorn.extend(i,g);swfobject.embedSWF("//vimeo.com/moogaloop.swf",a.id,o,p,"9.0.0","expressInstall.swf",i,{allowscriptaccess:"always",allowfullscreen:"true",wmode:"transparent"},{})};window.swfobject?l():Popcorn.getScript("//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",
-l)}})})();var onYouTubePlayerReady=function(g){onYouTubePlayerReady[g]&&onYouTubePlayerReady[g]()};onYouTubePlayerReady.stateChangeEventHandler={};onYouTubePlayerReady.onErrorEventHandler={};
-Popcorn.player("youtube",{_canPlayType:function(g,b){return/(?:http:\/\/www\.|http:\/\/|www\.|\.|^)(youtu)/.test(b)&&g.toLowerCase()!=="video"},_setup:function(g){var b=this,d=false,a=document.createElement("div"),c=0,f=0,h=true,p=false,o=false,l=100;b.paused=undefined;a.id=b.id+Popcorn.guid();g._container=a;b.appendChild(a);var i=function(){var r,k,j,v,w;onYouTubePlayerReady[a.id]=function(){g.youtubeObject=document.getElementById(a.id);onYouTubePlayerReady.stateChangeEventHandler[a.id]=function(C){if(!g.destroyed)if(C===
-2)if(p&&f===c&&f!==g.youtubeObject.getCurrentTime()){p=false;g.youtubeObject.seekTo(c)}else{c=g.youtubeObject.getCurrentTime();b.dispatchEvent("timeupdate");!b.paused&&b.pause()}else if(C===1&&!h)b.paused&&b.play();else if(C===-1)g.youtubeObject.playVideo();else if(C===1&&h){h=false;if(b.paused===true)b.pause();else if(b.paused===false)b.play();else if(d)b.play();else d||b.pause();b.duration=g.youtubeObject.getDuration();b.dispatchEvent("durationchange");y();b.dispatchEvent("loadedmetadata");b.dispatchEvent("loadeddata");
-b.readyState=4;b.dispatchEvent("canplaythrough")}else C===0&&b.dispatchEvent("ended")};onYouTubePlayerReady.onErrorEventHandler[a.id]=function(C){[2,100,101,150].indexOf(C)!==-1&&b.dispatchEvent("error")};g.youtubeObject.addEventListener("onStateChange","onYouTubePlayerReady.stateChangeEventHandler."+a.id);g.youtubeObject.addEventListener("onError","onYouTubePlayerReady.onErrorEventHandler."+a.id);var n=function(){if(!g.destroyed)if(!b.paused){c=g.youtubeObject.getCurrentTime();b.dispatchEvent("timeupdate");
-setTimeout(n,10)}},y=function(){if(!g.destroyed){if(o!==g.youtubeObject.isMuted()){o=g.youtubeObject.isMuted();b.dispatchEvent("volumechange")}if(l!==g.youtubeObject.getVolume()){l=g.youtubeObject.getVolume();b.dispatchEvent("volumechange")}setTimeout(y,250)}};b.play=function(){if(!g.destroyed){if(b.paused!==false||g.youtubeObject.getPlayerState()!==1){b.paused=false;b.dispatchEvent("play");b.dispatchEvent("playing")}n();g.youtubeObject.playVideo()}};b.pause=function(){if(!g.destroyed)if(b.paused!==
-true||g.youtubeObject.getPlayerState()!==2){b.paused=true;b.dispatchEvent("pause");g.youtubeObject.pauseVideo()}};Popcorn.player.defineProperty(b,"currentTime",{set:function(C){c=f=+C;p=true;if(g.destroyed)return c;b.dispatchEvent("seeked");b.dispatchEvent("timeupdate");g.youtubeObject.seekTo(c);return c},get:function(){return c}});Popcorn.player.defineProperty(b,"muted",{set:function(C){if(g.destroyed)return C;if(g.youtubeObject.isMuted()!==C){C?g.youtubeObject.mute():g.youtubeObject.unMute();o=
-g.youtubeObject.isMuted();b.dispatchEvent("volumechange")}return g.youtubeObject.isMuted()},get:function(){if(g.destroyed)return 0;return g.youtubeObject.isMuted()}});Popcorn.player.defineProperty(b,"volume",{set:function(C){if(g.destroyed)return C;if(g.youtubeObject.getVolume()/100!==C){g.youtubeObject.setVolume(C*100);l=g.youtubeObject.getVolume();b.dispatchEvent("volumechange")}return g.youtubeObject.getVolume()/100},get:function(){if(g.destroyed)return 0;return g.youtubeObject.getVolume()/100}})};
-g.controls=+g.controls===0||+g.controls===1?g.controls:1;g.annotations=+g.annotations===1||+g.annotations===3?g.annotations:1;r={playerapiid:a.id};k=/^.*(?:\/|v=)(.{11})/.exec(b.src)[1];w=(b.src.split("?")[1]||"").replace(/v=.{11}/,"");d=/autoplay=1/.test(w);j=b.style.width?""+b.offsetWidth:"560";v=b.style.height?""+b.offsetHeight:"315";k={id:a.id,"data-youtube-player":"//www.youtube.com/e/"+k+"?"+w+"&enablejsapi=1&playerapiid="+a.id+"&version=3"};swfobject.embedSWF(k["data-youtube-player"],a.id,
-j,v,"8",undefined,r,{wmode:"transparent",allowScriptAccess:"always"},k)};window.swfobject?i():Popcorn.getScript("//ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",i)},_teardown:function(g){g.destroyed=true;g.youtubeObject.stopVideo();g.youtubeObject.clearVideo();this.removeChild(document.getElementById(g._container.id))}});
--- a/metadataplayer/libs/raphael-min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-// ┌────────────────────────────────────────────────────────────────────┐ \\
-// │ Raphaël 2.1.0 - JavaScript Vector Library │ \\
-// ├────────────────────────────────────────────────────────────────────┤ \\
-// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\
-// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\
-// ├────────────────────────────────────────────────────────────────────┤ \\
-// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\
-// └────────────────────────────────────────────────────────────────────┘ \\
-
-(function(a){var b="0.3.4",c="hasOwnProperty",d=/[\.\/]/,e="*",f=function(){},g=function(a,b){return a-b},h,i,j={n:{}},k=function(a,b){var c=j,d=i,e=Array.prototype.slice.call(arguments,2),f=k.listeners(a),l=0,m=!1,n,o=[],p={},q=[],r=h,s=[];h=a,i=0;for(var t=0,u=f.length;t<u;t++)"zIndex"in f[t]&&(o.push(f[t].zIndex),f[t].zIndex<0&&(p[f[t].zIndex]=f[t]));o.sort(g);while(o[l]<0){n=p[o[l++]],q.push(n.apply(b,e));if(i){i=d;return q}}for(t=0;t<u;t++){n=f[t];if("zIndex"in n)if(n.zIndex==o[l]){q.push(n.apply(b,e));if(i)break;do{l++,n=p[o[l]],n&&q.push(n.apply(b,e));if(i)break}while(n)}else p[n.zIndex]=n;else{q.push(n.apply(b,e));if(i)break}}i=d,h=r;return q.length?q:null};k.listeners=function(a){var b=a.split(d),c=j,f,g,h,i,k,l,m,n,o=[c],p=[];for(i=0,k=b.length;i<k;i++){n=[];for(l=0,m=o.length;l<m;l++){c=o[l].n,g=[c[b[i]],c[e]],h=2;while(h--)f=g[h],f&&(n.push(f),p=p.concat(f.f||[]))}o=n}return p},k.on=function(a,b){var c=a.split(d),e=j;for(var g=0,h=c.length;g<h;g++)e=e.n,!e[c[g]]&&(e[c[g]]={n:{}}),e=e[c[g]];e.f=e.f||[];for(g=0,h=e.f.length;g<h;g++)if(e.f[g]==b)return f;e.f.push(b);return function(a){+a==+a&&(b.zIndex=+a)}},k.stop=function(){i=1},k.nt=function(a){if(a)return(new RegExp("(?:\\.|\\/|^)"+a+"(?:\\.|\\/|$)")).test(h);return h},k.off=k.unbind=function(a,b){var f=a.split(d),g,h,i,k,l,m,n,o=[j];for(k=0,l=f.length;k<l;k++)for(m=0;m<o.length;m+=i.length-2){i=[m,1],g=o[m].n;if(f[k]!=e)g[f[k]]&&i.push(g[f[k]]);else for(h in g)g[c](h)&&i.push(g[h]);o.splice.apply(o,i)}for(k=0,l=o.length;k<l;k++){g=o[k];while(g.n){if(b){if(g.f){for(m=0,n=g.f.length;m<n;m++)if(g.f[m]==b){g.f.splice(m,1);break}!g.f.length&&delete g.f}for(h in g.n)if(g.n[c](h)&&g.n[h].f){var p=g.n[h].f;for(m=0,n=p.length;m<n;m++)if(p[m]==b){p.splice(m,1);break}!p.length&&delete g.n[h].f}}else{delete g.f;for(h in g.n)g.n[c](h)&&g.n[h].f&&delete g.n[h].f}g=g.n}}},k.once=function(a,b){var c=function(){var d=b.apply(this,arguments);k.unbind(a,c);return d};return k.on(a,c)},k.version=b,k.toString=function(){return"You are running Eve "+b},typeof module!="undefined"&&module.exports?module.exports=k:typeof define!="undefined"?define("eve",[],function(){return k}):a.eve=k})(this),function(){function cF(a){for(var b=0;b<cy.length;b++)cy[b].el.paper==a&&cy.splice(b--,1)}function cE(b,d,e,f,h,i){e=Q(e);var j,k,l,m=[],o,p,q,t=b.ms,u={},v={},w={};if(f)for(y=0,z=cy.length;y<z;y++){var x=cy[y];if(x.el.id==d.id&&x.anim==b){x.percent!=e?(cy.splice(y,1),l=1):k=x,d.attr(x.totalOrigin);break}}else f=+v;for(var y=0,z=b.percents.length;y<z;y++){if(b.percents[y]==e||b.percents[y]>f*b.top){e=b.percents[y],p=b.percents[y-1]||0,t=t/b.top*(e-p),o=b.percents[y+1],j=b.anim[e];break}f&&d.attr(b.anim[b.percents[y]])}if(!!j){if(!k){for(var A in j)if(j[g](A))if(U[g](A)||d.paper.customAttributes[g](A)){u[A]=d.attr(A),u[A]==null&&(u[A]=T[A]),v[A]=j[A];switch(U[A]){case C:w[A]=(v[A]-u[A])/t;break;case"colour":u[A]=a.getRGB(u[A]);var B=a.getRGB(v[A]);w[A]={r:(B.r-u[A].r)/t,g:(B.g-u[A].g)/t,b:(B.b-u[A].b)/t};break;case"path":var D=bR(u[A],v[A]),E=D[1];u[A]=D[0],w[A]=[];for(y=0,z=u[A].length;y<z;y++){w[A][y]=[0];for(var F=1,G=u[A][y].length;F<G;F++)w[A][y][F]=(E[y][F]-u[A][y][F])/t}break;case"transform":var H=d._,I=ca(H[A],v[A]);if(I){u[A]=I.from,v[A]=I.to,w[A]=[],w[A].real=!0;for(y=0,z=u[A].length;y<z;y++){w[A][y]=[u[A][y][0]];for(F=1,G=u[A][y].length;F<G;F++)w[A][y][F]=(v[A][y][F]-u[A][y][F])/t}}else{var J=d.matrix||new cb,K={_:{transform:H.transform},getBBox:function(){return d.getBBox(1)}};u[A]=[J.a,J.b,J.c,J.d,J.e,J.f],b$(K,v[A]),v[A]=K._.transform,w[A]=[(K.matrix.a-J.a)/t,(K.matrix.b-J.b)/t,(K.matrix.c-J.c)/t,(K.matrix.d-J.d)/t,(K.matrix.e-J.e)/t,(K.matrix.f-J.f)/t]}break;case"csv":var L=r(j[A])[s](c),M=r(u[A])[s](c);if(A=="clip-rect"){u[A]=M,w[A]=[],y=M.length;while(y--)w[A][y]=(L[y]-u[A][y])/t}v[A]=L;break;default:L=[][n](j[A]),M=[][n](u[A]),w[A]=[],y=d.paper.customAttributes[A].length;while(y--)w[A][y]=((L[y]||0)-(M[y]||0))/t}}var O=j.easing,P=a.easing_formulas[O];if(!P){P=r(O).match(N);if(P&&P.length==5){var R=P;P=function(a){return cC(a,+R[1],+R[2],+R[3],+R[4],t)}}else P=bf}q=j.start||b.start||+(new Date),x={anim:b,percent:e,timestamp:q,start:q+(b.del||0),status:0,initstatus:f||0,stop:!1,ms:t,easing:P,from:u,diff:w,to:v,el:d,callback:j.callback,prev:p,next:o,repeat:i||b.times,origin:d.attr(),totalOrigin:h},cy.push(x);if(f&&!k&&!l){x.stop=!0,x.start=new Date-t*f;if(cy.length==1)return cA()}l&&(x.start=new Date-x.ms*f),cy.length==1&&cz(cA)}else k.initstatus=f,k.start=new Date-k.ms*f;eve("raphael.anim.start."+d.id,d,b)}}function cD(a,b){var c=[],d={};this.ms=b,this.times=1;if(a){for(var e in a)a[g](e)&&(d[Q(e)]=a[e],c.push(Q(e)));c.sort(bd)}this.anim=d,this.top=c[c.length-1],this.percents=c}function cC(a,b,c,d,e,f){function o(a,b){var c,d,e,f,j,k;for(e=a,k=0;k<8;k++){f=m(e)-a;if(z(f)<b)return e;j=(3*i*e+2*h)*e+g;if(z(j)<1e-6)break;e=e-f/j}c=0,d=1,e=a;if(e<c)return c;if(e>d)return d;while(c<d){f=m(e);if(z(f-a)<b)return e;a>f?c=e:d=e,e=(d-c)/2+c}return e}function n(a,b){var c=o(a,b);return((l*c+k)*c+j)*c}function m(a){return((i*a+h)*a+g)*a}var g=3*b,h=3*(d-b)-g,i=1-g-h,j=3*c,k=3*(e-c)-j,l=1-j-k;return n(a,1/(200*f))}function cq(){return this.x+q+this.y+q+this.width+" × "+this.height}function cp(){return this.x+q+this.y}function cb(a,b,c,d,e,f){a!=null?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f=+f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function bH(b,c,d){b=a._path2curve(b),c=a._path2curve(c);var e,f,g,h,i,j,k,l,m,n,o=d?0:[];for(var p=0,q=b.length;p<q;p++){var r=b[p];if(r[0]=="M")e=i=r[1],f=j=r[2];else{r[0]=="C"?(m=[e,f].concat(r.slice(1)),e=m[6],f=m[7]):(m=[e,f,e,f,i,j,i,j],e=i,f=j);for(var s=0,t=c.length;s<t;s++){var u=c[s];if(u[0]=="M")g=k=u[1],h=l=u[2];else{u[0]=="C"?(n=[g,h].concat(u.slice(1)),g=n[6],h=n[7]):(n=[g,h,g,h,k,l,k,l],g=k,h=l);var v=bG(m,n,d);if(d)o+=v;else{for(var w=0,x=v.length;w<x;w++)v[w].segment1=p,v[w].segment2=s,v[w].bez1=m,v[w].bez2=n;o=o.concat(v)}}}}}return o}function bG(b,c,d){var e=a.bezierBBox(b),f=a.bezierBBox(c);if(!a.isBBoxIntersect(e,f))return d?0:[];var g=bB.apply(0,b),h=bB.apply(0,c),i=~~(g/5),j=~~(h/5),k=[],l=[],m={},n=d?0:[];for(var o=0;o<i+1;o++){var p=a.findDotsAtSegment.apply(a,b.concat(o/i));k.push({x:p.x,y:p.y,t:o/i})}for(o=0;o<j+1;o++)p=a.findDotsAtSegment.apply(a,c.concat(o/j)),l.push({x:p.x,y:p.y,t:o/j});for(o=0;o<i;o++)for(var q=0;q<j;q++){var r=k[o],s=k[o+1],t=l[q],u=l[q+1],v=z(s.x-r.x)<.001?"y":"x",w=z(u.x-t.x)<.001?"y":"x",x=bD(r.x,r.y,s.x,s.y,t.x,t.y,u.x,u.y);if(x){if(m[x.x.toFixed(4)]==x.y.toFixed(4))continue;m[x.x.toFixed(4)]=x.y.toFixed(4);var y=r.t+z((x[v]-r[v])/(s[v]-r[v]))*(s.t-r.t),A=t.t+z((x[w]-t[w])/(u[w]-t[w]))*(u.t-t.t);y>=0&&y<=1&&A>=0&&A<=1&&(d?n++:n.push({x:x.x,y:x.y,t1:y,t2:A}))}}return n}function bF(a,b){return bG(a,b,1)}function bE(a,b){return bG(a,b)}function bD(a,b,c,d,e,f,g,h){if(!(x(a,c)<y(e,g)||y(a,c)>x(e,g)||x(b,d)<y(f,h)||y(b,d)>x(f,h))){var i=(a*d-b*c)*(e-g)-(a-c)*(e*h-f*g),j=(a*d-b*c)*(f-h)-(b-d)*(e*h-f*g),k=(a-c)*(f-h)-(b-d)*(e-g);if(!k)return;var l=i/k,m=j/k,n=+l.toFixed(2),o=+m.toFixed(2);if(n<+y(a,c).toFixed(2)||n>+x(a,c).toFixed(2)||n<+y(e,g).toFixed(2)||n>+x(e,g).toFixed(2)||o<+y(b,d).toFixed(2)||o>+x(b,d).toFixed(2)||o<+y(f,h).toFixed(2)||o>+x(f,h).toFixed(2))return;return{x:l,y:m}}}function bC(a,b,c,d,e,f,g,h,i){if(!(i<0||bB(a,b,c,d,e,f,g,h)<i)){var j=1,k=j/2,l=j-k,m,n=.01;m=bB(a,b,c,d,e,f,g,h,l);while(z(m-i)>n)k/=2,l+=(m<i?1:-1)*k,m=bB(a,b,c,d,e,f,g,h,l);return l}}function bB(a,b,c,d,e,f,g,h,i){i==null&&(i=1),i=i>1?1:i<0?0:i;var j=i/2,k=12,l=[-0.1252,.1252,-0.3678,.3678,-0.5873,.5873,-0.7699,.7699,-0.9041,.9041,-0.9816,.9816],m=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],n=0;for(var o=0;o<k;o++){var p=j*l[o]+j,q=bA(p,a,c,e,g),r=bA(p,b,d,f,h),s=q*q+r*r;n+=m[o]*w.sqrt(s)}return j*n}function bA(a,b,c,d,e){var f=-3*b+9*c-9*d+3*e,g=a*f+6*b-12*c+6*d;return a*g-3*b+3*c}function by(a,b){var c=[];for(var d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]}),c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function bx(){return this.hex}function bv(a,b,c){function d(){var e=Array.prototype.slice.call(arguments,0),f=e.join("␀"),h=d.cache=d.cache||{},i=d.count=d.count||[];if(h[g](f)){bu(i,f);return c?c(h[f]):h[f]}i.length>=1e3&&delete h[i.shift()],i.push(f),h[f]=a[m](b,e);return c?c(h[f]):h[f]}return d}function bu(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return a.push(a.splice(c,1)[0])}function bm(a){if(Object(a)!==a)return a;var b=new a.constructor;for(var c in a)a[g](c)&&(b[c]=bm(a[c]));return b}function a(c){if(a.is(c,"function"))return b?c():eve.on("raphael.DOMload",c);if(a.is(c,E))return a._engine.create[m](a,c.splice(0,3+a.is(c[0],C))).add(c);var d=Array.prototype.slice.call(arguments,0);if(a.is(d[d.length-1],"function")){var e=d.pop();return b?e.call(a._engine.create[m](a,d)):eve.on("raphael.DOMload",function(){e.call(a._engine.create[m](a,d))})}return a._engine.create[m](a,arguments)}a.version="2.1.0",a.eve=eve;var b,c=/[, ]+/,d={circle:1,rect:1,path:1,ellipse:1,text:1,image:1},e=/\{(\d+)\}/g,f="prototype",g="hasOwnProperty",h={doc:document,win:window},i={was:Object.prototype[g].call(h.win,"Raphael"),is:h.win.Raphael},j=function(){this.ca=this.customAttributes={}},k,l="appendChild",m="apply",n="concat",o="createTouch"in h.doc,p="",q=" ",r=String,s="split",t="click dblclick mousedown mousemove mouseout mouseover mouseup touchstart touchmove touchend touchcancel"[s](q),u={mousedown:"touchstart",mousemove:"touchmove",mouseup:"touchend"},v=r.prototype.toLowerCase,w=Math,x=w.max,y=w.min,z=w.abs,A=w.pow,B=w.PI,C="number",D="string",E="array",F="toString",G="fill",H=Object.prototype.toString,I={},J="push",K=a._ISURL=/^url\(['"]?([^\)]+?)['"]?\)$/i,L=/^\s*((#[a-f\d]{6})|(#[a-f\d]{3})|rgba?\(\s*([\d\.]+%?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+%?(?:\s*,\s*[\d\.]+%?)?)\s*\)|hsba?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\)|hsla?\(\s*([\d\.]+(?:deg|\xb0|%)?\s*,\s*[\d\.]+%?\s*,\s*[\d\.]+(?:%?\s*,\s*[\d\.]+)?)%?\s*\))\s*$/i,M={NaN:1,Infinity:1,"-Infinity":1},N=/^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/,O=w.round,P="setAttribute",Q=parseFloat,R=parseInt,S=r.prototype.toUpperCase,T=a._availableAttrs={"arrow-end":"none","arrow-start":"none",blur:0,"clip-rect":"0 0 1e9 1e9",cursor:"default",cx:0,cy:0,fill:"#fff","fill-opacity":1,font:'10px "Arial"',"font-family":'"Arial"',"font-size":"10","font-style":"normal","font-weight":400,gradient:0,height:0,href:"http://raphaeljs.com/","letter-spacing":0,opacity:1,path:"M0,0",r:0,rx:0,ry:0,src:"",stroke:"#000","stroke-dasharray":"","stroke-linecap":"butt","stroke-linejoin":"butt","stroke-miterlimit":0,"stroke-opacity":1,"stroke-width":1,target:"_blank","text-anchor":"middle",title:"Raphael",transform:"",width:0,x:0,y:0},U=a._availableAnimAttrs={blur:C,"clip-rect":"csv",cx:C,cy:C,fill:"colour","fill-opacity":C,"font-size":C,height:C,opacity:C,path:"path",r:C,rx:C,ry:C,stroke:"colour","stroke-opacity":C,"stroke-width":C,transform:"transform",width:C,x:C,y:C},V=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]/g,W=/[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/,X={hs:1,rg:1},Y=/,?([achlmqrstvxz]),?/gi,Z=/([achlmrqstvz])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig,$=/([rstm])[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029,]*((-?\d*\.?\d*(?:e[\-+]?\d+)?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*)+)/ig,_=/(-?\d*\.?\d*(?:e[\-+]?\d+)?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,?[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*/ig,ba=a._radial_gradient=/^r(?:\(([^,]+?)[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*,[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u202f\u205f\u3000\u2028\u2029]*([^\)]+?)\))?/,bb={},bc=function(a,b){return a.key-b.key},bd=function(a,b){return Q(a)-Q(b)},be=function(){},bf=function(a){return a},bg=a._rectPath=function(a,b,c,d,e){if(e)return[["M",a+e,b],["l",c-e*2,0],["a",e,e,0,0,1,e,e],["l",0,d-e*2],["a",e,e,0,0,1,-e,e],["l",e*2-c,0],["a",e,e,0,0,1,-e,-e],["l",0,e*2-d],["a",e,e,0,0,1,e,-e],["z"]];return[["M",a,b],["l",c,0],["l",0,d],["l",-c,0],["z"]]},bh=function(a,b,c,d){d==null&&(d=c);return[["M",a,b],["m",0,-d],["a",c,d,0,1,1,0,2*d],["a",c,d,0,1,1,0,-2*d],["z"]]},bi=a._getPath={path:function(a){return a.attr("path")},circle:function(a){var b=a.attrs;return bh(b.cx,b.cy,b.r)},ellipse:function(a){var b=a.attrs;return bh(b.cx,b.cy,b.rx,b.ry)},rect:function(a){var b=a.attrs;return bg(b.x,b.y,b.width,b.height,b.r)},image:function(a){var b=a.attrs;return bg(b.x,b.y,b.width,b.height)},text:function(a){var b=a._getBBox();return bg(b.x,b.y,b.width,b.height)}},bj=a.mapPath=function(a,b){if(!b)return a;var c,d,e,f,g,h,i;a=bR(a);for(e=0,g=a.length;e<g;e++){i=a[e];for(f=1,h=i.length;f<h;f+=2)c=b.x(i[f],i[f+1]),d=b.y(i[f],i[f+1]),i[f]=c,i[f+1]=d}return a};a._g=h,a.type=h.win.SVGAngle||h.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML";if(a.type=="VML"){var bk=h.doc.createElement("div"),bl;bk.innerHTML='<v:shape adj="1"/>',bl=bk.firstChild,bl.style.behavior="url(#default#VML)";if(!bl||typeof bl.adj!="object")return a.type=p;bk=null}a.svg=!(a.vml=a.type=="VML"),a._Paper=j,a.fn=k=j.prototype=a.prototype,a._id=0,a._oid=0,a.is=function(a,b){b=v.call(b);if(b=="finite")return!M[g](+a);if(b=="array")return a instanceof Array;return b=="null"&&a===null||b==typeof a&&a!==null||b=="object"&&a===Object(a)||b=="array"&&Array.isArray&&Array.isArray(a)||H.call(a).slice(8,-1).toLowerCase()==b},a.angle=function(b,c,d,e,f,g){if(f==null){var h=b-d,i=c-e;if(!h&&!i)return 0;return(180+w.atan2(-i,-h)*180/B+360)%360}return a.angle(b,c,f,g)-a.angle(d,e,f,g)},a.rad=function(a){return a%360*B/180},a.deg=function(a){return a*180/B%360},a.snapTo=function(b,c,d){d=a.is(d,"finite")?d:10;if(a.is(b,E)){var e=b.length;while(e--)if(z(b[e]-c)<=d)return b[e]}else{b=+b;var f=c%b;if(f<d)return c-f;if(f>b-d)return c-f+b}return c};var bn=a.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g,function(a){var b=w.random()*16|0,c=a=="x"?b:b&3|8;return c.toString(16)});a.setWindow=function(b){eve("raphael.setWindow",a,h.win,b),h.win=b,h.doc=h.win.document,a._engine.initWin&&a._engine.initWin(h.win)};var bo=function(b){if(a.vml){var c=/^\s+|\s+$/g,d;try{var e=new ActiveXObject("htmlfile");e.write("<body>"),e.close(),d=e.body}catch(f){d=createPopup().document.body}var g=d.createTextRange();bo=bv(function(a){try{d.style.color=r(a).replace(c,p);var b=g.queryCommandValue("ForeColor");b=(b&255)<<16|b&65280|(b&16711680)>>>16;return"#"+("000000"+b.toString(16)).slice(-6)}catch(e){return"none"}})}else{var i=h.doc.createElement("i");i.title="Raphaël Colour Picker",i.style.display="none",h.doc.body.appendChild(i),bo=bv(function(a){i.style.color=a;return h.doc.defaultView.getComputedStyle(i,p).getPropertyValue("color")})}return bo(b)},bp=function(){return"hsb("+[this.h,this.s,this.b]+")"},bq=function(){return"hsl("+[this.h,this.s,this.l]+")"},br=function(){return this.hex},bs=function(b,c,d){c==null&&a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b&&(d=b.b,c=b.g,b=b.r);if(c==null&&a.is(b,D)){var e=a.getRGB(b);b=e.r,c=e.g,d=e.b}if(b>1||c>1||d>1)b/=255,c/=255,d/=255;return[b,c,d]},bt=function(b,c,d,e){b*=255,c*=255,d*=255;var f={r:b,g:c,b:d,hex:a.rgb(b,c,d),toString:br};a.is(e,"finite")&&(f.opacity=e);return f};a.color=function(b){var c;a.is(b,"object")&&"h"in b&&"s"in b&&"b"in b?(c=a.hsb2rgb(b),b.r=c.r,b.g=c.g,b.b=c.b,b.hex=c.hex):a.is(b,"object")&&"h"in b&&"s"in b&&"l"in b?(c=a.hsl2rgb(b),b.r=c.r,b.g=c.g,b.b=c.b,b.hex=c.hex):(a.is(b,"string")&&(b=a.getRGB(b)),a.is(b,"object")&&"r"in b&&"g"in b&&"b"in b?(c=a.rgb2hsl(b),b.h=c.h,b.s=c.s,b.l=c.l,c=a.rgb2hsb(b),b.v=c.b):(b={hex:"none"},b.r=b.g=b.b=b.h=b.s=b.v=b.l=-1)),b.toString=br;return b},a.hsb2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"b"in a&&(c=a.b,b=a.s,a=a.h,d=a.o),a*=360;var e,f,g,h,i;a=a%360/60,i=c*b,h=i*(1-z(a%2-1)),e=f=g=c-i,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a];return bt(e,f,g,d)},a.hsl2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"l"in a&&(c=a.l,b=a.s,a=a.h);if(a>1||b>1||c>1)a/=360,b/=100,c/=100;a*=360;var e,f,g,h,i;a=a%360/60,i=2*b*(c<.5?c:1-c),h=i*(1-z(a%2-1)),e=f=g=c-i/2,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a];return bt(e,f,g,d)},a.rgb2hsb=function(a,b,c){c=bs(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g;f=x(a,b,c),g=f-y(a,b,c),d=g==0?null:f==a?(b-c)/g:f==b?(c-a)/g+2:(a-b)/g+4,d=(d+360)%6*60/360,e=g==0?0:g/f;return{h:d,s:e,b:f,toString:bp}},a.rgb2hsl=function(a,b,c){c=bs(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g,h,i;g=x(a,b,c),h=y(a,b,c),i=g-h,d=i==0?null:g==a?(b-c)/i:g==b?(c-a)/i+2:(a-b)/i+4,d=(d+360)%6*60/360,f=(g+h)/2,e=i==0?0:f<.5?i/(2*f):i/(2-2*f);return{h:d,s:e,l:f,toString:bq}},a._path2string=function(){return this.join(",").replace(Y,"$1")};var bw=a._preload=function(a,b){var c=h.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em",c.onload=function(){b.call(this),this.onload=null,h.doc.body.removeChild(this)},c.onerror=function(){h.doc.body.removeChild(this)},h.doc.body.appendChild(c),c.src=a};a.getRGB=bv(function(b){if(!b||!!((b=r(b)).indexOf("-")+1))return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:bx};if(b=="none")return{r:-1,g:-1,b:-1,hex:"none",toString:bx};!X[g](b.toLowerCase().substring(0,2))&&b.charAt()!="#"&&(b=bo(b));var c,d,e,f,h,i,j,k=b.match(L);if(k){k[2]&&(f=R(k[2].substring(5),16),e=R(k[2].substring(3,5),16),d=R(k[2].substring(1,3),16)),k[3]&&(f=R((i=k[3].charAt(3))+i,16),e=R((i=k[3].charAt(2))+i,16),d=R((i=k[3].charAt(1))+i,16)),k[4]&&(j=k[4][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),k[1].toLowerCase().slice(0,4)=="rgba"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100));if(k[5]){j=k[5][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360),k[1].toLowerCase().slice(0,4)=="hsba"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsb2rgb(d,e,f,h)}if(k[6]){j=k[6][s](W),d=Q(j[0]),j[0].slice(-1)=="%"&&(d*=2.55),e=Q(j[1]),j[1].slice(-1)=="%"&&(e*=2.55),f=Q(j[2]),j[2].slice(-1)=="%"&&(f*=2.55),(j[0].slice(-3)=="deg"||j[0].slice(-1)=="°")&&(d/=360),k[1].toLowerCase().slice(0,4)=="hsla"&&(h=Q(j[3])),j[3]&&j[3].slice(-1)=="%"&&(h/=100);return a.hsl2rgb(d,e,f,h)}k={r:d,g:e,b:f,toString:bx},k.hex="#"+(16777216|f|e<<8|d<<16).toString(16).slice(1),a.is(h,"finite")&&(k.opacity=h);return k}return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:bx}},a),a.hsb=bv(function(b,c,d){return a.hsb2rgb(b,c,d).hex}),a.hsl=bv(function(b,c,d){return a.hsl2rgb(b,c,d).hex}),a.rgb=bv(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)}),a.getColor=function(a){var b=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75},c=this.hsb2rgb(b.h,b.s,b.b);b.h+=.075,b.h>1&&(b.h=0,b.s-=.2,b.s<=0&&(this.getColor.start={h:0,s:1,b:b.b}));return c.hex},a.getColor.reset=function(){delete this.start},a.parsePathString=function(b){if(!b)return null;var c=bz(b);if(c.arr)return bJ(c.arr);var d={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},e=[];a.is(b,E)&&a.is(b[0],E)&&(e=bJ(b)),e.length||r(b).replace(Z,function(a,b,c){var f=[],g=b.toLowerCase();c.replace(_,function(a,b){b&&f.push(+b)}),g=="m"&&f.length>2&&(e.push([b][n](f.splice(0,2))),g="l",b=b=="m"?"l":"L");if(g=="r")e.push([b][n](f));else while(f.length>=d[g]){e.push([b][n](f.splice(0,d[g])));if(!d[g])break}}),e.toString=a._path2string,c.arr=bJ(e);return e},a.parseTransformString=bv(function(b){if(!b)return null;var c={r:3,s:4,t:2,m:6},d=[];a.is(b,E)&&a.is(b[0],E)&&(d=bJ(b)),d.length||r(b).replace($,function(a,b,c){var e=[],f=v.call(b);c.replace(_,function(a,b){b&&e.push(+b)}),d.push([b][n](e))}),d.toString=a._path2string;return d});var bz=function(a){var b=bz.ps=bz.ps||{};b[a]?b[a].sleep=100:b[a]={sleep:100},setTimeout(function(){for(var c in b)b[g](c)&&c!=a&&(b[c].sleep--,!b[c].sleep&&delete b[c])});return b[a]};a.findDotsAtSegment=function(a,b,c,d,e,f,g,h,i){var j=1-i,k=A(j,3),l=A(j,2),m=i*i,n=m*i,o=k*a+l*3*i*c+j*3*i*i*e+n*g,p=k*b+l*3*i*d+j*3*i*i*f+n*h,q=a+2*i*(c-a)+m*(e-2*c+a),r=b+2*i*(d-b)+m*(f-2*d+b),s=c+2*i*(e-c)+m*(g-2*e+c),t=d+2*i*(f-d)+m*(h-2*f+d),u=j*a+i*c,v=j*b+i*d,x=j*e+i*g,y=j*f+i*h,z=90-w.atan2(q-s,r-t)*180/B;(q>s||r<t)&&(z+=180);return{x:o,y:p,m:{x:q,y:r},n:{x:s,y:t},start:{x:u,y:v},end:{x:x,y:y},alpha:z}},a.bezierBBox=function(b,c,d,e,f,g,h,i){a.is(b,"array")||(b=[b,c,d,e,f,g,h,i]);var j=bQ.apply(null,b);return{x:j.min.x,y:j.min.y,x2:j.max.x,y2:j.max.y,width:j.max.x-j.min.x,height:j.max.y-j.min.y}},a.isPointInsideBBox=function(a,b,c){return b>=a.x&&b<=a.x2&&c>=a.y&&c<=a.y2},a.isBBoxIntersect=function(b,c){var d=a.isPointInsideBBox;return d(c,b.x,b.y)||d(c,b.x2,b.y)||d(c,b.x,b.y2)||d(c,b.x2,b.y2)||d(b,c.x,c.y)||d(b,c.x2,c.y)||d(b,c.x,c.y2)||d(b,c.x2,c.y2)||(b.x<c.x2&&b.x>c.x||c.x<b.x2&&c.x>b.x)&&(b.y<c.y2&&b.y>c.y||c.y<b.y2&&c.y>b.y)},a.pathIntersection=function(a,b){return bH(a,b)},a.pathIntersectionNumber=function(a,b){return bH(a,b,1)},a.isPointInsidePath=function(b,c,d){var e=a.pathBBox(b);return a.isPointInsideBBox(e,c,d)&&bH(b,[["M",c,d],["H",e.x2+10]],1)%2==1},a._removedFactory=function(a){return function(){eve("raphael.log",null,"Raphaël: you are calling to method “"+a+"” of removed object",a)}};var bI=a.pathBBox=function(a){var b=bz(a);if(b.bbox)return b.bbox;if(!a)return{x:0,y:0,width:0,height:0,x2:0,y2:0};a=bR(a);var c=0,d=0,e=[],f=[],g;for(var h=0,i=a.length;h<i;h++){g=a[h];if(g[0]=="M")c=g[1],d=g[2],e.push(c),f.push(d);else{var j=bQ(c,d,g[1],g[2],g[3],g[4],g[5],g[6]);e=e[n](j.min.x,j.max.x),f=f[n](j.min.y,j.max.y),c=g[5],d=g[6]}}var k=y[m](0,e),l=y[m](0,f),o=x[m](0,e),p=x[m](0,f),q={x:k,y:l,x2:o,y2:p,width:o-k,height:p-l};b.bbox=bm(q);return q},bJ=function(b){var c=bm(b);c.toString=a._path2string;return c},bK=a._pathToRelative=function(b){var c=bz(b);if(c.rel)return bJ(c.rel);if(!a.is(b,E)||!a.is(b&&b[0],E))b=a.parsePathString(b);var d=[],e=0,f=0,g=0,h=0,i=0;b[0][0]=="M"&&(e=b[0][1],f=b[0][2],g=e,h=f,i++,d.push(["M",e,f]));for(var j=i,k=b.length;j<k;j++){var l=d[j]=[],m=b[j];if(m[0]!=v.call(m[0])){l[0]=v.call(m[0]);switch(l[0]){case"a":l[1]=m[1],l[2]=m[2],l[3]=m[3],l[4]=m[4],l[5]=m[5],l[6]=+(m[6]-e).toFixed(3),l[7]=+(m[7]-f).toFixed(3);break;case"v":l[1]=+(m[1]-f).toFixed(3);break;case"m":g=m[1],h=m[2];default:for(var n=1,o=m.length;n<o;n++)l[n]=+(m[n]-(n%2?e:f)).toFixed(3)}}else{l=d[j]=[],m[0]=="m"&&(g=m[1]+e,h=m[2]+f);for(var p=0,q=m.length;p<q;p++)d[j][p]=m[p]}var r=d[j].length;switch(d[j][0]){case"z":e=g,f=h;break;case"h":e+=+d[j][r-1];break;case"v":f+=+d[j][r-1];break;default:e+=+d[j][r-2],f+=+d[j][r-1]}}d.toString=a._path2string,c.rel=bJ(d);return d},bL=a._pathToAbsolute=function(b){var c=bz(b);if(c.abs)return bJ(c.abs);if(!a.is(b,E)||!a.is(b&&b[0],E))b=a.parsePathString(b);if(!b||!b.length)return[["M",0,0]];var d=[],e=0,f=0,g=0,h=0,i=0;b[0][0]=="M"&&(e=+b[0][1],f=+b[0][2],g=e,h=f,i++,d[0]=["M",e,f]);var j=b.length==3&&b[0][0]=="M"&&b[1][0].toUpperCase()=="R"&&b[2][0].toUpperCase()=="Z";for(var k,l,m=i,o=b.length;m<o;m++){d.push(k=[]),l=b[m];if(l[0]!=S.call(l[0])){k[0]=S.call(l[0]);switch(k[0]){case"A":k[1]=l[1],k[2]=l[2],k[3]=l[3],k[4]=l[4],k[5]=l[5],k[6]=+(l[6]+e),k[7]=+(l[7]+f);break;case"V":k[1]=+l[1]+f;break;case"H":k[1]=+l[1]+e;break;case"R":var p=[e,f][n](l.slice(1));for(var q=2,r=p.length;q<r;q++)p[q]=+p[q]+e,p[++q]=+p[q]+f;d.pop(),d=d[n](by(p,j));break;case"M":g=+l[1]+e,h=+l[2]+f;default:for(q=1,r=l.length;q<r;q++)k[q]=+l[q]+(q%2?e:f)}}else if(l[0]=="R")p=[e,f][n](l.slice(1)),d.pop(),d=d[n](by(p,j)),k=["R"][n](l.slice(-2));else for(var s=0,t=l.length;s<t;s++)k[s]=l[s];switch(k[0]){case"Z":e=g,f=h;break;case"H":e=k[1];break;case"V":f=k[1];break;case"M":g=k[k.length-2],h=k[k.length-1];default:e=k[k.length-2],f=k[k.length-1]}}d.toString=a._path2string,c.abs=bJ(d);return d},bM=function(a,b,c,d){return[a,b,c,d,c,d]},bN=function(a,b,c,d,e,f){var g=1/3,h=2/3;return[g*a+h*c,g*b+h*d,g*e+h*c,g*f+h*d,e,f]},bO=function(a,b,c,d,e,f,g,h,i,j){var k=B*120/180,l=B/180*(+e||0),m=[],o,p=bv(function(a,b,c){var d=a*w.cos(c)-b*w.sin(c),e=a*w.sin(c)+b*w.cos(c);return{x:d,y:e}});if(!j){o=p(a,b,-l),a=o.x,b=o.y,o=p(h,i,-l),h=o.x,i=o.y;var q=w.cos(B/180*e),r=w.sin(B/180*e),t=(a-h)/2,u=(b-i)/2,v=t*t/(c*c)+u*u/(d*d);v>1&&(v=w.sqrt(v),c=v*c,d=v*d);var x=c*c,y=d*d,A=(f==g?-1:1)*w.sqrt(z((x*y-x*u*u-y*t*t)/(x*u*u+y*t*t))),C=A*c*u/d+(a+h)/2,D=A*-d*t/c+(b+i)/2,E=w.asin(((b-D)/d).toFixed(9)),F=w.asin(((i-D)/d).toFixed(9));E=a<C?B-E:E,F=h<C?B-F:F,E<0&&(E=B*2+E),F<0&&(F=B*2+F),g&&E>F&&(E=E-B*2),!g&&F>E&&(F=F-B*2)}else E=j[0],F=j[1],C=j[2],D=j[3];var G=F-E;if(z(G)>k){var H=F,I=h,J=i;F=E+k*(g&&F>E?1:-1),h=C+c*w.cos(F),i=D+d*w.sin(F),m=bO(h,i,c,d,e,0,g,I,J,[F,H,C,D])}G=F-E;var K=w.cos(E),L=w.sin(E),M=w.cos(F),N=w.sin(F),O=w.tan(G/4),P=4/3*c*O,Q=4/3*d*O,R=[a,b],S=[a+P*L,b-Q*K],T=[h+P*N,i-Q*M],U=[h,i];S[0]=2*R[0]-S[0],S[1]=2*R[1]-S[1];if(j)return[S,T,U][n](m);m=[S,T,U][n](m).join()[s](",");var V=[];for(var W=0,X=m.length;W<X;W++)V[W]=W%2?p(m[W-1],m[W],l).y:p(m[W],m[W+1],l).x;return V},bP=function(a,b,c,d,e,f,g,h,i){var j=1-i;return{x:A(j,3)*a+A(j,2)*3*i*c+j*3*i*i*e+A(i,3)*g,y:A(j,3)*b+A(j,2)*3*i*d+j*3*i*i*f+A(i,3)*h}},bQ=bv(function(a,b,c,d,e,f,g,h){var i=e-2*c+a-(g-2*e+c),j=2*(c-a)-2*(e-c),k=a-c,l=(-j+w.sqrt(j*j-4*i*k))/2/i,n=(-j-w.sqrt(j*j-4*i*k))/2/i,o=[b,h],p=[a,g],q;z(l)>"1e12"&&(l=.5),z(n)>"1e12"&&(n=.5),l>0&&l<1&&(q=bP(a,b,c,d,e,f,g,h,l),p.push(q.x),o.push(q.y)),n>0&&n<1&&(q=bP(a,b,c,d,e,f,g,h,n),p.push(q.x),o.push(q.y)),i=f-2*d+b-(h-2*f+d),j=2*(d-b)-2*(f-d),k=b-d,l=(-j+w.sqrt(j*j-4*i*k))/2/i,n=(-j-w.sqrt(j*j-4*i*k))/2/i,z(l)>"1e12"&&(l=.5),z(n)>"1e12"&&(n=.5),l>0&&l<1&&(q=bP(a,b,c,d,e,f,g,h,l),p.push(q.x),o.push(q.y)),n>0&&n<1&&(q=bP(a,b,c,d,e,f,g,h,n),p.push(q.x),o.push(q.y));return{min:{x:y[m](0,p),y:y[m](0,o)},max:{x:x[m](0,p),y:x[m](0,o)}}}),bR=a._path2curve=bv(function(a,b){var c=!b&&bz(a);if(!b&&c.curve)return bJ(c.curve);var d=bL(a),e=b&&bL(b),f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},h=function(a,b){var c,d;if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];!(a[0]in{T:1,Q:1})&&(b.qx=b.qy=null);switch(a[0]){case"M":b.X=a[1],b.Y=a[2];break;case"A":a=["C"][n](bO[m](0,[b.x,b.y][n](a.slice(1))));break;case"S":c=b.x+(b.x-(b.bx||b.x)),d=b.y+(b.y-(b.by||b.y)),a=["C",c,d][n](a.slice(1));break;case"T":b.qx=b.x+(b.x-(b.qx||b.x)),b.qy=b.y+(b.y-(b.qy||b.y)),a=["C"][n](bN(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case"Q":b.qx=a[1],b.qy=a[2],a=["C"][n](bN(b.x,b.y,a[1],a[2],a[3],a[4]));break;case"L":a=["C"][n](bM(b.x,b.y,a[1],a[2]));break;case"H":a=["C"][n](bM(b.x,b.y,a[1],b.y));break;case"V":a=["C"][n](bM(b.x,b.y,b.x,a[1]));break;case"Z":a=["C"][n](bM(b.x,b.y,b.X,b.Y))}return a},i=function(a,b){if(a[b].length>7){a[b].shift();var c=a[b];while(c.length)a.splice(b++,0,["C"][n](c.splice(0,6)));a.splice(b,1),l=x(d.length,e&&e.length||0)}},j=function(a,b,c,f,g){a&&b&&a[g][0]=="M"&&b[g][0]!="M"&&(b.splice(g,0,["M",f.x,f.y]),c.bx=0,c.by=0,c.x=a[g][1],c.y=a[g][2],l=x(d.length,e&&e.length||0))};for(var k=0,l=x(d.length,e&&e.length||0);k<l;k++){d[k]=h(d[k],f),i(d,k),e&&(e[k]=h(e[k],g)),e&&i(e,k),j(d,e,f,g,k),j(e,d,g,f,k);var o=d[k],p=e&&e[k],q=o.length,r=e&&p.length;f.x=o[q-2],f.y=o[q-1],f.bx=Q(o[q-4])||f.x,f.by=Q(o[q-3])||f.y,g.bx=e&&(Q(p[r-4])||g.x),g.by=e&&(Q(p[r-3])||g.y),g.x=e&&p[r-2],g.y=e&&p[r-1]}e||(c.curve=bJ(d));return e?[d,e]:d},null,bJ),bS=a._parseDots=bv(function(b){var c=[];for(var d=0,e=b.length;d<e;d++){var f={},g=b[d].match(/^([^:]*):?([\d\.]*)/);f.color=a.getRGB(g[1]);if(f.color.error)return null;f.color=f.color.hex,g[2]&&(f.offset=g[2]+"%"),c.push(f)}for(d=1,e=c.length-1;d<e;d++)if(!c[d].offset){var h=Q(c[d-1].offset||0),i=0;for(var j=d+1;j<e;j++)if(c[j].offset){i=c[j].offset;break}i||(i=100,j=e),i=Q(i);var k=(i-h)/(j-d+1);for(;d<j;d++)h+=k,c[d].offset=h+"%"}return c}),bT=a._tear=function(a,b){a==b.top&&(b.top=a.prev),a==b.bottom&&(b.bottom=a.next),a.next&&(a.next.prev=a.prev),a.prev&&(a.prev.next=a.next)},bU=a._tofront=function(a,b){b.top!==a&&(bT(a,b),a.next=null,a.prev=b.top,b.top.next=a,b.top=a)},bV=a._toback=function(a,b){b.bottom!==a&&(bT(a,b),a.next=b.bottom,a.prev=null,b.bottom.prev=a,b.bottom=a)},bW=a._insertafter=function(a,b,c){bT(a,c),b==c.top&&(c.top=a),b.next&&(b.next.prev=a),a.next=b.next,a.prev=b,b.next=a},bX=a._insertbefore=function(a,b,c){bT(a,c),b==c.bottom&&(c.bottom=a),b.prev&&(b.prev.next=a),a.prev=b.prev,b.prev=a,a.next=b},bY=a.toMatrix=function(a,b){var c=bI(a),d={_:{transform:p},getBBox:function(){return c}};b$(d,b);return d.matrix},bZ=a.transformPath=function(a,b){return bj(a,bY(a,b))},b$=a._extractTransform=function(b,c){if(c==null)return b._.transform;c=r(c).replace(/\.{3}|\u2026/g,b._.transform||p);var d=a.parseTransformString(c),e=0,f=0,g=0,h=1,i=1,j=b._,k=new cb;j.transform=d||[];if(d)for(var l=0,m=d.length;l<m;l++){var n=d[l],o=n.length,q=r(n[0]).toLowerCase(),s=n[0]!=q,t=s?k.invert():0,u,v,w,x,y;q=="t"&&o==3?s?(u=t.x(0,0),v=t.y(0,0),w=t.x(n[1],n[2]),x=t.y(n[1],n[2]),k.translate(w-u,x-v)):k.translate(n[1],n[2]):q=="r"?o==2?(y=y||b.getBBox(1),k.rotate(n[1],y.x+y.width/2,y.y+y.height/2),e+=n[1]):o==4&&(s?(w=t.x(n[2],n[3]),x=t.y(n[2],n[3]),k.rotate(n[1],w,x)):k.rotate(n[1],n[2],n[3]),e+=n[1]):q=="s"?o==2||o==3?(y=y||b.getBBox(1),k.scale(n[1],n[o-1],y.x+y.width/2,y.y+y.height/2),h*=n[1],i*=n[o-1]):o==5&&(s?(w=t.x(n[3],n[4]),x=t.y(n[3],n[4]),k.scale(n[1],n[2],w,x)):k.scale(n[1],n[2],n[3],n[4]),h*=n[1],i*=n[2]):q=="m"&&o==7&&k.add(n[1],n[2],n[3],n[4],n[5],n[6]),j.dirtyT=1,b.matrix=k}b.matrix=k,j.sx=h,j.sy=i,j.deg=e,j.dx=f=k.e,j.dy=g=k.f,h==1&&i==1&&!e&&j.bbox?(j.bbox.x+=+f,j.bbox.y+=+g):j.dirtyT=1},b_=function(a){var b=a[0];switch(b.toLowerCase()){case"t":return[b,0,0];case"m":return[b,1,0,0,1,0,0];case"r":return a.length==4?[b,0,a[2],a[3]]:[b,0];case"s":return a.length==5?[b,1,1,a[3],a[4]]:a.length==3?[b,1,1]:[b,1]}},ca=a._equaliseTransform=function(b,c){c=r(c).replace(/\.{3}|\u2026/g,b),b=a.parseTransformString(b)||[],c=a.parseTransformString(c)||[];var d=x(b.length,c.length),e=[],f=[],g=0,h,i,j,k;for(;g<d;g++){j=b[g]||b_(c[g]),k=c[g]||b_(j);if(j[0]!=k[0]||j[0].toLowerCase()=="r"&&(j[2]!=k[2]||j[3]!=k[3])||j[0].toLowerCase()=="s"&&(j[3]!=k[3]||j[4]!=k[4]))return;e[g]=[],f[g]=[];for(h=0,i=x(j.length,k.length);h<i;h++)h in j&&(e[g][h]=j[h]),h in k&&(f[g][h]=k[h])}return{from:e,to:f}};a._getContainer=function(b,c,d,e){var f;f=e==null&&!a.is(b,"object")?h.doc.getElementById(b):b;if(f!=null){if(f.tagName)return c==null?{container:f,width:f.style.pixelWidth||f.offsetWidth,height:f.style.pixelHeight||f.offsetHeight}:{container:f,width:c,height:d};return{container:1,x:b,y:c,width:d,height:e}}},a.pathToRelative=bK,a._engine={},a.path2curve=bR,a.matrix=function(a,b,c,d,e,f){return new cb(a,b,c,d,e,f)},function(b){function d(a){var b=w.sqrt(c(a));a[0]&&(a[0]/=b),a[1]&&(a[1]/=b)}function c(a){return a[0]*a[0]+a[1]*a[1]}b.add=function(a,b,c,d,e,f){var g=[[],[],[]],h=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1]],i=[[a,c,e],[b,d,f],[0,0,1]],j,k,l,m;a&&a instanceof cb&&(i=[[a.a,a.c,a.e],[a.b,a.d,a.f],[0,0,1]]);for(j=0;j<3;j++)for(k=0;k<3;k++){m=0;for(l=0;l<3;l++)m+=h[j][l]*i[l][k];g[j][k]=m}this.a=g[0][0],this.b=g[1][0],this.c=g[0][1],this.d=g[1][1],this.e=g[0][2],this.f=g[1][2]},b.invert=function(){var a=this,b=a.a*a.d-a.b*a.c;return new cb(a.d/b,-a.b/b,-a.c/b,a.a/b,(a.c*a.f-a.d*a.e)/b,(a.b*a.e-a.a*a.f)/b)},b.clone=function(){return new cb(this.a,this.b,this.c,this.d,this.e,this.f)},b.translate=function(a,b){this.add(1,0,0,1,a,b)},b.scale=function(a,b,c,d){b==null&&(b=a),(c||d)&&this.add(1,0,0,1,c,d),this.add(a,0,0,b,0,0),(c||d)&&this.add(1,0,0,1,-c,-d)},b.rotate=function(b,c,d){b=a.rad(b),c=c||0,d=d||0;var e=+w.cos(b).toFixed(9),f=+w.sin(b).toFixed(9);this.add(e,f,-f,e,c,d),this.add(1,0,0,1,-c,-d)},b.x=function(a,b){return a*this.a+b*this.c+this.e},b.y=function(a,b){return a*this.b+b*this.d+this.f},b.get=function(a){return+this[r.fromCharCode(97+a)].toFixed(4)},b.toString=function(){return a.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()},b.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+", Dy="+this.get(5)+", sizingmethod='auto expand')"},b.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]},b.split=function(){var b={};b.dx=this.e,b.dy=this.f;var e=[[this.a,this.c],[this.b,this.d]];b.scalex=w.sqrt(c(e[0])),d(e[0]),b.shear=e[0][0]*e[1][0]+e[0][1]*e[1][1],e[1]=[e[1][0]-e[0][0]*b.shear,e[1][1]-e[0][1]*b.shear],b.scaley=w.sqrt(c(e[1])),d(e[1]),b.shear/=b.scaley;var f=-e[0][1],g=e[1][1];g<0?(b.rotate=a.deg(w.acos(g)),f<0&&(b.rotate=360-b.rotate)):b.rotate=a.deg(w.asin(f)),b.isSimple=!+b.shear.toFixed(9)&&(b.scalex.toFixed(9)==b.scaley.toFixed(9)||!b.rotate),b.isSuperSimple=!+b.shear.toFixed(9)&&b.scalex.toFixed(9)==b.scaley.toFixed(9)&&!b.rotate,b.noRotation=!+b.shear.toFixed(9)&&!b.rotate;return b},b.toTransformString=function(a){var b=a||this[s]();if(b.isSimple){b.scalex=+b.scalex.toFixed(4),b.scaley=+b.scaley.toFixed(4),b.rotate=+b.rotate.toFixed(4);return(b.dx||b.dy?"t"+[b.dx,b.dy]:p)+(b.scalex!=1||b.scaley!=1?"s"+[b.scalex,b.scaley,0,0]:p)+(b.rotate?"r"+[b.rotate,0,0]:p)}return"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}}(cb.prototype);var cc=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);navigator.vendor=="Apple Computer, Inc."&&(cc&&cc[1]<4||navigator.platform.slice(0,2)=="iP")||navigator.vendor=="Google Inc."&&cc&&cc[1]<8?k.safari=function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:k.safari=be;var cd=function(){this.returnValue=!1},ce=function(){return this.originalEvent.preventDefault()},cf=function(){this.cancelBubble=!0},cg=function(){return this.originalEvent.stopPropagation()},ch=function(){if(h.doc.addEventListener)return function(a,b,c,d){var e=o&&u[b]?u[b]:b,f=function(e){var f=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,i=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,j=e.clientX+i,k=e.clientY+f;if(o&&u[g](b))for(var l=0,m=e.targetTouches&&e.targetTouches.length;l<m;l++)if(e.targetTouches[l].target==a){var n=e;e=e.targetTouches[l],e.originalEvent=n,e.preventDefault=ce,e.stopPropagation=cg;break}return c.call(d,e,j,k)};a.addEventListener(e,f,!1);return function(){a.removeEventListener(e,f,!1);return!0}};if(h.doc.attachEvent)return function(a,b,c,d){var e=function(a){a=a||h.win.event;var b=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,e=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,f=a.clientX+e,g=a.clientY+b;a.preventDefault=a.preventDefault||cd,a.stopPropagation=a.stopPropagation||cf;return c.call(d,a,f,g)};a.attachEvent("on"+b,e);var f=function(){a.detachEvent("on"+b,e);return!0};return f}}(),ci=[],cj=function(a){var b=a.clientX,c=a.clientY,d=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,e=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft,f,g=ci.length;while(g--){f=ci[g];if(o){var i=a.touches.length,j;while(i--){j=a.touches[i];if(j.identifier==f.el._drag.id){b=j.clientX,c=j.clientY,(a.originalEvent?a.originalEvent:a).preventDefault();break}}}else a.preventDefault();var k=f.el.node,l,m=k.nextSibling,n=k.parentNode,p=k.style.display;h.win.opera&&n.removeChild(k),k.style.display="none",l=f.el.paper.getElementByPoint(b,c),k.style.display=p,h.win.opera&&(m?n.insertBefore(k,m):n.appendChild(k)),l&&eve("raphael.drag.over."+f.el.id,f.el,l),b+=e,c+=d,eve("raphael.drag.move."+f.el.id,f.move_scope||f.el,b-f.el._drag.x,c-f.el._drag.y,b,c,a)}},ck=function(b){a.unmousemove(cj).unmouseup(ck);var c=ci.length,d;while(c--)d=ci[c],d.el._drag={},eve("raphael.drag.end."+d.el.id,d.end_scope||d.start_scope||d.move_scope||d.el,b);ci=[]},cl=a.el={};for(var cm=t.length;cm--;)(function(b){a[b]=cl[b]=function(c,d){a.is(c,"function")&&(this.events=this.events||[],this.events.push({name:b,f:c,unbind:ch(this.shape||this.node||h.doc,b,c,d||this)}));return this},a["un"+b]=cl["un"+b]=function(a){var c=this.events||[],d=c.length;while(d--)if(c[d].name==b&&c[d].f==a){c[d].unbind(),c.splice(d,1),!c.length&&delete this.events;return this}return this}})(t[cm]);cl.data=function(b,c){var d=bb[this.id]=bb[this.id]||{};if(arguments.length==1){if(a.is(b,"object")){for(var e in b)b[g](e)&&this.data(e,b[e]);return this}eve("raphael.data.get."+this.id,this,d[b],b);return d[b]}d[b]=c,eve("raphael.data.set."+this.id,this,c,b);return this},cl.removeData=function(a){a==null?bb[this.id]={}:bb[this.id]&&delete bb[this.id][a];return this},cl.hover=function(a,b,c,d){return this.mouseover(a,c).mouseout(b,d||c)},cl.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};var cn=[];cl.drag=function(b,c,d,e,f,g){function i(i){(i.originalEvent||i).preventDefault();var j=h.doc.documentElement.scrollTop||h.doc.body.scrollTop,k=h.doc.documentElement.scrollLeft||h.doc.body.scrollLeft;this._drag.x=i.clientX+k,this._drag.y=i.clientY+j,this._drag.id=i.identifier,!ci.length&&a.mousemove(cj).mouseup(ck),ci.push({el:this,move_scope:e,start_scope:f,end_scope:g}),c&&eve.on("raphael.drag.start."+this.id,c),b&&eve.on("raphael.drag.move."+this.id,b),d&&eve.on("raphael.drag.end."+this.id,d),eve("raphael.drag.start."+this.id,f||e||this,i.clientX+k,i.clientY+j,i)}this._drag={},cn.push({el:this,start:i}),this.mousedown(i);return this},cl.onDragOver=function(a){a?eve.on("raphael.drag.over."+this.id,a):eve.unbind("raphael.drag.over."+this.id)},cl.undrag=function(){var b=cn.length;while(b--)cn[b].el==this&&(this.unmousedown(cn[b].start),cn.splice(b,1),eve.unbind("raphael.drag.*."+this.id));!cn.length&&a.unmousemove(cj).unmouseup(ck)},k.circle=function(b,c,d){var e=a._engine.circle(this,b||0,c||0,d||0);this.__set__&&this.__set__.push(e);return e},k.rect=function(b,c,d,e,f){var g=a._engine.rect(this,b||0,c||0,d||0,e||0,f||0);this.__set__&&this.__set__.push(g);return g},k.ellipse=function(b,c,d,e){var f=a._engine.ellipse(this,b||0,c||0,d||0,e||0);this.__set__&&this.__set__.push(f);return f},k.path=function(b){b&&!a.is(b,D)&&!a.is(b[0],E)&&(b+=p);var c=a._engine.path(a.format[m](a,arguments),this);this.__set__&&this.__set__.push(c);return c},k.image=function(b,c,d,e,f){var g=a._engine.image(this,b||"about:blank",c||0,d||0,e||0,f||0);this.__set__&&this.__set__.push(g);return g},k.text=function(b,c,d){var e=a._engine.text(this,b||0,c||0,r(d));this.__set__&&this.__set__.push(e);return e},k.set=function(b){!a.is(b,"array")&&(b=Array.prototype.splice.call(arguments,0,arguments.length));var c=new cG(b);this.__set__&&this.__set__.push(c);return c},k.setStart=function(a){this.__set__=a||this.set()},k.setFinish=function(a){var b=this.__set__;delete this.__set__;return b},k.setSize=function(b,c){return a._engine.setSize.call(this,b,c)},k.setViewBox=function(b,c,d,e,f){return a._engine.setViewBox.call(this,b,c,d,e,f)},k.top=k.bottom=null,k.raphael=a;var co=function(a){var b=a.getBoundingClientRect(),c=a.ownerDocument,d=c.body,e=c.documentElement,f=e.clientTop||d.clientTop||0,g=e.clientLeft||d.clientLeft||0,i=b.top+(h.win.pageYOffset||e.scrollTop||d.scrollTop)-f,j=b.left+(h.win.pageXOffset||e.scrollLeft||d.scrollLeft)-g;return{y:i,x:j}};k.getElementByPoint=function(a,b){var c=this,d=c.canvas,e=h.doc.elementFromPoint(a,b);if(h.win.opera&&e.tagName=="svg"){var f=co(d),g=d.createSVGRect();g.x=a-f.x,g.y=b-f.y,g.width=g.height=1;var i=d.getIntersectionList(g,null);i.length&&(e=i[i.length-1])}if(!e)return null;while(e.parentNode&&e!=d.parentNode&&!e.raphael)e=e.parentNode;e==c.canvas.parentNode&&(e=d),e=e&&e.raphael?c.getById(e.raphaelid):null;return e},k.getById=function(a){var b=this.bottom;while(b){if(b.id==a)return b;b=b.next}return null},k.forEach=function(a,b){var c=this.bottom;while(c){if(a.call(b,c)===!1)return this;c=c.next}return this},k.getElementsByPoint=function(a,b){var c=this.set();this.forEach(function(d){d.isPointInside(a,b)&&c.push(d)});return c},cl.isPointInside=function(b,c){var d=this.realPath=this.realPath||bi[this.type](this);return a.isPointInsidePath(d,b,c)},cl.getBBox=function(a){if(this.removed)return{};var b=this._;if(a){if(b.dirty||!b.bboxwt)this.realPath=bi[this.type](this),b.bboxwt=bI(this.realPath),b.bboxwt.toString=cq,b.dirty=0;return b.bboxwt}if(b.dirty||b.dirtyT||!b.bbox){if(b.dirty||!this.realPath)b.bboxwt=0,this.realPath=bi[this.type](this);b.bbox=bI(bj(this.realPath,this.matrix)),b.bbox.toString=cq,b.dirty=b.dirtyT=0}return b.bbox},cl.clone=function(){if(this.removed)return null;var a=this.paper[this.type]().attr(this.attr());this.__set__&&this.__set__.push(a);return a},cl.glow=function(a){if(this.type=="text")return null;a=a||{};var b={width:(a.width||10)+(+this.attr("stroke-width")||1),fill:a.fill||!1,opacity:a.opacity||.5,offsetx:a.offsetx||0,offsety:a.offsety||0,color:a.color||"#000"},c=b.width/2,d=this.paper,e=d.set(),f=this.realPath||bi[this.type](this);f=this.matrix?bj(f,this.matrix):f;for(var g=1;g<c+1;g++)e.push(d.path(f).attr({stroke:b.color,fill:b.fill?b.color:"none","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":+(b.width/c*g).toFixed(3),opacity:+(b.opacity/c).toFixed(3)}));return e.insertBefore(this).translate(b.offsetx,b.offsety)};var cr={},cs=function(b,c,d,e,f,g,h,i,j){return j==null?bB(b,c,d,e,f,g,h,i):a.findDotsAtSegment(b,c,d,e,f,g,h,i,bC(b,c,d,e,f,g,h,i,j))},ct=function(b,c){return function(d,e,f){d=bR(d);var g,h,i,j,k="",l={},m,n=0;for(var o=0,p=d.length;o<p;o++){i=d[o];if(i[0]=="M")g=+i[1],h=+i[2];else{j=cs(g,h,i[1],i[2],i[3],i[4],i[5],i[6]);if(n+j>e){if(c&&!l.start){m=cs(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),k+=["C"+m.start.x,m.start.y,m.m.x,m.m.y,m.x,m.y];if(f)return k;l.start=k,k=["M"+m.x,m.y+"C"+m.n.x,m.n.y,m.end.x,m.end.y,i[5],i[6]].join(),n+=j,g=+i[5],h=+i[6];continue}if(!b&&!c){m=cs(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n);return{x:m.x,y:m.y,alpha:m.alpha}}}n+=j,g=+i[5],h=+i[6]}k+=i.shift()+i}l.end=k,m=b?n:c?l:a.findDotsAtSegment(g,h,i[0],i[1],i[2],i[3],i[4],i[5],1),m.alpha&&(m={x:m.x,y:m.y,alpha:m.alpha});return m}},cu=ct(1),cv=ct(),cw=ct(0,1);a.getTotalLength=cu,a.getPointAtLength=cv,a.getSubpath=function(a,b,c){if(this.getTotalLength(a)-c<1e-6)return cw(a,b).end;var d=cw(a,c,1);return b?cw(d,b).end:d},cl.getTotalLength=function(){if(this.type=="path"){if(this.node.getTotalLength)return this.node.getTotalLength();return cu(this.attrs.path)}},cl.getPointAtLength=function(a){if(this.type=="path")return cv(this.attrs.path,a)},cl.getSubpath=function(b,c){if(this.type=="path")return a.getSubpath(this.attrs.path,b,c)};var cx=a.easing_formulas={linear:function(a){return a},"<":function(a){return A(a,1.7)},">":function(a){return A(a,.48)},"<>":function(a){var b=.48-a/1.04,c=w.sqrt(.1734+b*b),d=c-b,e=A(z(d),1/3)*(d<0?-1:1),f=-c-b,g=A(z(f),1/3)*(f<0?-1:1),h=e+g+.5;return(1-h)*3*h*h+h*h*h},backIn:function(a){var b=1.70158;return a*a*((b+1)*a-b)},backOut:function(a){a=a-1;var b=1.70158;return a*a*((b+1)*a+b)+1},elastic:function(a){if(a==!!a)return a;return A(2,-10*a)*w.sin((a-.075)*2*B/.3)+1},bounce:function(a){var b=7.5625,c=2.75,d;a<1/c?d=b*a*a:a<2/c?(a-=1.5/c,d=b*a*a+.75):a<2.5/c?(a-=2.25/c,d=b*a*a+.9375):(a-=2.625/c,d=b*a*a+.984375);return d}};cx.easeIn=cx["ease-in"]=cx["<"],cx.easeOut=cx["ease-out"]=cx[">"],cx.easeInOut=cx["ease-in-out"]=cx["<>"],cx["back-in"]=cx.backIn,cx["back-out"]=cx.backOut;var cy=[],cz=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,16)},cA=function(){var b=+(new Date),c=0;for(;c<cy.length;c++){var d=cy[c];if(d.el.removed||d.paused)continue;var e=b-d.start,f=d.ms,h=d.easing,i=d.from,j=d.diff,k=d.to,l=d.t,m=d.el,o={},p,r={},s;d.initstatus?(e=(d.initstatus*d.anim.top-d.prev)/(d.percent-d.prev)*f,d.status=d.initstatus,delete d.initstatus,d.stop&&cy.splice(c--,1)):d.status=(d.prev+(d.percent-d.prev)*(e/f))/d.anim.top;if(e<0)continue;if(e<f){var t=h(e/f);for(var u in i)if(i[g](u)){switch(U[u]){case C:p=+i[u]+t*f*j[u];break;case"colour":p="rgb("+[cB(O(i[u].r+t*f*j[u].r)),cB(O(i[u].g+t*f*j[u].g)),cB(O(i[u].b+t*f*j[u].b))].join(",")+")";break;case"path":p=[];for(var v=0,w=i[u].length;v<w;v++){p[v]=[i[u][v][0]];for(var x=1,y=i[u][v].length;x<y;x++)p[v][x]=+i[u][v][x]+t*f*j[u][v][x];p[v]=p[v].join(q)}p=p.join(q);break;case"transform":if(j[u].real){p=[];for(v=0,w=i[u].length;v<w;v++){p[v]=[i[u][v][0]];for(x=1,y=i[u][v].length;x<y;x++)p[v][x]=i[u][v][x]+t*f*j[u][v][x]}}else{var z=function(a){return+i[u][a]+t*f*j[u][a]};p=[["m",z(0),z(1),z(2),z(3),z(4),z(5)]]}break;case"csv":if(u=="clip-rect"){p=[],v=4;while(v--)p[v]=+i[u][v]+t*f*j[u][v]}break;default:var A=[][n](i[u]);p=[],v=m.paper.customAttributes[u].length;while(v--)p[v]=+A[v]+t*f*j[u][v]}o[u]=p}m.attr(o),function(a,b,c){setTimeout(function(){eve("raphael.anim.frame."+a,b,c)})}(m.id,m,d.anim)}else{(function(b,c,d){setTimeout(function(){eve("raphael.anim.frame."+c.id,c,d),eve("raphael.anim.finish."+c.id,c,d),a.is(b,"function")&&b.call(c)})})(d.callback,m,d.anim),m.attr(k),cy.splice(c--,1);if(d.repeat>1&&!d.next){for(s in k)k[g](s)&&(r[s]=d.totalOrigin[s]);d.el.attr(r),cE(d.anim,d.el,d.anim.percents[0],null,d.totalOrigin,d.repeat-1)}d.next&&!d.stop&&cE(d.anim,d.el,d.next,null,d.totalOrigin,d.repeat)}}a.svg&&m&&m.paper&&m.paper.safari(),cy.length&&cz(cA)},cB=function(a){return a>255?255:a<0?0:a};cl.animateWith=function(b,c,d,e,f,g){var h=this;if(h.removed){g&&g.call(h);return h}var i=d instanceof cD?d:a.animation(d,e,f,g),j,k;cE(i,h,i.percents[0],null,h.attr());for(var l=0,m=cy.length;l<m;l++)if(cy[l].anim==c&&cy[l].el==b){cy[m-1].start=cy[l].start;break}return h},cl.onAnimation=function(a){a?eve.on("raphael.anim.frame."+this.id,a):eve.unbind("raphael.anim.frame."+this.id);return this},cD.prototype.delay=function(a){var b=new cD(this.anim,this.ms);b.times=this.times,b.del=+a||0;return b},cD.prototype.repeat=function(a){var b=new cD(this.anim,this.ms);b.del=this.del,b.times=w.floor(x(a,0))||1;return b},a.animation=function(b,c,d,e){if(b instanceof cD)return b;if(a.is(d,"function")||!d)e=e||d||null,d=null;b=Object(b),c=+c||0;var f={},h,i;for(i in b)b[g](i)&&Q(i)!=i&&Q(i)+"%"!=i&&(h=!0,f[i]=b[i]);if(!h)return new cD(b,c);d&&(f.easing=d),e&&(f.callback=e);return new cD({100:f},c)},cl.animate=function(b,c,d,e){var f=this;if(f.removed){e&&e.call(f);return f}var g=b instanceof cD?b:a.animation(b,c,d,e);cE(g,f,g.percents[0],null,f.attr());return f},cl.setTime=function(a,b){a&&b!=null&&this.status(a,y(b,a.ms)/a.ms);return this},cl.status=function(a,b){var c=[],d=0,e,f;if(b!=null){cE(a,this,-1,y(b,1));return this}e=cy.length;for(;d<e;d++){f=cy[d];if(f.el.id==this.id&&(!a||f.anim==a)){if(a)return f.status;c.push({anim:f.anim,status:f.status})}}if(a)return 0;return c},cl.pause=function(a){for(var b=0;b<cy.length;b++)cy[b].el.id==this.id&&(!a||cy[b].anim==a)&&eve("raphael.anim.pause."+this.id,this,cy[b].anim)!==!1&&(cy[b].paused=!0);return this},cl.resume=function(a){for(var b=0;b<cy.length;b++)if(cy[b].el.id==this.id&&(!a||cy[b].anim==a)){var c=cy[b];eve("raphael.anim.resume."+this.id,this,c.anim)!==!1&&(delete c.paused,this.status(c.anim,c.status))}return this},cl.stop=function(a){for(var b=0;b<cy.length;b++)cy[b].el.id==this.id&&(!a||cy[b].anim==a)&&eve("raphael.anim.stop."+this.id,this,cy[b].anim)!==!1&&cy.splice(b--,1);return this},eve.on("raphael.remove",cF),eve.on("raphael.clear",cF),cl.toString=function(){return"Raphaël’s object"};var cG=function(a){this.items=[],this.length=0,this.type="set";if(a)for(var b=0,c=a.length;b<c;b++)a[b]&&(a[b].constructor==cl.constructor||a[b].constructor==cG)&&(this[this.items.length]=this.items[this.items.length]=a[b],this.length++)},cH=cG.prototype;cH.push=function(){var a,b;for(var c=0,d=arguments.length;c<d;c++)a=arguments[c],a&&(a.constructor==cl.constructor||a.constructor==cG)&&(b=this.items.length,this[b]=this.items[b]=a,this.length++);return this},cH.pop=function(){this.length&&delete this[this.length--];return this.items.pop()},cH.forEach=function(a,b){for(var c=0,d=this.items.length;c<d;c++)if(a.call(b,this.items[c],c)===!1)return this;return this};for(var cI in cl)cl[g](cI)&&(cH[cI]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a][m](c,b)})}}(cI));cH.attr=function(b,c){if(b&&a.is(b,E)&&a.is(b[0],"object"))for(var d=0,e=b.length;d<e;d++)this.items[d].attr(b[d]);else for(var f=0,g=this.items.length;f<g;f++)this.items[f].attr(b,c);return this},cH.clear=function(){while(this.length)this.pop()},cH.splice=function(a,b,c){a=a<0?x(this.length+a,0):a,b=x(0,y(this.length-a,b));var d=[],e=[],f=[],g;for(g=2;g<arguments.length;g++)f.push(arguments[g]);for(g=0;g<b;g++)e.push(this[a+g]);for(;g<this.length-a;g++)d.push(this[a+g]);var h=f.length;for(g=0;g<h+d.length;g++)this.items[a+g]=this[a+g]=g<h?f[g]:d[g-h];g=this.items.length=this.length-=b-h;while(this[g])delete this[g++];return new cG(e)},cH.exclude=function(a){for(var b=0,c=this.length;b<c;b++)if(this[b]==a){this.splice(b,1);return!0}},cH.animate=function(b,c,d,e){(a.is(d,"function")||!d)&&(e=d||null);var f=this.items.length,g=f,h,i=this,j;if(!f)return this;e&&(j=function(){!--f&&e.call(i)}),d=a.is(d,D)?d:j;var k=a.animation(b,c,d,j);h=this.items[--g].animate(k);while(g--)this.items[g]&&!this.items[g].removed&&this.items[g].animateWith(h,k,k);return this},cH.insertAfter=function(a){var b=this.items.length;while(b--)this.items[b].insertAfter(a);return this},cH.getBBox=function(){var a=[],b=[],c=[],d=[];for(var e=this.items.length;e--;)if(!this.items[e].removed){var f=this.items[e].getBBox();a.push(f.x),b.push(f.y),c.push(f.x+f.width),d.push(f.y+f.height)}a=y[m](0,a),b=y[m](0,b),c=x[m](0,c),d=x[m](0,d);return{x:a,y:b,x2:c,y2:d,width:c-a,height:d-b}},cH.clone=function(a){a=new cG;for(var b=0,c=this.items.length;b<c;b++)a.push(this.items[b].clone());return a},cH.toString=function(){return"Raphaël‘s set"},a.registerFont=function(a){if(!a.face)return a;this.fonts=this.fonts||{};var b={w:a.w,face:{},glyphs:{}},c=a.face["font-family"];for(var d in a.face)a.face[g](d)&&(b.face[d]=a.face[d]);this.fonts[c]?this.fonts[c].push(b):this.fonts[c]=[b];if(!a.svg){b.face["units-per-em"]=R(a.face["units-per-em"],10);for(var e in a.glyphs)if(a.glyphs[g](e)){var f=a.glyphs[e];b.glyphs[e]={w:f.w,k:{},d:f.d&&"M"+f.d.replace(/[mlcxtrv]/g,function(a){return{l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"}[a]||"M"})+"z"};if(f.k)for(var h in f.k)f[g](h)&&(b.glyphs[e].k[h]=f.k[h])}}return a},k.getFont=function(b,c,d,e){e=e||"normal",d=d||"normal",c=+c||{normal:400,bold:700,lighter:300,bolder:800}[c]||400;if(!!a.fonts){var f=a.fonts[b];if(!f){var h=new RegExp("(^|\\s)"+b.replace(/[^\w\d\s+!~.:_-]/g,p)+"(\\s|$)","i");for(var i in a.fonts)if(a.fonts[g](i)&&h.test(i)){f=a.fonts[i];break}}var j;if(f)for(var k=0,l=f.length;k<l;k++){j=f[k];if(j.face["font-weight"]==c&&(j.face["font-style"]==d||!j.face["font-style"])&&j.face["font-stretch"]==e)break}return j}},k.print=function(b,d,e,f,g,h,i){h=h||"middle",i=x(y(i||0,1),-1);var j=r(e)[s](p),k=0,l=0,m=p,n;a.is(f,e)&&(f=this.getFont(f));if(f){n=(g||16)/f.face["units-per-em"];var o=f.face.bbox[s](c),q=+o[0],t=o[3]-o[1],u=0,v=+o[1]+(h=="baseline"?t+ +f.face.descent:t/2);for(var w=0,z=j.length;w<z;w++){if(j[w]=="\n")k=0,B=0,l=0,u+=t;else{var A=l&&f.glyphs[j[w-1]]||{},B=f.glyphs[j[w]];k+=l?(A.w||f.w)+(A.k&&A.k[j[w]]||0)+f.w*i:0,l=1}B&&B.d&&(m+=a.transformPath(B.d,["t",k*n,u*n,"s",n,n,q,v,"t",(b-q)/n,(d-v)/n]))}}return this.path(m).attr({fill:"#000",stroke:"none"})},k.add=function(b){if(a.is(b,"array")){var c=this.set(),e=0,f=b.length,h;for(;e<f;e++)h=b[e]||{},d[g](h.type)&&c.push(this[h.type]().attr(h))}return c},a.format=function(b,c){var d=a.is(c,E)?[0][n](c):arguments;b&&a.is(b,D)&&d.length-1&&(b=b.replace(e,function(a,b){return d[++b]==null?p:d[b]}));return b||p},a.fullfill=function(){var a=/\{([^\}]+)\}/g,b=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g,c=function(a,c,d){var e=d;c.replace(b,function(a,b,c,d,f){b=b||d,e&&(b in e&&(e=e[b]),typeof e=="function"&&f&&(e=e()))}),e=(e==null||e==d?a:e)+"";return e};return function(b,d){return String(b).replace(a,function(a,b){return c(a,b,d)})}}(),a.ninja=function(){i.was?h.win.Raphael=i.is:delete Raphael;return a},a.st=cH,function(b,c,d){function e(){/in/.test(b.readyState)?setTimeout(e,9):a.eve("raphael.DOMload")}b.readyState==null&&b.addEventListener&&(b.addEventListener(c,d=function(){b.removeEventListener(c,d,!1),b.readyState="complete"},!1),b.readyState="loading"),e()}(document,"DOMContentLoaded"),i.was?h.win.Raphael=a:Raphael=a,eve.on("raphael.DOMload",function(){b=!0})}(),window.Raphael.svg&&function(a){var b="hasOwnProperty",c=String,d=parseFloat,e=parseInt,f=Math,g=f.max,h=f.abs,i=f.pow,j=/[, ]+/,k=a.eve,l="",m=" ",n="http://www.w3.org/1999/xlink",o={block:"M5,0 0,2.5 5,5z",classic:"M5,0 0,2.5 5,5 3.5,3 3.5,2z",diamond:"M2.5,0 5,2.5 2.5,5 0,2.5z",open:"M6,1 1,3.5 6,6",oval:"M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"},p={};a.toString=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var q=function(d,e){if(e){typeof d=="string"&&(d=q(d));for(var f in e)e[b](f)&&(f.substring(0,6)=="xlink:"?d.setAttributeNS(n,f.substring(6),c(e[f])):d.setAttribute(f,c(e[f])))}else d=a._g.doc.createElementNS("http://www.w3.org/2000/svg",d),d.style&&(d.style.webkitTapHighlightColor="rgba(0,0,0,0)");return d},r=function(b,e){var j="linear",k=b.id+e,m=.5,n=.5,o=b.node,p=b.paper,r=o.style,s=a._g.doc.getElementById(k);if(!s){e=c(e).replace(a._radial_gradient,function(a,b,c){j="radial";if(b&&c){m=d(b),n=d(c);var e=(n>.5)*2-1;i(m-.5,2)+i(n-.5,2)>.25&&(n=f.sqrt(.25-i(m-.5,2))*e+.5)&&n!=.5&&(n=n.toFixed(5)-1e-5*e)}return l}),e=e.split(/\s*\-\s*/);if(j=="linear"){var t=e.shift();t=-d(t);if(isNaN(t))return null;var u=[0,0,f.cos(a.rad(t)),f.sin(a.rad(t))],v=1/(g(h(u[2]),h(u[3]))||1);u[2]*=v,u[3]*=v,u[2]<0&&(u[0]=-u[2],u[2]=0),u[3]<0&&(u[1]=-u[3],u[3]=0)}var w=a._parseDots(e);if(!w)return null;k=k.replace(/[\(\)\s,\xb0#]/g,"_"),b.gradient&&k!=b.gradient.id&&(p.defs.removeChild(b.gradient),delete b.gradient);if(!b.gradient){s=q(j+"Gradient",{id:k}),b.gradient=s,q(s,j=="radial"?{fx:m,fy:n}:{x1:u[0],y1:u[1],x2:u[2],y2:u[3],gradientTransform:b.matrix.invert()}),p.defs.appendChild(s);for(var x=0,y=w.length;x<y;x++)s.appendChild(q("stop",{offset:w[x].offset?w[x].offset:x?"100%":"0%","stop-color":w[x].color||"#fff"}))}}q(o,{fill:"url(#"+k+")",opacity:1,"fill-opacity":1}),r.fill=l,r.opacity=1,r.fillOpacity=1;return 1},s=function(a){var b=a.getBBox(1);q(a.pattern,{patternTransform:a.matrix.invert()+" translate("+b.x+","+b.y+")"})},t=function(d,e,f){if(d.type=="path"){var g=c(e).toLowerCase().split("-"),h=d.paper,i=f?"end":"start",j=d.node,k=d.attrs,m=k["stroke-width"],n=g.length,r="classic",s,t,u,v,w,x=3,y=3,z=5;while(n--)switch(g[n]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":r=g[n];break;case"wide":y=5;break;case"narrow":y=2;break;case"long":x=5;break;case"short":x=2}r=="open"?(x+=2,y+=2,z+=2,u=1,v=f?4:1,w={fill:"none",stroke:k.stroke}):(v=u=x/2,w={fill:k.stroke,stroke:"none"}),d._.arrows?f?(d._.arrows.endPath&&p[d._.arrows.endPath]--,d._.arrows.endMarker&&p[d._.arrows.endMarker]--):(d._.arrows.startPath&&p[d._.arrows.startPath]--,d._.arrows.startMarker&&p[d._.arrows.startMarker]--):d._.arrows={};if(r!="none"){var A="raphael-marker-"+r,B="raphael-marker-"+i+r+x+y;a._g.doc.getElementById(A)?p[A]++:(h.defs.appendChild(q(q("path"),{"stroke-linecap":"round",d:o[r],id:A})),p[A]=1);var C=a._g.doc.getElementById(B),D;C?(p[B]++,D=C.getElementsByTagName("use")[0]):(C=q(q("marker"),{id:B,markerHeight:y,markerWidth:x,orient:"auto",refX:v,refY:y/2}),D=q(q("use"),{"xlink:href":"#"+A,transform:(f?"rotate(180 "+x/2+" "+y/2+") ":l)+"scale("+x/z+","+y/z+")","stroke-width":(1/((x/z+y/z)/2)).toFixed(4)}),C.appendChild(D),h.defs.appendChild(C),p[B]=1),q(D,w);var F=u*(r!="diamond"&&r!="oval");f?(s=d._.arrows.startdx*m||0,t=a.getTotalLength(k.path)-F*m):(s=F*m,t=a.getTotalLength(k.path)-(d._.arrows.enddx*m||0)),w={},w["marker-"+i]="url(#"+B+")";if(t||s)w.d=Raphael.getSubpath(k.path,s,t);q(j,w),d._.arrows[i+"Path"]=A,d._.arrows[i+"Marker"]=B,d._.arrows[i+"dx"]=F,d._.arrows[i+"Type"]=r,d._.arrows[i+"String"]=e}else f?(s=d._.arrows.startdx*m||0,t=a.getTotalLength(k.path)-s):(s=0,t=a.getTotalLength(k.path)-(d._.arrows.enddx*m||0)),d._.arrows[i+"Path"]&&q(j,{d:Raphael.getSubpath(k.path,s,t)}),delete d._.arrows[i+"Path"],delete d._.arrows[i+"Marker"],delete d._.arrows[i+"dx"],delete d._.arrows[i+"Type"],delete d._.arrows[i+"String"];for(w in p)if(p[b](w)&&!p[w]){var G=a._g.doc.getElementById(w);G&&G.parentNode.removeChild(G)}}},u={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},v=function(a,b,d){b=u[c(b).toLowerCase()];if(b){var e=a.attrs["stroke-width"]||"1",f={round:e,square:e,butt:0}[a.attrs["stroke-linecap"]||d["stroke-linecap"]]||0,g=[],h=b.length;while(h--)g[h]=b[h]*e+(h%2?1:-1)*f;q(a.node,{"stroke-dasharray":g.join(",")})}},w=function(d,f){var i=d.node,k=d.attrs,m=i.style.visibility;i.style.visibility="hidden";for(var o in f)if(f[b](o)){if(!a._availableAttrs[b](o))continue;var p=f[o];k[o]=p;switch(o){case"blur":d.blur(p);break;case"href":case"title":case"target":var u=i.parentNode;if(u.tagName.toLowerCase()!="a"){var w=q("a");u.insertBefore(w,i),w.appendChild(i),u=w}o=="target"?u.setAttributeNS(n,"show",p=="blank"?"new":p):u.setAttributeNS(n,o,p);break;case"cursor":i.style.cursor=p;break;case"transform":d.transform(p);break;case"arrow-start":t(d,p);break;case"arrow-end":t(d,p,1);break;case"clip-rect":var x=c(p).split(j);if(x.length==4){d.clip&&d.clip.parentNode.parentNode.removeChild(d.clip.parentNode);var z=q("clipPath"),A=q("rect");z.id=a.createUUID(),q(A,{x:x[0],y:x[1],width:x[2],height:x[3]}),z.appendChild(A),d.paper.defs.appendChild(z),q(i,{"clip-path":"url(#"+z.id+")"}),d.clip=A}if(!p){var B=i.getAttribute("clip-path");if(B){var C=a._g.doc.getElementById(B.replace(/(^url\(#|\)$)/g,l));C&&C.parentNode.removeChild(C),q(i,{"clip-path":l}),delete d.clip}}break;case"path":d.type=="path"&&(q(i,{d:p?k.path=a._pathToAbsolute(p):"M0,0"}),d._.dirty=1,d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1)));break;case"width":i.setAttribute(o,p),d._.dirty=1;if(k.fx)o="x",p=k.x;else break;case"x":k.fx&&(p=-k.x-(k.width||0));case"rx":if(o=="rx"&&d.type=="rect")break;case"cx":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"height":i.setAttribute(o,p),d._.dirty=1;if(k.fy)o="y",p=k.y;else break;case"y":k.fy&&(p=-k.y-(k.height||0));case"ry":if(o=="ry"&&d.type=="rect")break;case"cy":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"r":d.type=="rect"?q(i,{rx:p,ry:p}):i.setAttribute(o,p),d._.dirty=1;break;case"src":d.type=="image"&&i.setAttributeNS(n,"href",p);break;case"stroke-width":if(d._.sx!=1||d._.sy!=1)p/=g(h(d._.sx),h(d._.sy))||1;d.paper._vbSize&&(p*=d.paper._vbSize),i.setAttribute(o,p),k["stroke-dasharray"]&&v(d,k["stroke-dasharray"],f),d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"stroke-dasharray":v(d,p,f);break;case"fill":var D=c(p).match(a._ISURL);if(D){z=q("pattern");var F=q("image");z.id=a.createUUID(),q(z,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1}),q(F,{x:0,y:0,"xlink:href":D[1]}),z.appendChild(F),function(b){a._preload(D[1],function(){var a=this.offsetWidth,c=this.offsetHeight;q(b,{width:a,height:c}),q(F,{width:a,height:c}),d.paper.safari()})}(z),d.paper.defs.appendChild(z),q(i,{fill:"url(#"+z.id+")"}),d.pattern=z,d.pattern&&s(d);break}var G=a.getRGB(p);if(!G.error)delete f.gradient,delete k.gradient,!a.is(k.opacity,"undefined")&&a.is(f.opacity,"undefined")&&q(i,{opacity:k.opacity}),!a.is(k["fill-opacity"],"undefined")&&a.is(f["fill-opacity"],"undefined")&&q(i,{"fill-opacity":k["fill-opacity"]});else if((d.type=="circle"||d.type=="ellipse"||c(p).charAt()!="r")&&r(d,p)){if("opacity"in k||"fill-opacity"in k){var H=a._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l));if(H){var I=H.getElementsByTagName("stop");q(I[I.length-1],{"stop-opacity":("opacity"in k?k.opacity:1)*("fill-opacity"in k?k["fill-opacity"]:1)})}}k.gradient=p,k.fill="none";break}G[b]("opacity")&&q(i,{"fill-opacity":G.opacity>1?G.opacity/100:G.opacity});case"stroke":G=a.getRGB(p),i.setAttribute(o,G.hex),o=="stroke"&&G[b]("opacity")&&q(i,{"stroke-opacity":G.opacity>1?G.opacity/100:G.opacity}),o=="stroke"&&d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"gradient":(d.type=="circle"||d.type=="ellipse"||c(p).charAt()!="r")&&r(d,p);break;case"opacity":k.gradient&&!k[b]("stroke-opacity")&&q(i,{"stroke-opacity":p>1?p/100:p});case"fill-opacity":if(k.gradient){H=a._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l)),H&&(I=H.getElementsByTagName("stop"),q(I[I.length-1],{"stop-opacity":p}));break};default:o=="font-size"&&(p=e(p,10)+"px");var J=o.replace(/(\-.)/g,function(a){return a.substring(1).toUpperCase()});i.style[J]=p,d._.dirty=1,i.setAttribute(o,p)}}y(d,f),i.style.visibility=m},x=1.2,y=function(d,f){if(d.type=="text"&&!!(f[b]("text")||f[b]("font")||f[b]("font-size")||f[b]("x")||f[b]("y"))){var g=d.attrs,h=d.node,i=h.firstChild?e(a._g.doc.defaultView.getComputedStyle(h.firstChild,l).getPropertyValue("font-size"),10):10;if(f[b]("text")){g.text=f.text;while(h.firstChild)h.removeChild(h.firstChild);var j=c(f.text).split("\n"),k=[],m;for(var n=0,o=j.length;n<o;n++)m=q("tspan"),n&&q(m,{dy:i*x,x:g.x}),m.appendChild(a._g.doc.createTextNode(j[n])),h.appendChild(m),k[n]=m}else{k=h.getElementsByTagName("tspan");for(n=0,o=k.length;n<o;n++)n?q(k[n],{dy:i*x,x:g.x}):q(k[0],{dy:0})}q(h,{x:g.x,y:g.y}),d._.dirty=1;var p=d._getBBox(),r=g.y-(p.y+p.height/2);r&&a.is(r,"finite")&&q(k[0],{dy:r})}},z=function(b,c){var d=0,e=0;this[0]=this.node=b,b.raphael=!0,this.id=a._oid++,b.raphaelid=this.id,this.matrix=a.matrix(),this.realPath=null,this.paper=c,this.attrs=this.attrs||{},this._={transform:[],sx:1,sy:1,deg:0,dx:0,dy:0,dirty:1},!c.bottom&&(c.bottom=this),this.prev=c.top,c.top&&(c.top.next=this),c.top=this,this.next=null},A=a.el;z.prototype=A,A.constructor=z,a._engine.path=function(a,b){var c=q("path");b.canvas&&b.canvas.appendChild(c);var d=new z(c,b);d.type="path",w(d,{fill:"none",stroke:"#000",path:a});return d},A.rotate=function(a,b,e){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1]),e=d(a[2])),a=d(a[0]),e==null&&(b=e);if(b==null||e==null){var f=this.getBBox(1);b=f.x+f.width/2,e=f.y+f.height/2}this.transform(this._.transform.concat([["r",a,b,e]]));return this},A.scale=function(a,b,e,f){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1]),e=d(a[2]),f=d(a[3])),a=d(a[0]),b==null&&(b=a),f==null&&(e=f);if(e==null||f==null)var g=this.getBBox(1);e=e==null?g.x+g.width/2:e,f=f==null?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,b,e,f]]));return this},A.translate=function(a,b){if(this.removed)return this;a=c(a).split(j),a.length-1&&(b=d(a[1])),a=d(a[0])||0,b=+b||0,this.transform(this._.transform.concat([["t",a,b]]));return this},A.transform=function(c){var d=this._;if(c==null)return d.transform;a._extractTransform(this,c),this.clip&&q(this.clip,{transform:this.matrix.invert()}),this.pattern&&s(this),this.node&&q(this.node,{transform:this.matrix});if(d.sx!=1||d.sy!=1){var e=this.attrs[b]("stroke-width")?this.attrs["stroke-width"]:1;this.attr({"stroke-width":e})}return this},A.hide=function(){!this.removed&&this.paper.safari(this.node.style.display="none");return this},A.show=function(){!this.removed&&this.paper.safari(this.node.style.display="");return this},A.remove=function(){if(!this.removed&&!!this.node.parentNode){var b=this.paper;b.__set__&&b.__set__.exclude(this),k.unbind("raphael.*.*."+this.id),this.gradient&&b.defs.removeChild(this.gradient),a._tear(this,b),this.node.parentNode.tagName.toLowerCase()=="a"?this.node.parentNode.parentNode.removeChild(this.node.parentNode):this.node.parentNode.removeChild(this.node);for(var c in this)this[c]=typeof this[c]=="function"?a._removedFactory(c):null;this.removed=!0}},A._getBBox=function(){if(this.node.style.display=="none"){this.show();var a=!0}var b={};try{b=this.node.getBBox()}catch(c){}finally{b=b||{}}a&&this.hide();return b},A.attr=function(c,d){if(this.removed)return this;if(c==null){var e={};for(var f in this.attrs)this.attrs[b](f)&&(e[f]=this.attrs[f]);e.gradient&&e.fill=="none"&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform;return e}if(d==null&&a.is(c,"string")){if(c=="fill"&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;if(c=="transform")return this._.transform;var g=c.split(j),h={};for(var i=0,l=g.length;i<l;i++)c=g[i],c in this.attrs?h[c]=this.attrs[c]:a.is(this.paper.customAttributes[c],"function")?h[c]=this.paper.customAttributes[c].def:h[c]=a._availableAttrs[c];return l-1?h:h[g[0]]}if(d==null&&a.is(c,"array")){h={};for(i=0,l=c.length;i<l;i++)h[c[i]]=this.attr(c[i]);return h}if(d!=null){var m={};m[c]=d}else c!=null&&a.is(c,"object")&&(m=c);for(var n in m)k("raphael.attr."+n+"."+this.id,this,m[n]);for(n in this.paper.customAttributes)if(this.paper.customAttributes[b](n)&&m[b](n)&&a.is(this.paper.customAttributes[n],"function")){var o=this.paper.customAttributes[n].apply(this,[].concat(m[n]));this.attrs[n]=m[n];for(var p in o)o[b](p)&&(m[p]=o[p])}w(this,m);return this},A.toFront=function(){if(this.removed)return this;this.node.parentNode.tagName.toLowerCase()=="a"?this.node.parentNode.parentNode.appendChild(this.node.parentNode):this.node.parentNode.appendChild(this.node);var b=this.paper;b.top!=this&&a._tofront(this,b);return this},A.toBack=function(){if(this.removed)return this;var b=this.node.parentNode;b.tagName.toLowerCase()=="a"?b.parentNode.insertBefore(this.node.parentNode,this.node.parentNode.parentNode.firstChild):b.firstChild!=this.node&&b.insertBefore(this.node,this.node.parentNode.firstChild),a._toback(this,this.paper);var c=this.paper;return this},A.insertAfter=function(b){if(this.removed)return this;var c=b.node||b[b.length-1].node;c.nextSibling?c.parentNode.insertBefore(this.node,c.nextSibling):c.parentNode.appendChild(this.node),a._insertafter(this,b,this.paper);return this},A.insertBefore=function(b){if(this.removed)return this;var c=b.node||b[0].node;c.parentNode.insertBefore(this.node,c),a._insertbefore(this,b,this.paper);return this},A.blur=function(b){var c=this;if(+b!==0){var d=q("filter"),e=q("feGaussianBlur");c.attrs.blur=b,d.id=a.createUUID(),q(e,{stdDeviation:+b||1.5}),d.appendChild(e),c.paper.defs.appendChild(d),c._blur=d,q(c.node,{filter:"url(#"+d.id+")"})}else c._blur&&(c._blur.parentNode.removeChild(c._blur),delete c._blur,delete c.attrs.blur),c.node.removeAttribute("filter")},a._engine.circle=function(a,b,c,d){var e=q("circle");a.canvas&&a.canvas.appendChild(e);var f=new z(e,a);f.attrs={cx:b,cy:c,r:d,fill:"none",stroke:"#000"},f.type="circle",q(e,f.attrs);return f},a._engine.rect=function(a,b,c,d,e,f){var g=q("rect");a.canvas&&a.canvas.appendChild(g);var h=new z(g,a);h.attrs={x:b,y:c,width:d,height:e,r:f||0,rx:f||0,ry:f||0,fill:"none",stroke:"#000"},h.type="rect",q(g,h.attrs);return h},a._engine.ellipse=function(a,b,c,d,e){var f=q("ellipse");a.canvas&&a.canvas.appendChild(f);var g=new z(f,a);g.attrs={cx:b,cy:c,rx:d,ry:e,fill:"none",stroke:"#000"},g.type="ellipse",q(f,g.attrs);return g},a._engine.image=function(a,b,c,d,e,f){var g=q("image");q(g,{x:c,y:d,width:e,height:f,preserveAspectRatio:"none"}),g.setAttributeNS(n,"href",b),a.canvas&&a.canvas.appendChild(g);var h=new z(g,a);h.attrs={x:c,y:d,width:e,height:f,src:b},h.type="image";return h},a._engine.text=function(b,c,d,e){var f=q("text");b.canvas&&b.canvas.appendChild(f);var g=new z(f,b);g.attrs={x:c,y:d,"text-anchor":"middle",text:e,font:a._availableAttrs.font,stroke:"none",fill:"#000"},g.type="text",w(g,g.attrs);return g},a._engine.setSize=function(a,b){this.width=a||this.width,this.height=b||this.height,this.canvas.setAttribute("width",this.width),this.canvas.setAttribute("height",this.height),this._viewBox&&this.setViewBox.apply(this,this._viewBox);return this},a._engine.create=function(){var b=a._getContainer.apply(0,arguments),c=b&&b.container,d=b.x,e=b.y,f=b.width,g=b.height;if(!c)throw new Error("SVG container not found.");var h=q("svg"),i="overflow:hidden;",j;d=d||0,e=e||0,f=f||512,g=g||342,q(h,{height:g,version:1.1,width:f,xmlns:"http://www.w3.org/2000/svg"}),c==1?(h.style.cssText=i+"position:absolute;left:"+d+"px;top:"+e+"px",a._g.doc.body.appendChild(h),j=1):(h.style.cssText=i+"position:relative",c.firstChild?c.insertBefore(h,c.firstChild):c.appendChild(h)),c=new a._Paper,c.width=f,c.height=g,c.canvas=h,c.clear(),c._left=c._top=0,j&&(c.renderfix=function(){}),c.renderfix();return c},a._engine.setViewBox=function(a,b,c,d,e){k("raphael.setViewBox",this,this._viewBox,[a,b,c,d,e]);var f=g(c/this.width,d/this.height),h=this.top,i=e?"meet":"xMinYMin",j,l;a==null?(this._vbSize&&(f=1),delete this._vbSize,j="0 0 "+this.width+m+this.height):(this._vbSize=f,j=a+m+b+m+c+m+d),q(this.canvas,{viewBox:j,preserveAspectRatio:i});while(f&&h)l="stroke-width"in h.attrs?h.attrs["stroke-width"]:1,h.attr({"stroke-width":l}),h._.dirty=1,h._.dirtyT=1,h=h.prev;this._viewBox=[a,b,c,d,!!e];return this},a.prototype.renderfix=function(){var a=this.canvas,b=a.style,c;try{c=a.getScreenCTM()||a.createSVGMatrix()}catch(d){c=a.createSVGMatrix()}var e=-c.e%1,f=-c.f%1;if(e||f)e&&(this._left=(this._left+e)%1,b.left=this._left+"px"),f&&(this._top=(this._top+f)%1,b.top=this._top+"px")},a.prototype.clear=function(){a.eve("raphael.clear",this);var b=this.canvas;while(b.firstChild)b.removeChild(b.firstChild);this.bottom=this.top=null,(this.desc=q("desc")).appendChild(a._g.doc.createTextNode("Created with Raphaël "+a.version)),b.appendChild(this.desc),b.appendChild(this.defs=q("defs"))},a.prototype.remove=function(){k("raphael.remove",this),this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null};var B=a.st;for(var C in A)A[b](C)&&!B[b](C)&&(B[C]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(C))}(window.Raphael),window.Raphael.vml&&function(a){var b="hasOwnProperty",c=String,d=parseFloat,e=Math,f=e.round,g=e.max,h=e.min,i=e.abs,j="fill",k=/[, ]+/,l=a.eve,m=" progid:DXImageTransform.Microsoft",n=" ",o="",p={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},q=/([clmz]),?([^clmz]*)/gi,r=/ progid:\S+Blur\([^\)]+\)/g,s=/-?[^,\s-]+/g,t="position:absolute;left:0;top:0;width:1px;height:1px",u=21600,v={path:1,rect:1,image:1},w={circle:1,ellipse:1},x=function(b){var d=/[ahqstv]/ig,e=a._pathToAbsolute;c(b).match(d)&&(e=a._path2curve),d=/[clmz]/g;if(e==a._pathToAbsolute&&!c(b).match(d)){var g=c(b).replace(q,function(a,b,c){var d=[],e=b.toLowerCase()=="m",g=p[b];c.replace(s,function(a){e&&d.length==2&&(g+=d+p[b=="m"?"l":"L"],d=[]),d.push(f(a*u))});return g+d});return g}var h=e(b),i,j;g=[];for(var k=0,l=h.length;k<l;k++){i=h[k],j=h[k][0].toLowerCase(),j=="z"&&(j="x");for(var m=1,r=i.length;m<r;m++)j+=f(i[m]*u)+(m!=r-1?",":o);g.push(j)}return g.join(n)},y=function(b,c,d){var e=a.matrix();e.rotate(-b,.5,.5);return{dx:e.x(c,d),dy:e.y(c,d)}},z=function(a,b,c,d,e,f){var g=a._,h=a.matrix,k=g.fillpos,l=a.node,m=l.style,o=1,p="",q,r=u/b,s=u/c;m.visibility="hidden";if(!!b&&!!c){l.coordsize=i(r)+n+i(s),m.rotation=f*(b*c<0?-1:1);if(f){var t=y(f,d,e);d=t.dx,e=t.dy}b<0&&(p+="x"),c<0&&(p+=" y")&&(o=-1),m.flip=p,l.coordorigin=d*-r+n+e*-s;if(k||g.fillsize){var v=l.getElementsByTagName(j);v=v&&v[0],l.removeChild(v),k&&(t=y(f,h.x(k[0],k[1]),h.y(k[0],k[1])),v.position=t.dx*o+n+t.dy*o),g.fillsize&&(v.size=g.fillsize[0]*i(b)+n+g.fillsize[1]*i(c)),l.appendChild(v)}m.visibility="visible"}};a.toString=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};var A=function(a,b,d){var e=c(b).toLowerCase().split("-"),f=d?"end":"start",g=e.length,h="classic",i="medium",j="medium";while(g--)switch(e[g]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":h=e[g];break;case"wide":case"narrow":j=e[g];break;case"long":case"short":i=e[g]}var k=a.node.getElementsByTagName("stroke")[0];k[f+"arrow"]=h,k[f+"arrowlength"]=i,k[f+"arrowwidth"]=j},B=function(e,i){e.attrs=e.attrs||{};var l=e.node,m=e.attrs,p=l.style,q,r=v[e.type]&&(i.x!=m.x||i.y!=m.y||i.width!=m.width||i.height!=m.height||i.cx!=m.cx||i.cy!=m.cy||i.rx!=m.rx||i.ry!=m.ry||i.r!=m.r),s=w[e.type]&&(m.cx!=i.cx||m.cy!=i.cy||m.r!=i.r||m.rx!=i.rx||m.ry!=i.ry),t=e;for(var y in i)i[b](y)&&(m[y]=i[y]);r&&(m.path=a._getPath[e.type](e),e._.dirty=1),i.href&&(l.href=i.href),i.title&&(l.title=i.title),i.target&&(l.target=i.target),i.cursor&&(p.cursor=i.cursor),"blur"in i&&e.blur(i.blur);if(i.path&&e.type=="path"||r)l.path=x(~c(m.path).toLowerCase().indexOf("r")?a._pathToAbsolute(m.path):m.path),e.type=="image"&&(e._.fillpos=[m.x,m.y],e._.fillsize=[m.width,m.height],z(e,1,1,0,0,0));"transform"in i&&e.transform(i.transform);if(s){var B=+m.cx,D=+m.cy,E=+m.rx||+m.r||0,G=+m.ry||+m.r||0;l.path=a.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",f((B-E)*u),f((D-G)*u),f((B+E)*u),f((D+G)*u),f(B*u))}if("clip-rect"in i){var H=c(i["clip-rect"]).split(k);if(H.length==4){H[2]=+H[2]+ +H[0],H[3]=+H[3]+ +H[1];var I=l.clipRect||a._g.doc.createElement("div"),J=I.style;J.clip=a.format("rect({1}px {2}px {3}px {0}px)",H),l.clipRect||(J.position="absolute",J.top=0,J.left=0,J.width=e.paper.width+"px",J.height=e.paper.height+"px",l.parentNode.insertBefore(I,l),I.appendChild(l),l.clipRect=I)}i["clip-rect"]||l.clipRect&&(l.clipRect.style.clip="auto")}if(e.textpath){var K=e.textpath.style;i.font&&(K.font=i.font),i["font-family"]&&(K.fontFamily='"'+i["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,o)+'"'),i["font-size"]&&(K.fontSize=i["font-size"]),i["font-weight"]&&(K.fontWeight=i["font-weight"]),i["font-style"]&&(K.fontStyle=i["font-style"])}"arrow-start"in i&&A(t,i["arrow-start"]),"arrow-end"in i&&A(t,i["arrow-end"],1);if(i.opacity!=null||i["stroke-width"]!=null||i.fill!=null||i.src!=null||i.stroke!=null||i["stroke-width"]!=null||i["stroke-opacity"]!=null||i["fill-opacity"]!=null||i["stroke-dasharray"]!=null||i["stroke-miterlimit"]!=null||i["stroke-linejoin"]!=null||i["stroke-linecap"]!=null){var L=l.getElementsByTagName(j),M=!1;L=L&&L[0],!L&&(M=L=F(j)),e.type=="image"&&i.src&&(L.src=i.src),i.fill&&(L.on=!0);if(L.on==null||i.fill=="none"||i.fill===null)L.on=!1;if(L.on&&i.fill){var N=c(i.fill).match(a._ISURL);if(N){L.parentNode==l&&l.removeChild(L),L.rotate=!0,L.src=N[1],L.type="tile";var O=e.getBBox(1);L.position=O.x+n+O.y,e._.fillpos=[O.x,O.y],a._preload(N[1],function(){e._.fillsize=[this.offsetWidth,this.offsetHeight]})}else L.color=a.getRGB(i.fill).hex,L.src=o,L.type="solid",a.getRGB(i.fill).error&&(t.type in{circle:1,ellipse:1}||c(i.fill).charAt()!="r")&&C(t,i.fill,L)&&(m.fill="none",m.gradient=i.fill,L.rotate=!1)}if("fill-opacity"in i||"opacity"in i){var P=((+m["fill-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+a.getRGB(i.fill).o+1||2)-1);P=h(g(P,0),1),L.opacity=P,L.src&&(L.color="none")}l.appendChild(L);var Q=l.getElementsByTagName("stroke")&&l.getElementsByTagName("stroke")[0],T=!1;!Q&&(T=Q=F("stroke"));if(i.stroke&&i.stroke!="none"||i["stroke-width"]||i["stroke-opacity"]!=null||i["stroke-dasharray"]||i["stroke-miterlimit"]||i["stroke-linejoin"]||i["stroke-linecap"])Q.on=!0;(i.stroke=="none"||i.stroke===null||Q.on==null||i.stroke==0||i["stroke-width"]==0)&&(Q.on=!1);var U=a.getRGB(i.stroke);Q.on&&i.stroke&&(Q.color=U.hex),P=((+m["stroke-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+U.o+1||2)-1);var V=(d(i["stroke-width"])||1)*.75;P=h(g(P,0),1),i["stroke-width"]==null&&(V=m["stroke-width"]),i["stroke-width"]&&(Q.weight=V),V&&V<1&&(P*=V)&&(Q.weight=1),Q.opacity=P,i["stroke-linejoin"]&&(Q.joinstyle=i["stroke-linejoin"]||"miter"),Q.miterlimit=i["stroke-miterlimit"]||8,i["stroke-linecap"]&&(Q.endcap=i["stroke-linecap"]=="butt"?"flat":i["stroke-linecap"]=="square"?"square":"round");if(i["stroke-dasharray"]){var W={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};Q.dashstyle=W[b](i["stroke-dasharray"])?W[i["stroke-dasharray"]]:o}T&&l.appendChild(Q)}if(t.type=="text"){t.paper.canvas.style.display=o;var X=t.paper.span,Y=100,Z=m.font&&m.font.match(/\d+(?:\.\d*)?(?=px)/);p=X.style,m.font&&(p.font=m.font),m["font-family"]&&(p.fontFamily=m["font-family"]),m["font-weight"]&&(p.fontWeight=m["font-weight"]),m["font-style"]&&(p.fontStyle=m["font-style"]),Z=d(m["font-size"]||Z&&Z[0])||10,p.fontSize=Z*Y+"px",t.textpath.string&&(X.innerHTML=c(t.textpath.string).replace(/</g,"<").replace(/&/g,"&").replace(/\n/g,"<br>"));var $=X.getBoundingClientRect();t.W=m.w=($.right-$.left)/Y,t.H=m.h=($.bottom-$.top)/Y,t.X=m.x,t.Y=m.y+t.H/2,("x"in i||"y"in i)&&(t.path.v=a.format("m{0},{1}l{2},{1}",f(m.x*u),f(m.y*u),f(m.x*u)+1));var _=["x","y","text","font","font-family","font-weight","font-style","font-size"];for(var ba=0,bb=_.length;ba<bb;ba++)if(_[ba]in i){t._.dirty=1;break}switch(m["text-anchor"]){case"start":t.textpath.style["v-text-align"]="left",t.bbx=t.W/2;break;case"end":t.textpath.style["v-text-align"]="right",t.bbx=-t.W/2;break;default:t.textpath.style["v-text-align"]="center",t.bbx=0}t.textpath.style["v-text-kern"]=!0}},C=function(b,f,g){b.attrs=b.attrs||{};var h=b.attrs,i=Math.pow,j,k,l="linear",m=".5 .5";b.attrs.gradient=f,f=c(f).replace(a._radial_gradient,function(a,b,c){l="radial",b&&c&&(b=d(b),c=d(c),i(b-.5,2)+i(c-.5,2)>.25&&(c=e.sqrt(.25-i(b-.5,2))*((c>.5)*2-1)+.5),m=b+n+c);return o}),f=f.split(/\s*\-\s*/);if(l=="linear"){var p=f.shift();p=-d(p);if(isNaN(p))return null}var q=a._parseDots(f);if(!q)return null;b=b.shape||b.node;if(q.length){b.removeChild(g),g.on=!0,g.method="none",g.color=q[0].color,g.color2=q[q.length-1].color;var r=[];for(var s=0,t=q.length;s<t;s++)q[s].offset&&r.push(q[s].offset+n+q[s].color);g.colors=r.length?r.join():"0% "+g.color,l=="radial"?(g.type="gradientTitle",g.focus="100%",g.focussize="0 0",g.focusposition=m,g.angle=0):(g.type="gradient",g.angle=(270-p)%360),b.appendChild(g)}return 1},D=function(b,c){this[0]=this.node=b,b.raphael=!0,this.id=a._oid++,b.raphaelid=this.id,this.X=0,this.Y=0,this.attrs={},this.paper=c,this.matrix=a.matrix(),this._={transform:[],sx:1,sy:1,dx:0,dy:0,deg:0,dirty:1,dirtyT:1},!c.bottom&&(c.bottom=this),this.prev=c.top,c.top&&(c.top.next=this),c.top=this,this.next=null},E=a.el;D.prototype=E,E.constructor=D,E.transform=function(b){if(b==null)return this._.transform;var d=this.paper._viewBoxShift,e=d?"s"+[d.scale,d.scale]+"-1-1t"+[d.dx,d.dy]:o,f;d&&(f=b=c(b).replace(/\.{3}|\u2026/g,this._.transform||o)),a._extractTransform(this,e+b);var g=this.matrix.clone(),h=this.skew,i=this.node,j,k=~c(this.attrs.fill).indexOf("-"),l=!c(this.attrs.fill).indexOf("url(");g.translate(-0.5,-0.5);if(l||k||this.type=="image"){h.matrix="1 0 0 1",h.offset="0 0",j=g.split();if(k&&j.noRotation||!j.isSimple){i.style.filter=g.toFilter();var m=this.getBBox(),p=this.getBBox(1),q=m.x-p.x,r=m.y-p.y;i.coordorigin=q*-u+n+r*-u,z(this,1,1,q,r,0)}else i.style.filter=o,z(this,j.scalex,j.scaley,j.dx,j.dy,j.rotate)}else i.style.filter=o,h.matrix=c(g),h.offset=g.offset();f&&(this._.transform=f);return this},E.rotate=function(a,b,e){if(this.removed)return this;if(a!=null){a=c(a).split(k),a.length-1&&(b=d(a[1]),e=d(a[2])),a=d(a[0]),e==null&&(b=e);if(b==null||e==null){var f=this.getBBox(1);b=f.x+f.width/2,e=f.y+f.height/2}this._.dirtyT=1,this.transform(this._.transform.concat([["r",a,b,e]]));return this}},E.translate=function(a,b){if(this.removed)return this;a=c(a).split(k),a.length-1&&(b=d(a[1])),a=d(a[0])||0,b=+b||0,this._.bbox&&(this._.bbox.x+=a,this._.bbox.y+=b),this.transform(this._.transform.concat([["t",a,b]]));return this},E.scale=function(a,b,e,f){if(this.removed)return this;a=c(a).split(k),a.length-1&&(b=d(a[1]),e=d(a[2]),f=d(a[3]),isNaN(e)&&(e=null),isNaN(f)&&(f=null)),a=d(a[0]),b==null&&(b=a),f==null&&(e=f);if(e==null||f==null)var g=this.getBBox(1);e=e==null?g.x+g.width/2:e,f=f==null?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,b,e,f]])),this._.dirtyT=1;return this},E.hide=function(){!this.removed&&(this.node.style.display="none");return this},E.show=function(){!this.removed&&(this.node.style.display=o);return this},E._getBBox=function(){if(this.removed)return{};return{x:this.X+(this.bbx||0)-this.W/2,y:this.Y-this.H,width:this.W,height:this.H}},E.remove=function(){if(!this.removed&&!!this.node.parentNode){this.paper.__set__&&this.paper.__set__.exclude(this),a.eve.unbind("raphael.*.*."+this.id),a._tear(this,this.paper),this.node.parentNode.removeChild(this.node),this.shape&&this.shape.parentNode.removeChild(this.shape);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null;this.removed=!0}},E.attr=function(c,d){if(this.removed)return this;if(c==null){var e={};for(var f in this.attrs)this.attrs[b](f)&&(e[f]=this.attrs[f]);e.gradient&&e.fill=="none"&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform;return e}if(d==null&&a.is(c,"string")){if(c==j&&this.attrs.fill=="none"&&this.attrs.gradient)return this.attrs.gradient;var g=c.split(k),h={};for(var i=0,m=g.length;i<m;i++)c=g[i],c in this.attrs?h[c]=this.attrs[c]:a.is(this.paper.customAttributes[c],"function")?h[c]=this.paper.customAttributes[c].def:h[c]=a._availableAttrs[c];return m-1?h:h[g[0]]}if(this.attrs&&d==null&&a.is(c,"array")){h={};for(i=0,m=c.length;i<m;i++)h[c[i]]=this.attr(c[i]);return h}var n;d!=null&&(n={},n[c]=d),d==null&&a.is(c,"object")&&(n=c);for(var o in n)l("raphael.attr."+o+"."+this.id,this,n[o]);if(n){for(o in this.paper.customAttributes)if(this.paper.customAttributes[b](o)&&n[b](o)&&a.is(this.paper.customAttributes[o],"function")){var p=this.paper.customAttributes[o].apply(this,[].concat(n[o]));this.attrs[o]=n[o];for(var q in p)p[b](q)&&(n[q]=p[q])}n.text&&this.type=="text"&&(this.textpath.string=n.text),B(this,n)}return this},E.toFront=function(){!this.removed&&this.node.parentNode.appendChild(this.node),this.paper&&this.paper.top!=this&&a._tofront(this,this.paper);return this},E.toBack=function(){if(this.removed)return this;this.node.parentNode.firstChild!=this.node&&(this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild),a._toback(this,this.paper));return this},E.insertAfter=function(b){if(this.removed)return this;b.constructor==a.st.constructor&&(b=b[b.length-1]),b.node.nextSibling?b.node.parentNode.insertBefore(this.node,b.node.nextSibling):b.node.parentNode.appendChild(this.node),a._insertafter(this,b,this.paper);return this},E.insertBefore=function(b){if(this.removed)return this;b.constructor==a.st.constructor&&(b=b[0]),b.node.parentNode.insertBefore(this.node,b.node),a._insertbefore(this,b,this.paper);return this},E.blur=function(b){var c=this.node.runtimeStyle,d=c.filter;d=d.replace(r,o),+b!==0?(this.attrs.blur=b,c.filter=d+n+m+".Blur(pixelradius="+(+b||1.5)+")",c.margin=a.format("-{0}px 0 0 -{0}px",f(+b||1.5))):(c.filter=d,c.margin=0,delete this.attrs.blur)},a._engine.path=function(a,b){var c=F("shape");c.style.cssText=t,c.coordsize=u+n+u,c.coordorigin=b.coordorigin;var d=new D(c,b),e={fill:"none",stroke:"#000"};a&&(e.path=a),d.type="path",d.path=[],d.Path=o,B(d,e),b.canvas.appendChild(c);var f=F("skew");f.on=!0,c.appendChild(f),d.skew=f,d.transform(o);return d},a._engine.rect=function(b,c,d,e,f,g){var h=a._rectPath(c,d,e,f,g),i=b.path(h),j=i.attrs;i.X=j.x=c,i.Y=j.y=d,i.W=j.width=e,i.H=j.height=f,j.r=g,j.path=h,i.type="rect";return i},a._engine.ellipse=function(a,b,c,d,e){var f=a.path(),g=f.attrs;f.X=b-d,f.Y=c-e,f.W=d*2,f.H=e*2,f.type="ellipse",B(f,{cx:b,cy:c,rx:d,ry:e});return f},a._engine.circle=function(a,b,c,d){var e=a.path(),f=e.attrs;e.X=b-d,e.Y=c-d,e.W=e.H=d*2,e.type="circle",B(e,{cx:b,cy:c,r:d});return e},a._engine.image=function(b,c,d,e,f,g){var h=a._rectPath(d,e,f,g),i=b.path(h).attr({stroke:"none"}),k=i.attrs,l=i.node,m=l.getElementsByTagName(j)[0];k.src=c,i.X=k.x=d,i.Y=k.y=e,i.W=k.width=f,i.H=k.height=g,k.path=h,i.type="image",m.parentNode==l&&l.removeChild(m),m.rotate=!0,m.src=c,m.type="tile",i._.fillpos=[d,e],i._.fillsize=[f,g],l.appendChild(m),z(i,1,1,0,0,0);return i},a._engine.text=function(b,d,e,g){var h=F("shape"),i=F("path"),j=F("textpath");d=d||0,e=e||0,g=g||"",i.v=a.format("m{0},{1}l{2},{1}",f(d*u),f(e*u),f(d*u)+1),i.textpathok=!0,j.string=c(g),j.on=!0,h.style.cssText=t,h.coordsize=u+n+u,h.coordorigin="0 0";var k=new D(h,b),l={fill:"#000",stroke:"none",font:a._availableAttrs.font,text:g};k.shape=h,k.path=i,k.textpath=j,k.type="text",k.attrs.text=c(g),k.attrs.x=d,k.attrs.y=e,k.attrs.w=1,k.attrs.h=1,B(k,l),h.appendChild(j),h.appendChild(i),b.canvas.appendChild(h);var m=F("skew");m.on=!0,h.appendChild(m),k.skew=m,k.transform(o);return k},a._engine.setSize=function(b,c){var d=this.canvas.style;this.width=b,this.height=c,b==+b&&(b+="px"),c==+c&&(c+="px"),d.width=b,d.height=c,d.clip="rect(0 "+b+" "+c+" 0)",this._viewBox&&a._engine.setViewBox.apply(this,this._viewBox);return this},a._engine.setViewBox=function(b,c,d,e,f){a.eve("raphael.setViewBox",this,this._viewBox,[b,c,d,e,f]);var h=this.width,i=this.height,j=1/g(d/h,e/i),k,l;f&&(k=i/e,l=h/d,d*k<h&&(b-=(h-d*k)/2/k),e*l<i&&(c-=(i-e*l)/2/l)),this._viewBox=[b,c,d,e,!!f],this._viewBoxShift={dx:-b,dy:-c,scale:j},this.forEach(function(a){a.transform("...")});return this};var F;a._engine.initWin=function(a){var b=a.document;b.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)");try{!b.namespaces.rvml&&b.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),F=function(a){return b.createElement("<rvml:"+a+' class="rvml">')}}catch(c){F=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},a._engine.initWin(a._g.win),a._engine.create=function(){var b=a._getContainer.apply(0,arguments),c=b.container,d=b.height,e,f=b.width,g=b.x,h=b.y;if(!c)throw new Error("VML container not found.");var i=new a._Paper,j=i.canvas=a._g.doc.createElement("div"),k=j.style;g=g||0,h=h||0,f=f||512,d=d||342,i.width=f,i.height=d,f==+f&&(f+="px"),d==+d&&(d+="px"),i.coordsize=u*1e3+n+u*1e3,i.coordorigin="0 0",i.span=a._g.doc.createElement("span"),i.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",j.appendChild(i.span),k.cssText=a.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",f,d),c==1?(a._g.doc.body.appendChild(j),k.left=g+"px",k.top=h+"px",k.position="absolute"):c.firstChild?c.insertBefore(j,c.firstChild):c.appendChild(j),i.renderfix=function(){};return i},a.prototype.clear=function(){a.eve("raphael.clear",this),this.canvas.innerHTML=o,this.span=a._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},a.prototype.remove=function(){a.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas);for(var b in this)this[b]=typeof this[b]=="function"?a._removedFactory(b):null;return!0};var G=a.st;for(var H in E)E[b](H)&&!G[b](H)&&(G[H]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(H))}(window.Raphael)
\ No newline at end of file
Binary file metadataplayer/libs/record_mic.swf has changed
--- a/metadataplayer/libs/renkan-publish.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1079 +0,0 @@
-/*
- * Copyright 2012 Institut de recherche et d'innovation
- * contributor(s) : Yves-Marie Haussonne, Raphael Velt, Samuel Huron
- *
- * contact@iri.centrepompidou.fr
- * http://www.iri.centrepompidou.fr
- *
- * This software is a computer program whose purpose is to show and add annotations on a video .
- * This software is governed by the CeCILL-C license under French law and
- * abiding by the rules of distribution of free software. You can use,
- * modify and/ or redistribute the software under the terms of the CeCILL-C
- * license as circulated by CEA, CNRS and INRIA at the following URL
- * "http://www.cecill.info".
- *
- * The fact that you are presently reading this means that you have had
- * knowledge of the CeCILL-C license and that you accept its terms.
-*/
-
-if (typeof Rkns !== "object") {
- Rkns = {}
-}
-
-Rkns.$ = jQuery;
-
-Rkns._ = _;
-
-Rkns.i18n = {
- en: {
- zoom_in: "Zoom In",
- zoom_out: "Zoom Out",
- see_in_project: 'See also <b>"{node}"</b> in <b>"{project}"</b>'
- }
-}
-
-Rkns.Utils = {
- inherit : function(_baseClass) {
- var _class = function() {
- _baseClass.apply(this, Array.prototype.slice.call(arguments, 0));
- if (typeof this._init == "function") {
- this._init.apply(this, Array.prototype.slice.call(arguments, 0));
- }
- }
- _class.prototype = new _baseClass();
- return _class;
- }
-}
-
-Rkns.Models = {};
-
-Rkns.Models.getUID = function(obj) {
- var guid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
- var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
- return v.toString(16);
- });
- return obj.type + "-" + guid;
-};
-
-Rkns.Models.RenkanModel = Backbone.RelationalModel.extend({
- idAttribute : "_id",
- constructor: function(options) {
-
- if (typeof options !== "undefined") {
- options._id = options._id || options.id || Rkns.Models.getUID(this);
- options.title = options.title || "(untitled " + this.type + ")";
- options.description = options.description || "";
- options.uri = options.uri || "";
-
- if(typeof this.prepare === "function") {
- options = this.prepare(options);
- }
- }
- Backbone.RelationalModel.prototype.constructor.call(this, options);
- },
- validate: function() {
- if(!this.type) {
- return "object has no type";
- }
- },
- addReference : function(_options, _propName, _list, _id, _default) {
- var _element = _list.get(_id);
- if (typeof _element === "undefined" && typeof _default !== "undefined") {
- _options[_propName ] = _default;
- }
- else {
- _options[_propName ] = _element;
- }
- }
-});
-
-// USER
-Rkns.Models.User = Rkns.Models.RenkanModel.extend({
- type: "user",
- prepare: function(options) {
- options.color = options.color || "#666666";
- return options;
- },
- toJSON: function() {
- return {
- id: this.get("_id"),
- title: this.get("title"),
- uri: this.get("uri"),
- description: this.get("description"),
- color: this.get("color"),
- }
- },
-});
-
-// NODE
-Rkns.Models.Node = Rkns.Models.RenkanModel.extend({
- type: "node",
- relations: [{
- type: Backbone.HasOne,
- key: "created_by",
- relatedModel: Rkns.Models.User
- }],
- prepare: function(options) {
- project = options.project;
- this.addReference(options, "created_by", project.get("users"), options.created_by, project.current_user);
- options.description = options.description || "";
- return options;
- },
- toJSON: function() {
- return {
- id: this.get("_id"),
- title: this.get("title"),
- uri: this.get("uri"),
- description: this.get("description"),
- position: this.get("position"),
- image: this.get("image"),
- created_by: this.get("created_by").get("_id")
- }
- },
-});
-
-// EDGE
-Rkns.Models.Edge = Rkns.Models.RenkanModel.extend({
- type: "edge",
- relations: [
- {
- type: Backbone.HasOne,
- key: "created_by",
- relatedModel: Rkns.Models.User
- },
- {
- type: Backbone.HasOne,
- key: "from",
- relatedModel: Rkns.Models.Node
- },
- {
- type: Backbone.HasOne,
- key: "to",
- relatedModel: Rkns.Models.Node
- },
- ],
- prepare: function(options) {
- project = options.project;
- this.addReference(options, "created_by", project.get("users"), options.created_by, project.current_user);
- this.addReference(options, "from", project.get("nodes"), options.from);
- this.addReference(options, "to", project.get("nodes"), options.to);
- return options;
- },
- toJSON: function() {
- return {
- id: this.get("_id"),
- title: this.get("title"),
- uri: this.get("uri"),
- description: this.get("description"),
- from: this.get("from").get("_id"),
- to: this.get("to").get("_id"),
- created_by: this.get("created_by").get("_id"),
- }
- },
-});
-
-// PROJECT
-Rkns.Models.Project = Rkns.Models.RenkanModel.extend({
- type: "project",
- relations: [
- {
- type: Backbone.HasMany,
- key: "users",
- relatedModel: Rkns.Models.User,
- reverseRelation: {
- key: 'project',
- includeInJSON: '_id'
- },
- },
- {
- type: Backbone.HasMany,
- key: "nodes",
- relatedModel: Rkns.Models.Node,
- reverseRelation: {
- key: 'project',
- includeInJSON: '_id'
- },
- },
- {
- type: Backbone.HasMany,
- key: "edges",
- relatedModel: Rkns.Models.Edge,
- reverseRelation: {
- key: 'project',
- includeInJSON: '_id'
- },
- }
- ],
- addUser: function(_props) {
- _props.project = this;
- var _user = new Rkns.Models.User(_props);
- this.get("users").push(_user);
- return _user;
- },
- addNode: function(_props) {
- _props.project = this;
- var _node = new Rkns.Models.Node(_props);
- this.get("nodes").push(_node);
- return _node;
- },
- addEdge: function(_props) {
- _props.project = this;
- var _edge = new Rkns.Models.Edge(_props);
- this.get("edges").push(_edge);
- return _edge;
- },
- removeNode: function(_model) {
- this.get("nodes").remove(_model);
- },
- removeEdge: function(_model) {
- this.get("edges").remove(_model);
- },
- validate: function(options) {
- var _project = this;
- Rkns._(options.users).each(function(_item) {
- _item.project = _project;
- });
- Rkns._(options.nodes).each(function(_item) {
- _item.project = _project;
- });
- Rkns._(options.edges).each(function(_item) {
- _item.project = _project;
- });
- },
- // Add event handler to remove edges when a node is removed
- initialize: function() {
- var _this = this;
- this.on("remove:nodes", function(_node) {
- _this.get("edges").remove(
- _this.get("edges").filter(function(_edge) {
- return _edge.get("from") == _node || _edge.get("to") == _node;
- })
- );
- });
- }
-});
-
-/* Point of entry */
-
-Rkns.Renkan = function(_opts) {
- if (typeof _opts.language !== "string" || typeof Rkns.i18n[_opts.language] == "undefined") {
- _opts.language = "en";
- }
- if (typeof _opts.container !== "string") {
- _opts.container = "renkan";
- }
- if (typeof _opts.search !== "object" || !_opts.search) {
- _opts.search = [];
- }
- this.projects = [];
- this.l10n = Rkns.i18n[_opts.language];
- this.$ = Rkns.$("#" + _opts.container);
- this.$.html(this.template());
- this.uris = {};
- this.active_project = null;
- this.renderer = null;
-}
-
-Rkns.Renkan.prototype.template = Rkns._.template(
- '<div class="Rk-Render"></div><ul class="Rk-Project-List"></ul>'
-);
-
-Rkns.Renkan.prototype.addProject = function(_opts) {
- var _proj = new Rkns.Models.Project(),
- _li = Rkns.$("<li>").addClass("Rk-Project").text("Untitled #" + (1+this.projects.length));
- this.$.find(".Rk-Project-List").append(_li);
- Rkns.loadJson(_proj, _opts);
- var _this = this;
- _li.click(function() {
- _this.renderProject(_proj);
- });
- _proj.on("change:title", function() {
- _li.html(_proj.get("title"));
- });
- _proj.on("select", function() {
- _this.$.find(".Rk-Project").removeClass("active");
- _li.addClass("active");
- });
- _proj.on("add:nodes", function(_node) {
- var _uri = _node.get("uri");
- if (_uri) {
- if (typeof _this.uris[_uri] === "undefined") {
- _this.uris[_uri] = [];
- }
- _this.uris[_uri].push(_node);
- }
- });
- this.projects.push(_proj);
- return _proj;
-}
-
-Rkns.Renkan.prototype.renderProject = function(_project) {
- if (_project) {
- if (this.renderer) {
- this.renderer.destroy();
- }
- this.active_project = _project;
- this.renderer = new Rkns.Renderer.Scene(this, _project);
- this.renderer.autoScale();
- _project.trigger("select");
- }
-}
-
-Rkns.Renkan.prototype.renderProjectAt = function(_index) {
- this.renderProject(this.projects[_index]);
-}
-
-Rkns.loadJson = function(_proj, _opts) {
- if (typeof _opts.http_method == "undefined") {
- _opts.http_method = 'PUT';
- }
- var _load = function() {
- Rkns.$.getJSON(_opts.url, function(_data) {
- _proj.set(_data);
- if (typeof _opts.callback === "function") {
- _opts.callback(_proj);
- }
- });
- }
- _load();
-}
-
-Rkns.Renderer = {
- _MARGIN_X: 80,
- _MARGIN_Y: 50,
- _MIN_DRAG_DISTANCE: 2,
- _NODE_RADIUS: 20,
- _NODE_FONT_SIZE: 10,
- _EDGE_FONT_SIZE: 9,
- _NODE_MAX_CHAR: 30,
- _EDGE_MAX_CHAR: 20,
- _ARROW_LENGTH: 16,
- _ARROW_WIDTH: 8,
- _TOOLTIP_ARROW_LENGTH : 15,
- _TOOLTIP_ARROW_WIDTH : 26,
- _TOOLTIP_MARGIN : 10,
- _TOOLTIP_PADDING : 8,
- _TOOLTIP_GRADIENT : new paper.Gradient(['#f0f0f0', '#d0d0d0'])
-}
-
-Rkns.Renderer.Utils = {
- shortenText : function(_text,_length) {
- var _rgxp = new RegExp('^(.{' + _length + '}).+$');
- return _text.replace(/(\n|\r|\r\n)/mg,' ').replace(_rgxp,'$1…');
- },
- drawTooltip : function(_coords, _path, _width, _xmargin, _selector) {
- _selector.css({
- width: (_width - 2* Rkns.Renderer._TOOLTIP_PADDING),
- });
- var _height = _selector.outerHeight() + 2* Rkns.Renderer._TOOLTIP_PADDING,
- _isLeft = (_coords.x < paper.view.center.x ? 1 : -1),
- _left = _coords.x + _isLeft * ( _xmargin + Rkns.Renderer._TOOLTIP_ARROW_LENGTH ),
- _right = _coords.x + _isLeft * ( _xmargin + Rkns.Renderer._TOOLTIP_ARROW_LENGTH + _width ),
- _top = _coords.y - _height / 2;
- if (_top < Rkns.Renderer._TOOLTIP_MARGIN) {
- _top = Math.min( Rkns.Renderer._TOOLTIP_MARGIN, _coords.y - Rkns.Renderer._TOOLTIP_ARROW_WIDTH / 2 );
- }
- var _bottom = _top + _height;
- if (_bottom > (paper.view.size.height - Rkns.Renderer._TOOLTIP_MARGIN)) {
- _bottom = Math.max( paper.view.size.height - Rkns.Renderer._TOOLTIP_MARGIN, _coords.y + Rkns.Renderer._TOOLTIP_ARROW_WIDTH / 2 );
- _top = _bottom - _height;
- }
- _path.segments[0].point
- = _path.segments[7].point
- = _coords.add([_isLeft * _xmargin, 0]);
- _path.segments[1].point.x
- = _path.segments[2].point.x
- = _path.segments[5].point.x
- = _path.segments[6].point.x
- = _left;
- _path.segments[3].point.x
- = _path.segments[4].point.x
- = _right;
- _path.segments[2].point.y
- = _path.segments[3].point.y
- = _top;
- _path.segments[4].point.y
- = _path.segments[5].point.y
- = _bottom;
- _path.segments[1].point.y = _coords.y - Rkns.Renderer._TOOLTIP_ARROW_WIDTH / 2;
- _path.segments[6].point.y = _coords.y + Rkns.Renderer._TOOLTIP_ARROW_WIDTH / 2;
- _path.closed = true;
- _path.fillColor = new paper.GradientColor(Rkns.Renderer._TOOLTIP_GRADIENT, [0,_top], [0, _bottom]);
- _selector.css({
- left: (Rkns.Renderer._TOOLTIP_PADDING + Math.min(_left, _right)),
- top: (Rkns.Renderer._TOOLTIP_PADDING + _top)
- });
- }
-}
-
-Rkns.Renderer._BaseRepresentation = function(_renderer, _model) {
- if (typeof _renderer !== "undefined") {
- this.renderer = _renderer;
- this.project = _renderer.project;
- this.model = _model;
- if (this.model) {
- var _this = this;
- this._selectBinding = function() {
- _this.select();
- };
- this._unselectBinding = function() {
- _this.unselect();
- }
- this._changeBinding = function() {
- _this.redraw();
- }
- this._removeBinding = function() {
- _renderer.removeRepresentation(_this);
- _renderer.redraw();
- }
- this.model.on("change", this._changeBinding );
- this.model.on("remove", this._removeBinding );
- this.model.on("select", this._selectBinding );
- this.model.on("unselect", this._unselectBinding );
- }
- }
-}
-
-Rkns.Renderer._BaseRepresentation.prototype.super = function(_func) {
- Rkns.Renderer._BaseRepresentation.prototype[_func].apply(this, Array.prototype.slice.call(arguments, 1));
-}
-
-Rkns.Renderer._BaseRepresentation.prototype.select = function() {}
-
-Rkns.Renderer._BaseRepresentation.prototype.unselect = function() {}
-
-Rkns.Renderer._BaseRepresentation.prototype.mouseup = function() {}
-
-Rkns.Renderer._BaseRepresentation.prototype.destroy = function() {
- if (this.model) {
- this.model.off("change", this._changeBinding );
- this.model.off("remove", this._removeBinding );
- this.model.off("select", this._selectBinding);
- this.model.off("unselect", this._unselectBinding);
- }
-}
-
-Rkns.Renderer.Node = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation);
-
-Rkns.Renderer.Node.prototype._init = function() {
- this.renderer.node_layer.activate();
- this.type = "Node";
- this.circle = new paper.Path.Circle([0, 0], Rkns.Renderer._NODE_RADIUS);
- this.circle.fillColor = '#ffffff';
- this.circle.__representation = this;
- this.title = new paper.PointText([0,0]);
- this.title.characterStyle = {
- fontSize: Rkns.Renderer._NODE_FONT_SIZE,
- fillColor: 'black'
- };
- this.title.paragraphStyle.justification = 'center';
- this.title.__representation = this;
- this.model_coords = new paper.Point(this.model.get("position"));
-}
-
-Rkns.Renderer.Node.prototype.redraw = function() {
- this.paper_coords = this.renderer.toPaperCoords(this.model_coords);
- this.circle.position = this.paper_coords;
- this.title.content = Rkns.Renderer.Utils.shortenText(this.model.get("title"), Rkns.Renderer._NODE_MAX_CHAR);
- this.title.position = this.paper_coords.add([0, 2 * Rkns.Renderer._NODE_RADIUS]);
- this.circle.strokeColor = this.model.get("created_by").get("color");
- var _img = this.model.get("image");
- if (_img && _img !== this.img) {
- var _image = new Image(),
- _this = this;
- _image.onload = function() {
- if (_this.node_image) {
- _this.node_image.remove();
- }
- _this.renderer.node_layer.activate();
- var _ratio = Math.min(1, 2 * Rkns.Renderer._NODE_RADIUS / _image.width, 2 * Rkns.Renderer._NODE_RADIUS / _image.height );
- var _raster = new paper.Raster(_image);
- var _clip = new paper.Path.Circle([0, 0], Rkns.Renderer._NODE_RADIUS);
- _raster.scale(_ratio);
- _this.node_image = new paper.Group(_clip, _raster);
- _this.node_image.opacity = _this.selected ? .5 : .9;
- /* This is a workaround to allow clipping at group level */
- _this.node_image.clipped = true;
- _this.node_image.position = _this.paper_coords;
- _this.node_image.__representation = _this;
- paper.view.draw();
- }
- _image.src = _img;
- }
- this.img = _img;
- if (this.node_image) {
- if (!this.img) {
- this.node_image.remove();
- delete this.node_image;
- } else {
- this.node_image.position = this.paper_coords;
- }
- }
-}
-
-Rkns.Renderer.Node.prototype.paperShift = function(_delta) {
- this.paper_coords = this.paper_coords.add(_delta);
- this.model_coords = this.renderer.toModelCoords(this.paper_coords);
- this.renderer.redraw();
-}
-
-Rkns.Renderer.Node.prototype.openTooltip = function() {
- this.renderer.removeRepresentationsOfType("tooltip");
- var _tooltip = this.renderer.addRepresentation("NodeTooltip",null);
- _tooltip.node_representation = this;
- _tooltip.draw();
-}
-
-Rkns.Renderer.Node.prototype.select = function() {
- this.selected = true;
- this.circle.strokeWidth = 3;
- this.openTooltip();
- this.circle.fillColor = "#ffff80";
- if (this.node_image) {
- this.node_image.opacity = .5;
- }
- paper.view.draw();
-}
-
-Rkns.Renderer.Node.prototype.unselect = function() {
- this.selected = false;
- this.circle.strokeWidth = 1;
- this.circle.fillColor = "#ffffff";
- if (this.node_image) {
- this.node_image.opacity = .9;
- }
- paper.view.draw();
-}
-
-Rkns.Renderer.Node.prototype.mouseup = function(_event) {
-}
-
-Rkns.Renderer.Node.prototype.destroy = function(_event) {
- this.super("destroy");
- this.circle.remove();
- this.title.remove();
- if (this.node_image) {
- this.node_image.remove();
- }
-}
-
-/* */
-
-Rkns.Renderer.Edge = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation);
-
-Rkns.Renderer.Edge.prototype._init = function() {
- this.renderer.edge_layer.activate();
- this.type = "Edge";
- this.from_representation = this.renderer.getRepresentationByModel(this.model.get("from"));
- this.to_representation = this.renderer.getRepresentationByModel(this.model.get("to"));
- this.bundle = this.renderer.addToBundles(this);
- this.line = new paper.Path();
- this.line.add([0,0],[0,0],[0,0]);
- this.line.__representation = this;
- this.arrow = new paper.Path();
- this.arrow.add([0,0],[Rkns.Renderer._ARROW_LENGTH,Rkns.Renderer._ARROW_WIDTH / 2],[0,Rkns.Renderer._ARROW_WIDTH]);
- this.arrow.__representation = this;
- this.text = new paper.PointText();
- this.text.characterStyle = {
- fontSize: Rkns.Renderer._EDGE_FONT_SIZE,
- fillColor: 'black'
- };
- this.text.paragraphStyle.justification = 'center';
- this.text.__representation = this;
- this.text_angle = 0;
- this.arrow_angle = 0;
-}
-
-Rkns.Renderer.Edge.prototype.redraw = function() {
- var _p0a = this.from_representation.paper_coords,
- _p1a = this.to_representation.paper_coords,
- _v = _p1a.subtract(_p0a),
- _r = _v.length,
- _u = _v.divide(_r),
- _group_pos = this.bundle.getPosition(this),
- _delta = new paper.Point([- _u.y, _u.x]).multiply( 12 * _group_pos ),
- _p0b = _p0a.add(_delta), /* Adding a 4 px difference */
- _p1b = _p1a.add(_delta), /* to differentiate inbound and outbound links */
- _a = _v.angle,
- _handle = _v.divide(3),
- _color = this.model.get("created_by").get("color");
- this.paper_coords = _p0b.add(_p1b).divide(2);
- this.line.strokeColor = _color;
- this.line.segments[0].point = _p0a;
- this.line.segments[1].point = this.paper_coords;
- this.line.segments[1].handleIn = _handle.multiply(-1);
- this.line.segments[1].handleOut = _handle;
- this.line.segments[2].point = _p1a;
- this.arrow.rotate(_a - this.arrow_angle);
- this.arrow.fillColor = _color;
- this.arrow.position = this.paper_coords.subtract(_u.multiply(4));
- this.arrow_angle = _a;
- if (_a > 90) {
- _a -= 180;
- }
- if (_a < -90) {
- _a += 180;
- }
- this.text.rotate(_a - this.text_angle);
- this.text.content = Rkns.Renderer.Utils.shortenText(this.model.get("title"), Rkns.Renderer._EDGE_MAX_CHAR);
- this.text.position = this.paper_coords;
- this.text_angle = _a;
-}
-
-Rkns.Renderer.Edge.prototype.openTooltip = function() {
- this.renderer.removeRepresentationsOfType("tooltip");
- var _tooltip = this.renderer.addRepresentation("EdgeTooltip",null);
- _tooltip.edge_representation = this;
- _tooltip.draw();
-}
-
-Rkns.Renderer.Edge.prototype.select = function() {
- this.line.strokeWidth = 3;
- this.openTooltip();
- paper.view.draw();
-}
-
-Rkns.Renderer.Edge.prototype.unselect = function() {
- this.line.strokeWidth = 1;
- paper.view.draw();
-}
-
-Rkns.Renderer.Edge.prototype.mouseup = function(_event) {
-}
-
-Rkns.Renderer.Edge.prototype.paperShift = function(_delta) {
- this.from_representation.paperShift(_delta);
- this.to_representation.paperShift(_delta);
- this.renderer.redraw();
-}
-
-Rkns.Renderer.Edge.prototype.destroy = function() {
- this.super("destroy");
- this.line.remove();
- this.arrow.remove();
- this.text.remove();
- var _this = this;
- this.bundle.edges = Rkns._(this.bundle.edges).reject(function(_edge) {
- return _edge === _this;
- });
-}
-
-/* */
-
-Rkns.Renderer.NodeTooltip = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation);
-
-Rkns.Renderer.NodeTooltip.prototype._init = function() {
- this.renderer.overlay_layer.activate();
- this.type = "tooltip";
- this.tooltip_block = new paper.Path();
- var _pts = Rkns._(Rkns._.range(8)).map(function() {return [0,0]});
- this.tooltip_block.add.apply(this.tooltip_block, _pts);
- this.tooltip_block.strokeWidth = 2;
- this.tooltip_block.strokeColor = "#999999";
- this.tooltip_block.fillColor = "#e0e0e0";
- this.tooltip_block.opacity = .8;
- this.tooltip_$ = Rkns.$('<div>')
- .appendTo(this.renderer.tooltip_$)
- .css({
- position: "absolute",
- opacity: .8
- })
- .hide();
-}
-
-Rkns.Renderer.NodeTooltip.prototype.template = Rkns._.template(
- '<h2><span class="Rk-CloseX">×</span><%=a%></h2>'
- + '<p><%-description%></p>'
- + '<ul class="Rk-Related-List"></ul>'
-);
-
-Rkns.Renderer.NodeTooltip.prototype.draw = function() {
- var _model = this.node_representation.model,
- _title = _model.get("title"),
- _uri = _model.get("uri");
- this.tooltip_$
- .html(this.template({
- a: (_uri ? '<a href="' + _uri + '" target="_blank">' : '' ) + _title + (_uri ? '</a>' : '' ),
- description: _model.get("description").replace(/(\n|\r|\r\n)/mg,' ').substr(0,180).replace(/(^.{150,179})[\s].+$/m,'$1…')
- }))
- var _this = this,
- _renkan = this.renderer.renkan,
- _uris = _renkan.uris[_uri];
- Rkns._(_uris).each(function(_othernode) {
- if (_othernode !== _model && _othernode.get("project") !== _this.project) {
- var _otherproj = _othernode.get("project"),
- _nodetitle = _othernode.get("title") || "Untitled node"
- _projtitle = _otherproj.get("title") || "Untitled node",
- _html = _renkan.l10n.see_in_project.replace('{node}',Rkns._.escape(_nodetitle)).replace('{project}',Rkns._.escape(_projtitle)),
- _li = Rkns.$("<li>").addClass("Rk-Related").html(_html);
- _li.click(function() {
- _renkan.renderProject(_otherproj);
- Rkns._.defer(function() {
- _othernode.trigger("select");
- });
- });
- _this.tooltip_$.append(_li);
- }
- });
- this.tooltip_$.find(".Rk-CloseX").click(function() {
- _this.renderer.removeRepresentation(_this);
- paper.view.draw();
- });
- this.redraw();
-}
-
-Rkns.Renderer.NodeTooltip.prototype.redraw = function() {
- var _coords = this.node_representation.paper_coords;
- Rkns.Renderer.Utils.drawTooltip(_coords, this.tooltip_block, 250, 15, this.tooltip_$);
- this.tooltip_$.show();
-}
-
-Rkns.Renderer.NodeTooltip.prototype.destroy = function() {
- this.tooltip_block.remove();
- this.tooltip_$.detach();
-}
-
-/* */
-
-Rkns.Renderer.EdgeTooltip = Rkns.Utils.inherit(Rkns.Renderer._BaseRepresentation);
-
-Rkns.Renderer.EdgeTooltip.prototype._init = function() {
- this.renderer.overlay_layer.activate();
- this.type = "tooltip";
- this.tooltip_block = new paper.Path();
- var _pts = Rkns._(Rkns._.range(8)).map(function() {return [0,0]});
- this.tooltip_block.add.apply(this.tooltip_block, _pts);
- this.tooltip_block.strokeWidth = 2;
- this.tooltip_block.strokeColor = "#999999";
- this.tooltip_block.fillColor = "#e0e0e0";
- this.tooltip_block.opacity = .8;
- this.tooltip_$ = Rkns.$('<div>')
- .appendTo(this.renderer.tooltip_$)
- .css({
- position: "absolute",
- opacity: .8
- })
- .hide();
-}
-
-Rkns.Renderer.EdgeTooltip.prototype.template = Rkns._.template(
- '<h2><span class="Rk-CloseX">×</span><%=a%></h2>'
- + '<p><%-description%></p>'
-);
-
-Rkns.Renderer.EdgeTooltip.prototype.draw = function() {
- var _model = this.edge_representation.model,
- _title = _model.get("title"),
- _uri = _model.get("uri");
- this.tooltip_$
- .html(this.template({
- a: (_uri ? '<a href="' + _uri + '" target="_blank">' : '' ) + _title + (_uri ? '</a>' : '' ),
- description: _model.get("description").replace(/(\n|\r|\r\n)/mg,' ').substr(0,180).replace(/(^.{150,179})[\s].+$/m,'$1…')
- }));
- this.redraw();
- var _this = this;
- this.tooltip_$.find(".Rk-CloseX").click(function() {
- _this.renderer.removeRepresentation(_this);
- paper.view.draw();
- });
-}
-
-Rkns.Renderer.EdgeTooltip.prototype.redraw = function() {
- var _coords = this.edge_representation.paper_coords;
- Rkns.Renderer.Utils.drawTooltip(_coords, this.tooltip_block, 250, 5, this.tooltip_$);
- this.tooltip_$.show();
- paper.view.draw();
-}
-
-Rkns.Renderer.EdgeTooltip.prototype.destroy = function() {
- this.tooltip_block.remove();
- this.tooltip_$.detach();
-}
-
-/* */
-
-Rkns.Renderer.Scene = function(_renkan, _project) {
- this.renkan = _renkan;
- this.project = _project;
- this.$ = Rkns.$(".Rk-Render");
- this.representations = [];
- this.$.html(this.template({
- width: this.$.width(),
- height: this.$.height(),
- l10n: _renkan.l10n
- }))
- this.canvas_$ = this.$.find(".Rk-Canvas");
- this.tooltip_$ = this.$.find(".Rk-Editor");
- paper.setup(this.canvas_$[0]);
- this.scale = 1;
- this.offset = paper.view.center;
- this.totalScroll = 0;
- this.click_target = null;
- this.selected_target = null;
- this.edge_layer = new paper.Layer();
- this.node_layer = new paper.Layer();
- this.overlay_layer = new paper.Layer();
- this.bundles = [];
- var _tool = new paper.Tool(),
- _this = this;
- _tool.minDistance = Rkns.Renderer._MIN_DRAG_DISTANCE;
- _tool.onMouseMove = function(_event) {
- _this.onMouseMove(_event);
- }
- _tool.onMouseDown = function(_event) {
- _this.onMouseDown(_event);
- }
- _tool.onMouseDrag = function(_event) {
- _this.onMouseDrag(_event);
- }
- this.canvas_$.mouseup(function(_event) {
- _this.onMouseUp(_event);
- });
- this.canvas_$.mousewheel(function(_event, _delta) {
- _this.onScroll(_event, _delta);
- });
- this.tooltip_$.find(".Rk-ZoomOut").click(function() {
- _this.offset = new paper.Point([
- _this.canvas_$.width(),
- _this.canvas_$.height()
- ]).multiply( .5 * ( 1 - Math.SQRT1_2 ) ).add(_this.offset.multiply( Math.SQRT1_2 ));
- _this.scale *= Math.SQRT1_2;
- _this.redraw();
- });
- this.tooltip_$.find(".Rk-ZoomIn").click(function() {
- _this.offset = new paper.Point([
- _this.canvas_$.width(),
- _this.canvas_$.height()
- ]).multiply( .5 * ( 1 - Math.SQRT2 ) ).add(_this.offset.multiply( Math.SQRT2 ));
- _this.scale *= Math.SQRT2;
- _this.redraw();
- });
- paper.view.onResize = function(_event) {
- _this.offset = _this.offset.add(_event.delta.divide(2));
- _this.redraw();
- }
-
- var _thRedraw = Rkns._.throttle(function() {
- _this.redraw();
- },50);
-
- this.addRepresentations("Node", this.project.get("nodes"));
- this.addRepresentations("Edge", this.project.get("edges"));
-
- this._addNodesBinding = function(_node) {
- _this.addRepresentation("Node", _node);
- _thRedraw();
- }
- this._addEdgesBinding = function(_edge) {
- _this.addRepresentation("Edge", _edge);
- _thRedraw();
- }
-
- this.project.on("add:nodes", this._addNodesBinding );
- this.project.on("add:edges", this._addEdgesBinding );
- this.redraw();
-}
-
-Rkns.Renderer.Scene.prototype.template = Rkns._.template(
- '<canvas class="Rk-Canvas" width="<%-width%>" height="<%-height%>"></canvas><div class="Rk-Editor">'
- + '<div class="Rk-ZoomButtons"><div class="Rk-ZoomIn" title="<%-l10n.zoom_in%>"></div><div class="Rk-ZoomOut" title="<%-l10n.zoom_out%>"></div></div>'
- + '</div>'
-);
-
-Rkns.Renderer.Scene.prototype.addToBundles = function(_edgeRepr) {
- var _bundle = Rkns._(this.bundles).find(function(_bundle) {
- return (
- ( _bundle.from === _edgeRepr.from_representation && _bundle.to === _edgeRepr.to_representation )
- || ( _bundle.from === _edgeRepr.to_representation && _bundle.to === _edgeRepr.from_representation )
- );
- });
- if (typeof _bundle !== "undefined") {
- _bundle.edges.push(_edgeRepr)
- } else {
- _bundle = {
- from: _edgeRepr.from_representation,
- to: _edgeRepr.to_representation,
- edges: [ _edgeRepr ],
- getPosition: function(_er) {
- var _dir = (_er.from_representation === this.from) ? 1 : -1;
- return _dir * ( Rkns._(this.edges).indexOf(_er) - (this.edges.length - 1) / 2 );
- }
- }
- this.bundles.push(_bundle);
- }
- return _bundle;
-}
-
-Rkns.Renderer.Scene.prototype.autoScale = function() {
- if (this.project.get("nodes").length) {
- var _xx = this.project.get("nodes").map(function(_node) { return _node.get("position").x }),
- _yy = this.project.get("nodes").map(function(_node) { return _node.get("position").y }),
- _minx = Math.min.apply(Math, _xx),
- _miny = Math.min.apply(Math, _yy),
- _maxx = Math.max.apply(Math, _xx),
- _maxy = Math.max.apply(Math, _yy);
- this.scale = Math.min((paper.view.size.width - 2 * Rkns.Renderer._MARGIN_X) / (_maxx - _minx), (paper.view.size.height - 2 * Rkns.Renderer._MARGIN_Y) / (_maxy - _miny));
- this.offset = paper.view.center.subtract(new paper.Point([(_maxx + _minx) / 2, (_maxy + _miny) / 2]).multiply(this.scale));
- this.redraw();
- }
-}
-
-Rkns.Renderer.Scene.prototype.toPaperCoords = function(_point) {
- return _point.multiply(this.scale).add(this.offset);
-}
-
-
-Rkns.Renderer.Scene.prototype.toModelCoords = function(_point) {
- return _point.subtract(this.offset).divide(this.scale);
-}
-
-Rkns.Renderer.Scene.prototype.addRepresentation = function(_type, _model) {
- var _repr = new Rkns.Renderer[_type](this, _model);
- this.representations.push(_repr);
- return _repr;
-}
-
-Rkns.Renderer.Scene.prototype.addRepresentations = function(_type, _collection) {
- var _this = this;
- _collection.forEach(function(_model) {
- _this.addRepresentation(_type, _model);
- });
-}
-
-Rkns.Renderer.Scene.prototype.removeRepresentation = function(_representation) {
- _representation.destroy();
- this.representations = Rkns._(this.representations).reject(
- function(_repr) {
- return _repr == _representation
- }
- );
-}
-
-Rkns.Renderer.Scene.prototype.getRepresentationByModel = function(_model) {
- return Rkns._(this.representations).find(function(_repr) {
- return _repr.model === _model;
- });
-}
-
-Rkns.Renderer.Scene.prototype.removeRepresentationsOfType = function(_type) {
- var _representations = Rkns._(this.representations).filter(function(_repr) {
- return _repr.type == _type;
- }),
- _this = this;
- Rkns._(_representations).each(function(_repr) {
- _this.removeRepresentation(_repr);
- });
-}
-
-Rkns.Renderer.Scene.prototype.unselectAll = function() {
- Rkns._(this.representations).each(function(_repr) {
- _repr.model.trigger("unselect");
- });
-}
-
-Rkns.Renderer.Scene.prototype.redraw = function() {
- Rkns._(this.representations).each(function(_representation) {
- _representation.redraw();
- });
- paper.view.draw();
-}
-
-Rkns.Renderer.Scene.prototype.addTempEdge = function(_from, _point) {
- var _tmpEdge = this.addRepresentation("TempEdge",null);
- _tmpEdge.end_pos = _point;
- _tmpEdge.from_representation = _from;
- _tmpEdge.redraw();
- this.click_target = _tmpEdge;
-}
-
-Rkns.Renderer.Scene.prototype.findTarget = function(_hitResult) {
- if (_hitResult && typeof _hitResult.item.__representation !== "undefined") {
- var _newTarget = _hitResult.item.__representation;
- if (this.selected_target !== _newTarget && _newTarget.model) {
- if (this.selected_target) {
- this.selected_target.model.trigger("unselect");
- }
- _newTarget.model.trigger("select");
- this.selected_target = _newTarget;
- }
- } else {
- if (!_hitResult) {
- this.removeRepresentationsOfType("tooltip");
- }
- if (this.selected_target) {
- this.selected_target.model.trigger("unselect");
- }
- this.selected_target = null;
- }
-}
-
-Rkns.Renderer.Scene.prototype.onMouseMove = function(_event) {
- var _hitResult = paper.project.hitTest(_event.point);
- if (this.is_dragging) {
- if (this.click_target && typeof this.click_target.paperShift === "function") {
- this.click_target.paperShift(_event.delta);
- } else {
- this.offset = this.offset.add(_event.delta);
- this.redraw();
- }
- } else {
- this.findTarget(_hitResult);
- }
-}
-
-Rkns.Renderer.Scene.prototype.onMouseDown = function(_event) {
- this.is_dragging = false;
- var _hitResult = paper.project.hitTest(_event.point);
- if (_hitResult && typeof _hitResult.item.__representation !== "undefined") {
- this.click_target = _hitResult.item.__representation;
- } else {
- this.click_target = null;
- }
-}
-
-Rkns.Renderer.Scene.prototype.onMouseDrag = function(_event) {
- this.is_dragging = true;
- this.onMouseMove(_event);
-}
-
-Rkns.Renderer.Scene.prototype.onMouseUp = function(_event) {
- if (this.click_target) {
- var _off = this.canvas_$.offset();
- if (this.click_target.model) {
- this.click_target.model.trigger("click");
- }
- }
- this.is_dragging = false;
- this.click_target = null;
-}
-
-Rkns.Renderer.Scene.prototype.onScroll = function(_event, _scrolldelta) {
- this.totalScroll += _scrolldelta;
- if (Math.abs(this.totalScroll) >= 1) {
- var _off = this.canvas_$.offset(),
- _delta = new paper.Point([
- _event.pageX - _off.left,
- _event.pageY - _off.top
- ]).subtract(this.offset).multiply( Math.SQRT2 - 1 );
- if (this.totalScroll > 0) {
- this.offset = this.offset.subtract(_delta);
- this.scale *= Math.SQRT2;
- } else {
- this.offset = this.offset.add(_delta.divide( Math.SQRT2 ));
- this.scale *= Math.SQRT1_2;
- }
- this.totalScroll = 0;
- this.redraw();
- }
-}
-
-Rkns.Renderer.Scene.prototype.destroy = function() {
- this.project.off("add:nodes", this._addNodesBinding );
- this.project.off("add:edges", this._addEdgesBinding );
- Rkns._(this.representations).each(function(_repr) {
- _repr.destroy();
- });
- this.$.html("");
- paper.remove();
-}
-
--- a/metadataplayer/libs/swfobject.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-/* SWFObject v2.2 <http://code.google.com/p/swfobject/>
- is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
-*/
-var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
\ No newline at end of file
--- a/metadataplayer/libs/tracemanager.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,540 +0,0 @@
-/*
- * Modelled Trace API
- *
- * This file is part of ktbs4js.
- *
- * ktbs4js is free software: you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * ktbs4js is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with ktbs4js. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-/* FIXME: properly use require.js feature. This will do for debugging in the meantime */
-window.tracemanager = (function($) {
- // If there are more than MAX_FAILURE_COUNT synchronisation
- // failures, then disable synchronisation
- MAX_FAILURE_COUNT = 20;
-
- // If there are more than MAX_BUFFER_SIZE obsels in the buffer,
- // then "compress" them as a single "ktbsFullBuffer"
- MAX_BUFFER_SIZE = 500;
-
- var BufferedService_prototype = {
- /*
- * Buffered service for traces
- */
- // url: "",
- // buffer: [],
- // isReady: false,
- // timer: null,
- // failureCount: 0,
-
- /* Flush buffer */
- flush: function() {
- // FIXME: add mutex on this.buffer
- if (! this.isReady)
- {
- if (window.console) window.console.log("Sync service not ready");
- } else if (this.failureCount > MAX_FAILURE_COUNT)
- {
- // Disable synchronisation
- this.set_sync_mode('none');
- } else if (this.buffer.length) {
- var temp = this.buffer;
- this.buffer = [];
-
- if (this.mode == 'GET')
- {
- // GET mode: do some data mangline. We mark the
- // "compressed" nature of the generated JSON by
- // prefixing it with c
- var data = 'c' + JSON.stringify(temp.map(function (o) { return o.toCompactJSON(); }));
- // Swap " (very frequent, which will be
- // serialized into %22) and ; (rather rare), this
- // saves some bytes
- data = data.replace(/[;"#]/g, function(s){ return s == ';' ? '"' : ( s == '"' ? ';' : '%23'); });
- // FIXME: check data length (< 2K is safe)
- var request=$('<img />').error( function() { this.failureCount += 1; })
- .load( function() { this.failureCount = 0; })
- .attr('src', this.url + 'trace/?data=' + data);
- }
- else
- {
- $.ajax({ url: this.url + 'trace/',
- type: 'POST',
- contentType: 'application/json',
- data: JSON.stringify(temp.map(function (o) { return o.toJSON(); })),
- processData: false,
- // Type of the returned data.
- dataType: "html",
- error: function(jqXHR, textStatus, errorThrown) {
- if (window.console) window.console.log("Error when sending buffer:", textStatus);
- this.failureCount += 1;
- },
- success: function(data, textStatus, jqXHR) {
- // Reset failureCount to 0 as soon as there is 1 valid answer
- this.failureCount = 0;
- }
- });
- }
- }
- },
-
- /* Sync mode: delayed, sync (immediate sync), none (no
- * synchronisation with server, the trace has to be explicitly saved
- * if needed */
- set_sync_mode: function(mode, default_subject) {
- this.sync_mode = mode;
- if (! this.isReady && mode !== "none")
- this.init(default_subject);
- if (mode == 'delayed') {
- this.start_timer();
- } else {
- this.stop_timer();
- }
- },
-
- /* Enqueue an obsel */
- enqueue: function(obsel) {
- if (this.buffer.length > MAX_BUFFER_SIZE)
- {
- obsel = new Obsel('ktbsFullBuffer', this.buffer[0].begin,
- this.buffer[this.buffer.length - 1].end, this.buffer[0].subject);
- obsel.trace = this.buffer[0].trace;
- this.buffer = [];
- }
- this.buffer.push(obsel);
- if (this.sync_mode === 'sync') {
- // Immediate sync of the obsel.
- this.flush();
- }
- },
-
- start_timer: function() {
- var self = this;
- if (this.timer === null) {
- this.timer = window.setInterval(function() {
- self.flush();
- }, this.timeOut);
- }
- },
-
- stop_timer: function() {
- if (this.timer !== null) {
- window.clearInterval(this.timer);
- this.timer = null;
- }
- },
-
- /*
- * Initialize the sync service
- */
- init: function(default_subject) {
- var self = this;
- if (this.isReady)
- /* Already initialized */
- return;
- if (typeof default_subject === 'undefined')
- default_subject = 'anonymous';
- if (this.mode == 'GET')
- {
- var request=$('<img/>').attr('src', this.url + 'login?userinfo={"default_subject": "' + default_subject + '"}');
- // Do not wait for the return, assume it is
- // initialized. This assumption will not work anymore
- // if login returns some necessary information
- this.isReady = true;
- }
- else
- {
- $.ajax({ url: this.url + 'login',
- type: 'POST',
- data: 'userinfo={"default_subject":"' + default_subject + '"}',
- success: function(data, textStatus, jqXHR) {
- self.isReady = true;
- if (self.buffer.length) {
- self.flush();
- }
- }
- });
- }
- }
- };
- var BufferedService = function(url, mode) {
- this.url = url;
- this.buffer = [];
- this.isReady = false;
- this.timer = null;
- this.failureCount = 0;
- // sync_mode is either "none", "sync" or "buffered"
- this.sync_mode = "none";
- /* mode can be either POST or GET */
- if (mode == 'POST' || mode == 'GET')
- this.mode = mode;
- else
- this.mode = 'POST';
- /* Flush buffer every timeOut ms if the sync_mode is delayed */
- this.timeOut = 2000;
- };
- BufferedService.prototype = BufferedService_prototype;
-
- var Trace_prototype = {
- /* FIXME: We could/should use a sorted list such as
- http://closure-library.googlecode.com/svn/docs/class_goog_structs_AvlTree.html
- to speed up queries based on time */
- obsels: [],
- /* Trace URI */
- uri: "",
- default_subject: "",
- /* baseuri is used as the base URI to resolve relative
- * attribute-type names in obsels. Strictly speaking, this
- * should rather be expressed as a reference to model, or
- * more generically, as a qname/URI dict */
- baseuri: "",
- /* Mapping of obsel type or property name to a compact
- * representation (shorthands).
- */
- shorthands: null,
- syncservice: null,
-
- /* Define the trace URI */
- set_uri: function(uri) {
- this.uri = uri;
- },
-
- /* Sync mode: delayed, sync (immediate sync), none (no
- * synchronisation with server, the trace has to be explicitly saved
- * if needed */
- set_sync_mode: function(mode) {
- if (this.syncservice !== null) {
- this.syncservice.set_sync_mode(mode, this.default_subject);
- }
- },
-
- /*
- * Return a list of the obsels of this trace matching the parameters
- */
- list_obsels: function(_begin, _end, _reverse) {
- var res;
- if (typeof _begin !== 'undefined' || typeof _end !== 'undefined') {
- /*
- * Not optimized yet.
- */
- res = [];
- var l = this.obsels.length;
- for (var i = 0; i < l; i++) {
- var o = this.obsels[i];
- if ((typeof _begin !== 'undefined' && o.begin > _begin) && (typeof _end !== 'undefined' && o.end < _end)) {
- res.push(o);
- }
- }
- }
-
- if (typeof _reverse !== 'undefined') {
- if (res !== undefined) {
- /* Should reverse the whole list. Make a copy. */
- res = this.obsels.slice(0);
- }
- res.sort(function(a, b) { return b.begin - a.begin; });
- return res;
- }
-
- if (res === undefined) {
- res = this.obsels;
- }
- return res;
-
- },
-
- /*
- * Return the obsel of this trace identified by the URI, or undefined
- */
- get_obsel: function(id) {
- for (var i = 0; i < this.obsels.length; i++) {
- /* FIXME: should check against variations of id/uri, take this.baseuri into account */
- if (this.obsels[i].uri === id) {
- return this.obsels[i];
- }
- }
- return undefined;
- },
-
- set_default_subject: function(subject) {
- // FIXME: if we call this method after the sync_service
- // init method, then the default_subject will not be
- // consistent anymore. Maybe we should then call init() again?
- this.default_subject = subject;
- },
-
- get_default_subject: function() {
- return this.default_subject;
- },
-
- /* (type:ObselType, begin:int, end:int?, subject:str?, attributes:[AttributeType=>any]?) */
- /* Create a new obsel and add it to the trace */
- create_obsel: function(type, begin, end, subject, _attributes) {
- var o = new Obsel(type, begin, end, subject);
- if (typeof _attributes !== 'undefined') {
- o.attributes = _attributes;
- }
- o.trace = this;
- this.obsels.push(o);
- if (this.syncservice !== null)
- this.syncservice.enqueue(o);
- },
-
- /* Helper methods */
-
- /* Create a new obsel with the given attributes */
- trace: function(type, _attributes, _begin, _end, _subject) {
- var t = (new Date()).getTime();
- if (typeof begin === 'undefined') {
- _begin = t;
- }
- if (typeof end === 'undefined') {
- _end = _begin;
- }
- if (typeof subject === 'undefined') {
- _subject = this.default_subject;
- }
- if (typeof _attributes === 'undefined') {
- _attributes = {};
- }
- return this.create_obsel(type, _begin, _end, _subject, _attributes);
- }
- };
-
- var Trace = function(uri, requestmode) {
- /* FIXME: We could/should use a sorted list such as
- http://closure-library.googlecode.com/svn/docs/class_goog_structs_AvlTree.html
- to speed up queries based on time */
- this.obsels = [];
- /* Trace URI */
- if (uri === undefined)
- uri = "";
- this.uri = uri;
- this.sync_mode = "none";
- this.default_subject = "";
- this.shorthands = {};
- /* baseuri is used a the base URI to resolve relative attribute names in obsels */
- this.baseuri = "";
-
- this.syncservice = new BufferedService(uri, requestmode);
- $(window).unload( function () {
- if (this.syncservice && this.sync_mode !== 'none') {
- this.syncservice.flush();
- this.syncservice.stop_timer();
- }
- });
- };
- Trace.prototype = Trace_prototype;
-
- var Obsel_prototype = {
- /* The following attributes are here for documentation
- * purposes. They MUST be defined in the constructor
- * function. */
- trace: undefined,
- type: undefined,
- begin: undefined,
- end: undefined,
- subject: undefined,
- /* Dictionary indexed by ObselType URIs */
- attributes: {},
-
- /* Method definitions */
- get_trace: function() {
- return this.trace;
- },
-
- get_obsel_type: function() {
- return this.type;
- },
- get_begin: function() {
- return this.begin;
- },
- get_end: function() {
- return this.end;
- },
- get_subject: function() {
- return this.subject;
- },
-
- list_attribute_types: function() {
- var result = [];
- for (var prop in this.attributes) {
- if (this.attributes.hasOwnProperty(prop))
- result.push(prop);
- }
- /* FIXME: we return URIs here instead of AttributeType elements */
- return result;
- },
-
- list_relation_types: function() {
- /* FIXME: not implemented yet */
- },
-
- list_related_obsels: function (rt) {
- /* FIXME: not implemented yet */
- },
- list_inverse_relation_types: function () {
- /* FIXME: not implemented yet */
- },
- list_relating_obsels: function (rt) {
- /* FIXME: not implemented yet */
- },
- /*
- * Return the value of the given attribute type for this obsel
- */
- get_attribute_value: function(at) {
- if (typeof at === "string")
- /* It is a URI */
- return this.attributes[at];
- else
- /* FIXME: check that at is instance of AttributeType */
- return this.attributes[at.uri];
- },
-
-
- /* obsel modification (trace amendment) */
-
- set_attribute_value: function(at, value) {
- if (typeof at === "string")
- /* It is a URI */
- this.attributes[at] = value;
- /* FIXME: check that at is instance of AttributeType */
- else
- this.attributes[at.uri] = value;
- },
-
- del_attribute_value: function(at) {
- if (typeof at === "string")
- /* It is a URI */
- delete this.attributes[at];
- /* FIXME: check that at is instance of AttributeType */
- else
- delete this.attributes[at.uri];
- },
-
- add_related_obsel: function(rt, value) {
- /* FIXME: not implemented yet */
- },
-
- del_related_obsel: function(rt, value) {
- /* FIXME: not implemented yet */
- },
-
- /*
- * Return a JSON representation of the obsel
- */
- toJSON: function() {
- var r = {
- "@id": this.id,
- "@type": this.type,
- "begin": this.begin,
- "end": this.end,
- "subject": this.subject
- };
- for (var prop in this.attributes) {
- if (this.attributes.hasOwnProperty(prop))
- r[prop] = this.attributes[prop];
- }
- return r;
- },
-
- /*
- * Return a compact JSON representation of the obsel.
- * Use predefined + custom shorthands for types/properties
- */
- toCompactJSON: function() {
- var r = {
- "@t": (this.trace.shorthands.hasOwnProperty(this.type) ? this.trace.shorthands[this.type] : this.type),
- "@b": this.begin,
- };
- // Transmit subject only if different from default_subject
- if (this.subject !== this.trace.default_subject)
- r["@s"] = this.subject;
-
- // Store duration (to save some bytes) and only if it is non-null
- if (this.begin !== this.end)
- r["@d"] = this.end - this.begin;
-
- // Store id only if != ""
- if (this.id !== "")
- r["@i"] = this.id;
-
- for (var prop in this.attributes) {
- if (this.attributes.hasOwnProperty(prop))
- {
- var v = this.attributes[prop];
- r[prop] = this.trace.shorthands.hasOwnProperty(v) ? this.trace.shorthands[v] : v;
- }
- }
- return r;
- },
-
- toJSONstring: function() {
- return JSON.stringify(this.toJSON());
- }
- };
-
- var Obsel = function(type, begin, end, subject, attributes) {
- this.trace = undefined;
- this.uri = "";
- this.id = "";
- this.type = type;
- this.begin = begin;
- this.end = end;
- this.subject = subject;
- /* Is the obsel synched with the server ? */
- this.sync_status = false;
- /* Dictionary indexed by ObselType URIs */
- this.attributes = {};
- };
- Obsel.prototype = Obsel_prototype;
-
- var TraceManager_prototype = {
- traces: [],
- /*
- * Return the trace with id name
- * If it was not registered, return undefined.
- */
- get_trace: function(name) {
- return this.traces[name];
- },
-
- /*
- * Explicitly create and initialize a new trace with the given name.
- * The optional uri parameter allows to initialize the trace URI.
- *
- * If another existed with the same name before, then it is replaced by a new one.
- */
- init_trace: function(name, params)
- {
- if (window.console) window.console.log("init_trace", params);
- url = params.url ? params.url : "";
- requestmode = params.requestmode ? params.requestmode : "POST";
- syncmode = params.syncmode ? params.syncmode : "none";
- default_subject = params.default_subject ? params.default_subject : "default";
- var t = new Trace(url, requestmode);
- t.set_default_subject(default_subject);
- t.set_sync_mode(syncmode);
- this.traces[name] = t;
- return t;
- }
- };
-
- var TraceManager = function() {
- this.traces = {};
- };
- TraceManager.prototype = TraceManager_prototype;
-
- var tracemanager = new TraceManager();
- return tracemanager;
- })(jQuery);
--- a/metadataplayer/libs/underscore-min.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-// Underscore.js 1.3.3
-// (c) 2009-2012 Jeremy Ashkenas, DocumentCloud Inc.
-// Underscore is freely distributable under the MIT license.
-// Portions of Underscore are inspired or borrowed from Prototype,
-// Oliver Steele's Functional, and John Resig's Micro-Templating.
-// For all details and documentation:
-// http://documentcloud.github.com/underscore
-(function(){function r(a,c,d){if(a===c)return 0!==a||1/a==1/c;if(null==a||null==c)return a===c;a._chain&&(a=a._wrapped);c._chain&&(c=c._wrapped);if(a.isEqual&&b.isFunction(a.isEqual))return a.isEqual(c);if(c.isEqual&&b.isFunction(c.isEqual))return c.isEqual(a);var e=l.call(a);if(e!=l.call(c))return!1;switch(e){case "[object String]":return a==""+c;case "[object Number]":return a!=+a?c!=+c:0==a?1/a==1/c:a==+c;case "[object Date]":case "[object Boolean]":return+a==+c;case "[object RegExp]":return a.source==
-c.source&&a.global==c.global&&a.multiline==c.multiline&&a.ignoreCase==c.ignoreCase}if("object"!=typeof a||"object"!=typeof c)return!1;for(var f=d.length;f--;)if(d[f]==a)return!0;d.push(a);var f=0,g=!0;if("[object Array]"==e){if(f=a.length,g=f==c.length)for(;f--&&(g=f in a==f in c&&r(a[f],c[f],d)););}else{if("constructor"in a!="constructor"in c||a.constructor!=c.constructor)return!1;for(var h in a)if(b.has(a,h)&&(f++,!(g=b.has(c,h)&&r(a[h],c[h],d))))break;if(g){for(h in c)if(b.has(c,h)&&!f--)break;
-g=!f}}d.pop();return g}var s=this,I=s._,o={},k=Array.prototype,p=Object.prototype,i=k.slice,J=k.unshift,l=p.toString,K=p.hasOwnProperty,y=k.forEach,z=k.map,A=k.reduce,B=k.reduceRight,C=k.filter,D=k.every,E=k.some,q=k.indexOf,F=k.lastIndexOf,p=Array.isArray,L=Object.keys,t=Function.prototype.bind,b=function(a){return new m(a)};"undefined"!==typeof exports?("undefined"!==typeof module&&module.exports&&(exports=module.exports=b),exports._=b):s._=b;b.VERSION="1.3.3";var j=b.each=b.forEach=function(a,
-c,d){if(a!=null)if(y&&a.forEach===y)a.forEach(c,d);else if(a.length===+a.length)for(var e=0,f=a.length;e<f;e++){if(e in a&&c.call(d,a[e],e,a)===o)break}else for(e in a)if(b.has(a,e)&&c.call(d,a[e],e,a)===o)break};b.map=b.collect=function(a,c,b){var e=[];if(a==null)return e;if(z&&a.map===z)return a.map(c,b);j(a,function(a,g,h){e[e.length]=c.call(b,a,g,h)});if(a.length===+a.length)e.length=a.length;return e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(A&&
-a.reduce===A){e&&(c=b.bind(c,e));return f?a.reduce(c,d):a.reduce(c)}j(a,function(a,b,i){if(f)d=c.call(e,d,a,b,i);else{d=a;f=true}});if(!f)throw new TypeError("Reduce of empty array with no initial value");return d};b.reduceRight=b.foldr=function(a,c,d,e){var f=arguments.length>2;a==null&&(a=[]);if(B&&a.reduceRight===B){e&&(c=b.bind(c,e));return f?a.reduceRight(c,d):a.reduceRight(c)}var g=b.toArray(a).reverse();e&&!f&&(c=b.bind(c,e));return f?b.reduce(g,c,d,e):b.reduce(g,c)};b.find=b.detect=function(a,
-c,b){var e;G(a,function(a,g,h){if(c.call(b,a,g,h)){e=a;return true}});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(C&&a.filter===C)return a.filter(c,b);j(a,function(a,g,h){c.call(b,a,g,h)&&(e[e.length]=a)});return e};b.reject=function(a,c,b){var e=[];if(a==null)return e;j(a,function(a,g,h){c.call(b,a,g,h)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=true;if(a==null)return e;if(D&&a.every===D)return a.every(c,b);j(a,function(a,g,h){if(!(e=e&&c.call(b,
-a,g,h)))return o});return!!e};var G=b.some=b.any=function(a,c,d){c||(c=b.identity);var e=false;if(a==null)return e;if(E&&a.some===E)return a.some(c,d);j(a,function(a,b,h){if(e||(e=c.call(d,a,b,h)))return o});return!!e};b.include=b.contains=function(a,c){var b=false;if(a==null)return b;if(q&&a.indexOf===q)return a.indexOf(c)!=-1;return b=G(a,function(a){return a===c})};b.invoke=function(a,c){var d=i.call(arguments,2);return b.map(a,function(a){return(b.isFunction(c)?c||a:a[c]).apply(a,d)})};b.pluck=
-function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a)&&a[0]===+a[0])return Math.max.apply(Math,a);if(!c&&b.isEmpty(a))return-Infinity;var e={computed:-Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,c,d){if(!c&&b.isArray(a)&&a[0]===+a[0])return Math.min.apply(Math,a);if(!c&&b.isEmpty(a))return Infinity;var e={computed:Infinity};j(a,function(a,b,h){b=c?c.call(d,a,b,h):a;b<e.computed&&
-(e={value:a,computed:b})});return e.value};b.shuffle=function(a){var b=[],d;j(a,function(a,f){d=Math.floor(Math.random()*(f+1));b[f]=b[d];b[d]=a});return b};b.sortBy=function(a,c,d){var e=b.isFunction(c)?c:function(a){return a[c]};return b.pluck(b.map(a,function(a,b,c){return{value:a,criteria:e.call(d,a,b,c)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c===void 0?1:d===void 0?-1:c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,c){var d={},e=b.isFunction(c)?c:function(a){return a[c]};
-j(a,function(a,b){var c=e(a,b);(d[c]||(d[c]=[])).push(a)});return d};b.sortedIndex=function(a,c,d){d||(d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){return!a?[]:b.isArray(a)||b.isArguments(a)?i.call(a):a.toArray&&b.isFunction(a.toArray)?a.toArray():b.values(a)};b.size=function(a){return b.isArray(a)?a.length:b.keys(a).length};b.first=b.head=b.take=function(a,b,d){return b!=null&&!d?i.call(a,0,b):a[0]};b.initial=function(a,b,d){return i.call(a,
-0,a.length-(b==null||d?1:b))};b.last=function(a,b,d){return b!=null&&!d?i.call(a,Math.max(a.length-b,0)):a[a.length-1]};b.rest=b.tail=function(a,b,d){return i.call(a,b==null||d?1:b)};b.compact=function(a){return b.filter(a,function(a){return!!a})};b.flatten=function(a,c){return b.reduce(a,function(a,e){if(b.isArray(e))return a.concat(c?e:b.flatten(e));a[a.length]=e;return a},[])};b.without=function(a){return b.difference(a,i.call(arguments,1))};b.uniq=b.unique=function(a,c,d){var d=d?b.map(a,d):a,
-e=[];a.length<3&&(c=true);b.reduce(d,function(d,g,h){if(c?b.last(d)!==g||!d.length:!b.include(d,g)){d.push(g);e.push(a[h])}return d},[]);return e};b.union=function(){return b.uniq(b.flatten(arguments,true))};b.intersection=b.intersect=function(a){var c=i.call(arguments,1);return b.filter(b.uniq(a),function(a){return b.every(c,function(c){return b.indexOf(c,a)>=0})})};b.difference=function(a){var c=b.flatten(i.call(arguments,1),true);return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=
-i.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return d};b.indexOf=function(a,c,d){if(a==null)return-1;var e;if(d){d=b.sortedIndex(a,c);return a[d]===c?d:-1}if(q&&a.indexOf===q)return a.indexOf(c);d=0;for(e=a.length;d<e;d++)if(d in a&&a[d]===c)return d;return-1};b.lastIndexOf=function(a,b){if(a==null)return-1;if(F&&a.lastIndexOf===F)return a.lastIndexOf(b);for(var d=a.length;d--;)if(d in a&&a[d]===b)return d;return-1};b.range=function(a,b,d){if(arguments.length<=
-1){b=a||0;a=0}for(var d=arguments[2]||1,e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;){g[f++]=a;a=a+d}return g};var H=function(){};b.bind=function(a,c){var d,e;if(a.bind===t&&t)return t.apply(a,i.call(arguments,1));if(!b.isFunction(a))throw new TypeError;e=i.call(arguments,2);return d=function(){if(!(this instanceof d))return a.apply(c,e.concat(i.call(arguments)));H.prototype=a.prototype;var b=new H,g=a.apply(b,e.concat(i.call(arguments)));return Object(g)===g?g:b}};b.bindAll=function(a){var c=
-i.call(arguments,1);c.length==0&&(c=b.functions(a));j(c,function(c){a[c]=b.bind(a[c],a)});return a};b.memoize=function(a,c){var d={};c||(c=b.identity);return function(){var e=c.apply(this,arguments);return b.has(d,e)?d[e]:d[e]=a.apply(this,arguments)}};b.delay=function(a,b){var d=i.call(arguments,2);return setTimeout(function(){return a.apply(null,d)},b)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(i.call(arguments,1)))};b.throttle=function(a,c){var d,e,f,g,h,i,j=b.debounce(function(){h=
-g=false},c);return function(){d=this;e=arguments;f||(f=setTimeout(function(){f=null;h&&a.apply(d,e);j()},c));g?h=true:i=a.apply(d,e);j();g=true;return i}};b.debounce=function(a,b,d){var e;return function(){var f=this,g=arguments;d&&!e&&a.apply(f,g);clearTimeout(e);e=setTimeout(function(){e=null;d||a.apply(f,g)},b)}};b.once=function(a){var b=false,d;return function(){if(b)return d;b=true;return d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var d=[a].concat(i.call(arguments,0));
-return b.apply(this,d)}};b.compose=function(){var a=arguments;return function(){for(var b=arguments,d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}};b.after=function(a,b){return a<=0?b():function(){if(--a<1)return b.apply(this,arguments)}};b.keys=L||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var c=[],d;for(d in a)b.has(a,d)&&(c[c.length]=d);return c};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&
-c.push(d);return c.sort()};b.extend=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]=b[d]});return a};b.pick=function(a){var c={};j(b.flatten(i.call(arguments,1)),function(b){b in a&&(c[b]=a[b])});return c};b.defaults=function(a){j(i.call(arguments,1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return!b.isObject(a)?a:b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,b){return r(a,b,[])};b.isEmpty=
-function(a){if(a==null)return true;if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(b.has(a,c))return false;return true};b.isElement=function(a){return!!(a&&a.nodeType==1)};b.isArray=p||function(a){return l.call(a)=="[object Array]"};b.isObject=function(a){return a===Object(a)};b.isArguments=function(a){return l.call(a)=="[object Arguments]"};b.isArguments(arguments)||(b.isArguments=function(a){return!(!a||!b.has(a,"callee"))});b.isFunction=function(a){return l.call(a)=="[object Function]"};
-b.isString=function(a){return l.call(a)=="[object String]"};b.isNumber=function(a){return l.call(a)=="[object Number]"};b.isFinite=function(a){return b.isNumber(a)&&isFinite(a)};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===true||a===false||l.call(a)=="[object Boolean]"};b.isDate=function(a){return l.call(a)=="[object Date]"};b.isRegExp=function(a){return l.call(a)=="[object RegExp]"};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.has=function(a,
-b){return K.call(a,b)};b.noConflict=function(){s._=I;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e<a;e++)b.call(d,e)};b.escape=function(a){return(""+a).replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'").replace(/\//g,"/")};b.result=function(a,c){if(a==null)return null;var d=a[c];return b.isFunction(d)?d.call(a):d};b.mixin=function(a){j(b.functions(a),function(c){M(c,b[c]=a[c])})};var N=0;b.uniqueId=
-function(a){var b=N++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var u=/.^/,n={"\\":"\\","'":"'",r:"\r",n:"\n",t:"\t",u2028:"\u2028",u2029:"\u2029"},v;for(v in n)n[n[v]]=v;var O=/\\|'|\r|\n|\t|\u2028|\u2029/g,P=/\\(\\|'|r|n|t|u2028|u2029)/g,w=function(a){return a.replace(P,function(a,b){return n[b]})};b.template=function(a,c,d){d=b.defaults(d||{},b.templateSettings);a="__p+='"+a.replace(O,function(a){return"\\"+n[a]}).replace(d.escape||
-u,function(a,b){return"'+\n_.escape("+w(b)+")+\n'"}).replace(d.interpolate||u,function(a,b){return"'+\n("+w(b)+")+\n'"}).replace(d.evaluate||u,function(a,b){return"';\n"+w(b)+"\n;__p+='"})+"';\n";d.variable||(a="with(obj||{}){\n"+a+"}\n");var a="var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};\n"+a+"return __p;\n",e=new Function(d.variable||"obj","_",a);if(c)return e(c,b);c=function(a){return e.call(this,a,b)};c.source="function("+(d.variable||"obj")+"){\n"+a+"}";return c};
-b.chain=function(a){return b(a).chain()};var m=function(a){this._wrapped=a};b.prototype=m.prototype;var x=function(a,c){return c?b(a).chain():a},M=function(a,c){m.prototype[a]=function(){var a=i.call(arguments);J.call(a,this._wrapped);return x(c.apply(b,a),this._chain)}};b.mixin(b);j("pop,push,reverse,shift,sort,splice,unshift".split(","),function(a){var b=k[a];m.prototype[a]=function(){var d=this._wrapped;b.apply(d,arguments);var e=d.length;(a=="shift"||a=="splice")&&e===0&&delete d[0];return x(d,
-this._chain)}});j(["concat","join","slice"],function(a){var b=k[a];m.prototype[a]=function(){return x(b.apply(this._wrapped,arguments),this._chain)}});m.prototype.chain=function(){this._chain=true;return this};m.prototype.value=function(){return this._wrapped}}).call(this);
--- a/metadataplayer/mashup/bab_files/mashup-local-html.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,506 +0,0 @@
-{
- "views": [
- {
- "id": "v_33227665-49F3-7111-2BC6-3C4B6E90411C",
- "contents": ["c1a84ff8-e2b0-11e0-8472-00145ea49a02", "c4ff2454-9842-11e1-9f9f-00145ea4a2be"],
- "annotation_types": ["c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67", "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425"]
- }, {
- "meta": {
- "stat": "1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"
- },
- "id": "stat",
- "contents": ["c4ff2454-9842-11e1-9f9f-00145ea4a2be"]
- }
- ],
- "tags": [
- {
- "meta": {
- "dc:title": "jeux vidéo"
- },
- "id": "jeux_video"
- }, {
- "meta": {
- "dc:title": "intelligence collective"
- },
- "id": "intelligence_collective"
- }, {
- "meta": {
- "dc:title": "gamification"
- },
- "id": "gamification"
- }, {
- "meta": {
- "dc:title": "nouveaux médias"
- },
- "id": "nouveaux_medias"
- }, {
- "meta": {
- "dc:title": "world wide web"
- },
- "id": "www"
- }, {
- "meta": {
- "dc:title": "hypertexte"
- },
- "id": "hypertexte"
- }, {
- "meta": {
- "dc:title": "données liées"
- },
- "id": "donnees_liees"
- }, {
- "meta": {
- "dc:title": "données ouvertes"
- },
- "id": "donnees_ouvertes"
- }
- ],
- "lists": [
- {
- "items": [
- {
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2012-05-11T15:08:00.342662",
- "dc:creator": "undefined",
- "id-ref": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2012-05-11T15:08:00.342662",
- "dc:description": ""
- },
- "id": "g_5665330A-7789-1E08-13C2-3C4D26B44EAF"
- }, {
- "items": [
- {
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2012-05-11T15:08:00.348445",
- "dc:creator": "undefined",
- "id-ref": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2012-05-11T15:08:00.348445",
- "dc:description": ""
- },
- "id": "g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E"
- }, {
-
- "items": ["s_48D417FA-D34B-C954-05F6-3C4B9392367E", "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4", "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9", "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234", "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E", "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F", "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B", "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5", "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"],
- "meta": {
- "dc:contributor": "IRI",
- "dc:creator": "IRI",
- "dc:title": "Bout à bout 2",
- "dc:modified": "2012-06-22T17:21:32.514507",
- "dc:created": "2012-06-22T17:21:32.514507",
- "listtype": "mashup",
- "dc:description": ""
- },
- "id": "0"
- }
- ],
- "medias": [
- {
- "origin": "0",
- "url": "bab_files/rsln_jane_mcgonigal.mp4",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2011-09-19T13:17:56.656743",
- "dc:duration": 4127000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN - Jane McGonigal",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:33.052583",
- "dc:description": "Regards sur le Numérique, 16 septembre 2011, Jane McGonigal. Comment le jeu vidéo va changer le monde ?"
- },
- "id": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "unit": "ms"
- }, {
- "origin": "0",
- "url": "bab_files/www2012_timbernerslee.mp4",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2012-05-07T14:48:22.137437",
- "dc:duration": 5245000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-05-07",
- "dc:title": "WWW 2012 - Tim Berners-Lee",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-05-07T17:08:36.018270",
- "dc:description": "World Wide Web Conference 2012, Wednesday 18/04, 11:00-12:30, Keynote by Tim Berners-Lee, graduate of Oxford University, inventor of the World Wide Web, an internet-based hypermedia initiative for global information sharing while at CERN, the European Particle Physics Laboratory, in 1989."
- },
- "id": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2012-05-11T16:26:53.787298",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "mashup-001"
- },
- "dc:description": "",
- "dc:title": "test bout à bout",
- "id": "5afd8bbe-9b75-11e1-9e5d-00145ea4a2be",
- "dc:modified": "2012-05-11T16:37:30.246796"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "First Segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 1",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 420000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 425000,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "gamification"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_48D417FA-D34B-C954-05F6-3C4B9392367E"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Second segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 2",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 980096,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 995096,
- "tags": [
- {
- "id-ref": "nouveaux_medias"
- }, {
- "id-ref": "intelligence_collective"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Third segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 3",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1833044,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 1860044,
- "tags": [
- {
- "id-ref": "jeux_video"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fourth segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 4",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2436996,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 2460096,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "www"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fifth segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 5",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 3240000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 3250000,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "nouveaux_medias"
- }, {
- "id-ref": "gamification"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "First Segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 1",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 370000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 380000,
- "tags": [
- {
- "id-ref": "hypertexte"
- }, {
- "id-ref": "www"
- }, {
- "id-ref": "donnees_ouvertes"
- }, {
- "id-ref": "donnees_liees"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Second Segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 2",
- "color": "13369344",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1090000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 1105000,
- "tags": null,
- "color": "13369344",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Third segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 3",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2030000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 2035000,
- "tags": [
- {
- "id-ref": "www"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fourth Segment from Tim Berners-Lee",
- "img": {
- "src": "WWW 4"
- },
- "title": "",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2922000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 2940000,
- "tags": [
- {
- "id-ref": "hypertexte"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mon découpage",
- "id": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.348480"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mon découpage",
- "id": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.342701"
- }
- ],
- "mashups": [
- {
- "id": "mashup-001",
- "meta": {
- "dc:title": "Example mashup",
- "dc:description": "This is an example mashup"
- },
- "segments": ["s_48D417FA-D34B-C954-05F6-3C4B9392367E", "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4", "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9", "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234", "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E", "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F", "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B", "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5", "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"]
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/mashup/bab_files/mashup-local.xml Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,133 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<iri xmlns:dc="http://dublincore.org/documents/dcmi-namespace/" ldtversion="1.6.3">
- <project id="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" user="admin" title="test bout à bout" abstract=""/>
- <medias>
- <media id="c1a84ff8-e2b0-11e0-8472-00145ea49a02" src="http://ldt.iri.centrepompidou.fr//static/media/ldt/c1a84ff8-e2b0-11e0-8472-00145ea49a02/c1a84ff8-e2b0-11e0-8472-00145ea49a02.iri" video="rtmp://media.iri.centrepompidou.fr/ddc_player/" pict="" extra=""/>
- <media id="c4ff2454-9842-11e1-9f9f-00145ea4a2be" src="http://ldt.iri.centrepompidou.fr//static/media/ldt/c4ff2454-9842-11e1-9f9f-00145ea4a2be/c4ff2454-9842-11e1-9f9f-00145ea4a2be.iri" video="rtmp://media.iri.centrepompidou.fr/ddc_player/" pict="" extra=""/>
- </medias>
- <annotations>
- <content id="c4ff2454-9842-11e1-9f9f-00145ea4a2be">
- <ensemble id="g_5665330A-7789-1E08-13C2-3C4D26B44EAF" idProject="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" title="Découpages personnels" author="undefined" abstract="">
- <decoupage id="c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425" author="perso">
- <title>Mon découpage</title>
- <abstract/>
- <elements>
- <element id="s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9" begin="370000" dur="10000" author="admin" date="2012-05-11T16:29:33" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E" begin="1090000" dur="15000" author="admin" date="2012-05-11T16:30:39" color="13369344" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B" begin="2030000" dur="5000" author="admin" date="2012-05-11T16:30:36" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5" begin="2922000" dur="18000" author="admin" date="2012-05-11T16:30:33" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- </elements>
- </decoupage>
- </ensemble>
- </content>
- <content id="c1a84ff8-e2b0-11e0-8472-00145ea49a02">
- <ensemble id="g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E" idProject="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" title="Découpages personnels" author="undefined" abstract="">
- <decoupage id="c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67" author="perso">
- <title>Mon découpage</title>
- <abstract/>
- <elements>
- <element id="s_48D417FA-D34B-C954-05F6-3C4B9392367E" begin="420000" dur="5000" author="admin" date="2012-05-11T16:27:53" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4" begin="980096" dur="15000" author="admin" date="2012-05-11T16:32:08" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234" begin="1833044" dur="27000" author="admin" date="2012-05-11T16:28:12" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F" begin="2436996" dur="23100" author="admin" date="2012-05-11T16:28:18" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D" begin="3240000" dur="10000" author="admin" date="2012-05-11T16:28:26" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- </elements>
- </decoupage>
- </ensemble>
- </content>
- </annotations>
- <displays>
- <display id="v_33227665-49F3-7111-2BC6-3C4B6E90411C" title="Init view" idsel="c1a84ff8-e2b0-11e0-8472-00145ea49a02" tc="0" zoom="68" scroll="0" infoBAB="">
- <audio source=""/>
- <content id="c1a84ff8-e2b0-11e0-8472-00145ea49a02">
- <decoupage idens="g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E" id="c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67" tagsSelect=""/>
- </content>
- <content id="c4ff2454-9842-11e1-9f9f-00145ea4a2be">
- <decoupage idens="g_5665330A-7789-1E08-13C2-3C4D26B44EAF" id="c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425" tagsSelect=""/>
- </content>
- </display>
- </displays>
- <edits>
- <editing id="0" tags="">
- <title>Bout à bout 1</title>
- <abstract/>
- <edit id="edit1" tags="">
- <eList>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_D673EC15-794D-49DA-8C7F-3C4FA26D31EB" begin="420" end="425" m="0" v="100" eBegin="0" eEnd="5" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_042EF890-7308-36B2-B062-3C50742B82DF" begin="980" end="995" m="0" v="100" eBegin="5" eEnd="20" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_04198AE9-E293-3D75-02E7-3C50AE71F332" begin="370" end="380" m="1" v="100" eBegin="20" eEnd="30" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_6F2C6F16-30B4-FFAF-4570-3C50F05F55F7" begin="1833" end="1860" m="0" v="100" eBegin="30" eEnd="57" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_EA82B8B1-2937-2C4D-D120-3C510AA3C604" begin="1090" end="1105" m="2" v="100" eBegin="57" eEnd="72" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_296D8184-D13B-3F5E-6227-3C517EFC3672" begin="2436" end="2459" m="0" v="100" eBegin="72" eEnd="95" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_4DE6A596-1A2C-F204-E95C-3C519162E526" begin="2030" end="2035" m="1" v="100" eBegin="95" eEnd="100" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_E50BC064-9913-C603-F646-3C519D22AE91" begin="2922" end="2940" m="1" v="100" eBegin="100" eEnd="118" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_CA30F86A-51E2-4C4D-9B72-3C51A9A31A39" begin="3240" end="3250" m="0" v="100" eBegin="118" eEnd="128" trId="0" trIc="0" trOd="0" trOc="0"/>
- </eList>
- <caption/>
- <audio/>
- <mList>
- <m ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02" id="0" t="v" c="16763904">
- <content>rsln_jane_mcgonigal.mp4</content>
- </m>
- <m ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be" id="1" t="v" c="10027008">
- <content>www2012_timbernerslee.mp4</content>
- </m>
- <m ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be" id="2" t="v" c="13369344">
- <content>www2012_timbernerslee.mp4</content>
- </m>
- </mList>
- </edit>
- <edit id="edit2" tags="">
- <eList/>
- <caption/>
- <audio/>
- <mList/>
- </edit>
- </editing>
- </edits>
-</iri>
--- a/metadataplayer/mashup/bab_files/mashup.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,506 +0,0 @@
-{
- "views": [
- {
- "id": "v_33227665-49F3-7111-2BC6-3C4B6E90411C",
- "contents": ["c1a84ff8-e2b0-11e0-8472-00145ea49a02", "c4ff2454-9842-11e1-9f9f-00145ea4a2be"],
- "annotation_types": ["c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67", "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425"]
- }, {
- "meta": {
- "stat": "1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"
- },
- "id": "stat",
- "contents": ["c4ff2454-9842-11e1-9f9f-00145ea4a2be"]
- }
- ],
- "tags": [
- {
- "meta": {
- "dc:title": "jeux vidéo"
- },
- "id": "jeux_video"
- }, {
- "meta": {
- "dc:title": "intelligence collective"
- },
- "id": "intelligence_collective"
- }, {
- "meta": {
- "dc:title": "gamification"
- },
- "id": "gamification"
- }, {
- "meta": {
- "dc:title": "nouveaux médias"
- },
- "id": "nouveaux_medias"
- }, {
- "meta": {
- "dc:title": "world wide web"
- },
- "id": "www"
- }, {
- "meta": {
- "dc:title": "hypertexte"
- },
- "id": "hypertexte"
- }, {
- "meta": {
- "dc:title": "données liées"
- },
- "id": "donnees_liees"
- }, {
- "meta": {
- "dc:title": "données ouvertes"
- },
- "id": "donnees_ouvertes"
- }
- ],
- "lists": [
- {
- "items": [
- {
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2012-05-11T15:08:00.342662",
- "dc:creator": "undefined",
- "id-ref": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2012-05-11T15:08:00.342662",
- "dc:description": ""
- },
- "id": "g_5665330A-7789-1E08-13C2-3C4D26B44EAF"
- }, {
- "items": [
- {
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67"
- }
- ],
- "meta": {
- "dc:contributor": "undefined",
- "dc:created": "2012-05-11T15:08:00.348445",
- "dc:creator": "undefined",
- "id-ref": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "dc:title": "Découpages personnels",
- "editable": "false",
- "dc:modified": "2012-05-11T15:08:00.348445",
- "dc:description": ""
- },
- "id": "g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E"
- }, {
-
- "items": ["s_48D417FA-D34B-C954-05F6-3C4B9392367E", "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4", "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9", "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234", "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E", "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F", "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B", "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5", "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"],
- "meta": {
- "dc:contributor": "IRI",
- "dc:creator": "IRI",
- "dc:title": "Bout à bout 2",
- "dc:modified": "2012-06-22T17:21:32.514507",
- "dc:created": "2012-06-22T17:21:32.514507",
- "listtype": "mashup",
- "dc:description": ""
- },
- "id": "0"
- }
- ],
- "medias": [
- {
- "origin": "0",
- "url": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/ldtplatform/rsln_jane_mcgonigal.mp4",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2011-09-19T13:17:56.656743",
- "dc:duration": 4127000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "RSLN - Jane McGonigal",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:33.052583",
- "dc:description": "Regards sur le Numérique, 16 septembre 2011, Jane McGonigal. Comment le jeu vidéo va changer le monde ?"
- },
- "id": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "unit": "ms"
- }, {
- "origin": "0",
- "url": "rtmp://media.iri.centrepompidou.fr/ddc_player/video/ldtplatform/www2012_timbernerslee.mp4",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "item": {
- "name": "streamer",
- "value": "rtmp://media.iri.centrepompidou.fr/ddc_player/"
- },
- "dc:created": "2012-05-07T14:48:22.137437",
- "dc:duration": 5245000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-05-07",
- "dc:title": "WWW 2012 - Tim Berners-Lee",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-05-07T17:08:36.018270",
- "dc:description": "World Wide Web Conference 2012, Wednesday 18/04, 11:00-12:30, Keynote by Tim Berners-Lee, graduate of Oxford University, inventor of the World Wide Web, an internet-based hypermedia initiative for global information sharing while at CERN, the European Particle Physics Laboratory, in 1989."
- },
- "id": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2012-05-11T16:26:53.787298",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "mashup-001"
- },
- "dc:description": "",
- "dc:title": "test bout à bout",
- "id": "5afd8bbe-9b75-11e1-9e5d-00145ea4a2be",
- "dc:modified": "2012-05-11T16:37:30.246796"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "First Segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 1",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 420000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 425000,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "gamification"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_48D417FA-D34B-C954-05F6-3C4B9392367E"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Second segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 2",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 980096,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 995096,
- "tags": [
- {
- "id-ref": "nouveaux_medias"
- }, {
- "id-ref": "intelligence_collective"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Third segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 3",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1833044,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 1860044,
- "tags": [
- {
- "id-ref": "jeux_video"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fourth segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 4",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2436996,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 2460096,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "www"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fifth segment from Jane McGonigal",
- "img": {
- "src": ""
- },
- "title": "McGonigal 5",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 3240000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "end": 3250000,
- "tags": [
- {
- "id-ref": "jeux_video"
- }, {
- "id-ref": "nouveaux_medias"
- }, {
- "id-ref": "gamification"
- }
- ],
- "color": "16763904",
- "media": "c1a84ff8-e2b0-11e0-8472-00145ea49a02",
- "id": "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "First Segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 1",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 370000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 380000,
- "tags": [
- {
- "id-ref": "hypertexte"
- }, {
- "id-ref": "www"
- }, {
- "id-ref": "donnees_ouvertes"
- }, {
- "id-ref": "donnees_liees"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Second Segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 2",
- "color": "13369344",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 1090000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 1105000,
- "tags": null,
- "color": "13369344",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Third segment from Tim Berners-Lee",
- "img": {
- "src": ""
- },
- "title": "WWW 3",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2030000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 2035000,
- "tags": [
- {
- "id-ref": "www"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Fourth Segment from Tim Berners-Lee",
- "img": {
- "src": "WWW 4"
- },
- "title": "",
- "color": "10027008",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 2922000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:modified": "2012-05-11T15:08:00.342701",
- "dc:creator": "perso"
- },
- "end": 2940000,
- "tags": [
- {
- "id-ref": "hypertexte"
- }
- ],
- "color": "10027008",
- "media": "c4ff2454-9842-11e1-9f9f-00145ea4a2be",
- "id": "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mon découpage",
- "id": "c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.348480"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Mon découpage",
- "id": "c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425",
- "dc:created": "2012-05-11T15:08:00.342701",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.342701"
- }
- ],
- "mashups": [
- {
- "id": "mashup-001",
- "meta": {
- "dc:title": "Example mashup",
- "dc:description": "This is an example mashup"
- },
- "segments": ["s_48D417FA-D34B-C954-05F6-3C4B9392367E", "s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4", "s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9", "s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234", "s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E", "s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F", "s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B", "s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5", "s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D"]
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/mashup/bab_files/mashup.xml Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,133 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<iri xmlns:dc="http://dublincore.org/documents/dcmi-namespace/" ldtversion="1.6.3">
- <project id="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" user="admin" title="test bout à bout" abstract=""/>
- <medias>
- <media id="c1a84ff8-e2b0-11e0-8472-00145ea49a02" src="http://ldt.iri.centrepompidou.fr//static/media/ldt/c1a84ff8-e2b0-11e0-8472-00145ea49a02/c1a84ff8-e2b0-11e0-8472-00145ea49a02.iri" video="rtmp://media.iri.centrepompidou.fr/ddc_player/" pict="" extra=""/>
- <media id="c4ff2454-9842-11e1-9f9f-00145ea4a2be" src="http://ldt.iri.centrepompidou.fr//static/media/ldt/c4ff2454-9842-11e1-9f9f-00145ea4a2be/c4ff2454-9842-11e1-9f9f-00145ea4a2be.iri" video="rtmp://media.iri.centrepompidou.fr/ddc_player/" pict="" extra=""/>
- </medias>
- <annotations>
- <content id="c4ff2454-9842-11e1-9f9f-00145ea4a2be">
- <ensemble id="g_5665330A-7789-1E08-13C2-3C4D26B44EAF" idProject="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" title="Découpages personnels" author="undefined" abstract="">
- <decoupage id="c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425" author="perso">
- <title>Mon découpage</title>
- <abstract/>
- <elements>
- <element id="s_471A1070-AAD9-32F6-1E1B-3C4D52B5E4B9" begin="370000" dur="10000" author="admin" date="2012-05-11T16:29:33" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_7EB7522B-82D7-4FD6-2C5F-3C4D6945539E" begin="1090000" dur="15000" author="admin" date="2012-05-11T16:30:39" color="13369344" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_E8C653B6-2B35-B2D6-1040-3C4D75BDF31B" begin="2030000" dur="5000" author="admin" date="2012-05-11T16:30:36" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_971168A0-A9B3-064D-46B4-3C4D7FA5DFD5" begin="2922000" dur="18000" author="admin" date="2012-05-11T16:30:33" color="10027008" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- </elements>
- </decoupage>
- </ensemble>
- </content>
- <content id="c1a84ff8-e2b0-11e0-8472-00145ea49a02">
- <ensemble id="g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E" idProject="5afd8bbe-9b75-11e1-9e5d-00145ea4a2be" title="Découpages personnels" author="undefined" abstract="">
- <decoupage id="c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67" author="perso">
- <title>Mon découpage</title>
- <abstract/>
- <elements>
- <element id="s_48D417FA-D34B-C954-05F6-3C4B9392367E" begin="420000" dur="5000" author="admin" date="2012-05-11T16:27:53" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_5D30DD53-BE06-49E0-EB72-3C4B99BA0AA4" begin="980096" dur="15000" author="admin" date="2012-05-11T16:32:08" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_2B3C5B17-FB5E-8B99-AEDA-3C4BA2EB4234" begin="1833044" dur="27000" author="admin" date="2012-05-11T16:28:12" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_2376F9F0-AC9A-229C-9A60-3C4BAEE2D03F" begin="2436996" dur="23100" author="admin" date="2012-05-11T16:28:18" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- <element id="s_0DB7AABB-3973-9352-95DF-3C4BC3DCFB2D" begin="3240000" dur="10000" author="admin" date="2012-05-11T16:28:26" color="16763904" src="">
- <title/>
- <abstract/>
- <audio source=""/>
- <tags/>
- </element>
- </elements>
- </decoupage>
- </ensemble>
- </content>
- </annotations>
- <displays>
- <display id="v_33227665-49F3-7111-2BC6-3C4B6E90411C" title="Init view" idsel="c1a84ff8-e2b0-11e0-8472-00145ea49a02" tc="0" zoom="68" scroll="0" infoBAB="">
- <audio source=""/>
- <content id="c1a84ff8-e2b0-11e0-8472-00145ea49a02">
- <decoupage idens="g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E" id="c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67" tagsSelect=""/>
- </content>
- <content id="c4ff2454-9842-11e1-9f9f-00145ea4a2be">
- <decoupage idens="g_5665330A-7789-1E08-13C2-3C4D26B44EAF" id="c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425" tagsSelect=""/>
- </content>
- </display>
- </displays>
- <edits>
- <editing id="0" tags="">
- <title>Bout à bout 1</title>
- <abstract/>
- <edit id="edit1" tags="">
- <eList>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_D673EC15-794D-49DA-8C7F-3C4FA26D31EB" begin="420" end="425" m="0" v="100" eBegin="0" eEnd="5" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_042EF890-7308-36B2-B062-3C50742B82DF" begin="980" end="995" m="0" v="100" eBegin="5" eEnd="20" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_04198AE9-E293-3D75-02E7-3C50AE71F332" begin="370" end="380" m="1" v="100" eBegin="20" eEnd="30" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_6F2C6F16-30B4-FFAF-4570-3C50F05F55F7" begin="1833" end="1860" m="0" v="100" eBegin="30" eEnd="57" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_EA82B8B1-2937-2C4D-D120-3C510AA3C604" begin="1090" end="1105" m="2" v="100" eBegin="57" eEnd="72" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_296D8184-D13B-3F5E-6227-3C517EFC3672" begin="2436" end="2459" m="0" v="100" eBegin="72" eEnd="95" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_4DE6A596-1A2C-F204-E95C-3C519162E526" begin="2030" end="2035" m="1" v="100" eBegin="95" eEnd="100" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be|;|g_5665330A-7789-1E08-13C2-3C4D26B44EAF|;|c_3D9A9B5D-E144-4920-A9CA-3C4D26B48425|;||;||;|s_E50BC064-9913-C603-F646-3C519D22AE91" begin="2922" end="2940" m="1" v="100" eBegin="100" eEnd="118" trId="0" trIc="0" trOd="0" trOc="0"/>
- <inst ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02|;|g_F84E6DE7-FB3E-4672-3E87-3C4B87BA959E|;|c_3B9ADA5A-DBB7-00AC-BA4E-3C4B87B9EA67|;||;||;|s_CA30F86A-51E2-4C4D-9B72-3C51A9A31A39" begin="3240" end="3250" m="0" v="100" eBegin="118" eEnd="128" trId="0" trIc="0" trOd="0" trOc="0"/>
- </eList>
- <caption/>
- <audio/>
- <mList>
- <m ref="c1a84ff8-e2b0-11e0-8472-00145ea49a02" id="0" t="v" c="16763904">
- <content>rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/rsln_jane_mcgonigal.mp4</content>
- </m>
- <m ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be" id="1" t="v" c="10027008">
- <content>rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/www2012_timbernerslee.mp4</content>
- </m>
- <m ref="c4ff2454-9842-11e1-9f9f-00145ea4a2be" id="2" t="v" c="13369344">
- <content>rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/www2012_timbernerslee.mp4</content>
- </m>
- </mList>
- </edit>
- <edit id="edit2" tags="">
- <eList/>
- <caption/>
- <audio/>
- <mList/>
- </edit>
- </editing>
- </edits>
-</iri>
Binary file metadataplayer/mashup/bab_files/player_bab_ldt.swf has changed
Binary file metadataplayer/mashup/fonts/DINBd.ttf has changed
Binary file metadataplayer/mashup/fonts/DINRg.ttf has changed
Binary file metadataplayer/mashup/img/background.png has changed
Binary file metadataplayer/mashup/img/barbg.png has changed
Binary file metadataplayer/mashup/img/mashupbar.png has changed
Binary file metadataplayer/mashup/img/title.png has changed
--- a/metadataplayer/mashup/moon.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,104 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>Preuve de concept Mashup</title>
- <link rel="stylesheet" type="text/css" href="style.css" />
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <script type="text/javascript" src="../metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- </head>
- <body>
- <div class="main-container">
- <div class="header">
- <h1>Hash Cut #</h1>
- </div>
- <div class="steps">
- <h2>Créer un Hash-cut en 3 étapes :</h2>
- <div class="steps-frame">
- <div class="step">
- <div class="step-icon step-1"></div>
- <div class="step-title">S'inscrire et<br />créer un projet</div>
- </div>
- <div class="step-separator"></div>
- <div class="step">
- <div class="step-icon step-2"></div>
- <div class="step-title">Découper et<br />Assembler</div>
- </div>
- <div class="step-separator"></div>
- <div class="step active">
- <div class="step-icon step-3"></div>
- <div class="step-title">Partager et<br />regarder !</div>
- </div>
- </div>
- </div>
- <div class="colgauche">
- <h2>Mon HashCut</h2>
- <hr />
- <div id="LdtPlayer"></div>
- </div>
- <div class="coldroite">
- <div id="mediaList"></div>
- <div id="AnnotationsListContainer"></div>
- </div>
- <div class="footer">
- <hr />
- <p style="text-align: right;">© IRI 2012</p>
- </div>
- </div>
- <script type="text/javascript">
-
-IriSP.libFiles.defaultDir = "../libs/";
-IriSP.widgetsDir = "../metadataplayer";
-IriSP.language = 'fr';
-var _metadata = {
- url: 'moon/moon.json',
- format: 'ldt'
-};
-var _canPlayMp4 = document.createElement('video').canPlayType('video/mp4');
-var _config = {
- width : 630,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : '../metadataplayer/LdtPlayer-core.css',
- widgets: [
- {
- type: "MashupPlayer",
-// split_screen: true,
- url_transform: function(_url) {
- if (_canPlayMp4 == "maybe" || _canPlayMp4 == "probably") {
- return _url.replace(/\.webm$/i,'.mp4');
- } else {
- return _url.replace(/\.mp4$/i,'.webm');
- }
-
- }
- },
- { type: "Slider" },
- { type: "Controller" },
- {
- type: "Segments",
- annotation_type: false
- },
- {
- type: "Annotation",
- annotation_type: false
- },
- {
- type: "MediaList",
- container: "mediaList"
- },
- {
- type: "AnnotationsList",
- container: "AnnotationsListContainer",
- default_thumbnail : "http://ldt.iri.centrepompidou.fr/static/site/ldt/css/imgs/video_sequence.png"
- },
- { type: "Mediafragment" }
- ]
-};
-
-_myPlayer = new IriSP.Metadataplayer(_config);
-
- </script>
- </body>
-</html>
\ No newline at end of file
Binary file metadataplayer/mashup/moon/apollo.jpg has changed
Binary file metadataplayer/mashup/moon/apollo.mp4 has changed
Binary file metadataplayer/mashup/moon/apollo.webm has changed
Binary file metadataplayer/mashup/moon/atlas.jpg has changed
Binary file metadataplayer/mashup/moon/juno.mp4 has changed
Binary file metadataplayer/mashup/moon/juno.webm has changed
Binary file metadataplayer/mashup/moon/melies.jpg has changed
Binary file metadataplayer/mashup/moon/melies.mp4 has changed
Binary file metadataplayer/mashup/moon/melies.webm has changed
--- a/metadataplayer/mashup/moon/moon.json Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,388 +0,0 @@
-{
- "views": null,
- "tags": null,
- "lists": [
- {
- "items": ["segment-melies-001", "segment-atlas-001", "segment-melies-002", "segment-apollo-001", "segment-atlas-002", "segment-melies-003", "segment-atlas-003", "segment-melies-004", "segment-apollo-002"],
- "meta": {
- "dc:contributor": "IRI",
- "dc:creator": "IRI",
- "dc:title": "Bout à bout Lunaire",
- "dc:modified": "2012-06-22T15:04:17.752880",
- "dc:created": "2012-06-22T15:04:17.752880",
- "listtype": "mashup",
- "dc:description": ""
- },
- "id": "mashup-001"
- }
- ],
- "medias": [
- {
- "origin": "0",
- "url": "moon/melies.webm",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-09-19T13:17:56.656743",
- "dc:duration": 674000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "Le Voyage dans la Lune de Méliès",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:33.052583",
- "dc:description": "Georges Méliès, 1902. Domaine public.",
- "url": "http://en.wikipedia.org/wiki/File:Le_Voyage_dans_la_Lune_%28Georges_M%C3%A9li%C3%A8s,_1902%29.ogv",
- "img": {
- "src": "moon/melies.jpg"
- }
- },
- "id": "media-melies",
- "unit": "ms"
- }, {
- "origin": "0",
- "url": "moon/juno.webm",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-09-19T13:17:56.656743",
- "dc:duration": 130000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "Launch of Juno!, NASA",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:33.052583",
- "dc:description": "An Atlas V rocket lofted the Juno spacecraft toward Jupiter from Space Launch Complex-41. The 4-ton Juno spacecraft will take five years to reach Jupiter on a mission to study its structure and decipher its history. NASA, 2011. Domaine public.",
- "url": "http://www.nasa.gov/multimedia/videogallery/index.html?media_id=105049051",
- "img": {
- "src": "moon/atlas.jpg"
- }
- },
- "id": "media-atlas",
- "unit": "ms"
- }, {
- "origin": "0",
- "url": "moon/apollo.webm",
- "http://advene.liris.cnrs.fr/ns/frame_of_reference/ms": "o=0",
- "meta": {
- "dc:contributor": "IRI",
- "dc:created": "2011-09-19T13:17:56.656743",
- "dc:duration": 137000,
- "dc:creator": "IRI",
- "dc:created.contents": "2012-02-13",
- "dc:title": "Apollo 11 Overview, NASA",
- "dc:creator.contents": "IRI",
- "dc:modified": "2012-02-13T11:55:33.052583",
- "dc:description": "Video highlights from the historic first manned landing on the moon, during the Apollo 11 mission in July 1969. NASA, 2011. Domaine public.",
- "url": "http://www.nasa.gov/multimedia/videogallery/index.html?media_id=11463015",
- "img": {
- "src": "moon/apollo.jpg"
- }
- },
- "id": "media-apollo",
- "unit": "ms"
- }
- ],
- "meta": {
- "dc:contributor": "admin",
- "dc:created": "2012-05-11T16:26:53.787298",
- "dc:creator": "admin",
- "main_media": {
- "id-ref": "mashup-001"
- },
- "dc:description": "",
- "dc:title": "To the Moon, feat. Méliès + NASA",
- "id": "5afd8bbe-9b75-11e1-9e5d-00145ea4a2be",
- "dc:modified": "2012-05-11T16:37:30.246796"
- },
- "annotations": [
- {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le Voyage dans la Lune, Segment 1",
- "img": {
- "src": ""
- },
- "title": "La capsule lunaire est chargée dans le canon permettant son lancement",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 301000,
- "end": 306000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-melies",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "10485760",
- "media": "media-melies",
- "id": "segment-melies-001"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le Voyage dans la Lune, Segment 2",
- "img": {
- "src": ""
- },
- "title": "Ordre de mise à feu du canon propulseur",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 314500,
- "end": 316000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-melies",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "10485760",
- "media": "media-melies",
- "id": "segment-melies-002"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le Voyage dans la Lune, Segment 3",
- "img": {
- "src": ""
- },
- "title": "La Lune se rapproche et dévoile son visage",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 344000,
- "end": 347000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-melies",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "10485760",
- "media": "media-melies",
- "id": "segment-melies-003"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Le Voyage dans la Lune, Segment 4",
- "img": {
- "src": ""
- },
- "title": "Alunissage et sortie de l'équipage",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 348500,
- "end": 358000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-melies",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "10485760",
- "media": "media-melies",
- "id": "segment-melies-004"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Lancement de la sonde Juno, Segment 1",
- "img": {
- "src": ""
- },
- "title": "Décompte du décollage de la fusée Atlas V",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 7000,
- "end": 11000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-atlas",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "32768",
- "media": "media-atlas",
- "id": "segment-atlas-001"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Lancement de la sonde Juno, Segment 2",
- "img": {
- "src": ""
- },
- "title": "La fusée Atlas V décolle",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 16000,
- "end": 19000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-atlas",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "32768",
- "media": "media-atlas",
- "id": "segment-atlas-002"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Lancement de la sonde Juno, Segment 3",
- "img": {
- "src": ""
- },
- "title": "La fusée Atlas V en vol",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 35000,
- "end": 38000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-atlas",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "32768",
- "media": "media-atlas",
- "id": "segment-atlas-003"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Mission Apollo 11, Segment 1",
- "img": {
- "src": ""
- },
- "title": "Décollage du lanceur Saturn V",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 20000,
- "end": 23000,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-apollo",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "16763904",
- "media": "media-apollo",
- "id": "segment-apollo-001"
- }, {
- "content": {
- "mimetype": "application/x-ldt-structured",
- "description": "Mission Apollo 11, Segment 2",
- "img": {
- "src": ""
- },
- "title": "'One small step for man, one giant leap for mankind'",
- "color": "16763904",
- "polemics": [],
- "audio": {
- "mimetype": "audio/mp3",
- "src": "",
- "href": null
- }
- },
- "begin": 62500,
- "end": 75500,
- "meta": {
- "dc:contributor": "perso",
- "id-ref": "decoupage-apollo",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:modified": "2012-05-11T15:08:00.348480",
- "dc:creator": "perso"
- },
- "tags": [],
- "color": "16763904",
- "media": "media-apollo",
- "id": "segment-apollo-002"
- }
- ],
- "annotation-types": [
- {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Segments du Voyage sur la Lune",
- "id": "decoupage-melies",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.348480"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Segments du Lancement de Juno",
- "id": "decoupage-atlas",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.348480"
- }, {
- "dc:contributor": "perso",
- "dc:creator": "perso",
- "dc:title": "Segments d'Apollo 11",
- "id": "decoupage-apollo",
- "dc:created": "2012-05-11T15:08:00.348480",
- "dc:description": "",
- "dc:modified": "2012-05-11T15:08:00.348480"
- }
- ]
-}
\ No newline at end of file
--- a/metadataplayer/mashup/player-html.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,129 +0,0 @@
-<!doctype html>
-<html>
- <head>
- <title>Preuve de concept Mashup</title>
- <link rel="stylesheet" type="text/css" href="style.css" />
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <script type="text/javascript" src="../metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- </head>
- <body>
- <div class="main-container">
- <div class="header">
- <h1>Hash Cut #</h1>
- </div>
- <div class="steps">
- <h2>Créer un Hash-cut en 3 étapes :</h2>
- <div class="steps-frame">
- <div class="step">
- <div class="step-icon step-1"></div>
- <div class="step-title">S'inscrire et<br />créer un projet</div>
- </div>
- <div class="step-separator"></div>
- <div class="step">
- <div class="step-icon step-2"></div>
- <div class="step-title">Découper et<br />Assembler</div>
- </div>
- <div class="step-separator"></div>
- <div class="step active">
- <div class="step-icon step-3"></div>
- <div class="step-title">Partager et<br />regarder !</div>
- </div>
- </div>
- </div>
- <div class="colgauche">
- <h2>Mon HashCut (ne fonctionne pas avec Firefox)</h2>
- <hr />
- <div id="LdtPlayer"></div>
- </div>
- <div class="coldroite">
- <div id="mediaList"></div>
- <h2>Annotations</h2>
- <hr />
- <div id="annotationList"></div>
- </div>
- <div class="footer">
- <hr />
- <p style="text-align: right;">© IRI 2012</p>
- </div>
- </div>
- <script type="text/javascript">
-
-function url_transform_func(_url){
- //_url = "rtmp://media.iri.centrepompidou.fr/ddc_player/mp4:video/ldtplatform/rsln_clay_shirky";
- // We change the streamer if needed
- var _transformed = _url.replace(/^rtmp:\/\/media.iri.centrepompidou.fr\/ddc_player\/(mp4:)?video\//i,"http://media.iri.centrepompidou.fr/video/");
- // Get the file name (= remove extension if necessary)
- ext = _transformed.substr(_transformed.lastIndexOf('.')+1).toLowerCase();
- if(ext=="mp4" || ext=="f4v" || ext=="flv" || ext=="mov" || ext=="webm" || ext=="mpg4" || ext=="ogv" || ext=="ogg" || ext=="avi"){
- _transformed = _transformed.substr(0, _transformed.lastIndexOf('.'));
- }
- // now that the file name is clean, we add all the extension and mimetype
- srcTypeArray = [
- {src:_transformed+".mp4", type:"video/mp4"},
- {src:_transformed+".ogv", type:"video/ogg"},
- {src:_transformed+".webm", type:"video/webm"}
- ];
- console.log("_transformed = " + srcTypeArray[0]["src"]);
- return srcTypeArray;
-}
-
-
-IriSP.libFiles.defaultDir = "../libs/";
-IriSP.widgetsDir = "../metadataplayer";
-IriSP.language = 'fr';
-var _metadata = {
- url: 'bab_files/mashup.json',
-// url: 'http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/cljson/id/b2754186-a0c9-11e0-b8bd-00145ea49a02?callback=?',
-// url: 'http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/cljson/id/5afd8bbe-9b75-11e1-9e5d-00145ea4a2be?callback=?',
-// url: 'http://localhost/pf/ldtplatform/ldt/mashupbytag/?tag=projection',
-// url: 'http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/mashupbytag/?tag=mashuptag&callback=?',
-// url: 'http://localhost/pf/ldtplatform/ldt/mashupbytag/?tag=mashuptag&in=240000&out=1860000',
- format: 'ldt'
-};
-var _config = {
- width : 630,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : '../metadataplayer/LdtPlayer-core.css',
- widgets: [
- {
- type: "MashupPlayer",
- url_transform: url_transform_func
- },
- { type: "Slider" },
- { type: "Controller" },
- {
- type: "Segments",
- annotation_type: false
- },
- {
- type: "Annotation",
- annotation_type: false
- },
- {
- type: "Tagger",
- api_endpoint: "../post-test.php",
- tags: ["actif","amour","bonheur","captif","charité","désir","dieu","doute","famille","idéal","internationale","passif","patrie","peur","politique","président","spleen","travail"]
- },
- {
- type: "MediaList",
- container: "mediaList"
- },
- {
- type: "AnnotationsList",
- container: "annotationList",
- //ajax_url: "http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}?callback=?",
- //ajax_granularity: 30000,
- //limit_count: 3
- },
- { type: "Mediafragment" }
- ]
-};
-
-_myPlayer = new IriSP.Metadataplayer(_config);
-
- </script>
- </body>
-</html>
\ No newline at end of file
--- a/metadataplayer/mashup/style.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,119 +0,0 @@
-@font-face {
- font-family: DIN;
- font-weight: normal;
- font-style: normal;
- src: url(fonts/DINRg.ttf);
-}
-
-@font-face {
- font-family: DIN;
- font-weight: bold;
- font-style: normal;
- src: url(fonts/DINBd.ttf);
-}
-
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td,
-article, aside, canvas, details, embed,
-figure, figcaption, footer, header, hgroup,
-menu, nav, output, ruby, section, summary,
-time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
-}
-
-img a {
- border: none;
-}
-
-body {
- background: url(img/background.png) repeat-x top #f8f6f7;
- font-family: DIN;
-}
-
-.main-container {
- width: 960px; margin: 0 auto;
-}
-
-h1 {
- width: 141px; height: 83px; text-indent: -999px; background: url(img/title.png);
-}
-
-h2 {
- color: #30036d; margin: 5px 0 2px; font-size: 18px; font-weight: bold;
-}
-
-hr {
- width: 100%; border: none; margin: 2px 0; background: #666666; height: 1px;
-}
-
-.steps-frame {
- width: 960px; height: 70px; border-style: solid none; border-width: 1px; border-color: #666666; clear: both; background: url(img/barbg.png) #ffffff;
-}
-
-.step {
- width: 256px; height: 70px; float: left; cursor: pointer;
-}
-
-.step-separator {
- width: 96px; height: 70px; float: left; background: url(img/mashupbar.png);
-}
-
-.step-icon {
- margin: 0 5px; height: 70px; float: left; background: url(img/mashupbar.png);
-}
-
-.step-1 {
- background-position: -100px -70px; width: 58px;
-}
-
-.active .step-1, .step:hover .step-1 {
- background-position: -100px 0; width: 58px;
-}
-
-.step-2 {
- background-position: -159px -70px; width: 96px;
-}
-
-.active .step-2, .step:hover .step-2 {
- background-position: -159px 0; width: 96px;
-}
-
-.step-3 {
- background-position: -255px -70px; width: 115px;
-}
-
-.active .step-3, .step:hover .step-3 {
- background-position: -255px 0; width: 115px;
-}
-
-.step-title {
- margin: 5px 0; font-size: 18px; font-weight: bold; color: #808080;
-}
-
-.active .step-title, .step:hover .step-title {
- color: #30036d;
-}
-
-.colgauche {
- float: left; width: 630px; margin: 5px 10px 5px 0; min-height: 650px;
-}
-
-.coldroite {
- float: left; width: 310px; margin: 5px 0 5px 10px;
-}
-
-.footer {
- width: 100%; clear: both;
-}
--- a/metadataplayer/metadataplayer/Annotation.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,121 +0,0 @@
-.Ldt-Annotation-Widget {
- border-style: none solid solid;
- border-width: 1px;
- border-color: #b7b7b7;
- padding: 0 1px 1px;
- margin: 0;
-}
-
-.Ldt-Annotation-Widget.Ldt-Annotation-ShowTop {
- border-top-style: solid;
- padding-top: 1px;
-}
-
-.Ldt-Annotation-Inner {
- background: url(img/pinstripe.png);
- padding: 5px;
- margin: 0;
-}
-
-.Ldt-Annotation-Inner h3 {
- margin: 5px 0;
- font-size: 14px;
- font-weight: bold;
-}
-
-.Ldt-Annotation-Cleared {
- clear: both;
-}
-
-.Ldt-Annotation-MaxMinButton {
- float: right; margin: 5px 5px 0; width: 17px; height: 17px;
- background: url(img/widget-control.png); background-position: 0 -51px; cursor: pointer;
-}
-
-.Ldt-Annotation-Social {
- float: right;
-}
-
-.Ldt-Annotation-MaxMinButton:hover {
- background-position: -17px -51px;
-}
-
-.Ldt-Annotation-Minimized div.Ldt-Annotation-MaxMinButton {
- background-position: 0 -34px;
-}
-
-.Ldt-Annotation-Minimized div.Ldt-Annotation-MaxMinButton:hover {
- background-position: -17px -34px;
-}
-
-.Ldt-Annotation-Inner h3.Ldt-Annotation-MashupOrigin {
- font-size: 12px;
-}
-
-.Ldt-Annotation-Title, .Ldt-Annotation-MashupMedia {
- color: #0068c4;
-}
-
-.Ldt-Annotation-Time {
- color: #ff3b77
-}
-
-.Ldt-Annotation-Inner p {
- font-size: 12px;
-}
-
-.Ldt-Annotation-Label {
- font-size: 12px; font-weight: bold; max-width: 90px; float: left; clear: left;
-}
-
-.Ldt-Annotation-Labelled {
- margin: 5px 0 0 90px; clear: right;
-}
-
-.Ldt-Annotation-Tags-Block {
- font-size: 12px;
-}
-
-ul.Ldt-Annotation-Tags {
- list-style: none; padding: 0;
-}
-
-li.Ldt-Annotation-TagLabel {
- display: inline-block; border: none; margin: 0 10px 5px 0; height: 23px; padding: 0 0 0 20px;
- background: url(img/tag.png) left top no-repeat;
- cursor: pointer;
-}
-
-.Ldt-Annotation-TagLabel span {
- display: inline-block; font-size: 12px; height: 19px; padding: 4px 5px 0 0; border: none; margin: 0;
- background: url(img/tag.png) right top no-repeat;
-}
-
-li.Ldt-Annotation-TagLabel:hover {
- background-position: left -23px;
-}
-
-.Ldt-Annotation-TagLabel:hover span {
- background-position: right -23px;
-}
-
-.Ldt-Annotation-MashupOrigin {
- display: none;
-}
-
-.Ldt-Annotation-isMashup .Ldt-Annotation-MashupOrigin {
- display: block;
-}
-
-.Ldt-Annotation-Empty .Ldt-Annotation-HiddenWhenEmpty {
- display: none;
-}
-
-.Ldt-Annotation-Minimized .Ldt-Annotation-HiddenWhenMinimized {
- display: none;
-}
-
-.Ldt-Annotation-EmptyBlock {
- display: none;
-}
-
--- a/metadataplayer/metadataplayer/Annotation.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,179 +0,0 @@
-// TODO: Migrate Timeupdate functions to Extract
-
-IriSP.Widgets.Annotation = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.lastAnnotation = false;
- this.minimized = this.start_minimized || false;
- this.bounds = [ 0, 0 ];
-};
-
-IriSP.Widgets.Annotation.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Annotation.prototype.messages = {
- fr: {
- watching: "Je regarde ",
- on_site: " sur ",
- tags_: "Mots-clés :",
- description_: "Description :",
- excerpt_from: "Extrait de :"
- },
- en: {
- watching: "I'm watching ",
- on_site: " on ",
- tags_: "Keywords:",
- description_: "Description:",
- excerpt_from: "Excerpt from:"
- }
-}
-
-IriSP.Widgets.Annotation.prototype.template =
- '{{#show_arrow}}<div class="Ldt-Annotation-Arrow"></div>{{/show_arrow}}'
- + '<div class="Ldt-Annotation-Widget {{^show_arrow}}Ldt-Annotation-ShowTop{{/show_arrow}}">'
- + '<div class="Ldt-Annotation-Inner Ldt-Annotation-Empty{{#start_minimized}} Ldt-Annotation-Minimized{{/start_minimized}}">'
- + '<div class="Ldt-Annotation-HiddenWhenEmpty Ldt-Annotation-MaxMinButton"></div>'
- + '<div class="Ldt-Annotation-Social Ldt-Annotation-HiddenWhenMinimized Ldt-Annotation-HiddenWhenEmpty"></div>'
- + '<h3 class="Ldt-Annotation-HiddenWhenEmpty"><span class="Ldt-Annotation-Title"></span> <span class="Ldt-Annotation-Time">'
- + '( <span class="Ldt-Annotation-Begin"></span> - <span class="Ldt-Annotation-End"></span> )</span></h3>'
- + '<h3 class="Ldt-Annotation-MashupOrigin Ldt-Annotation-HiddenWhenEmpty">{{l10n.excerpt_from}} <span class="Ldt-Annotation-MashupMedia"></span> <span class="Ldt-Annotation-Time">'
- + '( <span class="Ldt-Annotation-MashupBegin"></span> - <span class="Ldt-Annotation-MashupEnd"></span> )</span></h3>'
- + '<div class="Ldt-Annotation-Cleared Ldt-Annotation-HiddenWhenMinimized Ldt-Annotation-HiddenWhenEmpty Ldt-Annotation-Description-Block"><div class="Ldt-Annotation-Label">{{l10n.description_}}</div>'
- + '<p class="Ldt-Annotation-Labelled Ldt-Annotation-Description"></p></div>'
- + '<div class="Ldt-Annotation-Tags-Block Ldt-Annotation-HiddenWhenMinimized Ldt-Annotation-HiddenWhenEmpty Ldt-Annotation-Cleared">'
- + '<div class="Ldt-Annotation-Label">{{l10n.tags_}}</div><ul class="Ldt-Annotation-Labelled Ldt-Annotation-Tags"></ul>'
- + '</div></div></div></div>';
-
-IriSP.Widgets.Annotation.prototype.defaults = {
- annotation_type : "chap",
- start_minimized: false,
- show_arrow : true,
- site_name : "Lignes de Temps",
- search_on_tag_click: true
-}
-
-IriSP.Widgets.Annotation.prototype.draw = function() {
-
- var _this = this;
-
- function timeupdate(_time) {
- var _list = _this.getWidgetAnnotationsAtTime();
- if (!_list.length) {
- _this.$.find(".Ldt-Annotation-Inner").addClass("Ldt-Annotation-Empty");
- if (_this.arrow) {
- _this.arrow.moveToTime(_time);
- }
- _this.bounds = [ _time, _time ];
- _this.sendBounds();
- }
- }
-
- function drawAnnotation(_annotation) {
- var _url = (typeof _annotation.url !== "undefined"
- ? _annotation.url
- : (document.location.href.replace(/#.*$/,'') + '#id=' + _annotation.id)),
- _text = _this.l10n.watching + _annotation.title + (_this.site_name ? _this.l10n.on_site + _this.site_name : ''),
- _tags = _annotation.getTags(),
- _tagblock = _this.$.find(".Ldt-Annotation-Tags");
- if (_tags.length) {
- _this.$.find(".Ldt-Annotation-Tags-Block").removeClass("Ldt-Annotation-EmptyBlock");
- _tags.forEach(function(_tag) {
- var _trimmedTitle = _tag.title.replace(/(^\s+|\s+$)/g,'');
- if (_trimmedTitle) {
- var _el = IriSP.jQuery('<li class="Ldt-Annotation-TagLabel"></li>').append(IriSP.jQuery('<span>').text(_trimmedTitle));
- _el.click(function() {
- if (_this.search_on_tag_click) {
- _this.player.trigger("search.triggeredSearch",_trimmedTitle);
- }
- _tag.trigger("click");
- });
- _tagblock.append(_el);
- }
- });
- } else {
- _this.$.find(".Ldt-Annotation-Tags-Block").addClass("Ldt-Annotation-EmptyBlock");
- }
- _this.$.find(".Ldt-Annotation-Title").html(_annotation.title);
- var _desc = _annotation.description.replace(/(^\s+|\s+$)/g,'');
- if (_desc) {
- _this.$.find(".Ldt-Annotation-Description-Block").removeClass("Ldt-Annotation-EmptyBlock");
- _this.$.find(".Ldt-Annotation-Description").html(_desc);
- } else {
- _this.$.find(".Ldt-Annotation-Description-Block").addClass("Ldt-Annotation-EmptyBlock");
- }
- _this.$.find(".Ldt-Annotation-Begin").html(_annotation.begin.toString());
- _this.$.find(".Ldt-Annotation-End").html(_annotation.end.toString());
- if (_annotation.elementType === "mashedAnnotation") {
- _this.$.find('.Ldt-Annotation-Inner').addClass("Ldt-Annotation-isMashup");
- _this.$.find(".Ldt-Annotation-MashupMedia").html(_annotation.getMedia().title);
- _this.$.find(".Ldt-Annotation-MashupBegin").html(_annotation.annotation.begin.toString());
- _this.$.find(".Ldt-Annotation-MashupEnd").html(_annotation.annotation.end.toString());
- } else {
- _this.$.find('.Ldt-Annotation-Inner').removeClass("Ldt-Annotation-isMashup");
- }
- if (typeof _this.socialWidget !== "undefined") {
- _this.socialWidget.updateUrls(_url, _text);
- } else {
- setTimeout(function() {
- if (typeof _this.socialWidget !== "undefined") {
- _this.socialWidget.updateUrls(_url, _text);
- }
- },800);
- }
- _this.$.find(".Ldt-Annotation-Inner").removeClass("Ldt-Annotation-Empty");
- _this.bounds = [ _annotation.begin, _annotation.end ];
- if (_this.arrow) {
- _this.arrow.moveToTime((_annotation.begin + _annotation.end)/2);
- }
- _this.sendBounds();
- }
-
- this.renderTemplate();
- this.insertSubwidget(this.$.find(".Ldt-Annotation-Social"), { type: "Social" }, "socialWidget");
- this.insertSubwidget(this.$.find(".Ldt-Annotation-Arrow"), { type: "Arrow" }, "arrow");
- this.onMediaEvent("timeupdate",timeupdate);
- this.onMdpEvent("Annotation.hide","hide");
- this.onMdpEvent("Annotation.show","show");
- this.onMdpEvent("Annotation.minimize","minimize");
- this.onMdpEvent("Annotation.maximize","maximize");
- this.onMdpEvent("Annotation.getBounds","sendBounds");
- this.$.find(".Ldt-Annotation-MaxMinButton").click(this.functionWrapper("toggleSize"));
- this.getWidgetAnnotations().forEach(function(_a) {
- _a.on("enter", function() {
- drawAnnotation(_a)
- });
- });
-}
-
-IriSP.Widgets.Annotation.prototype.sendBounds = function() {
- this.player.trigger("Annotation.boundsChanged",this.bounds);
-}
-
-IriSP.Widgets.Annotation.prototype.drawAnnotation = function(_annotation) {
- this.lastAnnotation = _annotation.id;
-
-}
-
-IriSP.Widgets.Annotation.prototype.hide = function() {
- this.$.slideUp();
-}
-
-IriSP.Widgets.Annotation.prototype.show = function() {
- this.$.slideDown();
-}
-
-IriSP.Widgets.Annotation.prototype.toggleSize = function() {
- if (this.minimized) {
- this.maximize();
- } else {
- this.minimize();
- }
-}
-
-IriSP.Widgets.Annotation.prototype.minimize = function() {
- this.minimized = true;
- this.$.find('.Ldt-Annotation-Inner').addClass("Ldt-Annotation-Minimized");
-}
-
-IriSP.Widgets.Annotation.prototype.maximize = function() {
- this.minimized = false;
- this.$.find('.Ldt-Annotation-Inner').removeClass("Ldt-Annotation-Minimized");
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/AnnotationsList.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,102 +0,0 @@
-/* AnnotationsListWidget */
-
-.Ldt-AnnotationsListWidget {
- border: none; margin: 0; padding: 0;
- overflow: auto;
- max-height: 480px;
-}
-.Ldt-AnnotationsListWidget a {
- text-decoration: none;
-}
-
-.Ldt-AnnotationsList-Audio {
- width: 1px; height: 1px;
-}
-
-ul.Ldt-AnnotationsList-ul {
- list-style: none;
- padding: 2px;
- margin: 0;
-}
-li.Ldt-AnnotationsList-li {
- width: 100%;
- clear: both;
- margin: 2px 0;
- padding: 2px 0;
- min-height: 60px;
-}
-.Ldt-AnnotationsList-li.selected {
- background-image: url(img/pinstripe-grey.png);
-}
-.Ldt-AnnotationsList-highlight {
- background: #F7268E;
- color: #ffffff;
-}
-.Ldt-AnnotationsList-ThumbContainer {
- float: left;
- width: 80px;
- height: 50px;
- text-align: center;
- margin: 2px 0;
-}
-.Ldt-AnnotationsList-Thumbnail {
- border: none;
- max-width: 100%;
- max-height: 100%;
- margin: 0 auto;
-}
-.Ldt-AnnotationsList-Duration {
- color: #f7268e;
- float: right;
- text-align: right;
- font-size: 12px;
- margin: 2px;
-}
-h3.Ldt-AnnotationsList-Title {
- color: #0068c4;
- font-size: 13px;
- margin: 2px 2px 0 82px;
- font-weight: bold;
-}
-h3.Ldt-AnnotationsList-Title a {
- color: #0068c4;
-}
-p.Ldt-AnnotationsList-Description {
- margin: 2px 0 2px 82px;
- font-size: 12px;
- color: #333333;
-}
-ul.Ldt-AnnotationsList-Tags {
- list-style: none;
- padding: 0;
- margin: 2px 0 0 82px;
-}
-
-li.Ldt-AnnotationsList-Tag-Li {
- display: inline-block; border: none; margin: 0 10px 5px 0; height: 23px; padding: 0 0 0 20px;
- background: url(img/tag.png) left top no-repeat;
- cursor: pointer;
-}
-
-.Ldt-AnnotationsList-Tag-Li span {
- display: inline-block; font-size: 12px; height: 19px; padding: 4px 5px 0 0; border: none; margin: 0;
- background: url(img/tag.png) right top no-repeat;
-}
-
-li.Ldt-AnnotationsList-Tag-Li:hover {
- background-position: left -23px;
-}
-
-.Ldt-AnnotationsList-Tag-Li:hover span {
- background-position: right -23px;
-}
-
-.Ldt-AnnotationsList-Play {
- width: 125px; height: 20px; margin: 2px 0 2px 82px; text-align: center;
- padding: 3px 5px 0 20px; font-size: 12px; cursor: pointer;
- background: url(img/voiceannotation.png); color: #333333;
-}
-
-.Ldt-AnnotationsList-Play:hover {
- background-position: 0 bottom;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/AnnotationsList.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,367 +0,0 @@
-IriSP.Widgets.AnnotationsList = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.searchString = false;
- this.lastIds = [];
- var _this = this;
- this.throttledRefresh = IriSP._.throttle(function() {
- _this.refresh(false);
- }, 1500);
-};
-
-IriSP.Widgets.AnnotationsList.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.AnnotationsList.prototype.defaults = {
- /* URL when the annotations are to be reloaded from an LDT-like segment API
- * e.g. http://ldt.iri.centrepompidou.fr/ldtplatform/api/ldt/segments/{{media}}/{{begin}}/{{end}}?callback=?
- */
- ajax_url : false,
- /* number of milliseconds before/after the current timecode when calling the segment API
- */
- ajax_granularity : 600000,
- default_thumbnail : "",
- /* URL when the annotation is not in the current project,
- * e.g. http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/front/player/{{media}}/{{project}}/{{annotationType}}#id={{annotation}}
- */
- foreign_url : "",
- annotation_type : false,
- refresh_interval : 0,
- limit_count : 20,
- newest_first : false,
- show_audio: true,
- polemics : [{
- keyword: "++",
- background_color: "#c9ecc6"
- },{
- keyword: "--",
- background_color: "#f9c5c6"
- },{
- keyword: "??",
- background_color: "#cec5f9"
- },{
- keyword: "==",
- background_color: "#f9f4c6"
- }]
-};
-
-IriSP.Widgets.AnnotationsList.prototype.messages = {
- en: {
- voice_annotation: "Voice Annotation",
- now_playing: "Now playing..."
- },
- fr: {
- voice_annotation: "Annotation Vocale",
- now_playing: "Lecture en cours..."
- }
-}
-
-IriSP.Widgets.AnnotationsList.prototype.template =
- '<div class="Ldt-AnnotationsListWidget">'
- + '{{#show_audio}}<div class="Ldt-AnnotationsList-Audio"></div>{{/show_audio}}'
- + '<ul class="Ldt-AnnotationsList-ul">'
- + '</ul>'
- + '</div>';
-
-IriSP.Widgets.AnnotationsList.prototype.annotationTemplate =
- '<li class="Ldt-AnnotationsList-li Ldt-TraceMe" trace-info="annotation-id:{{id}}, media-id:{{media_id}}" style="{{specific_style}}">'
- + '<div class="Ldt-AnnotationsList-ThumbContainer">'
- + '<a href="{{url}}">'
- + '<img class="Ldt-AnnotationsList-Thumbnail" src="{{thumbnail}}" />'
- + '</a>'
- + '</div>'
- + '<div class="Ldt-AnnotationsList-Duration">{{begin}} - {{end}}</div>'
- + '<h3 class="Ldt-AnnotationsList-Title">'
- + '<a href="{{url}}">{{title}}</a>'
- + '</h3>'
- + '<p class="Ldt-AnnotationsList-Description">{{description}}</p>'
- + '{{#tags.length}}'
- + '<ul class="Ldt-AnnotationsList-Tags">'
- + '{{#tags}}'
- + '{{#.}}'
- + '<li class="Ldt-AnnotationsList-Tag-Li">'
- + '<span>{{.}}</span>'
- + '</li>'
- + '{{/.}}'
- + '{{/tags}}'
- + '</ul>'
- + '{{/tags.length}}'
- + '{{#audio}}<div class="Ldt-AnnotationsList-Play" data-audio={{audio}}>{{l10n.voice_annotation}}</div>{{/audio}}'
- + '</li>';
-
-IriSP.Widgets.AnnotationsList.prototype.onSearch = function(searchString) {
- this.searchString = typeof searchString !== "undefined" ? searchString : '';
- var _n = this.refresh(true);
- if (this.searchString) {
- if (_n) {
- this.player.trigger("search.matchFound");
- } else {
- this.player.trigger("search.noMatchFound");
- }
- }
-}
-
-//obj.url = this.project_url + "/" + media + "/" + annotations[i].meta.project + "/" + annotations[i].meta["id-ref"] + '#id=' + annotations[i].id;
-
-IriSP.Widgets.AnnotationsList.prototype.ajaxSource = function() {
- var _currentTime = this.media.getCurrentTime(),
- _duration = this.media.duration;
- this.lastAjaxQuery = _currentTime;
- var _url = Mustache.to_html(this.ajax_url, {
- media : this.source.currentMedia.id,
- begin : Math.max(0, _currentTime - this.ajax_granularity),
- end : Math.min(_duration.milliseconds, _currentTime + this.ajax_granularity)
- });
- this.currentSource = this.player.loadMetadata(IriSP._.defaults({
- "url" : _url
- }, this.metadata));
-}
-
-IriSP.Widgets.AnnotationsList.prototype.ajaxMashup = function() {
- var _currentTime = this.media.getCurrentTime();
- var _currentAnnotation = this.source.currentMedia.getAnnotationAtTime(_currentTime);
- if (typeof _currentAnnotation !== "undefined" && _currentAnnotation.id !== this.lastMashupAnnotation) {
- this.lastMashupAnnotation = _currentAnnotation.id;
- var _currentMedia = _currentAnnotation.getMedia(),
- _url = Mustache.to_html(this.ajax_url, {
- media : _currentMedia.id,
- begin : Math.max(0, _currentAnnotation.annotation.begin.milliseconds - this.ajax_granularity),
- end : Math.min(_currentMedia.duration.milliseconds, _currentAnnotation.annotation.end.milliseconds + this.ajax_granularity)
- });
- this.currentSource = this.player.loadMetadata(IriSP._.defaults({
- "url" : _url
- }, this.metadata));
- }
-}
-
-IriSP.Widgets.AnnotationsList.prototype.refresh = function(_forceRedraw) {
- _forceRedraw = (typeof _forceRedraw !== "undefined" && _forceRedraw);
- if (this.currentSource.status !== IriSP.Model._SOURCE_STATUS_READY) {
- return 0;
- }
- var _this = this,
- _currentTime = this.media.getCurrentTime();
- var _list = this.annotation_type ? this.currentSource.getAnnotationsByTypeTitle(this.annotation_type) : this.currentSource.getAnnotations();
- if (this.mashupMode) {
- var _currentAnnotation = this.source.currentMedia.getAnnotationAtTime(_currentTime);
- if (typeof _currentAnnotation !== "undefined") {
- _currentTime = _currentTime - _currentAnnotation.begin + _currentAnnotation.annotation.begin;
- var _mediaId = _currentAnnotation.getMedia().id;
- _list = _list.filter(function(_annotation) {
- return _annotation.getMedia().id === _mediaId;
- });
- }
- }
- if (this.searchString) {
- _list = _list.searchByTextFields(this.searchString);
- }
- if (this.limit_count) {
- /* Get the n annotations closest to current timecode */
- _list = _list.sortBy(function(_annotation) {
- return Math.abs((_annotation.begin + _annotation.end) / 2 - _currentTime);
- }).slice(0, this.limit_count)
- }
- if (this.newest_first) {
- _list = _list.sortBy(function(_annotation) {
- return -_annotation.created.valueOf();
- });
- } else {
- _list = _list.sortBy(function(_annotation) {
- return _annotation.begin;
- });
- }
-
- var _ids = _list.idIndex;
-
- if (_forceRedraw || !IriSP._.isEqual(_ids, this.lastIds)) {
- /* This part only gets executed if the list needs updating */
- this.lastIds = _ids;
- this.list_$.html("");
- _list.forEach(function(_annotation) {
- var _url = (
- ( typeof _annotation.url !== "undefined" && _annotation.url)
- ? _annotation.url
- : (
- ( typeof _this.source.projectId !== "undefined" && typeof _annotation.project !== "undefined" && _annotation.project && _this.source.projectId !== _annotation.project )
- ? Mustache.to_html(
- _this.foreign_url,
- {
- project : _annotation.project,
- media : _annotation.media.id,
- annotation : _annotation.id,
- annotationType : _annotation.annotationType.id
- }
- )
- : '#id=' + _annotation.id
- )
- );
- var _title = (_annotation.title || "").replace(_annotation.description,''),
- _description = _annotation.description;
- if (!_annotation.title) {
- _title = _annotation.creator;
- }
- if (!_annotation.description && _annotation.creator) {
- _description = _annotation.title;
- _title = _annotation.creator;
- }
- var _bgcolor;
- IriSP._(_this.polemics).each(function(_polemic) {
- var _rgxp = IriSP.Model.regexpFromTextOrArray(_polemic.keyword, true);
- if (_rgxp.test(_title + " " + _description)) {
- _bgcolor = _polemic.background_color;
- }
- });
- var _data = {
- id : _annotation.id,
- media_id : _annotation.getMedia().id,
- title : _title,
- description : _description,
- begin : _annotation.begin.toString(),
- end : _annotation.end.toString(),
- thumbnail : typeof _annotation.thumbnail !== "undefined" && _annotation.thumbnail ? _annotation.thumbnail : _this.default_thumbnail,
- url : _url,
- tags : _annotation.getTagTexts(),
- specific_style : (typeof _bgcolor !== "undefined" ? "background-color: " + _bgcolor : ""),
- audio : (_this.show_audio && _annotation.audio && _annotation.audio.href && _annotation.audio.href != "null" ? _annotation.audio.href : undefined),
- l10n: _this.l10n
- };
- var _html = Mustache.to_html(_this.annotationTemplate, _data);
- var _el = IriSP.jQuery(_html);
- _el.mouseover(function() {
- _annotation.trigger("select");
- })
- .mouseout(function() {
- _annotation.trigger("unselect");
- })
- .appendTo(_this.list_$);
- _annotation.on("select", function() {
- _this.annotations_$.removeClass("selected");
- _el.addClass("selected");
- });
- _annotation.on("unselect", function() {
- _this.annotations_$.removeClass("selected");
- });;
- });
-
- this.annotations_$ = this.$.find('.Ldt-AnnotationsList-li');
-
- /* Correct the empty tag bug */
- this.$.find('.Ldt-AnnotationsList-Tag-Li').each(function() {
- var _el = IriSP.jQuery(this);
- if (!_el.text().replace(/(^\s+|\s+$)/g,'')) {
- _el.detach();
- }
- });
-
- this.$.find('.Ldt-AnnotationsList-Tag-Li').click(function() {
- _this.player.trigger("search.triggeredSearch", IriSP.jQuery(this).text().replace(/(^\s+|\s+$)/g,''));
- });
-
- this.$.find(".Ldt-AnnotationsList-Play").click(function() {
- var _el = IriSP.jQuery(this),
- _audiofile = _el.attr("data-audio").replace(_this.rtmp_streamer,"");
- _el.text(_this.l10n.now_playing);
- _this.jwplayer.load({
- file: _audiofile,
- streamer: _this.rtmp_streamer
- });
- _this.jwplayer.play(true);
- _this.media.pause();
- _this.jw_paused_media = true;
- });
-
- if(this.searchString) {
- var _searchRe = IriSP.Model.regexpFromTextOrArray(this.searchString);
- this.$.find(".Ldt-AnnotationsList-Title a, .Ldt-AnnotationsList-Description").each(function() {
- var _$ = IriSP.jQuery(this);
- _$.html(_$.text().replace(/(^\s+|\s+$)/g,'').replace(_searchRe, '<span class="Ldt-AnnotationsList-highlight">$1</span>'))
- })
- }
- }
-
- if (this.ajax_url) {
- if (this.mashupMode) {
- this.ajaxMashup();
- } else {
- if (Math.abs(_currentTime - this.lastAjaxQuery) > (this.ajax_granularity)) {
- this.ajaxSource();
- }
- }
- }
- return _list.length;
-}
-
-IriSP.Widgets.AnnotationsList.prototype.draw = function() {
-
- this.mashupMode = (this.media.elementType === "mashup");
-
- this.renderTemplate();
-
- var _this = this;
-
- if (this.show_audio) {
- var _tmpId = "jwplayer-" + IriSP.Model.getUID();
- this.$.find(".Ldt-AnnotationsList-Audio").attr("id", _tmpId);
- this.jwplayer = jwplayer(_tmpId);
- this.jwplayer.setup({
- flashplayer: IriSP.getLib("jwPlayerSWF"),
- width: 1,
- height: 1,
- provider: "rtmp",
- events: {
- onIdle: function() {
- if (_this.jw_paused_media) {
- _this.jw_paused_media = false;
- _this.media.play();
- }
- _this.$.find(".Ldt-AnnotationsList-Play").text(_this.l10n.voice_annotation)
- }
- }
- });
- this.jw_paused_media = false;
- }
-
- this.list_$ = this.$.find(".Ldt-AnnotationsList-ul");
-
-
- this.onMdpEvent("search", "onSearch");
- this.onMdpEvent("search.closed", "onSearch");
- this.onMdpEvent("search.cleared", "onSearch");
- this.onMdpEvent("AnnotationsList.refresh", function() {
- if (_this.ajax_url) {
- if (_this.mashupMode) {
- _this.ajaxMashup();
- } else {
- _this.ajaxSource();
- }
- }
- _this.throttledRefresh();
- });
-
- if (this.ajax_url) {
- if (this.mashupMode) {
- this.ajaxMashup();
- } else {
- this.ajaxSource();
- }
- } else {
- this.currentSource = this.source;
- }
-
- if (this.refresh_interval) {
- window.setInterval(function() {
- _this.currentSource.get()
- }, this.refresh_interval);
- }
-
- this.onMdpEvent("createAnnotationWidget.addedAnnotation");
- var _events = [
- "timeupdate",
- "seeked",
- "loadedmetadata"
- ];
- for (var _i = 0; _i < _events.length; _i++) {
- this.onMediaEvent(_events[_i], this.throttledRefresh);
- }
-
- this.throttledRefresh();
-
-};
--- a/metadataplayer/metadataplayer/Arrow.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,88 +0,0 @@
-IriSP.Widgets.Arrow = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.current_pilot_widget = this.pilot_widget
-};
-
-IriSP.Widgets.Arrow.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Arrow.prototype.defaults = {
- arrow_height : 12,
- arrow_width : 20,
- base_height : 0,
- base_curve : 0,
- fill_url: IriSP.widgetsDir + '/img/pinstripe.png',
- fill_color: "#ffffff", //Gradients can be used, e.g. "90-#000-#fff" for vertical white-to-black
- stroke_color: "#b7b7b7",
- stroke_width: 1.5,
- animation_speed: 20
-}
-
-IriSP.Widgets.Arrow.prototype.draw = function() {
- this.height = this.arrow_height + this.base_height;
- this.$.addClass("Ldt-Arrow").css({
- height: (1+this.height) + "px",
- "margin-top": "1px",
- overflow: "hidden"
- });
- this.paper = new Raphael(this.container, this.width, 1+this.height );
- window.myArrow = this;
- this.svgArrow = this.paper.path('M0,' + this.height + 'L' + this.width + ',' + this.height);
- this.svgArrow.attr({
- stroke: this.stroke_color,
- "stroke-width": this.stroke_width,
- fill: this.fill_url ? ( 'url(' + this.fill_url + ')' ) : this.fill_color
- });
- this.moveToX(0);
-}
-
-IriSP.Widgets.Arrow.prototype.drawAt = function(_x) {
- _x = Math.max(0, Math.min(_x, this.width));
- var _d = 'M0,' + this.height
- + 'L0,' + Math.min( this.height, this.arrow_height + this.base_curve)
- + 'Q0,' + this.arrow_height
- + ' ' + Math.max(0, Math.min(this.base_curve, _x - this.arrow_width / 2)) + ',' + this.arrow_height
- + 'L' + Math.max(0, _x - this.arrow_width / 2) + ',' + this.arrow_height
- + 'L' + Math.max(0, _x - this.arrow_width / 2) + ',' + Math.min(this.arrow_height, 2 * this.arrow_height * _x / this.arrow_width)
- + 'L' + _x + ',0'
- + 'L' + Math.min(this.width, _x + this.arrow_width / 2) + ',' + Math.min(this.arrow_height, 2 * this.arrow_height * ( this.width - _x ) / this.arrow_width)
- + 'L' + Math.min(this.width, _x + this.arrow_width / 2) + ',' + this.arrow_height
- + 'L' + Math.min(this.width, Math.max(this.width - this.base_curve, _x + this.arrow_width / 2)) + ',' + this.arrow_height
- + 'Q' + this.width + ',' + this.arrow_height
- + ' ' + this.width + ',' + Math.min( this.height, this.arrow_height + this.base_curve)
- + 'L' + this.width + ',' + this.height;
- this.svgArrow.attr({
- path: _d
- });
-}
-
-IriSP.Widgets.Arrow.prototype.moveToX = function(_x) {
- this.targetX = Math.max(0, Math.min(_x, this.width));
- if (typeof this.animInterval === "undefined") {
- this.animInterval = window.setInterval(
- this.functionWrapper("increment"),
- 40
- )
- }
- this.increment();
-}
-
-IriSP.Widgets.Arrow.prototype.moveToTime = function(_t) {
- this.moveToX(this.width * _t / this.media.duration);
-}
-
-IriSP.Widgets.Arrow.prototype.increment = function() {
- if (typeof this.currentX === "undefined") {
- this.currentX = this.targetX;
- }
- if (this.currentX < this.targetX) {
- this.currentX = Math.min(this.targetX, this.currentX + this.animation_speed);
- }
- if (this.currentX > this.targetX) {
- this.currentX = Math.max(this.targetX, this.currentX - this.animation_speed);
- }
- if (this.currentX === this.targetX) {
- window.clearInterval(this.animInterval);
- this.animInterval = undefined;
- }
- this.drawAt(this.currentX);
-}
--- a/metadataplayer/metadataplayer/AutoPlayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,57 +0,0 @@
-IriSP.Widgets.AutoPlayer = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.AutoPlayer.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.AutoPlayer.prototype.defaults = {
- default_type: "JwpPlayer"
-}
-
-IriSP.Widgets.AutoPlayer.prototype.draw = function() {
-
- if (typeof this.video === "undefined") {
- this.video = this.media.video;
- }
-
- var _props = [ "live", "provider", "autostart", "streamer", "video", "height", "width", "url_transform" ],
- _opts = {},
- _types = [
- {
- regexp: /\.(ogg|ogv|webm)$/,
- type: "PopcornPlayer"
- },
- {
- regexp: /^(https?:\/\/)?(www\.)?youtube\.com/,
- type: "PopcornPlayer"
- },
- {
- regexp: /^(https?:\/\/)?(www\.)?vimeo\.com/,
- type: "PopcornPlayer"
- },
- {
- regexp: /^(https?:\/\/)?(www\.)?dailymotion\.com/,
- type: "DailymotionPlayer"
- }
- ];
-
- for (var i = 0; i < _types.length; i++) {
- if (_types[i].regexp.test(this.video)) {
- _opts.type = _types[i].type
- }
- }
-
- if (typeof _opts.type === "undefined") {
- _opts.type = this.default_type
- }
-
- for (var i = 0; i < _props.length; i++) {
- if (typeof this[_props[i]] !== "undefined") {
- _opts[_props[i]] = this[_props[i]];
- }
- }
-
-
- this.insertSubwidget(this.$, _opts);
-
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Controller.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,176 +0,0 @@
-/* Player Widget */
-
-.Ldt-Ctrl {
- font-size: 10px;
- background:url('img/player_gradient.png') repeat-x transparent ;
- height: 25px;
- border: 1px solid #b6b8b8;
- position: relative;
-}
-
-.Ldt-Ctrl-Left {
- float:left; width: 300px;
-}
-
-.Ldt-Ctrl-Right {
- float: right;
-}
-
-.Ldt-Ctrl-button {
- float: left;
- width: 30px; height: 25px;
- background: url('img/player-sprites.png');
- cursor: pointer;
-}
-
-.Ldt-Ctrl-spacer {
- float: left; width: 1px; height: 25px; background: #b6b8b8;
-}
-
-.Ldt-Ctrl-Play {
- margin: 0 15px;
-}
-
-.Ldt-Ctrl-Play-PlayState {
- background-position: 0 0;
-}
-
-.Ldt-Ctrl-Play-PlayState:hover {
- background-position: 0 -25px;
-}
-
-.Ldt-Ctrl-Play-PlayState:active {
- background-position: 0 -50px;
-}
-
-.Ldt-Ctrl-Play-PauseState {
- background-position: -30px 0;
-}
-
-.Ldt-Ctrl-Play-PauseState:hover {
- background-position: -30px -25px;
-}
-
-.Ldt-Ctrl-Play-PauseState:active {
- background-position: -30px -50px;
-}
-
-.Ldt-Ctrl-Annotate {
- margin: 0 2px;
- background-position: -60px 0;
-}
-
-.Ldt-Ctrl-Annotate:hover {
- background-position: -60px -25px;
-}
-
-.Ldt-Ctrl-Annotate:active {
- background-position: -60px -50px;
-}
-
-.Ldt-Ctrl-SearchBtn {
- margin: 0 2px;
- background-position: -90px 0;
-}
-
-.Ldt-Ctrl-SearchBtn:hover {
- background-position: -90px -25px;
-}
-
-.Ldt-Ctrl-SearchBtn:active {
- background-position: -90px -50px;
-}
-
-.Ldt-Ctrl-Search {
- width: 0; float: left; overflow: hidden;
-}
-
-input.Ldt-Ctrl-SearchInput {
- width: 145px; height: 13px; margin: 2px; padding: 3px;
- border: 1px solid #8080a0; border-radius: 3px; font-size: 13px;
-}
-
-.Ldt-Ctrl-Time {
- float: left;
- margin: 5px;
- font-size: 12px;
- font-family: Arial, Verdana, sans-serif;
-}
-
-.Ldt-Ctrl-Time-Elapsed {
- float: left;
- color: #4a4a4a;
-}
-
-.Ldt-Ctrl-Time-Separator {
- margin: 0 4px;
- float: left;
-}
-
-.Ldt-Ctrl-Time-Total {
- float: left;
- color: #b2b2b2;
-}
-
-.Ldt-Ctrl-Sound {
- margin: 0 2px;
-}
-
-.Ldt-Ctrl-Sound-Full {
- background-position: -120px 0;
-}
-
-.Ldt-Ctrl-Sound-Full:hover {
- background-position: -120px -25px;
-}
-
-.Ldt-Ctrl-Sound-Full:active {
- background-position: -120px -50px;
-}
-
-.Ldt-Ctrl-Sound-Mute {
- background-position: -150px 0;
-}
-
-.Ldt-Ctrl-Sound-Mute:hover {
- background-position: -150px -25px;
-}
-
-.Ldt-Ctrl-Sound-Mute:active {
- background-position: -150px -50px;
-}
-
-.Ldt-Ctrl-Sound-Half {
- background-position: -180px 0;
-}
-
-.Ldt-Ctrl-Sound-Half:hover {
- background-position: -180px -25px;
-}
-
-.Ldt-Ctrl-Sound-Half:active {
- background-position: -180px -50px;
-}
-
-.Ldt-Ctrl-Volume-Control {
- display: none;
- position: absolute;
- background:url('img/player_gradient.png') repeat-x transparent ;
- height: 25px;
- width: 100px; top: 25px; right: -1px; z-index: 100;
- padding: 0 2px;
- border: 1px solid #b6b8b8;
-}
-
-.Ldt-Ctrl-Volume-Bar {
- height: 5px; margin: 9px 3px 0; background: #cccccc; border: 1px solid #999999; border-radius: 2px;
-}
-
-.Ldt-Ctrl-Volume-Control .ui-slider-handle {
- width: 6px; height: 19px; background: #a8a8a8; border: 1px solid #999999; border-radius: 2px; top: -8px; margin-left: -4px;
- cursor: pointer;
-}
-
-.Ldt-Ctrl-Volume-Control:hover .ui-slider-handle {
- background: #F7268E;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Controller.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,310 +0,0 @@
-/* Displays Play and Pause buttons, Search Button and Form, Volume Control */
-
-IriSP.Widgets.Controller = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.lastSearchValue = "";
-};
-
-IriSP.Widgets.Controller.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Controller.prototype.defaults = {
- disable_annotate_btn: false,
- disable_search_btn: false,
- disable_ctrl_f: false
-}
-
-IriSP.Widgets.Controller.prototype.template =
- '<div class="Ldt-Ctrl">'
- + '<div class="Ldt-Ctrl-Left">'
- + '<div class="Ldt-Ctrl-button Ldt-Ctrl-Play Ldt-Ctrl-Play-PlayState Ldt-TraceMe" title="{{l10n.play_pause}}"></div>'
- + '<div class="Ldt-Ctrl-spacer"></div>'
- + '{{^disable_annotate_btn}}'
- + '<div class="Ldt-Ctrl-button Ldt-Ctrl-Annotate Ldt-TraceMe" title="{{l10n.annotate}}"></div>'
- + '<div class="Ldt-Ctrl-spacer"></div>'
- + '{{/disable_annotate_btn}}'
- + '{{^disable_search_btn}}'
- + '<div class="Ldt-Ctrl-button Ldt-Ctrl-SearchBtn Ldt-TraceMe" title="{{l10n.search}}"></div>'
- + '<div class="Ldt-Ctrl-spacer"></div>'
- + '{{/disable_search_btn}}'
- + '<div class="Ldt-Ctrl-Search">'
- + '<input class="Ldt-Ctrl-SearchInput Ldt-TraceMe"></input>'
- + '</div>'
- + '</div>'
- + '<div class="Ldt-Ctrl-Right">'
- + '<div class="Ldt-Ctrl-spacer"></div>'
- + '<div class="Ldt-Ctrl-Time">'
- + '<div class="Ldt-Ctrl-Time-Elapsed" title="{{l10n.elapsed_time}}">00:00</div>'
- + '<div class="Ldt-Ctrl-Time-Separator">/</div>'
- + '<div class="Ldt-Ctrl-Time-Total" title="{{l10n.total_time}}">00:00</div>'
- + '</div>'
- + '<div class="Ldt-Ctrl-spacer"></div>'
- + '<div class="Ldt-Ctrl-button Ldt-Ctrl-Sound Ldt-Ctrl-Sound-Full Ldt-TraceMe" title="{{l10n.mute_unmute}}"></div>'
- + '</div>'
- + '<div class="Ldt-Ctrl-Volume-Control" title="{{l10n.volume_control}}">'
- + '<div class="Ldt-Ctrl-Volume-Bar"></div>'
- + '</div>'
- + '</div>';
-
-IriSP.Widgets.Controller.prototype.messages = {
- en: {
- play_pause: "Play/Pause",
- mute_unmute: "Mute/Unmute",
- play: "Play",
- pause: "Pause",
- mute: "Mute",
- unmute: "Unmute",
- annotate: "Annotate",
- search: "Search",
- elapsed_time: "Elapsed time",
- total_time: "Total time",
- volume: "Volume",
- volume_control: "Volume control"
- },
- fr: {
- play_pause: "Lecture/Pause",
- mute_unmute: "Couper/Activer le son",
- play: "Lecture",
- pause: "Pause",
- mute: "Couper le son",
- unmute: "Activer le son",
- annotate: "Annoter",
- search: "Rechercher",
- elapsed_time: "Durée écoulée",
- total_time: "Durée totale",
- volume: "Niveau sonore",
- volume_control: "Réglage du niveau sonore"
- }
-};
-
-IriSP.Widgets.Controller.prototype.draw = function() {
- var _this = this;
- this.renderTemplate();
-
- // Define blocks
- this.$playButton = this.$.find(".Ldt-Ctrl-Play");
- this.$searchBlock = this.$.find(".Ldt-Ctrl-Search");
- this.$searchInput = this.$.find(".Ldt-Ctrl-SearchInput");
- this.$volumeBar = this.$.find(".Ldt-Ctrl-Volume-Bar");
-
- // handle events
- this.onMediaEvent("play","playButtonUpdater");
- this.onMediaEvent("pause","playButtonUpdater");
- this.onMediaEvent("volumechange","volumeUpdater");
- this.onMediaEvent("timeupdate","timeDisplayUpdater");
- this.onMediaEvent("loadedmetadata","volumeUpdater");
- this.onMdpEvent("search.matchFound","searchMatch");
- this.onMdpEvent("search.noMatchFound","searchNoMatch");
- this.onMdpEvent("search.triggeredSearch","triggeredSearch");
- this.onMdpEvent("search.cleared","hideSearchBlock");
-
- // handle clicks
- this.$playButton.click(this.functionWrapper("playHandler"));
-
- this.$.find(".Ldt-Ctrl-Annotate").click(function() {
- _this.player.trigger("CreateAnnotation.toggle");
- });
- this.$.find(".Ldt-Ctrl-SearchBtn").click(this.functionWrapper("searchButtonHandler"));
-
- this.$searchInput.keyup(this.functionWrapper("searchHandler"));
-
- var _volctrl = this.$.find(".Ldt-Ctrl-Volume-Control");
- this.$.find('.Ldt-Ctrl-Sound')
- .click(this.functionWrapper("muteHandler"))
- .mouseover(function() {
- _volctrl.show();
- })
- .mouseout(function() {
- _volctrl.hide();
- });
- _volctrl.mouseover(function() {
- _volctrl.show();
- }).mouseout(function() {
- _volctrl.hide();
- });
-
- // Handle CTRL-F
- if (!this.disable_ctrl_f) {
- var _fKey = "F".charCodeAt(0),
- _lastCtrlFTime = 0;
- IriSP.jQuery(document).keydown(function(_event) {
- if (_event.keyCode === _fKey && (_event.ctrlKey || _event.metaKey)) {
- var _time = IriSP.jQuery.now();
- if (_time - _lastCtrlFTime > 2000) {
- _this.searchButtonHandler();
- }
- _lastCtrlFTime = _time;
- return false;
- }
- });
- }
-
- // Allow Volume Cursor Dragging
- this.$volumeBar.slider({
- slide: function(event, ui) {
- _this.$volumeBar.attr("title",_this.l10n.volume+': ' + ui.value + '%');
- _this.media.setVolume(ui.value / 100);
- },
- stop: this.functionWrapper("volumeUpdater")
- });
-
- // trigger an IriSP.Player.MouseOver to the widgets that are interested (i.e : sliderWidget)
- this.$.hover(
- function() {
- _this.player.trigger("Player.MouseOver");
- },
- function() {
- _this.player.trigger("Player.MouseOut");
- });
-
- this.timeDisplayUpdater(new IriSP.Model.Time(0));
- /* some players - including jwplayer - save the state of the mute button between sessions */
- //TODO: MOVE TO THE PLAYER/
- window.setTimeout(this.functionWrapper("volumeUpdater"), 1000);
-
-};
-
-/* Update the elasped time div */
-IriSP.Widgets.Controller.prototype.timeDisplayUpdater = function(_time) {
-
- // we get it at each call because it may change.
- var _totalTime = this.media.duration;
- this.$.find(".Ldt-Ctrl-Time-Elapsed").html(_time.toString());
- this.$.find(".Ldt-Ctrl-Time-Total").html(_totalTime.toString());
-};
-
-/* update the icon of the button - separate function from playHandler
- because in some cases (for instance, when the user directly clicks on
- the jwplayer window) we have to change the icon without playing/pausing
-*/
-IriSP.Widgets.Controller.prototype.playButtonUpdater = function() {
- if (this.media.getPaused()) {
- /* the background sprite is changed by adding/removing the correct classes */
- this.$playButton
- .attr("title", this.l10n.play)
- .removeClass("Ldt-Ctrl-Play-PauseState")
- .addClass("Ldt-Ctrl-Play-PlayState");
- } else {
- this.$playButton
- .attr("title", this.l10n.pause)
- .removeClass("Ldt-Ctrl-Play-PlayState")
- .addClass("Ldt-Ctrl-Play-PauseState");
- }
-};
-
-
-IriSP.Widgets.Controller.prototype.playHandler = function() {
- if (this.media.getPaused()) {
- this.media.play();
- } else {
- this.media.pause();
- }
-};
-
-IriSP.Widgets.Controller.prototype.muteHandler = function() {
- if (this.media.getMuted()) {
- this.media.unmute();
- } else {
- this.media.mute();
- }
-};
-
-IriSP.Widgets.Controller.prototype.volumeUpdater = function() {
- var _muted = this.media.getMuted(),
- _vol = this.media.getVolume();
- if (_vol === false) {
- _vol = .5;
- }
- var _soundCtl = this.$.find(".Ldt-Ctrl-Sound");
- _soundCtl.removeClass("Ldt-Ctrl-Sound-Mute Ldt-Ctrl-Sound-Half Ldt-Ctrl-Sound-Full");
- if (_muted) {
- _soundCtl.attr("title", this.l10n.unmute)
- .addClass("Ldt-Ctrl-Sound-Mute");
- } else {
- _soundCtl.attr("title", this.l10n.mute)
- .addClass(_vol < .5 ? "Ldt-Ctrl-Sound-Half" : "Ldt-Ctrl-Sound-Full" )
- }
- this.$volumeBar.slider("value", _muted ? 0 : 100 * _vol);
-};
-
-IriSP.Widgets.Controller.prototype.showSearchBlock = function() {
- this.$searchBlock.animate({ width:"160px" }, 200);
- this.$searchInput.css('background-color','#fff');
-
- this.$searchInput.focus();
-
- // we need this variable because some widgets can find a match in
- // their data while at the same time others don't. As we want the
- // search field to become green when there's a match, we need a
- // variable to remember that we had one.
- this._positiveMatch = false;
-
- // tell the world the field is open
- this.player.trigger("search.open");
-};
-
-IriSP.Widgets.Controller.prototype.hideSearchBlock = function() {
- this.$searchBlock.animate( { width: 0 }, 200);
- this._positiveMatch = false;
- this.player.trigger("search.closed");
-};
-
-/** react to clicks on the search button */
-IriSP.Widgets.Controller.prototype.searchButtonHandler = function() {
- if ( !this.$searchBlock.width() ) {
- this.showSearchBlock();
- var _val = this.$searchInput.val();
- if (_val) {
- this.player.trigger("search", _val); // trigger the search to make it more natural.
- }
- } else {
- this.hideSearchBlock();
- }
-};
-
-/** this handler is called whenever the content of the search
- field changes */
-IriSP.Widgets.Controller.prototype.searchHandler = function() {
- if ( !this.$searchBlock.width() ) {
- this.$searchBlock.css({ width:"160px" });
- this.$searchInput.css('background-color','#fff');
- }
- var _val = this.$searchInput.val();
- this._positiveMatch = false;
-
- // do nothing if the search field is empty, instead of highlighting everything.
- if (_val !== this.lastSearchValue) {
- if (_val) {
- this.player.trigger("search", _val);
- } else {
- this.player.trigger("search.cleared");
- this.$searchInput.css('background-color','');
- }
- }
- this.lastSearchValue = _val;
-};
-
-/**
- handler for the IriSP.search.found message, which is sent by some views when they
- highlight a match.
-*/
-IriSP.Widgets.Controller.prototype.searchMatch = function() {
- this._positiveMatch = true;
- this.$searchInput.css('background-color','#e1ffe1');
-};
-
-/** the same, except that no value could be found */
-IriSP.Widgets.Controller.prototype.searchNoMatch = function() {
- if (this._positiveMatch !== true) {
- this.$searchInput.css('background-color', "#d62e3a");
- }
-};
-
-/** react to an IriSP.Player.triggeredSearch - that is, when
- a widget ask the.Player to do a search on his behalf */
-IriSP.Widgets.Controller.prototype.triggeredSearch = function(searchString) {
- this.showSearchBlock();
- this.$searchInput.attr('value', searchString);
- this.player.trigger("search", searchString); // trigger the search to make it more natural.
-};
-
-
--- a/metadataplayer/metadataplayer/CreateAnnotation.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,157 +0,0 @@
-/*
- *
- */
-
-.Ldt-CreateAnnotation {
- border-style: none solid solid;
- border-width: 1px;
- border-color: #b7b7b7;
- padding: 0 1px 1px;
- margin: 0;
-}
-
-.Ldt-CreateAnnotation-Inner {
- background: url(img/pinstripe.png); padding: 5px; margin: 0; position: relative;
-}
-
-.Ldt-CreateAnnotation-Inner h3 {
- margin: 5px 0; font-size: 14px; font-weight: bold; text-align: right;
-}
-
-.Ldt-CreateAnnotation-h3Left {
- float: left;
-}
-
-.Ldt-CreateAnnotation-Main {
- min-height: 150px;
-}
-
-.Ldt-CreateAnnotation-Title, .Ldt-CreateAnnotation-Creator {
- font-size: 14px;
- font-weight: bold;
- color: #0068c4;
- border: 1px solid #666666;
- border-radius: 2px;
-}
-
-.Ldt-CreateAnnotation-Times {
- color: #ff3b77
-}
-
-.Ldt-CreateAnnotation-Submit {
- position: absolute;
- bottom: 7px;
- right: 7px;
- color: #ffffff;
- cursor: pointer;
- background: url('img/submit_annotation.png');
- height: 50px;
- width: 50px;
- padding: 28px 0 0;
- font-size: 12px;
- border: none;
- text-align: center;
- cursor: pointer;
-}
-
-.Ldt-CreateAnnotation-Submit:hover {
- background-position: -50px 0;
-}
-
-.Ldt-CreateAnnotation-Description {
- height: 56px;
- padding: 2px;
- resize: none;
- width: 460px;
- border: 1px solid #666666;
- border-radius: 2px;
-}
-
-.Ldt-CreateAnnotation-Avatar {
- float: right;
- width: 48px;
- height: 48px;
- margin: 5px 0;
- padding: 0 0 0 15px;
- background: url('img/profile_arrow.png') left no-repeat;
-}
-
-.Ldt-CreateAnnotation-Avatar img {
- float: right;
- display: block;
- max-width: 100%;
- max-height: 100%;
- border: 1px solid #bbbbbb;
-}
-
-.Ldt-CreateAnnotation-RecBlock {
- width: 220px; float: left;
-}
-
-.Ldt-CreateAnnotation-TagTitle, .Ldt-CreateAnnotation-PolemicTitle, .Ldt-CreateAnnotation-RecLabel {
- display: block; margin: 5px 0 2px; font-size: 12px;
-}
-
-.Ldt-CreateAnnotation-TagList, .Ldt-CreateAnnotation-PolemicList {
- list-style: none;
-}
-
-li.Ldt-CreateAnnotation-TagLi {
- display: inline-block; border: none; margin: 0 10px 5px 0; height: 23px; padding: 0 0 0 20px;
- background: url(img/tag.png) left top no-repeat;
- cursor: pointer;
-}
-
-.Ldt-CreateAnnotation-TagButton {
- display: inline-block; font-size: 12px; height: 19px; padding: 4px 5px 0 0; border: none; margin: 0;
- background: url(img/tag.png) right top no-repeat;
-}
-
-li.Ldt-CreateAnnotation-TagLi:hover {
- background-position: left -23px;
-}
-
-.Ldt-CreateAnnotation-TagLi:hover .Ldt-CreateAnnotation-TagButton {
- background-position: right -23px;
-}
-
-li.Ldt-CreateAnnotation-TagLi.selected {
- background-position: left -46px;
-}
-
-.Ldt-CreateAnnotation-TagLi.selected .Ldt-CreateAnnotation-TagButton {
- background-position: right -46px;
-}
-
-li.Ldt-CreateAnnotation-PolemicLi {
- display: inline-block; border: none; margin: 0 5px 0; height: 21px; width: 26px; padding: 2px 0 0;
- background: url(img/polemic.png) left top no-repeat; font-size: 14px; font-weight: bold; text-align: center;
- cursor: pointer;
-}
-
-li.Ldt-CreateAnnotation-PolemicLi:hover {
- background-position: 0 -23px;
-}
-
-li.Ldt-CreateAnnotation-PolemicLi.selected {
- background-position: 0 -46px;
-}
-
-.Ldt-CreateAnnotation-InnerBox {
- margin: 20px 50px;
- border: 1px solid #CCCCCC;
- padding: 20px;
- background: #FFFFFF;
- color: #FF3B77; text-align: center;
- font-size: 13px; font-weight: bold;
-}
-
-a.Ldt-CreateAnnotation-Close {
- position: absolute; top: 2px; right: 2px;
- display: inline-block; width: 17px; height: 17px; margin: 2px;
- background: url(img/widget-control.png);
-}
-
-a.Ldt-CreateAnnotation-Close:hover {
- background-position: -17px 0;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/CreateAnnotation.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,439 +0,0 @@
-/* TODO: Add Social Network Sharing */
-
-IriSP.Widgets.CreateAnnotation = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.CreateAnnotation.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.CreateAnnotation.prototype.defaults = {
- show_title_field : false, /* For the moment, titles can't be sent to ldtplatform */
- show_creator_field : true,
- start_visible : true,
- always_visible : false,
- show_slice : true,
- show_arrow : true,
- show_mic_record: false,
- show_mic_play: false,
- minimize_annotation_widget : true,
- creator_name : "",
- creator_avatar : "",
- tags : false,
- tag_titles : false,
- pause_on_write : true,
- max_tags : 8,
- polemics : [{
- keyword: "++",
- background_color: "#00a000",
- text_color: "#ffffff"
- },{
- keyword: "--",
- background_color: "#c00000",
- text_color: "#ffffff"
- },{
- keyword: "??",
- background_color: "#0000e0",
- text_color: "#ffffff"
- },{
- keyword: "==",
- background_color: "#f0e000",
- text_color: "#000000"
- }],
- slice_annotation_type: "chap",
- annotation_type: "Contributions",
- api_serializer: "ldt_annotate",
- api_endpoint_template: "",
- api_method: "PUT",
- after_send_timeout: 0,
- close_after_send: false,
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.messages = {
- en: {
- from_time: "from",
- to_time: "to",
- at_time: "at",
- submit: "Submit",
- add_keywords_: "Add keywords:",
- add_polemic_keywords_: "Add polemic keywords:",
- your_name_: "Your name:",
- no_title: "Annotate this video",
- type_title: "Annotation title",
- type_description: "Type the full description of your annotation here.",
- wait_while_processing: "Please wait while your request is being processed...",
- error_while_contacting: "An error happened while contacting the server. Your annotation has not been saved.",
- empty_annotation: "Your annotation is empty. Please write something before submitting.",
- annotation_saved: "Thank you, your annotation has been saved.",
- share_annotation: "Would you like to share it on social networks ?",
- share_on: "Share on",
- more_tags: "More tags",
- cancel: "Cancel",
- close_widget: "Cacher la zone de création d'annotations"
- },
- fr: {
- from_time: "de",
- to_time: "à",
- at_time: "à",
- submit: "Envoyer",
- add_keywords_: "Ajouter des mots-clés :",
- add_polemic_keywords_: "Ajouter des mots-clés polémiques :",
- your_name_: "Votre nom :",
- no_title: "Annoter cette vidéo",
- type_title: "Titre de l'annotation",
- type_description: "Rédigez le contenu de votre annotation ici.",
- wait_while_processing: "Veuillez patienter pendant le traitement de votre requête...",
- error_while_contacting: "Une erreur s'est produite en contactant le serveur. Votre annotation n'a pas été enregistrée",
- empty_annotation: "Votre annotation est vide. Merci de rédiger un texte avant de l'envoyer.",
- annotation_saved: "Merci, votre annotation a été enregistrée.",
- share_annotation: "Souhaitez-vous la partager sur les réseaux sociaux ?",
- share_on: "Partager sur",
- more_tags: "Plus de mots-clés",
- cancel: "Cancel",
- close_widget: "Hide the annotation creating block"
- }
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.template =
- '{{#show_slice}}<div class="Ldt-CreateAnnotation-Slice"></div>{{/show_slice}}'
- + '{{^show_slice}}{{#show_arrow}}<div class="Ldt-CreateAnnotation-Arrow"></div>{{/show_arrow}}{{/show_slice}}'
- + '<div class="Ldt-CreateAnnotation"><div class="Ldt-CreateAnnotation-Inner">'
- + '<form class="Ldt-CreateAnnotation-Screen Ldt-CreateAnnotation-Main">'
- + '<h3><span class="Ldt-CreateAnnotation-h3Left">{{#show_title_field}}<input class="Ldt-CreateAnnotation-Title" placeholder="{{l10n.type_title}}" />{{/show_title_field}}'
- + '{{^show_title_field}}<span class="Ldt-CreateAnnotation-NoTitle">{{l10n.no_title}} </span>{{/show_title_field}}'
- + ' <span class="Ldt-CreateAnnotation-Times">{{#show_slice}}{{l10n.from_time}} {{/show_slice}}{{^show_slice}}{{l10n.at_time}} {{/show_slice}} <span class="Ldt-CreateAnnotation-Begin">00:00</span>'
- + '{{#show_slice}} {{l10n.to_time}} <span class="Ldt-CreateAnnotation-End">{{end}}</span>{{/show_slice}}</span></span>'
- + '{{#show_creator_field}}{{l10n.your_name_}} <input class="Ldt-CreateAnnotation-Creator" value="{{creator_name}}" /></h3>{{/show_creator_field}}'
- + '<textarea class="Ldt-CreateAnnotation-Description" placeholder="{{l10n.type_description}}"></textarea>'
- + '<div class="Ldt-CreateAnnotation-Avatar"><img src="{{creator_avatar}}" title="{{creator_name}}"></img></div>'
- + '<input type="submit" class="Ldt-CreateAnnotation-Submit" value="{{l10n.submit}}" />'
- + '{{#show_mic_record}}<div class="Ldt-CreateAnnotation-RecBlock"><div class="Ldt-CreateAnnotation-RecLabel">Add voice annotation</div>'
- + ' <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="220" height="160">'
- + ' <param name="movie" value="{{record_swf}}" />'
- + ' <param name="quality" value="high" />'
- + ' <param name="bgcolor" value="#ffffff" />'
- + ' <param name="play" value="true" />'
- + ' <param name="loop" value="true" />'
- + ' <param name="wmode" value="transparent" />'
- + ' <param name="scale" value="showall" />'
- + ' <param name="menu" value="true" />'
- + ' <param name="devicefont" value="false" />'
- + ' <param name="salign" value="" />'
- + ' <param name="allowScriptAccess" value="always" />'
- + ' <param name="allowFullScreen" value="true" />'
- + ' <param name="flashvars" value="playVisible={{show_mic_play}}">'
- + ' <embed src="{{record_swf}}"" quality="high" bgcolor="#ffffff"'
- + ' width="220" height="160" name="ExternalInterfaceExample" align="middle"'
- + ' play="true" loop="false" quality="high" allowScriptAccess="always" '
- + ' type="application/x-shockwave-flash" allowFullScreen="true" wmode="transparent" '
- + ' flashvars="playVisible={{show_mic_play}}"'
- + ' pluginspage="http://www.macromedia.com/go/getflashplayer">'
- + ' </embed>'
- + ' </object>'
- + '</div>{{/show_mic_record}}'
- + '{{#tags.length}}<div class="Ldt-CreateAnnotation-Tags"><div class="Ldt-CreateAnnotation-TagTitle">{{l10n.add_keywords_}}</div><ul class="Ldt-CreateAnnotation-TagList">'
- + '{{#tags}}<li class="Ldt-CreateAnnotation-TagLi" tag-id="{{id}}"><span class="Ldt-CreateAnnotation-TagButton">{{title}}</span></li>{{/tags}}</ul></div>{{/tags.length}}'
- + '{{#polemics.length}}<div class="Ldt-CreateAnnotation-Polemics"><div class="Ldt-CreateAnnotation-PolemicTitle">{{l10n.add_polemic_keywords_}}</div><ul class="Ldt-CreateAnnotation-PolemicList">'
- + '{{#polemics}}<li class="Ldt-CreateAnnotation-PolemicLi" style="background-color: {{background_color}}; color: {{text_color}}">{{keyword}}</li>{{/polemics}}</ul></div>{{/polemics.length}}'
- + '<div style="clear: both;"></div></form>'
- + '<div class="Ldt-CreateAnnotation-Screen Ldt-CreateAnnotation-Wait"><div class="Ldt-CreateAnnotation-InnerBox">{{l10n.wait_while_processing}}</div></div>'
- + '<div class="Ldt-CreateAnnotation-Screen Ldt-CreateAnnotation-Error">{{^always_visible}}<a title="{{l10n.close_widget}}" class="Ldt-CreateAnnotation-Close" href="#"></a>{{/always_visible}}<div class="Ldt-CreateAnnotation-InnerBox">{{l10n.error_while_contacting}}</div></div>'
- + '<div class="Ldt-CreateAnnotation-Screen Ldt-CreateAnnotation-Saved">{{^always_visible}}<a title="{{l10n.close_widget}}" class="Ldt-CreateAnnotation-Close" href="#"></a>{{/always_visible}}<div class="Ldt-CreateAnnotation-InnerBox">{{l10n.annotation_saved}}</div></div>'
- + '</div></div>';
-
-IriSP.Widgets.CreateAnnotation.prototype.draw = function() {
- var _this = this;
-
- this.begin = new IriSP.Model.Time();
- this.end = this.source.getDuration();
-
- if (this.tag_titles && !this.tags) {
- this.tags = IriSP._(this.tag_titles).map(function(_tag_title) {
- var _tag,
- _tags = _this.source.getTags().searchByTitle(_tag_title);
- if (_tags.length) {
- _tag = _tags[0];
- } else {
- _tag = new IriSP.Model.Tag(false, _this.source);
- _tag.title = _tag_title;
- }
- return _tag;
- });
- }
- if (!this.tags) {
- this.tags = this.source.getTags()
- .sortBy(function (_tag) {
- return -_tag.getAnnotations().length;
- })
- .slice(0, this.max_tags)
- .map(function(_tag) {
- return _tag;
- });
- /* We have to use the map function because Mustache doesn't like our tags object */
- }
- this.record_swf = IriSP.getLib("recordMicSwf");
- this.renderTemplate();
- if (this.show_mic_record) {
- this.recorder = this.$.find("embed")[0];
-
- window.setAudioUrl = function(_url) {
- _this.audio_url = _url;
- }
- }
- if (this.show_slice) {
- this.insertSubwidget(
- this.$.find(".Ldt-CreateAnnotation-Slice"),
- {
- type: "Slice",
- show_arrow: this.show_arrow,
- annotation_type: this.slice_annotation_type,
- onBoundsChanged: function(_from, _to) {
- _this.begin = new IriSP.Model.Time(_from || 0);
- _this.end = new IriSP.Model.Time(_to || 0);
- _this.$.find(".Ldt-CreateAnnotation-Begin").html(_this.begin.toString());
- _this.$.find(".Ldt-CreateAnnotation-End").html(_this.end.toString());
- }
- },
- "slice"
- );
- } else {
- if (this.show_arrow) {
- this.insertSubwidget(this.$.find(".Ldt-CreateAnnotation-Arrow"), {type: "Arrow"},"arrow");
- }
- this.onMediaEvent("timeupdate", function(_time) {
- _this.begin = new IriSP.Model.Time(_time || 0);
- _this.end = new IriSP.Model.Time(_time || 0);
- _this.$.find(".Ldt-CreateAnnotation-Begin").html(_this.begin.toString());
- if (_this.arrow) {
- _this.arrow.moveToTime(_time);
- }
- });
- }
- this.$.find(".Ldt-CreateAnnotation-Close").click(function() {
- _this.close_after_send
- ? _this.hide()
- : _this.showScreen("Main");
- return false;
- });
- this.$.find(".Ldt-CreateAnnotation-TagLi, .Ldt-CreateAnnotation-PolemicLi").click(function() {
- _this.addKeyword(IriSP.jQuery(this).text().replace(/(^\s+|\s+$)/g,''));
- return false;
- });
- this.$.find(".Ldt-CreateAnnotation-Description").bind("change keyup input paste", this.functionWrapper("onDescriptionChange"));
- if (this.show_title_field) {
- this.$.find(".Ldt-CreateAnnotation-Title").bind("change keyup input paste", this.functionWrapper("onTitleChange"));
- }
- if (this.show_creator_field) {
- this.$.find(".Ldt-CreateAnnotation-Creator").bind("change keyup input paste", this.functionWrapper("onCreatorChange"));
- }
-
- if (this.start_visible) {
- this.show();
- } else {
- this.$.hide();
- this.hide();
- }
-
- this.onMdpEvent("CreateAnnotation.toggle","toggle");
- this.$.find("form").submit(this.functionWrapper("onSubmit"));
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.showScreen = function(_screenName) {
- this.$.find('.Ldt-CreateAnnotation-' + _screenName).show()
- .siblings().hide();
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.show = function() {
- this.visible = true;
- this.showScreen('Main');
- this.$.find(".Ldt-CreateAnnotation-Description").val("").css("border-color", "#666666");
- if (this.show_title_field) {
- this.$.find(".Ldt-CreateAnnotation-Title").val("").css("border-color", "#666666");
- }
- if (this.show_creator_field) {
- this.$.find(".Ldt-CreateAnnotation-Creator").val(this.creator_name).css("border-color", "#666666");
- }
- this.$.find(".Ldt-CreateAnnotation-TagLi, .Ldt-CreateAnnotation-PolemicLi").removeClass("selected");
- this.$.slideDown();
- if (this.minimize_annotation_widget) {
- this.player.trigger("Annotation.minimize");
- }
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.hide = function() {
- if (this.recorder) {
- this.recorder.stopRecord();
- }
- if (!this.always_visible) {
- this.visible = false;
- this.$.slideUp();
- if (this.minimize_annotation_widget) {
- this.player.trigger("Annotation.maximize");
- }
- }
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.toggle = function() {
- if (!this.always_visible) {
- if (this.visible) {
- this.hide();
- } else {
- this.show();
- }
- }
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.addKeyword = function(_keyword) {
- var _field = this.$.find(".Ldt-CreateAnnotation-Description"),
- _rx = IriSP.Model.regexpFromTextOrArray(_keyword),
- _contents = _field.val();
- _contents = ( !!_contents.match(_rx)
- ? _contents.replace(_rx,"")
- : _contents + " " + _keyword
- );
- _field.val(_contents.replace(/\s{2,}/g,' ').replace(/(^\s+|\s+$)/g,''));
- this.onDescriptionChange();
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.pauseOnWrite = function() {
- if (this.pause_on_write && !this.media.getPaused()) {
- this.media.pause();
- }
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.onDescriptionChange = function() {
- var _field = this.$.find(".Ldt-CreateAnnotation-Description"),
- _contents = _field.val();
- _field.css("border-color", !!_contents ? "#666666" : "#ff0000");
- this.$.find(".Ldt-CreateAnnotation-TagLi, .Ldt-CreateAnnotation-PolemicLi").each(function() {
- var _rx = IriSP.Model.regexpFromTextOrArray(IriSP.jQuery(this).text().replace(/(^\s+|\s+$)/g,''));
- if (_contents.match(_rx)) {
- IriSP.jQuery(this).addClass("selected");
- } else {
- IriSP.jQuery(this).removeClass("selected");
- }
- });
- this.pauseOnWrite();
- return !!_contents;
-}
-
-IriSP.Widgets.CreateAnnotation.prototype.onTitleChange = function() {
- var _field = this.$.find(".Ldt-CreateAnnotation-Title"),
- _contents = _field.val();
- _field.css("border-color", !!_contents ? "#666666" : "#ff0000");
- this.pauseOnWrite();
- return !!_contents;
-}
-
-
-IriSP.Widgets.CreateAnnotation.prototype.onCreatorChange = function() {
- var _field = this.$.find(".Ldt-CreateAnnotation-Creator"),
- _contents = _field.val();
- _field.css("border-color", !!_contents ? "#666666" : "#ff0000");
- this.pauseOnWrite();
- return !!_contents;
-}
-
-/* Fonction effectuant l'envoi des annotations */
-IriSP.Widgets.CreateAnnotation.prototype.onSubmit = function() {
- /* Si les champs obligatoires sont vides, on annule l'envoi */
- if (!this.onDescriptionChange() || (this.show_title_field && !this.onTitleChange()) || (this.show_creator_field && !this.onCreatorChange())) {
- return;
- }
-
- if (this.recorder) {
- this.recorder.stopRecord();
- }
-
- var _exportedAnnotations = new IriSP.Model.List(this.player.sourceManager), /* Création d'une liste d'annotations contenant une annotation afin de l'envoyer au serveur */
- _export = this.player.sourceManager.newLocalSource({serializer: IriSP.serializers[this.api_serializer]}), /* Création d'un objet source utilisant un sérialiseur spécifique pour l'export */
- _annotation = new IriSP.Model.Annotation(false, _export), /* Création d'une annotation dans cette source avec un ID généré à la volée (param. false) */
- _annotationTypes = this.source.getAnnotationTypes().searchByTitle(this.annotation_type), /* Récupération du type d'annotation dans lequel l'annotation doit être ajoutée */
- _annotationType = (_annotationTypes.length ? _annotationTypes[0] : new IriSP.Model.AnnotationType(false, _export)), /* Si le Type d'Annotation n'existe pas, il est créé à la volée */
- _url = Mustache.to_html(this.api_endpoint_template, {id: this.source.projectId}); /* Génération de l'URL à laquelle l'annotation doit être envoyée, qui doit inclure l'ID du projet */
-
- /* Si nous avons dû générer un ID d'annotationType à la volée... */
- if (!_annotationTypes.length) {
- /* Il ne faudra pas envoyer l'ID généré au serveur */
- _annotationType.dont_send_id = true;
- /* Il faut inclure le titre dans le type d'annotation */
- _annotationType.title = this.annotation_type;
- }
-
- /*
- * Nous remplissons les données de l'annotation générée à la volée
- * ATTENTION: Si nous sommes sur un MASHUP, ces éléments doivent se référer AU MEDIA D'ORIGINE
- * */
- _annotation.setBegin(this.begin); /*Timecode de début */
- _annotation.setEnd(this.end); /* Timecode de fin */
- _annotation.setMedia(this.source.currentMedia.id); /* Id du média annoté */
-
- _annotation.setAnnotationType(_annotationType.id); /* Id du type d'annotation */
- if (this.show_title_field) {
- /* Champ titre, seulement s'il est visible */
- _annotation.title = this.$.find(".Ldt-CreateAnnotation-Title").val();
- }
- _annotation.created = new Date(); /* Date de création de l'annotation */
- _annotation.description = this.$.find(".Ldt-CreateAnnotation-Description").val(); /* Champ description */
- _annotation.setTags(this.$.find(".Ldt-CreateAnnotation-TagLi.selected")
- .map(function() { return IriSP.jQuery(this).attr("tag-id")})); /*Liste des ids de tags */
-
- if (this.audio_url) {
- _annotation.audio = {
- src: "mic",
- mimetype: "audio/mp3",
- href: this.audio_url
- };
- }
-
- /* Les données créateur/date de création sont envoyées non pas dans l'annotation, mais dans le projet */
- if (this.show_creator_field) {
- _export.creator = this.$.find(".Ldt-CreateAnnotation-Creator").val();
- } else {
- _export.creator = this.creator_name;
- }
- _export.created = new Date();
- _exportedAnnotations.push(_annotation); /* Ajout de l'annotation à la liste à exporter */
- _export.addList("annotation",_exportedAnnotations); /* Ajout de la liste à exporter à l'objet Source */
-
- var _this = this;
- /* Envoi de l'annotation via AJAX au serveur ! */
- IriSP.jQuery.ajax({
- url: _url,
- type: this.api_method,
- contentType: 'application/json',
- data: _export.serialize(), /* L'objet Source est sérialisé */
- success: function(_data) {
- _this.showScreen('Saved'); /* Si l'appel a fonctionné, on affiche l'écran "Annotation enregistrée" */
- if (_this.after_send_timeout) { /* Selon les options de configuration, on revient à l'écran principal ou on ferme le widget, ou rien */
- window.setTimeout(
- function() {
- _this.close_after_send
- ? _this.hide()
- : _this.showScreen("Main");
- },
- _this.after_send_timeout
- );
- }
- _export.getAnnotations().removeElement(_annotation, true); /* Pour éviter les doublons, on supprime l'annotation qui a été envoyée */
- _export.deSerialize(_data); /* On désérialise les données reçues pour les réinjecter */
- _this.source.merge(_export); /* On récupère les données réimportées dans l'espace global des données */
- if (_this.pause_on_write && _this.media.getPaused()) {
- _this.media.play();
- }
- _this.player.trigger("AnnotationsList.refresh"); /* On force le rafraîchissement du widget AnnotationsList */
- },
- error: function(_xhr, _error, _thrown) {
- IriSP.log("Error when sending annotation", _thrown);
- _export.getAnnotations().removeElement(_annotation, true);
- _this.showScreen('Error');
- window.setTimeout(function(){
- _this.showScreen("Main")
- },
- (_this.after_send_timeout || 5000));
- }
- });
- this.showScreen('Wait');
-
- return false;
-}
-
--- a/metadataplayer/metadataplayer/DailymotionPlayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,104 +0,0 @@
-IriSP.Widgets.DailymotionPlayer = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.DailymotionPlayer.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.DailymotionPlayer.prototype.defaults = {
- aspect_ratio: 14/9
-}
-
-IriSP.Widgets.DailymotionPlayer.prototype.draw = function() {
-
- if (typeof this.video === "undefined") {
- this.video = this.media.video;
- }
-
- this.height = this.height || Math.floor(this.width / this.aspect_ratio);
-
- var _media = this.media,
- _this = this,
- _pauseState = true;
-
- /* Dailymotion utilise un système de fonctions référencées dans
- * des variables globales pour la gestion des événements.
- */
-
- window.onDailymotionPlayerReady = function() {
-
- var _player = document.getElementById(_this.container);
-
- _media.getCurrentTime = function() {
- return new IriSP.Model.Time(1000*_player.getCurrentTime());
- }
- _media.getVolume = function() {
- return _player.getVolume() / 100;
- }
- _media.getPaused = function() {
- return _pauseState;
- }
- _media.getMuted = function() {
- return _player.isMuted();
- }
- _media.setCurrentTime = function(_milliseconds) {
- _seekPause = _pauseState;
- return _player.seekTo(_milliseconds / 1000);
- }
- _media.setVolume = function(_vol) {
- return _player.setVolume(Math.floor(_vol*100));
- }
- _media.mute = function() {
- return _player.mute();
- }
- _media.unmute = function() {
- return _player.unMute();
- }
- _media.play = function() {
- return _player.playVideo();
- }
- _media.pause = function() {
- return _player.pauseVideo();
- }
-
- _player.addEventListener("onStateChange", "onDailymotionStateChange");
- _player.addEventListener("onVideoProgress", "onDailymotionVideoProgress");
-
- _player.cueVideoByUrl(_this.video);
-
- _media.trigger("loadedmetadata");
- }
-
- window.onDailymotionStateChange = function(_state) {
- switch(_state) {
- case 1:
- _media.trigger("play");
- _pauseState = false;
- break;
-
- case 2:
- _media.trigger("pause");
- _pauseState = true;
- break;
-
- case 3:
- _media.trigger("seeked");
- break;
- }
- }
-
- window.onDailymotionVideoProgress = function(_progress) {
- _media.trigger("timeupdate", new IriSP.Model.Time(_progress.mediaTime * 1000));
- }
-
- var params = {
- "allowScriptAccess" : "always",
- "wmode": "opaque"
- };
-
- var atts = {
- id : this.container
- };
-
- swfobject.embedSWF("http://www.dailymotion.com/swf?chromeless=1&enableApi=1", this.container, this.width, this.height, "8", null, null, params, atts);
-
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/HelloWorld.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-.Ldt-HelloWorld p {
- text-align: center; font-size: 12px; margin: 2px 0;
-}
--- a/metadataplayer/metadataplayer/HelloWorld.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-/* Shows an example of a widget, with :
- * - Use of source data
- * - Use of templating
- * - Use of internationalization
- */
-
-IriSP.Widgets.HelloWorld = function(player, config) {
- console.log("Calling IriSP.Widget's constructor from IriSP.HelloWorldWidget");
- IriSP.Widgets.Widget.call(this, player, config);
-}
-
-IriSP.Widgets.HelloWorld.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.HelloWorld.prototype.defaults = {
- text: "world"
-}
-
-IriSP.Widgets.HelloWorld.prototype.template =
- '<div class="Ldt-HelloWorld"><p>{{l10n.Hello}} {{text}}</p><p>Looks like we have {{source.contents.annotation.length}} annotations in this feed</p></div>';
-
-IriSP.Widgets.HelloWorld.prototype.messages = {
- "fr": {
- "Hello" : "Bonjour,"
- },
- "en" : {
- "Hello" : "Hello,"
- }
-}
-
-IriSP.Widgets.HelloWorld.prototype.draw = function() {
- this.renderTemplate();
- console.log("HelloWorldWidget was drawn");
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/JwpPlayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,119 +0,0 @@
-IriSP.Widgets.JwpPlayer = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.JwpPlayer.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.JwpPlayer.prototype.defaults = {
-}
-
-IriSP.Widgets.JwpPlayer.prototype.draw = function() {
-
- var _opts = {},
- _player = jwplayer(this.$[0]),
- _seekPause = false,
- _pauseState = true,
- _props = [ "live", "provider", "autostart" ];
-
- if (typeof this.video === "undefined") {
- this.video = this.media.video;
- }
-
- if (typeof this.streamer === "function") {
- this.streamer = this.streamer(this.video);
- }
-
- if (typeof this.streamer === "string" && (this.provider === "http" || this.provider === "rtmp")) {
- this.video = this.video.replace(this.streamer,"");
- _opts.streamer = this.streamer;
- }
-
- _opts.file = this.video;
- _opts.flashplayer = IriSP.getLib("jwPlayerSWF");
- _opts["controlbar.position"] = "none";
- _opts.width = this.width;
- _opts.height = this.height || Math.floor(.643*this.width);
-
- for (var i = 0; i < _props.length; i++) {
- if (typeof this[_props[i]] !== "undefined") {
- _opts[_props[i]] = this[_props[i]];
- }
- }
-
- if (this.autostart) {
- _pauseState = false;
- this.media.trigger("play");
- }
- // Binding functions to jwplayer
-
- this.media.getCurrentTime = function() {
- return new IriSP.Model.Time(1000*_player.getPosition() || 0);
- }
- this.media.getVolume = function() {
- return _player.getVolume() / 100;
- }
- this.media.getPaused = function() {
- return _pauseState;
- }
- this.media.getMuted = function() {
- return _player.getMute();
- }
- this.media.setCurrentTime = function(_milliseconds) {
- _seekPause = _pauseState;
- return _player.seek(_milliseconds / 1000);
- }
- this.media.setVolume = function(_vol) {
- return _player.setVolume(Math.floor(_vol*100));
- }
- this.media.mute = function() {
- return _player.setMute(true);
- }
- this.media.unmute = function() {
- return _player.setMute(false);
- }
- this.media.play = function() {
- return _player.play(true);
- }
- this.media.pause = function() {
- return _player.pause(true);
- }
-
- // Binding jwplater events to media
-
- var _media = this.media;
-
- _opts.events = {
- onReady: function() {
- _media.trigger("loadedmetadata");
- },
- onTime: function(_progress) {
- if (_seekPause) {
- _player.pause(true);
- _seekPause = false;
- } else {
- if (_pauseState && _player.getState() === "PLAYING") {
- _pauseState = false;
- _media.trigger("play");
- }
- }
- _media.trigger("timeupdate", new IriSP.Model.Time(_progress.position * 1000));
- },
- onPlay: function() {
- if (!_seekPause) {
- _pauseState = false;
- _media.trigger("play");
- }
- },
- onPause: function() {
- _pauseState = true;
- _media.trigger("pause");
- },
- onSeek: function() {
- _media.trigger("seeked");
- }
- }
- _player.setup(_opts);
-
- this.jwplayer = _player;
-
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/KnowledgeConcierge.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-.Ldt-Kc-Slider {
- width: 100%; height: 8px; margin: 3px 0; font-size: 8px;
-}
-
-.Ldt-Kc-Canvas {
- border: 1px solid #999999;
-}
--- a/metadataplayer/metadataplayer/KnowledgeConcierge.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,260 +0,0 @@
-IriSP.Widgets.KnowledgeConcierge = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.KnowledgeConcierge.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.KnowledgeConcierge.prototype.defaults = {
- width: 600,
- height: 500,
- sketch_path: "tmgraph",
- sketch_files: [ "tmgraph.pde", "physics.pde", "model.pde", "javascript.pde", "menu.pde", "event.pde", "constants.pde", "initialdata.pde"],
- api_root: "/kn-concierge/",
- use_word_boundaries: false
-}
-
-IriSP.Widgets.KnowledgeConcierge.prototype.messages = {
- "fr": {
- },
- "en": {
- }
-}
-
-IriSP.Widgets.KnowledgeConcierge.prototype.template =
- '<div class="Ldt-Kc-Slider"></div><canvas class="Ldt-Kc-Canvas" />';
-
-IriSP.Widgets.KnowledgeConcierge.prototype.draw = function() {
- this.renderTemplate();
- var _canvasHeight = this.height - 16,
- _canvasWidth = this.width - 2,
- _canvas = this.$.find(".Ldt-Kc-Canvas"),
- _tmpId = IriSP._.uniqueId("Processing-"),
- _slider = this.$.find(".Ldt-Kc-Slider");
- _canvas.attr({
- width: _canvasWidth,
- height: _canvasHeight,
- id: _tmpId
- }).css({
- width: _canvasWidth,
- height: _canvasHeight
- });
- var _this = this,
- _pjsfiles = IriSP._(this.sketch_files).map(function(_f) { return _this.sketch_path + "/" + _f }),
- _selectedText = "";
- Processing.loadSketchFromSources(_canvas[0],_pjsfiles);
-
- function triggerSearch(text) {
- if (_selectedText !== text) {
- //console.log("Trigger search for '" + text + "'");
- _selectedText = text;
- _this.player.trigger("search.triggeredSearch", text);
- }
- }
-
- function searchNodes(tags) {
- var _tlist = (_this.use_word_boundaries ? IriSP._(tags).map(function(t) { return "\\\\y" + t + "\\\\y" }) : tags),
- _q = "(?i)(" + _tlist.join("|") + ")";
- jQuery.getJSON(
- _this.api_root + "topics.jsp",
- {
- proj: _this.project_id,
- q: _q
- },
- function(data) {
- if (data && data.items && data.items.length) {
- for (var i=0, l=data.items.length; i<l; i++) {
- var node = data.items[i];
- if (i == 0) {
- _pjs.initNode(node.id, node.name, node.grp, node.uid, node.proj);
- var node = _pjs.findNode(node.id, node.proj);
- } else {
- var node = _pjs.newNode(node.id, node.name, node.grp, node.uid, node.proj);
- node.root = true;
- node.fix();
- }
- _fns.countassoc(node.id, node.proj);
- if (l > 1) {
- node.position(Math.floor(200*Math.sin(2 * Math.PI * i / l)),Math.floor(200*Math.cos(2 * Math.PI * i / l)));
- }
- }
- } else {
- console.log("No match found");
- }
- }
- );
- }
-
- function rootNode(id, proj) {
- jQuery.getJSON(
- _this.api_root + "topic.jsp",
- {
- id: id,
- proj: proj
- },
- function(response) {
- if (response != null && response.items.length > 0){
- item = response.items[0];
- _pjs.initNode(item.id, item.name, item.grp, item.uid, item.proj);
- _fns.countassoc(item.id, item.proj);
- } else {
- console.debug('No such topic.');
- }
- });
- }
-
- function bindJavascript() {
- _pjs = Processing.getInstanceById(_tmpId);
- if (_pjs && typeof _pjs.bindJavascript === "function") {
- setTimeout(function() {
- _pjs.bindJavascript(_fns);
- _pjs.setSize(_canvasWidth,_canvasHeight);
- var _edit = false,
- _teamMode = true;
- _pjs.saveMode("en",false,_teamMode,false,"both",_edit);
- rootNode(_this.topic_id, _this.project_id);
- _canvas.click(function() {
- triggerSearch("")
- });
- _slider.slider({
- min: -20,
- max: 20,
- value: 0,
- range: "min",
- slide: function(event, ui) {
- _pjs.zoom(Math.exp(ui.value / 10));
- }
- });
- }, 1000);
- } else {
- setTimeout(bindJavascript, 1000);
- }
- }
-
- var _fns = {
- adjacentnodes: function(id, proj, adj, both) {
- //console.log("Function adjacentnodes called with", arguments);
- jQuery.ajax({
- url: _this.api_root + "associations-bd.jsp",
- cache: false,
- data: {
- id: id,
- proj: proj,
- both: both,
- adj: adj
- },
- success: function(response) {
- if (response.items.length > 0){
- for(i = 0, end = response.items.length; i < end; i++) {
- item = response.items[i];
- _pjs.addEdge(item.asc_id, item.id, item.from_proj, item.to_id, item.to_proj,
- item.r_name, item.r_from, item.r_to, item.uid, item.proj);
- _pjs.setNodeName( item.id, item.from_proj,item.name);
- _pjs.setNodeValue(item.id, item.from_proj,item.name, item.grp, item.abst, item.from_uid);
- if (item.from_assoc!=null) {
- _pjs.setNodeAssoc(item.id, item.from_proj, item.from_assoc);
- }
- _pjs.setNodeName( item.to_id,item.to_proj, item.to_name);
- _pjs.setNodeValue(item.to_id,item.to_proj, item.to_name,item.to_grp,item.to_abst,item.to_uid);
- if (item.to_assoc!=null) {
- _pjs.setNodeAssoc(item.to_id, item.to_proj, item.to_assoc);
- }
- }
- return response;
- } else {
- console.debug('No such topic.');
- return null;
- }
- }
- });
- },
- selectnode: function(id, proj) {
- //console.log("Function selectnode called with", arguments);
- /* Originally, open dialog with info from
- * /kn-concierge/topic.jsp?id={{id}}&proj={{proj}}
- * /kn-concierge/topicContent.jsp?id={{id}}&proj={{proj}}
- */
- },
- selectedge: function(asc_id) {
- //console.log("Function selectedge called with", arguments);
- /* /kn-concierge/association.jsp?asc_id={{asc_id}}&proj={{proj}}" */
- },
- topicnode: function(id){
- //console.log("Function topicnode called with", arguments);
- },
- setscale: function(scl){
- //console.log("Function setscale called with", arguments);
- _slider.slider("value", 10*Math.log(scl));
- },
- group_shapes: function(){
- //console.log("Function group_shapes");
- },
- allbackup: function(){
- },
- allretrieve: function(){
- },
- new_topic: function(){
- },
- pedia: function() {
- },
- set_mode: function(){
- },
- countassoc: function(id, proj) {
- //console.log("Fonction countassoc called with", arguments);
- jQuery.ajax({
- url: _this.api_root + "count-assoc.jsp",
- data: {
- id: id,
- proj: proj
- },
- success: function(response) {
- if (response.items.length > 0){
- for(i = 0, end = response.items.length; i < end; i++) {
- item = response.items[i];
- _pjs.setNodeValue(item.id, item.proj, item.name, item.grp, item.abst);
- if (item.assoc!=null) _pjs.setNodeAssoc(item.id, item.proj, item.assoc);
- if (item.mass!=null) _pjs.setNodeMass( item.id, item.proj, item.mass);
- }
- } else {
- console.debug('No such topic.');
- }
- }
- });
- },
- new_relation: function() {
- },
- new_select: function(id, proj) {
- var node = _pjs.findNode(id, proj);
- triggerSearch(node.name);
- //console.log("Mouse over node named '" + node.name + "'");
- },
- startexpand: function() {
- //console.log("Function startexpand()");
- },
- endexpand: function() {
- //console.log("Function endexpand()");
- },
- username: function() {
- //console.log("Function username()");
- }
- }
-
- this.getWidgetAnnotations().forEach(function(annotation) {
- annotation.on("click", function() {
- var _tags = annotation.getTagTexts();
- if (_tags.length) {
- searchNodes(_tags);
- }
- });
- });
-
- this.source.getTags().forEach(function(tag) {
- tag.on("click", function() {
- if (tag.title) {
- searchNodes([tag.title]);
- }
- });
- });
-
- bindJavascript();
-
-}
--- a/metadataplayer/metadataplayer/LdtPlayer-core.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-/* Base classes */
-
-.Ldt-Loader {
- min-height: 128px;
- background:url(img/loader.gif) center no-repeat;
- text-indent: -9999px;
- position: absolute;
- width: 100%;
-}
-
-.Ldt-Widget {
-/* font-family: Arial, Helvetica, sans-serif; */
- color: black;
- font-size: 12px;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/LdtPlayer-core.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,1733 +0,0 @@
-/*
- *
- * Copyright 2010-2012 Institut de recherche et d'innovation
- * contributor(s) : Karim Hamidou, Samuel Huron, Raphael Velt, Thibaut Cavalie
- *
- * contact@iri.centrepompidou.fr
- * http://www.iri.centrepompidou.fr
- *
- * This software is a computer program whose purpose is to show and add annotations on a video .
- * This software is governed by the CeCILL-C license under French law and
- * abiding by the rules of distribution of free software. You can use,
- * modify and/ or redistribute the software under the terms of the CeCILL-C
- * license as circulated by CEA, CNRS and INRIA at the following URL
- * "http://www.cecill.info".
- *
- * The fact that you are presently reading this means that you have had
- * knowledge of the CeCILL-C license and that you accept its terms.
-*/
-/*! LAB.js (LABjs :: Loading And Blocking JavaScript)
- v2.0.3 (c) Kyle Simpson
- MIT License
-*/
-(function(o){var K=o.$LAB,y="UseLocalXHR",z="AlwaysPreserveOrder",u="AllowDuplicates",A="CacheBust",B="BasePath",C=/^[^?#]*\//.exec(location.href)[0],D=/^\w+\:\/\/\/?[^\/]+/.exec(C)[0],i=document.head||document.getElementsByTagName("head"),L=(o.opera&&Object.prototype.toString.call(o.opera)=="[object Opera]")||("MozAppearance"in document.documentElement.style),q=document.createElement("script"),E=typeof q.preload=="boolean",r=E||(q.readyState&&q.readyState=="uninitialized"),F=!r&&q.async===true,M=!r&&!F&&!L;function G(a){return Object.prototype.toString.call(a)=="[object Function]"}function H(a){return Object.prototype.toString.call(a)=="[object Array]"}function N(a,c){var b=/^\w+\:\/\//;if(/^\/\/\/?/.test(a)){a=location.protocol+a}else if(!b.test(a)&&a.charAt(0)!="/"){a=(c||"")+a}return b.test(a)?a:((a.charAt(0)=="/"?D:C)+a)}function s(a,c){for(var b in a){if(a.hasOwnProperty(b)){c[b]=a[b]}}return c}function O(a){var c=false;for(var b=0;b<a.scripts.length;b++){if(a.scripts[b].ready&&a.scripts[b].exec_trigger){c=true;a.scripts[b].exec_trigger();a.scripts[b].exec_trigger=null}}return c}function t(a,c,b,d){a.onload=a.onreadystatechange=function(){if((a.readyState&&a.readyState!="complete"&&a.readyState!="loaded")||c[b])return;a.onload=a.onreadystatechange=null;d()}}function I(a){a.ready=a.finished=true;for(var c=0;c<a.finished_listeners.length;c++){a.finished_listeners[c]()}a.ready_listeners=[];a.finished_listeners=[]}function P(d,f,e,g,h){setTimeout(function(){var a,c=f.real_src,b;if("item"in i){if(!i[0]){setTimeout(arguments.callee,25);return}i=i[0]}a=document.createElement("script");if(f.type)a.type=f.type;if(f.charset)a.charset=f.charset;if(h){if(r){e.elem=a;if(E){a.preload=true;a.onpreload=g}else{a.onreadystatechange=function(){if(a.readyState=="loaded")g()}}a.src=c}else if(h&&c.indexOf(D)==0&&d[y]){b=new XMLHttpRequest();b.onreadystatechange=function(){if(b.readyState==4){b.onreadystatechange=function(){};e.text=b.responseText+"\n//@ sourceURL="+c;g()}};b.open("GET",c);b.send()}else{a.type="text/cache-script";t(a,e,"ready",function(){i.removeChild(a);g()});a.src=c;i.insertBefore(a,i.firstChild)}}else if(F){a.async=false;t(a,e,"finished",g);a.src=c;i.insertBefore(a,i.firstChild)}else{t(a,e,"finished",g);a.src=c;i.insertBefore(a,i.firstChild)}},0)}function J(){var l={},Q=r||M,n=[],p={},m;l[y]=true;l[z]=false;l[u]=false;l[A]=false;l[B]="";function R(a,c,b){var d;function f(){if(d!=null){d=null;I(b)}}if(p[c.src].finished)return;if(!a[u])p[c.src].finished=true;d=b.elem||document.createElement("script");if(c.type)d.type=c.type;if(c.charset)d.charset=c.charset;t(d,b,"finished",f);if(b.elem){b.elem=null}else if(b.text){d.onload=d.onreadystatechange=null;d.text=b.text}else{d.src=c.real_src}i.insertBefore(d,i.firstChild);if(b.text){f()}}function S(c,b,d,f){var e,g,h=function(){b.ready_cb(b,function(){R(c,b,e)})},j=function(){b.finished_cb(b,d)};b.src=N(b.src,c[B]);b.real_src=b.src+(c[A]?((/\?.*$/.test(b.src)?"&_":"?_")+~~(Math.random()*1E9)+"="):"");if(!p[b.src])p[b.src]={items:[],finished:false};g=p[b.src].items;if(c[u]||g.length==0){e=g[g.length]={ready:false,finished:false,ready_listeners:[h],finished_listeners:[j]};P(c,b,e,((f)?function(){e.ready=true;for(var a=0;a<e.ready_listeners.length;a++){e.ready_listeners[a]()}e.ready_listeners=[]}:function(){I(e)}),f)}else{e=g[0];if(e.finished){j()}else{e.finished_listeners.push(j)}}}function v(){var e,g=s(l,{}),h=[],j=0,w=false,k;function T(a,c){a.ready=true;a.exec_trigger=c;x()}function U(a,c){a.ready=a.finished=true;a.exec_trigger=null;for(var b=0;b<c.scripts.length;b++){if(!c.scripts[b].finished)return}c.finished=true;x()}function x(){while(j<h.length){if(G(h[j])){try{h[j++]()}catch(err){}continue}else if(!h[j].finished){if(O(h[j]))continue;break}j++}if(j==h.length){w=false;k=false}}function V(){if(!k||!k.scripts){h.push(k={scripts:[],finished:true})}}e={script:function(){for(var f=0;f<arguments.length;f++){(function(a,c){var b;if(!H(a)){c=[a]}for(var d=0;d<c.length;d++){V();a=c[d];if(G(a))a=a();if(!a)continue;if(H(a)){b=[].slice.call(a);b.unshift(d,1);[].splice.apply(c,b);d--;continue}if(typeof a=="string")a={src:a};a=s(a,{ready:false,ready_cb:T,finished:false,finished_cb:U});k.finished=false;k.scripts.push(a);S(g,a,k,(Q&&w));w=true;if(g[z])e.wait()}})(arguments[f],arguments[f])}return e},wait:function(){if(arguments.length>0){for(var a=0;a<arguments.length;a++){h.push(arguments[a])}k=h[h.length-1]}else k=false;x();return e}};return{script:e.script,wait:e.wait,setOptions:function(a){s(a,g);return e}}}m={setGlobalDefaults:function(a){s(a,l);return m},setOptions:function(){return v().setOptions.apply(null,arguments)},script:function(){return v().script.apply(null,arguments)},wait:function(){return v().wait.apply(null,arguments)},queueScript:function(){n[n.length]={type:"script",args:[].slice.call(arguments)};return m},queueWait:function(){n[n.length]={type:"wait",args:[].slice.call(arguments)};return m},runQueue:function(){var a=m,c=n.length,b=c,d;for(;--b>=0;){d=n.shift();a=a[d.type].apply(null,d.args)}return a},noConflict:function(){o.$LAB=K;return m},sandbox:function(){return J()}};return m}o.$LAB=J();(function(a,c,b){if(document.readyState==null&&document[a]){document.readyState="loading";document[a](c,b=function(){document.removeEventListener(c,b,false);document.readyState="complete"},false)}})("addEventListener","DOMContentLoaded")})(this);/* init.js - initialization and configuration of the widgets
-*/
-
-if (typeof window.IriSP === "undefined") {
- window.IriSP = {};
-}
-
-/* The Metadataplayer Object, single point of entry, replaces IriSP.init_player */
-
-IriSP.Metadataplayer = function(config) {
- IriSP.log("IriSP.Metadataplayer constructor");
- for (var key in IriSP.guiDefaults) {
- if (IriSP.guiDefaults.hasOwnProperty(key) && !config.hasOwnProperty(key)) {
- config[key] = IriSP.guiDefaults[key]
- }
- }
- var _container = document.getElementById(config.container);
- _container.innerHTML = '<h3 class="Ldt-Loader">Loading... Chargement...</h3>';
- this.sourceManager = new IriSP.Model.Directory();
- this.config = config;
- this.__events = {};
- this.loadLibs();
-}
-
-IriSP.Metadataplayer.prototype.toString = function() {
- return 'Metadataplayer in #' + this.config.container;
-}
-
-IriSP.Metadataplayer.prototype.on = function(_event, _callback) {
- if (typeof this.__events[_event] === "undefined") {
- this.__events[_event] = [];
- }
- this.__events[_event].push(_callback);
-}
-
-IriSP.Metadataplayer.prototype.trigger = function(_event, _data) {
- var _element = this;
- IriSP._(this.__events[_event]).each(function(_callback) {
- _callback.call(_element, _data);
- });
-}
-
-IriSP.Metadataplayer.prototype.loadLibs = function() {
- IriSP.log("IriSP.Metadataplayer.prototype.loadLibs");
- var $L = $LAB
- .script(IriSP.getLib("underscore"))
- .script(IriSP.getLib("Mustache"))
- .script(IriSP.getLib("jQuery"));
-
- if (typeof JSON == "undefined") {
- $L.script(IriSP.getLib("json"));
- }
-
- $L.wait()
- .script(IriSP.getLib("jQueryUI"));
-
- /* widget specific requirements */
- for(var _i = 0; _i < this.config.widgets.length; _i++) {
- var _t = this.config.widgets[_i].type;
- if (typeof IriSP.widgetsRequirements[_t] !== "undefined" && typeof IriSP.widgetsRequirements[_t].requires !== "undefined" ) {
- for (var _j = 0; _j < IriSP.widgetsRequirements[_t].requires.length; _j++) {
- $L.script(IriSP.getLib(IriSP.widgetsRequirements[_t].requires[_j]));
- }
- }
- }
-
- var _this = this;
-
- $L.wait(function() {
- _this.onLibsLoaded();
- });
-}
-
-IriSP.Metadataplayer.prototype.onLibsLoaded = function() {
- IriSP.log("IriSP.Metadataplayer.prototype.onLibsLoaded");
- if (typeof IriSP.jQuery === "undefined" && typeof window.jQuery !== "undefined") {
- IriSP.jQuery = window.jQuery.noConflict();
- }
- if (typeof IriSP._ === "undefined" && typeof window._ !== "undefined") {
- IriSP._ = window._;
- }
- IriSP.loadCss(IriSP.getLib("cssjQueryUI"));
- IriSP.loadCss(this.config.css);
-
- this.$ = IriSP.jQuery('#' + this.config.container);
- this.$.css({
- "width": this.config.width,
- "clear": "both"
- });
- if (typeof this.config.height !== "undefined") {
- this.$.css("height", this.config.height);
- }
-
- this.widgets = [];
- var _this = this;
- for(var i = 0; i < this.config.widgets.length; i++) {
- this.loadWidget(this.config.widgets[i], function(_widget) {
- _this.widgets.push(_widget)
- });
- };
- this.$.find('.Ldt-Loader').detach();
-}
-
-IriSP.Metadataplayer.prototype.loadMetadata = function(_metadataInfo) {
- if (typeof _metadataInfo.serializer === "undefined" && typeof _metadataInfo.format !== "undefined") {
- _metadataInfo.serializer = IriSP.serializers[_metadataInfo.format];
- }
- if (typeof _metadataInfo.url === "undefined" && typeof _metadataInfo.src !== "undefined") {
- _metadataInfo.url = _metadataInfo.src;
- }
- if (typeof _metadataInfo.url !== "undefined" && typeof _metadataInfo.serializer !== "undefined") {
- return this.sourceManager.remoteSource(_metadataInfo);
- } else {
- return this.sourceManager.newLocalSource(_metadataInfo);
- }
-}
-
-IriSP.Metadataplayer.prototype.loadWidget = function(_widgetConfig, _callback) {
- /* Creating containers if needed */
- if (typeof _widgetConfig.container === "undefined") {
- var _divs = this.layoutDivs(_widgetConfig.type);
- _widgetConfig.container = _divs[0];
- }
-
- var _this = this;
-
- if (typeof IriSP.Widgets[_widgetConfig.type] !== "undefined") {
- IriSP._.defer(function() {
- _callback(new IriSP.Widgets[_widgetConfig.type](_this, _widgetConfig));
- });
- } else {
- /* Loading Widget CSS */
- if (typeof IriSP.widgetsRequirements[_widgetConfig.type] === "undefined" || typeof IriSP.widgetsRequirements[_widgetConfig.type].noCss === "undefined" || !IriSP.widgetsRequirements[_widgetConfig.type].noCss) {
- IriSP.loadCss(IriSP.widgetsDir + '/' + _widgetConfig.type + '.css');
- }
- /* Loading Widget JS */
- $LAB.script(IriSP.widgetsDir + '/' + _widgetConfig.type + '.js').wait(function() {
- _callback(new IriSP.Widgets[_widgetConfig.type](_this, _widgetConfig));
- });
- }
-}
-
-/** create a subdiv with an unique id, and a spacer div as well.
- @param widgetName the name of the widget.
- @return an array of the form [createdivId, spacerdivId].
-*/
-IriSP.Metadataplayer.prototype.layoutDivs = function(_name, _height) {
- if (typeof(_name) === "undefined") {
- _name = "";
- }
- var newDiv = IriSP._.uniqueId(this.config.container + "_widget_" + _name + "_"),
- spacerDiv = IriSP._.uniqueId("LdtPlayer_spacer_"),
- divHtml = IriSP.jQuery('<div>')
- .attr("id",newDiv)
- .css({
- width: this.config.width + "px",
- position: "relative",
- clear: "both"
- }),
- spacerHtml = IriSP.jQuery('<div>')
- .attr("id",spacerDiv)
- .css({
- width: this.config.width + "px",
- height: this.config.spacer_div_height + "px",
- position: "relative",
- clear: "both"
- });
- if (typeof _height !== "undefined") {
- divHtml.css("height", _height);
- }
-
- this.$.append(divHtml);
- this.$.append(spacerHtml);
-
- return [newDiv, spacerDiv];
-};
-/* utils.js - various utils that don't belong anywhere else */
-
-IriSP.jqEscape = function(_text) {
- return _text.replace(/(:|\.)/g,'\\$1');
-}
-
-IriSP.getLib = function(lib) {
- if (IriSP.libFiles.useCdn && typeof IriSP.libFiles.cdn[lib] == "string") {
- return IriSP.libFiles.cdn[lib];
- }
- if (typeof IriSP.libFiles.locations[lib] == "string") {
- return IriSP.libFiles.locations[lib];
- }
- if (typeof IriSP.libFiles.inDefaultDir[lib] == "string") {
- return IriSP.libFiles.defaultDir + '/' + IriSP.libFiles.inDefaultDir[lib];
- }
-}
-
-IriSP._cssCache = [];
-
-IriSP.loadCss = function(_cssFile) {
- if (IriSP._(IriSP._cssCache).indexOf(_cssFile) === -1) {
- IriSP.jQuery("<link>", {
- rel : "stylesheet",
- type : "text/css",
- href : _cssFile
- }).appendTo('head');
- IriSP._cssCache.push(_cssFile);
- }
-}
-
-IriSP.log = function() {
- if (typeof console !== "undefined" && typeof IriSP.logging !== "undefined" && IriSP.logging) {
- console.log.apply(console, arguments);
- }
-}
-/* TODO: Separate Project-specific data from Source */
-
-/* model.js is where data is stored in a standard form, whatever the serializer */
-
-IriSP.Model = {
- _SOURCE_STATUS_EMPTY : 0,
- _SOURCE_STATUS_WAITING : 1,
- _SOURCE_STATUS_READY : 2,
- _ID_AUTO_INCREMENT : 0,
- _ID_BASE : (function(_d) {
- function pad(n){return n<10 ? '0'+n : n}
- function fillrand(n) {
- var _res = ''
- for (var i=0; i<n; i++) {
- _res += Math.floor(16*Math.random()).toString(16);
- }
- return _res;
- }
- return _d.getUTCFullYear() + '-'
- + pad(_d.getUTCMonth()+1) + '-'
- + pad(_d.getUTCDate()) + '-'
- + fillrand(16);
- })(new Date()),
- getUID : function() {
- var _n = (++this._ID_AUTO_INCREMENT).toString();
- while (_n.length < 4) {
- _n = '0' + _n
- }
- return "autoid-" + this._ID_BASE + '-' + _n;
- },
- regexpFromTextOrArray : function(_textOrArray, _testOnly) {
- var _testOnly = _testOnly || false;
- function escapeText(_text) {
- return _text.replace(/([\\\*\+\?\|\{\[\}\]\(\)\^\$\.\#\/])/gm, '\\$1');
- }
- var _source =
- typeof _textOrArray === "string"
- ? escapeText(_textOrArray)
- : IriSP._(_textOrArray).map(escapeText).join("|");
- if (_testOnly) {
- return new RegExp( _source, 'im');
- } else {
- return new RegExp( '(' + _source + ')', 'gim');
- }
- },
- isoToDate : function(_str) {
- // http://delete.me.uk/2005/03/iso8601.html
- var regexp = "([0-9]{4})(-([0-9]{2})(-([0-9]{2})(T([0-9]{2}):([0-9]{2})(:([0-9]{2})(\.([0-9]+))?)?(Z|(([-+])([0-9]{2}):([0-9]{2})))?)?)?)?";
- var d = _str.match(new RegExp(regexp));
-
- var offset = 0;
- var date = new Date(d[1], 0, 1);
-
- if (d[3]) { date.setMonth(d[3] - 1); }
- if (d[5]) { date.setDate(d[5]); }
- if (d[7]) { date.setHours(d[7]); }
- if (d[8]) { date.setMinutes(d[8]); }
- if (d[10]) { date.setSeconds(d[10]); }
- if (d[12]) { date.setMilliseconds(Number("0." + d[12]) * 1000); }
- if (d[14]) {
- offset = (Number(d[16]) * 60) + Number(d[17]);
- offset *= ((d[15] == '-') ? 1 : -1);
- }
-
- offset -= date.getTimezoneOffset();
- time = (Number(date) + (offset * 60 * 1000));
- var _res = new Date();
- _res.setTime(Number(time));
- return _res;
- },
- dateToIso : function(d) {
- function pad(n){return n<10 ? '0'+n : n}
- return d.getUTCFullYear()+'-'
- + pad(d.getUTCMonth()+1)+'-'
- + pad(d.getUTCDate())+'T'
- + pad(d.getUTCHours())+':'
- + pad(d.getUTCMinutes())+':'
- + pad(d.getUTCSeconds())+'Z'
- }
-}
-
-/*
- * IriSP.Model.List is a class for a list of elements (e.g. annotations, medias, etc. that each have a distinct ID)
- */
-IriSP.Model.List = function(_directory) {
- Array.call(this);
- this.directory = _directory;
- this.idIndex = [];
- this.__events = {};
- if (typeof _directory == "undefined") {
- console.trace();
- throw "Error : new IriSP.Model.List(directory): directory is undefined";
- }
-}
-
-IriSP.Model.List.prototype = new Array();
-
-IriSP.Model.List.prototype.hasId = function(_id) {
- return IriSP._(this.idIndex).include(_id);
-}
-
-/* On recent browsers, forEach and map are defined and do what we want.
- * Otherwise, we'll use the Underscore.js functions
- */
-if (typeof Array.prototype.forEach === "undefined") {
- IriSP.Model.List.prototype.forEach = function(_callback) {
- var _this = this;
- IriSP._(this).forEach(function(_value, _key) {
- _callback(_value, _key, _this);
- });
- }
-}
-
-if (typeof Array.prototype.map === "undefined") {
- IriSP.Model.List.prototype.map = function(_callback) {
- var _this = this;
- return IriSP._(this).map(function(_value, _key) {
- return _callback(_value, _key, _this);
- });
- }
-}
-
-IriSP.Model.List.prototype.pluck = function(_key) {
- return this.map(function(_value) {
- return _value[_key];
- });
-}
-
-/* We override Array's filter function because it doesn't return an IriSP.Model.List
- */
-IriSP.Model.List.prototype.filter = function(_callback) {
- var _this = this,
- _res = new IriSP.Model.List(this.directory);
- _res.addElements(IriSP._(this).filter(function(_value, _key) {
- return _callback(_value, _key, _this);
- }));
- return _res;
-}
-
-IriSP.Model.List.prototype.slice = function(_start, _end) {
- var _res = new IriSP.Model.List(this.directory);
- _res.addElements(Array.prototype.slice.call(this, _start, _end));
- return _res;
-}
-
-IriSP.Model.List.prototype.splice = function(_start, _end) {
- var _res = new IriSP.Model.List(this.directory);
- _res.addElements(Array.prototype.splice.call(this, _start, _end));
- this.idIndex.splice(_start, _end);
- return _res;
-}
-
-/* Array has a sort function, but it's not as interesting as Underscore.js's sortBy
- * and won't return a new IriSP.Model.List
- */
-IriSP.Model.List.prototype.sortBy = function(_callback) {
- var _this = this,
- _res = new IriSP.Model.List(this.directory);
- _res.addElements(IriSP._(this).sortBy(function(_value, _key) {
- return _callback(_value, _key, _this);
- }));
- return _res;
-}
-
-/* Title and Description are basic information for (almost) all element types,
- * here we can search by these criteria
- */
-IriSP.Model.List.prototype.searchByTitle = function(_text) {
- var _rgxp = IriSP.Model.regexpFromTextOrArray(_text, true);
- return this.filter(function(_element) {
- return _rgxp.test(_element.title);
- });
-}
-
-IriSP.Model.List.prototype.searchByDescription = function(_text) {
- var _rgxp = IriSP.Model.regexpFromTextOrArray(_text, true);
- return this.filter(function(_element) {
- return _rgxp.test(_element.description);
- });
-}
-
-IriSP.Model.List.prototype.searchByTextFields = function(_text) {
- var _rgxp = IriSP.Model.regexpFromTextOrArray(_text, true);
- return this.filter(function(_element) {
- return _rgxp.test(_element.description) || _rgxp.test(_element.title);
- });
-}
-
-IriSP.Model.List.prototype.getTitles = function() {
- return this.map(function(_el) {
- return _el.title;
- });
-}
-
-IriSP.Model.List.prototype.addId = function(_id) {
- var _el = this.directory.getElement(_id)
- if (!this.hasId(_id) && typeof _el !== "undefined") {
- this.idIndex.push(_id);
- Array.prototype.push.call(this, _el);
- }
-}
-
-IriSP.Model.List.prototype.push = function(_el) {
- if (typeof _el === "undefined") {
- return;
- }
- var _index = (IriSP._(this.idIndex).indexOf(_el.id));
- if (_index === -1) {
- this.idIndex.push(_el.id);
- Array.prototype.push.call(this, _el);
- } else {
- this[_index] = _el;
- }
-}
-
-IriSP.Model.List.prototype.addIds = function(_array) {
- var _l = _array.length,
- _this = this;
- IriSP._(_array).forEach(function(_id) {
- _this.addId(_id);
- });
-}
-
-IriSP.Model.List.prototype.addElements = function(_array) {
- var _this = this;
- IriSP._(_array).forEach(function(_el) {
- _this.push(_el);
- });
-}
-
-IriSP.Model.List.prototype.removeId = function(_id, _deleteFromDirectory) {
- var _deleteFromDirectory = _deleteFromDirectory || false,
- _index = (IriSP._(this.idIndex).indexOf(_id));
- if (_index !== -1) {
- this.splice(_index,1);
- }
- if (_deleteFromDirectory) {
- delete this.directory.elements[_id];
- }
-}
-
-IriSP.Model.List.prototype.removeElement = function(_el, _deleteFromDirectory) {
- var _deleteFromDirectory = _deleteFromDirectory || false;
- this.removeId(_el.id);
-}
-
-IriSP.Model.List.prototype.removeIds = function(_list, _deleteFromDirectory) {
- var _deleteFromDirectory = _deleteFromDirectory || false,
- _this = this;
- IriSP._(_list).forEach(function(_id) {
- _this.removeId(_id);
- });
-}
-
-IriSP.Model.List.prototype.removeElements = function(_list, _deleteFromDirectory) {
- var _deleteFromDirectory = _deleteFromDirectory || false,
- _this = this;
- IriSP._(_list).forEach(function(_el) {
- _this.removeElement(_el);
- });
-}
-
-IriSP.Model.List.prototype.on = function(_event, _callback) {
- if (typeof this.__events[_event] === "undefined") {
- this.__events[_event] = [];
- }
- this.__events[_event].push(_callback);
-}
-
-IriSP.Model.List.prototype.trigger = function(_event, _data) {
- var _list = this;
- IriSP._(this.__events[_event]).each(function(_callback) {
- _callback.call(_list, _data);
- });
-}
-
-/* A simple time management object, that helps converting millisecs to seconds and strings,
- * without the clumsiness of the original Date object.
- */
-
-IriSP.Model.Time = function(_milliseconds) {
- this.milliseconds = 0;
- this.setMilliseconds(_milliseconds);
-}
-
-IriSP.Model.Time.prototype.setMilliseconds = function(_milliseconds) {
- var _ante = _milliseconds;
- switch(typeof _milliseconds) {
- case "string":
- this.milliseconds = parseFloat(_milliseconds);
- break;
- case "number":
- this.milliseconds = _milliseconds;
- break;
- case "object":
- this.milliseconds = parseFloat(_milliseconds.valueOf());
- break;
- default:
- this.milliseconds = 0;
- }
- if (this.milliseconds === NaN) {
- this.milliseconds = _ante;
- }
-}
-
-IriSP.Model.Time.prototype.setSeconds = function(_seconds) {
- this.milliseconds = 1000 * _seconds;
-}
-
-IriSP.Model.Time.prototype.getSeconds = function() {
- return this.milliseconds / 1000;
-}
-
-IriSP.Model.Time.prototype.getHMS = function() {
- var _totalSeconds = Math.abs(Math.floor(this.getSeconds()));
- return {
- hours : Math.floor(_totalSeconds / 3600),
- minutes : (Math.floor(_totalSeconds / 60) % 60),
- seconds : _totalSeconds % 60
- }
-}
-
-IriSP.Model.Time.prototype.add = function(_milliseconds) {
- this.milliseconds += new IriSP.Model.Time(_milliseconds).milliseconds;
-}
-
-IriSP.Model.Time.prototype.valueOf = function() {
- return this.milliseconds;
-}
-
-IriSP.Model.Time.prototype.toString = function() {
- function pad(_n) {
- var _res = _n.toString();
- while (_res.length < 2) {
- _res = '0' + _res;
- }
- return _res;
- }
- var _hms = this.getHMS(),
- _res = '';
- if (_hms.hours) {
- _res += pad(_hms.hours) + ':'
- }
- _res += pad(_hms.minutes) + ':' + pad(_hms.seconds);
- return _res;
-}
-
-/* IriSP.Model.Reference handles references between elements
- */
-
-IriSP.Model.Reference = function(_source, _idRef) {
- this.source = _source;
- this.id = _idRef;
- if (typeof _idRef === "object") {
- this.isList = true;
- } else {
- this.isList = false;
- }
- this.refresh();
-}
-
-IriSP.Model.Reference.prototype.refresh = function() {
- if (this.isList) {
- this.contents = new IriSP.Model.List(this.source.directory);
- this.contents.addIds(this.id);
- } else {
- this.contents = this.source.getElement(this.id);
- }
-
-}
-
-IriSP.Model.Reference.prototype.getContents = function() {
- if (typeof this.contents === "undefined" || (this.isList && this.contents.length != this.id.length)) {
- this.refresh();
- }
- return this.contents;
-}
-
-IriSP.Model.Reference.prototype.isOrHasId = function(_idRef) {
- if (this.isList) {
- return (IriSP._(this.id).indexOf(_idRef) !== -1)
- } else {
- return (this.id == _idRef);
- }
-}
-
-/* */
-
-IriSP.Model.Element = function(_id, _source) {
- this.elementType = 'element';
- if (typeof _source === "undefined") {
- return;
- }
- if (typeof _id === "undefined" || !_id) {
- _id = IriSP.Model.getUID();
- }
- this.source = _source;
- this.id = _id;
- this.title = "";
- this.description = "";
- this.__events = {}
- this.source.directory.addElement(this);
-}
-
-IriSP.Model.Element.prototype.toString = function() {
- return this.elementType + (this.elementType !== 'element' ? ', id=' + this.id + ', title="' + this.title + '"' : '');
-}
-
-IriSP.Model.Element.prototype.setReference = function(_elementType, _idRef) {
- this[_elementType] = new IriSP.Model.Reference(this.source, _idRef);
-}
-
-IriSP.Model.Element.prototype.getReference = function(_elementType) {
- if (typeof this[_elementType] !== "undefined") {
- return this[_elementType].getContents();
- }
-}
-
-IriSP.Model.Element.prototype.getRelated = function(_elementType, _global) {
- _global = (typeof _global !== "undefined" && _global);
- var _this = this;
- return this.source.getList(_elementType, _global).filter(function(_el) {
- var _ref = _el[_this.elementType];
- return _ref.isOrHasId(_this.id);
- });
-}
-
-IriSP.Model.Element.prototype.on = function(_event, _callback) {
- if (typeof this.__events[_event] === "undefined") {
- this.__events[_event] = [];
- }
- this.__events[_event].push(_callback);
-}
-
-IriSP.Model.Element.prototype.trigger = function(_event, _data) {
- var _element = this;
- IriSP._(this.__events[_event]).each(function(_callback) {
- _callback.call(_element, _data);
- });
-}
-
-/* */
-
-IriSP.Model.Media = function(_id, _source) {
- IriSP.Model.Element.call(this, _id, _source);
- this.elementType = 'media';
- this.duration = new IriSP.Model.Time();
- this.video = '';
- var _this = this;
- this.on("timeupdate", function(_time) {
- _this.getAnnotations().filter(function(_a) {
- return (_a.end <= _time || _a.begin > _time) && _a.playing
- }).forEach(function(_a) {
- _a.playing = false;
- _a.trigger("leave");
- });
- _this.getAnnotations().filter(function(_a) {
- return _a.begin <= _time && _a.end > _time && !_a.playing
- }).forEach(function(_a) {
- _a.playing = true;
- _a.trigger("enter");
- });
- });
-}
-
-IriSP.Model.Media.prototype = new IriSP.Model.Element();
-
-/* Default functions to be overriden by players */
-
-IriSP.Model.Media.prototype.getCurrentTime = function() { return new IriSP.Model.Time(0); }
-
-IriSP.Model.Media.prototype.getVolume = function() { return .5; }
-
-IriSP.Model.Media.prototype.getPaused = function() { return true; }
-
-IriSP.Model.Media.prototype.getMuted = function() { return false; }
-
-IriSP.Model.Media.prototype.setCurrentTime
- = IriSP.Model.Media.prototype.setVolume
- = IriSP.Model.Media.prototype.setMuted
- = IriSP.Model.Media.prototype.play
- = IriSP.Model.Media.prototype.pause
- = function() {}
-
-IriSP.Model.Media.prototype.setDuration = function(_durationMs) {
- this.duration.setMilliseconds(_durationMs);
-}
-
-IriSP.Model.Media.prototype.getAnnotations = function() {
- return this.getRelated("annotation");
-}
-
-IriSP.Model.Media.prototype.getAnnotationsByTypeTitle = function(_title) {
- var _annTypes = this.source.getAnnotationTypes().searchByTitle(_title).pluck("id");
- if (_annTypes.length) {
- return this.getAnnotations().filter(function(_annotation) {
- return IriSP._(_annTypes).indexOf(_annotation.getAnnotationType().id) !== -1;
- });
- } else {
- return new IriSP.Model.List(this.source.directory)
- }
-}
-
-/* */
-
-IriSP.Model.Tag = function(_id, _source) {
- IriSP.Model.Element.call(this, _id, _source);
- this.elementType = 'tag';
-}
-
-IriSP.Model.Tag.prototype = new IriSP.Model.Element();
-
-IriSP.Model.Tag.prototype.getAnnotations = function() {
- return this.getRelated("annotation");
-}
-
-/* */
-
-IriSP.Model.AnnotationType = function(_id, _source) {
- IriSP.Model.Element.call(this, _id, _source);
- this.elementType = 'annotationType';
-}
-
-IriSP.Model.AnnotationType.prototype = new IriSP.Model.Element();
-
-IriSP.Model.AnnotationType.prototype.getAnnotations = function() {
- return this.getRelated("annotation");
-}
-
-/* Annotation
- * */
-
-IriSP.Model.Annotation = function(_id, _source) {
- IriSP.Model.Element.call(this, _id, _source);
- this.elementType = 'annotation';
- this.begin = new IriSP.Model.Time();
- this.end = new IriSP.Model.Time();
- this.playing = false;
- var _this = this;
- this.on("click", function() {
- _this.getMedia().setCurrentTime(_this.begin);
- });
-}
-
-IriSP.Model.Annotation.prototype = new IriSP.Model.Element(null);
-
-IriSP.Model.Annotation.prototype.setBegin = function(_beginMs) {
- this.begin.setMilliseconds(_beginMs);
-}
-
-IriSP.Model.Annotation.prototype.setEnd = function(_beginMs) {
- this.end.setMilliseconds(_beginMs);
-}
-
-IriSP.Model.Annotation.prototype.setMedia = function(_idRef) {
- this.setReference("media", _idRef);
-}
-
-IriSP.Model.Annotation.prototype.getMedia = function() {
- return this.getReference("media");
-}
-
-IriSP.Model.Annotation.prototype.setAnnotationType = function(_idRef) {
- this.setReference("annotationType", _idRef);
-}
-
-IriSP.Model.Annotation.prototype.getAnnotationType = function() {
- return this.getReference("annotationType");
-}
-
-IriSP.Model.Annotation.prototype.setTags = function(_idRefs) {
- this.setReference("tag", _idRefs);
-}
-
-IriSP.Model.Annotation.prototype.getTags = function() {
- return this.getReference("tag");
-}
-
-IriSP.Model.Annotation.prototype.getTagTexts = function() {
- return this.getTags().getTitles();
-}
-
-IriSP.Model.Annotation.prototype.getDuration = function() {
- return new IriSP.Model.Time(this.end.milliseconds - this.begin.milliseconds)
-}
-
-/* */
-
-IriSP.Model.MashedAnnotation = function(_mashup, _annotation) {
- IriSP.Model.Element.call(this, _mashup.id + "_" + _annotation.id, _annotation.source);
- this.elementType = 'mashedAnnotation';
- this.annotation = _annotation;
- this.begin = new IriSP.Model.Time(_mashup.duration);
- this.end = new IriSP.Model.Time(_mashup.duration + _annotation.getDuration());
- this.title = this.annotation.title;
- this.description = this.annotation.description;
- this.color = this.annotation.color;
- var _this = this;
- this.on("click", function() {
- _mashup.setCurrentTime(_this.begin);
- });
-}
-
-IriSP.Model.MashedAnnotation.prototype = new IriSP.Model.Element(null);
-
-IriSP.Model.MashedAnnotation.prototype.getMedia = function() {
- return this.annotation.getReference("media");
-}
-
-IriSP.Model.MashedAnnotation.prototype.getAnnotationType = function() {
- return this.annotation.getReference("annotationType");
-}
-
-IriSP.Model.MashedAnnotation.prototype.getTags = function() {
- return this.annotation.getReference("tag");
-}
-
-IriSP.Model.MashedAnnotation.prototype.getTagTexts = function() {
- return this.annotation.getTags().getTitles();
-}
-
-IriSP.Model.MashedAnnotation.prototype.getDuration = function() {
- return this.annotation.getDuration();
-}
-
-/* */
-
-IriSP.Model.Mashup = function(_id, _source) {
- IriSP.Model.Element.call(this, _id, _source);
- this.elementType = 'mashup';
- this.duration = new IriSP.Model.Time();
- this.segments = new IriSP.Model.List(_source.directory);
- this.medias = new IriSP.Model.List(_source.directory);
- var _currentMedia = null;
- var _this = this;
- this.on("timeupdate", function(_time) {
- _this.getAnnotations().filter(function(_a) {
- return (_a.end <= _time || _a.begin > _time) && _a.playing
- }).forEach(function(_a) {
- _a.playing = false;
- _a.trigger("leave");
- });
- _this.getAnnotations().filter(function(_a) {
- return _a.begin <= _time && _a.end > _time && !_a.playing
- }).forEach(function(_a) {
- _a.playing = true;
- _a.trigger("enter");
- var _m = _a.getMedia();
- if (_m !== _currentMedia) {
- if (_currentMedia) {
- _currentMedia.trigger("leave");
- }
- _m.trigger("enter");
- _currentMedia = _m;
- }
- });
- });
-}
-
-IriSP.Model.Mashup.prototype = new IriSP.Model.Element();
-
-IriSP.Model.Mashup.prototype.addSegment = function(_annotation) {
- var _mashedAnnotation = new IriSP.Model.MashedAnnotation(this, _annotation);
- this.duration.setMilliseconds(_mashedAnnotation.end);
- this.segments.push(_mashedAnnotation);
- this.medias.push(_annotation.getMedia());
-}
-
-IriSP.Model.Mashup.prototype.addSegmentById = function(_elId) {
- var _annotation = this.source.getElement(_elId);
- if (typeof _annotation !== "undefined") {
- this.addSegment(_annotation);
- }
-}
-
-IriSP.Model.Mashup.prototype.getAnnotations = function() {
- return this.segments;
-}
-
-IriSP.Model.Mashup.prototype.getMedias = function() {
- return this.medias;
-}
-
-IriSP.Model.Mashup.prototype.getAnnotationsByTypeTitle = function(_title) {
- var _annTypes = this.source.getAnnotationTypes().searchByTitle(_title).pluck("id");
- if (_annTypes.length) {
- return this.getAnnotations().filter(function(_annotation) {
- return IriSP._(_annTypes).indexOf(_annotation.getAnnotationType().id) !== -1;
- });
- } else {
- return new IriSP.Model.List(this.source.directory)
- }
-}
-
-IriSP.Model.Mashup.prototype.getAnnotationAtTime = function(_time) {
- var _list = this.segments.filter(function(_annotation) {
- return _annotation.begin <= _time && _annotation.end > _time;
- });
- if (_list.length) {
- return _list[0];
- } else {
- return undefined;
- }
-}
-
-IriSP.Model.Mashup.prototype.getMediaAtTime = function(_time) {
- var _annotation = this.getAnnotationAtTime(_time);
- if (typeof _annotation !== "undefined") {
- return _annotation.getMedia();
- } else {
- return undefined;
- }
-}
-
-/* Default functions to be overriden by players */
-
-IriSP.Model.Mashup.prototype.getCurrentTime = function() { return new IriSP.Model.Time(0); }
-
-IriSP.Model.Mashup.prototype.getVolume = function() { return .5; }
-
-IriSP.Model.Mashup.prototype.getPaused = function() { return true; }
-
-IriSP.Model.Mashup.prototype.getMuted = function() { return false; }
-
-IriSP.Model.Mashup.prototype.setCurrentTime
- = IriSP.Model.Mashup.prototype.setVolume
- = IriSP.Model.Mashup.prototype.setMuted
- = IriSP.Model.Mashup.prototype.play
- = IriSP.Model.Mashup.prototype.pause
- = function() {}
-
-/* */
-
-IriSP.Model.Source = function(_config) {
- this.status = IriSP.Model._SOURCE_STATUS_EMPTY;
- if (typeof _config !== "undefined") {
- var _this = this;
- IriSP._(_config).forEach(function(_v, _k) {
- _this[_k] = _v;
- })
- this.callbackQueue = [];
- this.contents = {};
- this.get();
- }
-}
-
-IriSP.Model.Source.prototype.addList = function(_listId, _contents) {
- if (typeof this.contents[_listId] === "undefined") {
- this.contents[_listId] = new IriSP.Model.List(this.directory);
- }
- this.contents[_listId].addElements(_contents);
-}
-
-IriSP.Model.Source.prototype.getList = function(_listId, _global) {
- _global = (typeof _global !== "undefined" && _global);
- if (_global || typeof this.contents[_listId] === "undefined") {
- return this.directory.getGlobalList().filter(function(_e) {
- return (_e.elementType === _listId);
- });
- } else {
- return this.contents[_listId];
- }
-}
-
-IriSP.Model.Source.prototype.forEach = function(_callback) {
- var _this = this;
- IriSP._(this.contents).forEach(function(_value, _key) {
- _callback.call(_this, _value, _key);
- })
-}
-
-IriSP.Model.Source.prototype.getElement = function(_elId) {
- return this.directory.getElement(_elId);
-}
-
-IriSP.Model.Source.prototype.get = function() {
- this.status = IriSP.Model._SOURCE_STATUS_WAITING;
- this.handleCallbacks();
-}
-
-/* We defer the callbacks calls so they execute after the queue is cleared */
-IriSP.Model.Source.prototype.deferCallback = function(_callback) {
- var _this = this;
- IriSP._.defer(function() {
- _callback.call(_this);
- });
-}
-
-IriSP.Model.Source.prototype.handleCallbacks = function() {
- this.status = IriSP.Model._SOURCE_STATUS_READY;
- while (this.callbackQueue.length) {
- this.deferCallback(this.callbackQueue.splice(0,1)[0]);
- }
-}
-IriSP.Model.Source.prototype.onLoad = function(_callback) {
- if (this.status === IriSP.Model._SOURCE_STATUS_READY) {
- this.deferCallback(_callback);
- } else {
- this.callbackQueue.push(_callback);
- }
-}
-
-IriSP.Model.Source.prototype.serialize = function() {
- return this.serializer.serialize(this);
-}
-
-IriSP.Model.Source.prototype.deSerialize = function(_data) {
- this.serializer.deSerialize(_data, this);
-}
-
-IriSP.Model.Source.prototype.getAnnotations = function(_global) {
- _global = (typeof _global !== "undefined" && _global);
- return this.getList("annotation", _global);
-}
-
-IriSP.Model.Source.prototype.getMedias = function(_global) {
- _global = (typeof _global !== "undefined" && _global);
- return this.getList("media", _global);
-}
-
-IriSP.Model.Source.prototype.getTags = function(_global) {
- _global = (typeof _global !== "undefined" && _global);
- return this.getList("tag", _global);
-}
-
-IriSP.Model.Source.prototype.getMashups = function(_global) {
- _global = (typeof _global !== "undefined" && _global);
- return this.getList("mashup", _global);
-}
-
-IriSP.Model.Source.prototype.getAnnotationTypes = function(_global) {
- _global = (typeof _global !== "undefined" && _global);
- return this.getList("annotationType", _global);
-}
-
-IriSP.Model.Source.prototype.getAnnotationsByTypeTitle = function(_title, _global) {
- _global = (typeof _global !== "undefined" && _global);
- var _res = new IriSP.Model.List(this.directory),
- _annTypes = this.getAnnotationTypes(_global).searchByTitle(_title);
- _annTypes.forEach(function(_annType) {
- _res.addElements(_annType.getAnnotations(_global));
- })
- return _res;
-}
-
-IriSP.Model.Source.prototype.getDuration = function() {
- var _m = this.currentMedia;
- if (typeof _m !== "undefined") {
- return this.currentMedia.duration;
- }
-}
-
-IriSP.Model.Source.prototype.getCurrentMedia = function(_opts) {
- if (typeof this.currentMedia === "undefined") {
- if (_opts.is_mashup) {
- var _mashups = this.getMashups();
- if (_mashups.length) {
- this.currentMedia = _mashups[0];
- }
- } else {
- var _medias = this.getMedias();
- if (_medias.length) {
- _media = _medias[0];
- }
- }
- }
- return this.currentMedia;
-}
-
-IriSP.Model.Source.prototype.merge = function(_source) {
- var _this = this;
- _source.forEach(function(_value, _key) {
- _this.getList(_key).addElements(_value);
- });
-}
-
-/* */
-
-IriSP.Model.RemoteSource = function(_config) {
- IriSP.Model.Source.call(this, _config);
-}
-
-IriSP.Model.RemoteSource.prototype = new IriSP.Model.Source();
-
-IriSP.Model.RemoteSource.prototype.get = function() {
- this.status = IriSP.Model._SOURCE_STATUS_WAITING;
- var _this = this;
- this.serializer.loadData(this.url, function(_result) {
- _this.deSerialize(_result);
- _this.handleCallbacks();
- });
-}
-
-/* */
-
-IriSP.Model.Directory = function() {
- this.remoteSources = {};
- this.elements = {};
-}
-
-IriSP.Model.Directory.prototype.remoteSource = function(_properties) {
- if (typeof _properties !== "object" || typeof _properties.url === "undefined") {
- throw "Error : IriSP.Model.Directory.remoteSource(configuration): configuration.url is undefined";
- }
- var _config = IriSP._({ directory: this }).extend(_properties);
- if (typeof this.remoteSources[_properties.url] === "undefined") {
- this.remoteSources[_properties.url] = new IriSP.Model.RemoteSource(_config);
- }
- return this.remoteSources[_properties.url];
-}
-
-IriSP.Model.Directory.prototype.newLocalSource = function(_properties) {
- var _config = IriSP._({ directory: this }).extend(_properties),
- _res = new IriSP.Model.Source(_config);
- return _res;
-}
-
-IriSP.Model.Directory.prototype.getElement = function(_id) {
- return this.elements[_id];
-}
-
-IriSP.Model.Directory.prototype.addElement = function(_element) {
- this.elements[_element.id] = _element;
-}
-
-IriSP.Model.Directory.prototype.getGlobalList = function() {
- var _res = new IriSP.Model.List(this);
- _res.addIds(IriSP._(this.elements).keys());
- return _res;
-}
-
-/* */
-IriSP.language = 'en';
-
-IriSP.libFiles = {
- defaultDir : "js/libs/",
- inDefaultDir : {
- underscore : "underscore-min.js",
- Mustache : "mustache.js",
- jQuery : "jquery.min.js",
- jQueryUI : "jquery-ui.min.js",
- swfObject : "swfobject.js",
- cssjQueryUI : "jquery-ui.css",
- popcorn : "popcorn-complete.min.js",
- jwplayer : "jwplayer.js",
- raphael : "raphael-min.js",
- tracemanager : "tracemanager.js",
- jwPlayerSWF : "player.swf",
- json : "json2.js",
- zeroClipboardJs: "ZeroClipboard.js",
- zeroClipboardSwf: "ZeroClipboard.swf",
- backbone: "backbone.js",
- backboneRelational: "backbone-relational.js",
- paper: "paper.js",
- jqueryMousewheel: "jquery.mousewheel.min.js",
- renkanPublish: "renkan-publish.js",
- processing: "processing-1.3.6.min.js",
- recordMicSwf: "record_mic.swf"
- },
- locations : {
- // use to define locations outside default_dir
- },
- cdn : {
- jQuery : "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js",
- jQueryUI : "http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.22/jquery-ui.min.js",
- swfObject : "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js",
- cssjQueryUI : "http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.22/themes/ui-lightness/jquery-ui.css",
- underscore : "http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.3.3/underscore-min.js",
- Mustache : "http://cdnjs.cloudflare.com/ajax/libs/mustache.js/0.5.0-dev/mustache.min.js",
- raphael : "http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js",
- json : "http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"
- },
- useCdn : false
-}
-
-IriSP.widgetsDir = 'widgets';
-
-IriSP.widgetsRequirements = {
- PopcornPlayer: {
- noCss: true,
- requires: [ "popcorn" ]
- },
- JwpPlayer: {
- noCss: true,
- requires: [ "jwplayer" ]
- },
- DailymotionPlayer: {
- noCss: true,
- requires: [ "swfObject" ]
- },
- AutoPlayer: {
- noCss: true
- },
- MashupPlayer: {
- noCss: true
- },
- AnnotationsList: {
- requires: [ "jwplayer" ]
- },
- Sparkline: {
- noCss: true,
- requires: [ "raphael" ]
- },
- Arrow: {
- noCss: true,
- requires: [ "raphael" ]
- },
- Mediafragment: {
- noCss: true
- },
- Trace : {
- noCss: true,
- requires: [ "tracemanager" ]
- },
- Slideshare: {
- requires: [ "swfObject" ]
- },
- Social: {
- requires: [ "zeroClipboardJs" ]
- },
- Renkan: {
- requires: [ "backbone", "backboneRelational", "paper", "jqueryMousewheel", "renkanPublish" ]
- },
- KnowledgeConcierge: {
- requires: [ "processing" ]
- }
-}
-
-IriSP.guiDefaults = {
- width : 640,
- container : 'LdtPlayer',
- spacer_div_height : 0
-}
-/* Definition of an ancestor for the Widget classes */
-
-if (typeof IriSP.Widgets === "undefined") {
- IriSP.Widgets = {}
-}
-
-/**
- * @class IriSP.Widget is an "abstract" class. It's mostly used to define some properties common to every widget.
- *
- * Note that widget constructors are never called directly by the user. Instead, the widgets are instantiated by functions
- * defined in init.js
- *
- * @constructor
- * @param player - a reference to the player widget
- * @param config - configuration options for the widget
- */
-
-
-IriSP.Widgets.Widget = function(player, config) {
-
- if( typeof player === "undefined") {
- /* Probably an abstract call of the class when
- * individual widgets set their prototype */
- return;
- }
-
- /* Setting all the configuration options */
- var _type = config.type,
- _config = IriSP._.defaults({}, config, player.config.default_options, this.defaults),
- _this = this;
-
- IriSP._(_config).forEach(function(_value, _key) {
- _this[_key] = _value;
- });
-
- if (typeof this.width === "undefined") {
- this.width = player.config.width;
- }
-
- /* Setting this.player at the end in case it's been overriden
- * by a configuration option of the same name :-(
- */
- this.player = player;
-
- /* Getting metadata */
- this.source = player.loadMetadata(this.metadata);
-
- /* Call draw when loaded */
- this.source.onLoad(function() {
- if (_this.media_id) {
- _this.media = this.getElement(_this.media_id);
- } else {
- var _mediaopts = {
- is_mashup: _this.is_mashup || false
- }
- _this.media = this.getCurrentMedia(_mediaopts);
- }
-
- _this.draw();
- });
-
- /* Adding classes and html attributes */
- this.$ = IriSP.jQuery('#' + this.container);
- this.$.addClass("Ldt-TraceMe Ldt-Widget").attr("widget-type", _type);
-
- this.l10n = (
- typeof this.messages[IriSP.language] !== "undefined"
- ? this.messages[IriSP.language]
- : (
- IriSP.language.length > 2 && typeof this.messages[IriSP.language.substr(0,2)] !== "undefined"
- ? this.messages[IriSP.language.substr(0,2)]
- : this.messages["en"]
- )
- );
-
-};
-
-IriSP.Widgets.Widget.prototype.defaults = {}
-
-IriSP.Widgets.Widget.prototype.template = '';
-
-IriSP.Widgets.Widget.prototype.messages = {"en":{}};
-
-IriSP.Widgets.Widget.prototype.templateToHtml = function(_template) {
- return Mustache.to_html(_template, this);
-}
-
-IriSP.Widgets.Widget.prototype.renderTemplate = function() {
- this.$.append(this.templateToHtml(this.template));
-}
-
-IriSP.Widgets.Widget.prototype.functionWrapper = function(_name) {
- var _this = this,
- _function = this[_name];
- if (typeof _function !== "undefined") {
- return function() {
- return _function.apply(_this, Array.prototype.slice.call(arguments, 0));
- }
- } else {
- console.log("Error, Unknown function IriSP.Widgets." + this.type + "." + _name)
- }
-}
-
-IriSP.Widgets.Widget.prototype.getFunctionOrName = function(_functionOrName) {
- switch (typeof _functionOrName) {
- case "function":
- return _functionOrName;
- case "string":
- return this.functionWrapper(_functionOrName);
- default:
- return undefined;
- }
-}
-
-IriSP.Widgets.Widget.prototype.onMdpEvent = function(_eventName, _functionOrName) {
- this.player.on(_eventName, this.getFunctionOrName(_functionOrName));
-}
-
-IriSP.Widgets.Widget.prototype.onMediaEvent = function(_eventName, _functionOrName) {
- this.media.on(_eventName, this.getFunctionOrName(_functionOrName));
-}
-
-IriSP.Widgets.Widget.prototype.getWidgetAnnotations = function() {
- return typeof this.annotation_type !== "undefined" && this.annotation_type ? this.media.getAnnotationsByTypeTitle(this.annotation_type) : this.media.getAnnotations();
-}
-
-IriSP.Widgets.Widget.prototype.getWidgetAnnotationsAtTime = function() {
- var _time = this.media.getCurrentTime();
- return this.getWidgetAnnotations().filter(function(_annotation) {
- return _annotation.begin <= _time && _annotation.end > _time;
- });
-}
-
-IriSP.Widgets.Widget.prototype.insertSubwidget = function(_selector, _widgetoptions, _propname) {
- var _id = _selector.attr("id"),
- _this = this,
- _type = _widgetoptions.type,
- $L = $LAB;
- if (typeof _id == "undefined") {
- _id = IriSP._.uniqueId(this.container + '_sub_widget_' + _widgetoptions.type);
- _selector.attr("id", _id);
- }
- _widgetoptions.container = _id;
- if (typeof IriSP.widgetsRequirements[_type] !== "undefined" && typeof IriSP.widgetsRequirements[_type].requires !== "undefined" ) {
- for (var _j = 0; _j < IriSP.widgetsRequirements[_type].requires.length; _j++) {
- $L.script(IriSP.getLib(IriSP.widgetsRequirements[_type].requires[_j]));
- }
- }
- $L.wait(function() {
- _this.player.loadWidget(_widgetoptions, function(_widget) {
- if (_propname) {
- _this[_propname] = _widget;
- }
- });
- });
-}
-
-/**
- * This method responsible of drawing a widget on screen.
- */
-IriSP.Widgets.Widget.prototype.draw = function() {
- /* implemented by "sub-classes" */
-};/* LDT Platform Serializer */
-
-if (typeof IriSP.serializers === "undefined") {
- IriSP.serializers = {}
-}
-
-IriSP.serializers.ldt = {
- types : {
- media : {
- serialized_name : "medias",
- deserializer : function(_data, _source) {
- var _res = new IriSP.Model.Media(_data.id, _source);
- _res.video = (
- typeof _data.url !== "undefined"
- ? _data.url
- : (
- typeof _data.href !== "undefined"
- ? _data.href
- : null
- )
- );
- if (typeof _data.meta.item !== "undefined" && _data.meta.item.name === "streamer") {
- _res.streamer = _data.meta.item.value;
- }
- _res.title = _data.meta["dc:title"];
- _res.description = _data.meta["dc:description"];
- _res.setDuration(_data.meta["dc:duration"]);
- _res.url = _data.meta.url;
- if (typeof _data.meta.img !== "undefined" && _data.meta.img.src !== "undefined") {
- _res.thumbnail = _data.meta.img.src;
- }
- return _res;
- },
- serializer : function(_data, _source) {
- return {
- id : _data.id,
- url : _data.video,
- meta : {
- "dc:title" : _data.title,
- "dc:description" : _data.description,
- "dc:duration" : _data.duration.milliseconds
- }
- }
- }
- },
- tag : {
- serialized_name : "tags",
- model_name : "tag",
- deserializer : function(_data, _source) {
- var _res = new IriSP.Model.Tag(_data.id, _source);
- _res.title = _data.meta["dc:title"];
- return _res;
- },
- serializer : function(_data, _source) {
- return {
- id : _data.id,
- meta : {
- "dc:title" : _data.title
- }
- }
- }
- },
- annotationType : {
- serialized_name : "annotation-types",
- deserializer : function(_data, _source) {
- var _res = new IriSP.Model.AnnotationType(_data.id, _source);
- _res.title = _data["dc:title"];
- _res.description = _data["dc:description"];
- return _res;
- },
- serializer : function(_data, _source) {
- return {
- id : _data.id,
- "dc:title" : _data.title,
- "dc:description" : _data.description
- }
- }
- },
- annotation : {
- serialized_name : "annotations",
- deserializer : function(_data, _source) {
- var _res = new IriSP.Model.Annotation(_data.id, _source);
- _res.title = _data.content.title || "";
- _res.description = _data.content.description || "";
- if (typeof _data.content.img !== "undefined" && _data.content.img.src !== "undefined") {
- _res.thumbnail = _data.content.img.src;
- }
- _res.created = IriSP.Model.isoToDate(_data.meta["dc:created"]);
- if (typeof _data.color !== "undefined") {
- var _c = parseInt(_data.color).toString(16);
- while (_c.length < 6) {
- _c = '0' + _c;
- }
- _res.color = '#' + _c;
- }
- _res.setMedia(_data.media);
- _res.setAnnotationType(_data.meta["id-ref"]);
- _res.setTags(IriSP._(_data.tags).pluck("id-ref"));
- _res.setBegin(_data.begin);
- _res.setEnd(_data.end);
- _res.creator = _data.meta["dc:creator"] || "";
- _res.project = _data.meta.project || "";
- if (typeof _data.meta["dc:source"] !== "undefined" && typeof _data.meta["dc:source"].content !== "undefined") {
- _res.source = JSON.parse(_data.meta["dc:source"].content);
- }
- if (typeof _data.content.audio !== "undefined" && _data.content.audio.href) {
- _res.audio = _data.content.audio;
- }
- return _res;
- },
- serializer : function(_data, _source) {
- return {
- id : _data.id,
- begin : _data.begin.milliseconds,
- end : _data.end.milliseconds,
- content : {
- title : _data.title,
- description : _data.description,
- audio : _data.audio
- },
- media : _data.media.id,
- meta : {
- "id-ref" : _data.annotationType.id,
- "dc:created" : IriSP.Model.dateToIso(_data.created),
- "dc:creator" : _data.creator,
- project : _source.projectId
- },
- tags : IriSP._(_data.tag.id).map(function(_id) {
- return {
- "id-ref" : _id
- }
- })
- }
- }
- },
- mashup : {
- serialized_name : "lists",
- deserializer : function(_data, _source) {
- if (typeof _data.meta !== "object" || typeof _data.meta.listtype !== "string" || _data.meta.listtype !== "mashup") {
- return undefined;
- }
- var _res = new IriSP.Model.Mashup(_data.id, _source);
- _res.title = _data.meta["dc:title"];
- _res.description = _data.meta["dc:description"];
- for (var _i = 0; _i < _data.items.length; _i++) {
- _res.addSegmentById(_data.items[_i]);
- }
- return _res;
- },
- serializer : function(_data, _source) {
- return {
- meta : {
- "dc:title": _data.title,
- "dc:description": _data.description,
- listtype: "mashup"
- },
- items: _data.segments.map(function(_annotation) {
- return _id;
- }),
- id: _data.id
- }
- }
- }
- },
- serialize : function(_source) {
- var _res = {},
- _this = this;
- _source.forEach(function(_list, _typename) {
- if (typeof _this.types[_typename] !== "undefined") {
- _res[_this.types[_typename].serialized_name] = _list.map(function(_el) {
- return _this.types[_typename].serializer(_el, _source);
- });
- }
- });
- return JSON.stringify(_res);
- },
- loadData : function(_url, _callback) {
- IriSP.jQuery.getJSON(_url, _callback)
- },
- deSerialize : function(_data, _source) {
- if (typeof _data !== "object" || _data === null) {
- return;
- }
- IriSP._(this.types).forEach(function(_type, _typename) {
- var _listdata = _data[_type.serialized_name],
- _list = new IriSP.Model.List(_source.directory);
- if (typeof _listdata !== "undefined" && _listdata !== null) {
- if (_listdata.hasOwnProperty("length")) {
- var _l = _listdata.length;
- for (var _i = 0; _i < _l; _i++) {
- var _element = _type.deserializer(_listdata[_i], _source);
- if (typeof _element !== "undefined" && _element) {
- _list.push(_element);
- }
- }
- } else {
- var _element = _type.deserializer(_listdata, _source);
- if (typeof _element !== "undefined" && _element) {
- _list.push(_element);
- }
- }
- }
- _source.addList(_typename, _list);
- });
-
- if (typeof _data.meta !== "undefined") {
- _source.projectId = _data.meta.id;
- }
-
- if (typeof _data.meta !== "undefined" && typeof _data.meta.main_media !== "undefined" && typeof _data.meta.main_media["id-ref"] !== "undefined") {
- _source.currentMedia = _source.getElement(_data.meta.main_media["id-ref"]);
- }
- }
-}
-
-/* Used when Putting annotations on the platform */
-
-if (typeof IriSP.serializers === "undefined") {
- IriSP.serializers = {}
-}
-
-IriSP.serializers.ldt_annotate = {
- types : {
- annotation : {
- serialized_name : "annotations",
- serializer : function(_data, _source) {
- var _annType = _data.getAnnotationType();
- return {
- begin: _data.begin.milliseconds,
- end: _data.end.milliseconds,
- content: {
- data: _data.description,
- audio: _data.audio
- },
- tags: _data.getTagTexts(),
- media: _data.getMedia().id,
- type_title: _annType.title,
- type: ( typeof _annType.dont_send_id !== "undefined" && _annType.dont_send_id ? "" : _annType.id )
- }
- }
- }
- },
- serialize : function(_source) {
- var _res = {},
- _this = this;
- _source.forEach(function(_list, _typename) {
- if (typeof _this.types[_typename] !== "undefined") {
- _res[_this.types[_typename].serialized_name] = _list.map(function(_el) {
- return _this.types[_typename].serializer(_el, _source);
- });
- }
- });
- _res.meta = {
- creator: _source.creator,
- created: _source.created
- }
- return JSON.stringify(_res);
- },
- deSerialize : function(_data, _source) {
- if (typeof _data == "string") {
- _data = JSON.parse(_data);
- }
- _source.addList('tag', new IriSP.Model.List(_source.directory));
- _source.addList('annotationType', new IriSP.Model.List(_source.directory));
- _source.addList('annotation', new IriSP.Model.List(_source.directory));
- if (typeof _data.annotations == "object" && _data.annotations && _data.annotations.length) {
- var _anndata = _data.annotations[0],
- _ann = new IriSP.Model.Annotation(_anndata.id, _source);
- _ann.description = _anndata.content.data || "";
- _ann.title = _data.creator || "";
- _ann.created = new Date(_data.meta.created);
- _ann.setMedia(_anndata.media, _source);
- var _anntypes = _source.getAnnotationTypes(true).searchByTitle(_anndata.type_title);
- if (_anntypes.length) {
- var _anntype = _anntypes[0];
- } else {
- var _anntype = new IriSP.Model.AnnotationType(_anndata.type, _source);
- _anntype.title = _anndata.type_title;
- _source.getAnnotationTypes().push(_anntype);
- }
- _ann.setAnnotationType(_anntype.id);
- var _tagIds = IriSP._(_anndata.tags).map(function(_title) {
- var _tags = _source.getTags(true).searchByTitle(_title);
- if (_tags.length) {
- var _tag = _tags[0];
- }
- else {
- _tag = new IriSP.Model.Tag(_title.replace(/\W/g,'_'),_source);
- _tag.title = _title;
- _source.getTags().push(_tag);
- }
- return _tag.id;
- });
- _ann.setTags(_tagIds);
- _ann.setBegin(_anndata.begin);
- _ann.setEnd(_anndata.end);
- _ann.creator = _data.meta.creator;
- if (typeof _anndata.content.audio !== "undefined" && _anndata.content.audio.href) {
- _ann.audio = _anndata.content.audio;
- }
- _source.getAnnotations().push(_ann);
- }
- }
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/MashupPlayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,215 +0,0 @@
-IriSP.Widgets.MashupPlayer = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.is_mashup = true;
-};
-
-IriSP.Widgets.MashupPlayer.prototype = new IriSP.Widgets.Widget();
-
-/* A Popcorn-based player for HTML5 Video, Youtube and Vimeo */
-
-IriSP.Widgets.MashupPlayer.prototype.defaults = {
- aspect_ratio: 14/9,
- split_screen: false,
- player_type: "PopcornPlayer"
-}
-
-IriSP.Widgets.MashupPlayer.prototype.draw = function() {
- var _this = this,
- _mashup = this.media,
- _pauseState = true,
- _currentMedia = null,
- _currentAnnotation = null,
- _segmentBegin,
- _segmentEnd,
- _timecode = 0,
- _timedelta;
-
- function changeCurrentAnnotation() {
- var _annotation = _mashup.getAnnotationAtTime( _timecode );
- if (typeof _annotation === "undefined") {
- if (_currentMedia) {
- _currentMedia.pause();
- if (!_pauseState) {
- _pauseState = true;
- _mashup.trigger("pause");
- }
- }
- return;
- }
- if (_annotation !== _currentAnnotation) {
- _currentAnnotation = _annotation;
- _segmentBegin = _currentAnnotation.annotation.begin.milliseconds;
- _segmentEnd = _currentAnnotation.annotation.end.milliseconds;
- _timedelta = _segmentBegin - _currentAnnotation.begin.milliseconds;
- _currentMedia = _currentAnnotation.getMedia();
-
- for (var _i = 0; _i < _mashup.medias.length; _i++) {
- if (_mashup.medias[_i].id !== _currentMedia.id) {
- if (!_this.split_screen) {
- _mashup.medias[_i].hide();
- }
- _mashup.medias[_i].pause();
- } else {
- _mashup.medias[_i].show();
- }
- }
-
- /* PRELOADING */
- var _preloadedMedias = [],
- _toPreload = _mashup.getAnnotations().filter(function(_a) {
- return (_a.begin >= _currentAnnotation.end && _a.getMedia() !== _currentMedia);
- });
- IriSP._(_toPreload).each(function(_a) {
- var _media = _a.getMedia();
- if (IriSP._(_preloadedMedias).indexOf(_media.id) === -1) {
- _preloadedMedias.push(_media.id);
- _media.setCurrentTime(_a.annotation.begin.getSeconds());
- //console.log("Preloading ", _media.id, " at t=", _a.annotation.begin.getSeconds());
- }
- });
-
- // console.log("Changed segment: media="+ this.currentMedia.id + ", from=" + this.segmentBegin + " to=" + this.segmentEnd +", timedelta = ", this.timedelta)
- // } else {
- // console.log("changeCurrentAnnotation called, but segment hasn't changed");
- }
-
- if (!_pauseState) {
- _currentMedia.play();
- }
- _currentMedia.setCurrentTime( _timecode + _timedelta);
- _mashup.trigger("timeupdate", new IriSP.Model.Time(_timecode));
-
- }
-
- if (!this.height) {
- this.height = Math.floor(this.width/this.aspect_ratio);
- this.$.css({
- height: this.height
- });
- }
-
- var _grid = Math.ceil(Math.sqrt(_mashup.medias.length)),
- _width = (this.split_screen ? this.width / _grid : this.width),
- _height = (this.split_screen ? this.height / _grid : this.height)
-
- IriSP._(_mashup.medias).each(function(_media, _key) {
- var _el = IriSP.jQuery('<div class="Ldt-MashupPlayer-Media"><div class="Ldt-MashupPlayer-Subwidget"></div></div>');
- _el.css({
- position: "absolute",
- top: (_this.split_screen ? _height * Math.floor(_key / _grid) : 0),
- left: (_this.split_screen ? _width * (_key % _grid) : 0),
- height: _height,
- width: _width,
- display: (_this.split_screen ? "block" : "none")
- });
- _this.$.append(_el);
-
- _this.insertSubwidget(
- _el.find(".Ldt-MashupPlayer-Subwidget"),
- IriSP._({
- type: _this.player_type,
- media_id: _media.id,
- height: _height,
- width: _width,
- url_transform: _this.url_transform
- }).extend(_this.player_options)
- );
-
- _media.loadedMetadata = false;
- _media.show = function() {
- _el.show();
- };
- _media.hide = function() {
- _el.hide();
- };
- _media.on("loadedmetadata", function() {
- _media.loadedMetadata = true;
- var _allLoaded = true;
- for (var _i = 0; _i < _mashup.medias.length; _i++) {
- _allLoaded = _allLoaded && _mashup.medias[_i].loadedMetadata;
- }
- if (_allLoaded) {
- changeCurrentAnnotation();
- _mashup.trigger("loadedmetadata");
- }
- });
- _media.on("timeupdate", function(_time) {
- if (!_pauseState && _media === _currentMedia) {
-// var _status = "Timeupdate from " + _media.id + " at time " + _time;
- if ( _time < _segmentEnd ) {
- if ( _time >= _segmentBegin ) {
- _timecode = _time - _timedelta;
-// _status += " within segment";
- } else {
- _timecode = _segmentBegin - _timedelta;
- _media.setCurrentTime(_segmentBegin);
-// _status += " before segment";
- }
- } else {
- _timecode = _segmentEnd - _timedelta;
- _media.pause();
- changeCurrentAnnotation();
-// _status += " after segment";
- }
-// _status += " (" + _this.segmentBegin + " to " + _this.segmentEnd + ")" + ", translated to " + _this.timecode;
-// console.log(_status);
- _mashup.trigger("timeupdate", new IriSP.Model.Time(_timecode));
- }
- });
- _media.on("play", function() {
- if (_media === _currentMedia) {
- _mashup.trigger("play");
- }
- });
- _media.on("pause", function() {
- if (_media === _currentMedia) {
- _mashup.trigger("pause");
- }
- });
- });
-
- _mashup.getCurrentTime = function() {
- return new IriSP.Model.Time(_timecode);
- }
- _mashup.getVolume = function() {
- return ( _currentMedia ? _currentMedia.getVolume() : .5 );
- }
- _mashup.getPaused = function() {
- return _pauseState;
- }
- _mashup.getMuted = function() {
- return ( _currentMedia ? _currentMedia.getMuted() : false );
- }
- _mashup.setCurrentTime = function(_milliseconds) {
- _timecode = _milliseconds;
- changeCurrentAnnotation();
- }
- _mashup.setVolume = function(_vol) {
- for (var _i = 0; _i < _mashup.medias.length; _i++) {
- _mashup.medias[_i].setVolume(_vol);
- }
- }
- _mashup.mute = function() {
- for (var _i = 0; _i < _mashup.medias.length; _i++) {
- _mashup.medias[_i].mute();
- }
- }
- _mashup.unmute = function() {
- for (var _i = 0; _i < _mashup.medias.length; _i++) {
- _mashup.medias[_i].unmute();
- }
- }
- _mashup.play = function() {
- _pauseState = false;
- changeCurrentAnnotation();
- }
- _mashup.pause = function() {
- _pauseState = true;
- if (_currentMedia) {
- _currentMedia.pause();
- }
- }
-
- changeCurrentAnnotation();
-
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/MediaList.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,102 +0,0 @@
-.Ldt-MediaListWidget a {
- text-decoration: none;
-}
-
-.Ldt-MediaListWidget h2 {
- clear: both;
-}
-
-.Ldt-MediaList-NowContainer {
- min-height: 60px;
- margin: 2px 0;
-}
-
-h3.Ldt-MediaList-Now-Title {
- font-size: 13px;
- margin: 2px 2px 0 82px;
- font-weight: bold;
-}
-
-.Ldt-MediaListWidget h3 a {
- color: #0068c4;
-}
-
-p.Ldt-MediaList-Now-Description {
- margin: 2px 0 2px 82px;
- font-size: 12px;
- color: #666666;
-}
-
-ul.Ldt-MediaList-OtherList {
- list-style: none;
- padding: 2px;
- margin: 0;
-}
-
-li.Ldt-MediaList-OtherList-li {
- width: 100%;
- clear: both;
- margin: 2px 0;
- padding: 2px 0;
- min-height: 48px;
-}
-
-.Ldt-MediaList-OtherList-li:hover, .Ldt-MediaList-NowContainer:hover {
- background: url(img/pinstripe-grey.png);
-}
-
-.Ldt-MediaList-Now-ThumbContainer, .Ldt-MediaList-Other-ThumbContainer {
- float: left;
- width: 80px;
- height: 50px;
- text-align: center;
- margin: 2px 0;
-}
-
-.Ldt-MediaList-Now-ThumbContainer {
- float: left;
- width: 80px;
- height: 50px;
- text-align: center;
- margin: 2px 0;
-}
-
-.Ldt-MediaList-Other-ThumbContainer {
- width: 60px;
- height: 38px;
-}
-
-.Ldt-MediaList-Now-Thumbnail, .Ldt-MediaList-Other-Thumbnail {
- border: none;
- max-width: 100%;
- max-height: 100%;
- margin: 0 auto;
-}
-
-h3.Ldt-MediaList-Other-Title {
- font-size: 12px;
- margin: 2px 2px 0 62px;
- font-weight: bold;
-}
-
-p.Ldt-MediaList-Other-Description {
- margin: 2px 0 2px 62px;
- font-size: 10px;
- color: #666666;
-}
-
-.Ldt-MediaList-Now-MediaView {
- clear: both; width: 100%; height: 12px; margin: 5px 0 0; overflow: hidden; position: relative;
-}
-
-.Ldt-MediaList-Other-MediaView {
- clear: both; width: 100%; height: 6px; margin: 5px 0 0; overflow: hidden; position: relative;
-}
-
-.Ldt-MediaList-MediaView-Background {
- position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: alpha(opacity=50); opacity: 0.5; background: #999999;
-}
-
-.Ldt-MediaList-Segment {
- position: absolute; top: 0; height: 100%; border-style: none solid; margin-left: -1px; border-color: #ffffff; border-width: 1px;
-}
--- a/metadataplayer/metadataplayer/MediaList.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,132 +0,0 @@
-IriSP.Widgets.MediaList = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.lastMedia = false;
-};
-
-IriSP.Widgets.MediaList.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.MediaList.prototype.messages = {
- "fr": {
- now_playing: "Média en cours",
- all_media: "Tous les medias",
- other_media: "Autres médias"
- },
- "en": {
- now_playing: "Now playing",
- all_media: "All media",
- other_media: "Other media"
- }
-}
-
-IriSP.Widgets.MediaList.prototype.defaults = {
- default_thumbnail : "http://ldt.iri.centrepompidou.fr/static/site/ldt/css/imgs/video_sequence.png",
- media_url_template : "http://ldt.iri.centrepompidou.fr/ldtplatform/ldt/front/player/{{media}}/",
- default_color : "#000080"
-};
-
-IriSP.Widgets.MediaList.prototype.template =
- '<div class="Ldt-MediaList-NowPlaying"><h2>{{l10n.now_playing}}</h2><hr />'
- + '<div class="Ldt-MediaList-NowContainer">'
- + '<div class="Ldt-MediaList-Now-ThumbContainer"><a href="" target="_blank">'
- + '<img class="Ldt-MediaList-Now-Thumbnail" src="" /></a></div>'
- + '<h3 class="Ldt-MediaList-Now-Title"><a href="" target="_blank"></a></h3>'
- + '<p class="Ldt-MediaList-Now-Description"></p><div class="Ldt-MediaList-Now-MediaView"></div></div></div>'
- + '<div class="Ldt-MediaList-Other"><h2></h2><hr /><ul class="Ldt-MediaList-OtherList"></ul></div>';
-
-IriSP.Widgets.MediaList.prototype.mediaViewTemplate =
- '<div class="Ldt-MediaList-MediaView-Background"></div>{{#segments}}<div class="Ldt-MediaList-Segment" style="background: {{color}}; left: {{left}}px; width: {{width}}px;"></div>{{/segments}}';
-
-IriSP.Widgets.MediaList.prototype.mediaTemplate =
- '<li class="Ldt-MediaList-OtherList-li"><div class="Ldt-MediaList-Other-ThumbContainer"><a href="{{url}}" target="_blank">'
- + '<img class="Ldt-MediaList-Other-Thumbnail" src="{{thumbnail}}" /></a></div>'
- + '<h3 class="Ldt-MediaList-Other-Title"><a href="{{url}}" target="_blank">{{title}}</a></h3>'
- + '<p class="Ldt-MediaList-Other-Description">{{description}}</p><div class="Ldt-MediaList-Other-MediaView">'
- + IriSP.Widgets.MediaList.prototype.mediaViewTemplate + '</div></li>';
-
-
-IriSP.Widgets.MediaList.prototype.onSearch = function(searchString) {
- this.searchString = typeof searchString !== "undefined" ? searchString : '';
- var _n = this.refresh(true);
- if (this.searchString) {
- if (_n) {
- this.player.trigger("search.matchFound");
- } else {
- this.player.trigger("search.noMatchFound");
- }
- }
-}
-
-IriSP.Widgets.MediaList.prototype.draw = function() {
- this.$.addClass("Ldt-MediaListWidget")
- this.renderTemplate();
- var _this = this;
- if (typeof this.media.getMedias === "function") {
- this.media.getMedias().forEach(function(_m) {
- _m.on("enter", function() {
- _this.redraw(_m);
- });
- })
- }
- this.redraw();
-};
-
-IriSP.Widgets.MediaList.prototype.getSegments = function(_media) {
- var _this = this,
- _scale = this.$.width()/_media.duration.milliseconds;
- return this.getWidgetAnnotations()
- .filter(function(_annotation) {
- return _annotation.getMedia().id == _media.id;
- })
- .map(function(_a) {
- var _annotation = ( _a.type = "mashedAnnotation" ? _a.annotation : _a );
- return {
- left: _scale * _annotation.begin,
- width: _scale * (_annotation.end - _annotation.begin),
- color: ( typeof _annotation.color !== "undefined" && _annotation.color ? _annotation.color : _this.default_color )
- }
- })
-}
-
-IriSP.Widgets.MediaList.prototype.redraw = function(_media) {
- if (typeof _media !== "undefined") {
- this.$.find('.Ldt-MediaList-Other h2').html(this.l10n.other_media);
- this.$.find('.Ldt-MediaList-NowPlaying').show();
- this.$.find('.Ldt-MediaList-Now-Thumbnail').attr("src", _media.thumbnail || this.default_thumbnail);
- this.$.find('.Ldt-MediaList-Now-Title a').html(_media.title);
- this.$.find('.Ldt-MediaList-Now-Description').html(_media.description);
- var _url = _media.url || Mustache.to_html(
- this.media_url_template, {
- media: _media.id
- });
- this.$.find('.Ldt-MediaList-NowContainer a').attr("href", _url);
- var _mediaView = Mustache.to_html( this.mediaViewTemplate, {
- segments: this.getSegments(_media)
- });
- this.$.find('.Ldt-MediaList-Now-MediaView').html(_mediaView);
- } else {
- this.$.find('.Ldt-MediaList-Other h2').html(this.l10n.all_media);
- this.$.find('.Ldt-MediaList-NowPlaying').hide();
- }
- var _this = this,
- _otherlist = this.source.getMedias().filter(function(_m) {
- return (_m.id !== _this.lastMedia)
- });
- if (_otherlist.length) {
- this.$.find('.Ldt-MediaList-Other').show();
- var _html = _otherlist.map(function(_media) {
- return Mustache.to_html(_this.mediaTemplate, {
- thumbnail: _media.thumbnail || _this.default_thumbnail,
- url: _media.url || Mustache.to_html(
- _this.media_url_template, {
- media: _media.id
- }),
- title: _media.title,
- description: _media.description,
- segments: _this.getSegments(_media)
- })
- }).join("");
- this.$.find('.Ldt-MediaList-OtherList').html(_html);
- } else {
- this.$.find('.Ldt-MediaList-Other').hide();
- }
-};
--- a/metadataplayer/metadataplayer/Mediafragment.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,108 +0,0 @@
-IriSP.Widgets.Mediafragment = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.last_hash_key = "";
- this.last_hash_value = "";
- window.onhashchange = this.functionWrapper("goToHash");
- if (typeof window.addEventListener !== "undefined") {
- window.addEventListener('message', function(_msg) {
- if (/^#/.test(_msg.data)) {
- this.setWindowHash(_msg.data);
- }
- })
- };
- this.onMdpEvent("Mediafragment.setHashToAnnotation","setHashToAnnotation");
- this.blocked = false;
-}
-
-IriSP.Widgets.Mediafragment.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Mediafragment.prototype.draw = function() {
- this.onMediaEvent("pause","setHashToTime");
- this.onMediaEvent("seeked","setHashToTime");
- this.goToHash();
- var _this = this;
- this.getWidgetAnnotations().forEach(function(_annotation) {
- _annotation.on("click", function() {
- _this.setHashToAnnotation(_annotation.id);
- })
- })
-}
-
-IriSP.Widgets.Mediafragment.prototype.setWindowHash = function(_hash) {
- if (typeof window.history !== "undefined" && typeof window.history.replaceState !== "undefined") {
- window.history.replaceState({}, "", _hash);
- } else {
- document.location.hash = _hash;
- }
-}
-
-IriSP.Widgets.Mediafragment.prototype.getLastHash = function() {
- var _tab = document.location.hash.replace(/^#/,'').split('&');
- _tab = IriSP._(_tab).filter(function(_el) {
- return _el && !/^(id|t)=/.test(_el);
- });
- if (this.last_hash_key) {
- _tab.push(this.last_hash_key + '=' + this.last_hash_value);
- }
- return '#' + _tab.join('&');
-}
-
-IriSP.Widgets.Mediafragment.prototype.goToHash = function() {
- if (document.location.hash !== this.getLastHash()) {
- var _tab = document.location.hash.replace(/^#/,'').split('&');
- for (var _i = 0; _i < _tab.length; _i++) {
- var _subtab = _tab[_i].split("=");
- if (_subtab[0] == "id" || _subtab[0] == "t") {
- this.last_hash_key = _subtab[0];
- this.last_hash_value = _subtab[1];
- if (this.last_hash_key == "id") {
- var _annotation = this.source.getElement(this.last_hash_value);
- if (typeof _annotation !== "undefined") {
- this.media.setCurrentTime(_annotation.begin);
- }
- }
- if (this.last_hash_key == "t") {
- this.media.setCurrentTime(1000*this.last_hash_value);
- }
- break;
- }
- }
- }
-}
-
-IriSP.Widgets.Mediafragment.prototype.setHashToAnnotation = function(_annotationId) {
- this.setHash( 'id', _annotationId );
-}
-
-IriSP.Widgets.Mediafragment.prototype.setHashToTime = function() {
- this.setHash( 't', this.media.getCurrentTime().getSeconds() );
-}
-
-IriSP.Widgets.Mediafragment.prototype.setHash = function(_key, _value) {
- if (!this.blocked && (this.last_hash_key !== _key || this.last_hash_value !== _value)) {
- this.last_hash_key = _key;
- this.last_hash_value = _value;
- var _hash = this.getLastHash();
- this.setWindowHash(_hash);
- if (window.parent !== window) {
- window.parent.postMessage(_hash,"*")
- }
- this.block();
- }
-}
-
-IriSP.Widgets.Mediafragment.prototype.unblock = function() {
- if (typeof this.blockTimeout !== "undefined") {
- window.clearTimeout(this.blockTimeout);
- }
- this.blockTimeout = undefined;
- this.blocked = false;
-}
-
-IriSP.Widgets.Mediafragment.prototype.block = function() {
- if (typeof this.blockTimeout !== "undefined") {
- window.clearTimeout(this.blockTimeout);
- }
- this.blocked = true;
- this.blockTimeout = window.setTimeout(this.functionWrapper("unblock"), 1500);
-}
--- a/metadataplayer/metadataplayer/Polemic.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,22 +0,0 @@
-/*
- * Polemic Widget CSS
- */
-
-.Ldt-Polemic {
- border-style: solid none; border-color: #cccccc; border-width: 1px;
-}
-
-.Ldt-Polemic-Position {
- background: #fc00ff;
- position: absolute;
- top: 0;
- left: 0;
- margin-left: -1px;
- width: 2px;
- height: 100%;
-}
-
-.Ldt-Polemic-TweetDiv {
- position: absolute;
-}
-
--- a/metadataplayer/metadataplayer/Polemic.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,321 +0,0 @@
-IriSP.Widgets.Polemic = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Polemic.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Polemic.prototype.messages = {
- fr: {
- from_: "de ",
- _to_: " à ",
- _annotations: " annotation(s)"
- },
- en: {
- from_: "from ",
- _to_: " to ",
- _annotations: " annotation(s)"
- }
-}
-IriSP.Widgets.Polemic.prototype.defaults = {
- element_width : 5,
- element_height : 5,
- max_elements : 15,
- annotation_type : "tweet",
- defaultcolor : "#585858",
- foundcolor : "#fc00ff",
- polemics : [
- {
- "name" : "OK",
- "keywords" : [ "++" ],
- "color" : "#1D973D"
- },
- {
- "name" : "KO",
- "keywords" : [ "--" ],
- "color" : "#CE0A15"
- },
- {
- "name" : "REF",
- "keywords" : [ "==", "http://" ],
- "color" : "#C5A62D"
- },
- {
- "name" : "Q",
- "keywords" : [ "?" ],
- "color" : "#036AAE"
- }
- ]
-};
-
-IriSP.Widgets.Polemic.prototype.onSearch = function(searchString) {
- this.searchString = typeof searchString !== "undefined" ? searchString : '';
- var _found = 0,
- _re = IriSP.Model.regexpFromTextOrArray(searchString, true),
- _this = this;
- this.$tweets.each(function() {
- var _el = IriSP.jQuery(this);
- if (_this.searchString) {
- if (_re.test(_el.attr("tweet-title"))) {
- _el.css({
- "background" : _this.foundcolor,
- "opacity" : 1
- });
- _found++;
- } else {
- _el.css({
- "background" : _el.attr("polemic-color"),
- "opacity" : .3
- });
- }
- } else {
- _el.css({
- "background" : _el.attr("polemic-color"),
- "opacity" : 1
- });
- }
- });
- if (this.searchString) {
- if (_found) {
- this.player.trigger("search.matchFound");
- } else {
- this.player.trigger("search.noMatchFound");
- }
- }
-}
-
-IriSP.Widgets.Polemic.prototype.draw = function() {
-
- this.onMediaEvent("timeupdate", "onTimeupdate");
- this.$zone = IriSP.jQuery('<div>');
- this.$zone.addClass("Ldt-Polemic");
- this.$.append(this.$zone);
-
- this.$elapsed = IriSP.jQuery('<div>')
- .css({
- background: '#cccccc',
- position: "absolute",
- top: 0,
- left: 0,
- width: 0,
- height: "100%"
- });
-
- this.$zone.append(this.$elapsed);
-
- var _slices = [],
- _slice_count = Math.floor( this.width / this.element_width ),
- _duration = this.source.getDuration(),
- _max = 0,
- _list = this.getWidgetAnnotations(),
- _this = this;
-
- for (var _i = 0; _i < _slice_count; _i++) {
- var _begin = new IriSP.Model.Time( _i * _duration / _slice_count ),
- _end = new IriSP.Model.Time( ( _i + 1 ) * _duration / _slice_count ),
- _count = 0,
- _res = {
- begin : _begin.toString(),
- end : _end.toString(),
- annotations : _list.filter(function(_annotation) {
- return _annotation.begin >= _begin && _annotation.end < _end;
- }),
- polemicStacks : []
- }
-
- for (var _j = 0; _j < this.polemics.length; _j++) {
- var _polemic = _res.annotations.searchByDescription(this.polemics[_j].keywords);
- _count += _polemic.length;
- _res.polemicStacks.push(_polemic);
- }
- for (var _j = 0; _j < this.polemics.length; _j++) {
- _res.annotations.removeElements(_res.polemicStacks[_j]);
- }
- _count += _res.annotations.length;
- _max = Math.max(_max, _count);
- _slices.push(_res);
- }
- if (_max < this.max_elements) {
- this.is_stackgraph = false;
- if (_max) {
-
- this.height = (2 + _max) * this.element_height;
- this.$zone.css({
- width: this.width + "px",
- height: this.height + "px",
- position: "relative"
- });
-
- var _x = 0;
-
- function displayAnnotation(_elx, _ely, _pol, _col, _annotation) {
- var _html = Mustache.to_html(
- '<div class="Ldt-Polemic-TweetDiv Ldt-TraceMe" trace-info="annotation-id:{{id}}, media-id={{media_id}}, polemic={{polemic}}" polemic-color="{{color}}"'
- + ' tweet-title="{{title}}" annotation-id="{{id}}" style="width: {{width}}px; height: {{height}}px; top: {{top}}px; left: {{left}}px; background: {{color}}"></div>',
- {
- id: _annotation.id,
- media_id: _this.source.currentMedia.id,
- polemic: _pol,
- left: _elx,
- top: _ely,
- color: _col,
- width: (_this.element_width-1),
- height: _this.element_height,
- title: _annotation.title
- });
- var _el = IriSP.jQuery(_html);
- _el.mouseover(function() {
- _annotation.trigger("select");
- }).mouseout(function() {
- _annotation.trigger("unselect");
- }).click(function() {
- _annotation.trigger("click");
- });
- _annotation.on("select", function() {
- _this.tooltip.show(
- Math.floor(_elx + (_this.element_width - 1) / 2),
- _ely,
- _annotation.title,
- _col
- );
- _this.$tweets.each(function() {
- var _e = IriSP.jQuery(this);
- _e.css(
- "opacity",
- ( _e.attr("annotation-id") == _annotation.id ? 1 : .3 )
- );
- });
- });
- _annotation.on("unselect", function() {
- _this.tooltip.hide();
- _this.$tweets.css("opacity",1);
- });
- _this.$zone.append(_el);
- }
-
- IriSP._(_slices).forEach(function(_slice) {
- var _y = _this.height;
- _slice.annotations.forEach(function(_annotation) {
- _y -= _this.element_height;
- displayAnnotation(_x, _y, "none", _this.defaultcolor, _annotation);
- });
- IriSP._(_slice.polemicStacks).forEach(function(_annotations, _j) {
- var _color = _this.polemics[_j].color,
- _polemic = _this.polemics[_j].name;
- _annotations.forEach(function(_annotation) {
- _y -= _this.element_height;
- displayAnnotation(_x, _y, _polemic, _color, _annotation);
- });
- });
- _x += _this.element_width;
- });
-
- this.$zone.append(_html);
-
- this.$tweets = this.$.find(".Ldt-Polemic-TweetDiv");
-
- this.onMdpEvent("search", "onSearch");
- this.onMdpEvent("search.closed", "onSearch");
- this.onMdpEvent("search.cleared", "onSearch");
-
- } else {
- this.$zone.hide();
- }
- } else {
- this.is_stackgraph = true;
-
- this.height = (2 + this.max_elements) * this.element_height;
- this.$zone.css({
- width: this.width + "px",
- height: this.height + "px",
- position: "relative"
- });
-
- var _x = 0,
- _html = '',
- _scale = this.max_elements * this.element_height / _max;
-
- function displayStackElement(_x, _y, _h, _color, _nums, _begin, _end, _polemic) {
- _html += Mustache.to_html(
- '<div class="Ldt-Polemic-TweetDiv Ldt-TraceMe" trace-info="annotation-block, media-id={{media_id}}, polemic={{polemic}}, time:{{begin}}" pos-x="{{posx}}" pos-y="{{top}}" annotation-counts="{{nums}}" begin-time="{{begin}}" end-time="{{end}}"'
- + ' style="width: {{width}}px; height: {{height}}px; top: {{top}}px; left: {{left}}px; background: {{color}}"></div>',
- {
- nums: _nums,
- posx: Math.floor(_x + (_this.element_width - 1) / 2),
- media_id: _this.source.currentMedia.id,
- polemic: _polemic,
- left: _x,
- top: _y,
- color: _color,
- width: (_this.element_width-1),
- height: _h,
- begin: _begin,
- end: _end
- });
- }
-
- IriSP._(_slices).forEach(function(_slice) {
- var _y = _this.height,
- _nums = _slice.annotations.length + "," + IriSP._(_slice.polemicStacks).map(function(_annotations) {
- return _annotations.length
- }).join(",");
- if (_slice.annotations.length) {
- var _h = Math.ceil(_scale * _slice.annotations.length);
- _y -= _h;
- displayStackElement(_x, _y, _h, _this.defaultcolor, _nums, _slice.begin, _slice.end, "none");
- }
- IriSP._(_slice.polemicStacks).forEach(function(_annotations, _j) {
- if (_annotations.length) {
- var _color = _this.polemics[_j].color,
- _polemic = _this.polemics[_j].name,
- _h = Math.ceil(_scale * _annotations.length);
- _y -= _h;
- displayStackElement(_x, _y, _h, _color, _nums, _slice.begin, _slice.end, _polemic);
- }
- });
- _x += _this.element_width;
- });
-
- this.$zone.append(_html);
-
- this.$tweets = this.$.find(".Ldt-Polemic-TweetDiv");
-
- this.$tweets
- .mouseover(function() {
- var _el = IriSP.jQuery(this),
- _nums = _el.attr("annotation-counts").split(","),
- _html = '<p>' + _this.l10n.from_ + _el.attr("begin-time") + _this.l10n._to_ + _el.attr("end-time") + '</p>';
- for (var _i = 0; _i <= _this.polemics.length; _i++) {
- var _color = _i ? _this.polemics[_i - 1].color : _this.defaultcolor;
- _html += '<div class="Ldt-Tooltip-Color" style="background: ' + _color + '"></div><p>' + _nums[_i] + _this.l10n._annotations + '</p>'
- }
- _this.tooltip.show(_el.attr("pos-x"), _el.attr("pos-y"), _html);
- })
- .mouseout(function() {
- _this.tooltip.hide();
- })
-
- }
-
- this.$position = IriSP.jQuery('<div>').addClass("Ldt-Polemic-Position");
-
- this.$zone.append(this.$position);
-
- this.$zone.click(function(_e) {
- var _x = _e.pageX - _this.$zone.offset().left;
- _this.media.setCurrentTime(_this.media.duration * _x / _this.width);
- });
-
- this.$.append('<div class="Ldt-Polemic-Tooltip"></div>');
-
- this.insertSubwidget(this.$.find(".Ldt-Polemic-Tooltip"), { type: "Tooltip" }, "tooltip");
-}
-
-IriSP.Widgets.Polemic.prototype.onTimeupdate = function(_time) {
- var _x = Math.floor( this.width * _time / this.media.duration);
- this.$elapsed.css({
- width: _x + "px"
- });
- this.$position.css({
- left: _x + "px"
- })
-}
--- a/metadataplayer/metadataplayer/PopcornPlayer.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,132 +0,0 @@
-IriSP.Widgets.PopcornPlayer = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.PopcornPlayer.prototype = new IriSP.Widgets.Widget();
-
-/* A Popcorn-based player for HTML5 Video, Youtube and Vimeo */
-
-IriSP.Widgets.PopcornPlayer.prototype.defaults = {
- aspect_ratio: 14/9
-}
-
-IriSP.Widgets.PopcornPlayer.prototype.draw = function() {
-
-
- if (typeof this.video === "undefined") {
- this.video = this.media.video;
- }
-
- if (this.url_transform) {
- this.video = this.url_transform(this.video);
- }
-
- if (!this.height) {
- this.height = Math.floor(this.width/this.aspect_ratio);
- this.$.css({
- height: this.height
- });
- }
-
- if (/^(https?:\/\/)?(www\.)?vimeo\.com/.test(this.video)) {
-
- /* VIMEO */
-
- var _popcorn = Popcorn.vimeo(this.container, this.video);
-
- } else if (/^(https?:\/\/)?(www\.)?youtube\.com/.test(this.video)) {
-
- /* YOUTUBE */
-
- var _urlparts = this.video.split(/[?&]/),
- _params = {};
- for (var i = 1; i < _urlparts.length; i++) {
- var _ppart = _urlparts[i].split('=');
- _params[_ppart[0]] = decodeURIComponent(_ppart[1]);
- }
- _params.controls = 0;
- _params.modestbranding = 1;
- _url = _urlparts[0] + '?' + IriSP.jQuery.param(_params);
-
- var _popcorn = Popcorn.youtube(this.container, _url);
-
- } else {
-
- /* DEFAULT HTML5 */
-
- var _tmpId = IriSP._.uniqueId("popcorn"),
- _videoEl = IriSP.jQuery('<video>');
- _videoEl.attr({
- id : _tmpId,
- width : this.width,
- height : this.height
- });
- if(typeof this.video === "string"){
- _videoEl.attr("src",this.video);
- } else {
- for (var i = 0; i < this.video.length; i++) {
- var _srcNode = IriSP.jQuery('<source>');
- _srcNode.attr({
- src: this.video[i].src,
- type: this.video[i].type
- });
- _videoEl.append(_srcNode);
- }
- }
- this.$.html(_videoEl);
- var _popcorn = Popcorn("#" + _tmpId);
- }
-
- // Binding functions to Popcorn
-
- this.media.getCurrentTime = function() {
- return new IriSP.Model.Time(1000*_popcorn.currentTime());
- }
- this.media.getVolume = function() {
- return _popcorn.volume();
- }
- this.media.getPaused = function() {
- return _popcorn.media.paused;
- }
- this.media.getMuted = function() {
- return _popcorn.muted();
- }
- this.media.setCurrentTime = function(_milliseconds) {
- return _popcorn.currentTime(_milliseconds / 1000);
- }
- this.media.setVolume = function(_vol) {
- return _popcorn.volume(_vol);
- }
- this.media.mute = function() {
- return _popcorn.muted(true);
- }
- this.media.unmute = function() {
- return _popcorn.muted(false);
- }
- this.media.play = function() {
- return _popcorn.play();
- }
- this.media.pause = function() {
- return _popcorn.pause();
- }
-
- // Binding Popcorn events to media
-
- var _media = this.media;
- _popcorn.on("timeupdate", function() {
- _media.trigger("timeupdate", _media.getCurrentTime());
- });
-
- function simpleEventBind(_eventname) {
- _popcorn.on(_eventname, function() {
- _media.trigger(_eventname);
- });
- }
-
- simpleEventBind("play");
- simpleEventBind("pause");
- simpleEventBind("seeked");
- simpleEventBind("loadedmetadata");
- simpleEventBind("volumechange");
-
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Renkan.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,93 +0,0 @@
-
-.Ldt-Renkan {
- position: relative;
-}
-
-.Ldt-Renkan a {
- color: #303080;
-}
-
-.Rk-ProjectList {
- position: absolute; left: 0; top: 0; list-style: none; padding: 0; margin: 0;
-}
-
-.Rk-Project {
- list-style: none; margin-right: 5px; padding: 5px; height: 15px; font-size: 13px; font-weight: bold;
- float: left; border-top-left-radius: 8px; border-top-right-radius: 8px;
- background: #505050; color: #E0E0E0; cursor: pointer;
- background: -moz-linear-gradient(top, #333333 20%, #666666 80%);
-}
-
-.Rk-Project:hover {
- background: -moz-linear-gradient(bottom, #333333 20%, #666666 80%);
-}
-
-.Rk-Project.active {
- background: #505080;
- color: #ffffc0;
- background: -moz-linear-gradient(bottom, #333366 20%, #666699 80%);
-}
-.Rk-Render, .Rk-Canvas {
- position: absolute; left: 0; top: 0; width: 600px; height: 500px;
- overflow: hidden;
-}
-
-.Rk-Render {
- top: 25px;
- background: -moz-linear-gradient(top, rgba(180,180,180,.2) 0, rgba(255,255,255,.2) 30%, rgba(255,255,255,.2) 70%, rgba(180,180,180,.2) 100%);
- background: -webkit-linear-gradient(top, rgba(180,180,180,.2) 0, rgba(255,255,255,.2) 30%, rgba(255,255,255,.2) 70%, rgba(180,180,180,.2) 100%);
-}
-
-.Rk-Canvas {
- top: 0;
- background: -moz-linear-gradient(left, rgba(180,180,180,.2) 0, rgba(255,255,255,.2) 30%, rgba(255,255,255,.2) 70%, rgba(180,180,180,.2) 100%);
- background: -webkit-linear-gradient(left, rgba(180,180,180,.2) 0, rgba(255,255,255,.2) 30%, rgba(255,255,255,.2) 70%, rgba(180,180,180,.2) 100%);
-}
-
-.Rk-Editor {
- position: absolute; left: 0; top: 0;
-}
-
-.Rk-CloseX {
- float: right; cursor: pointer;
-}
-
-.Rk-Editor h2 {
- font-size: 16px; font-weight: bold;
-}
-
-.Rk-Editor p {
- margin: 5px 0; font-size: 12px;
-}
-
-.Rk-RelatedList {
- list-style: none; padding: 0; margin: 0;
-}
-
-.Rk-Related {
- list-style: none; color: #a000c0; cursor: pointer; margin: 5px 0;
-}
-
-.Rk-Related b {
- font-weight: bolder;
-}
-
-.Rk-Related:hover {
- text-decoration: underline;
-}
-
-.Rk-ZoomIn, .Rk-ZoomOut {
- width: 21px; height: 20px; background: url(img/zoombuttons.png); margin: 5px; cursor: pointer;
-}
-
-.Rk-ZoomIn:hover {
- background-position: 0 -20px;
-}
-
-.Rk-ZoomOut {
- background-position: -21px 0;
-}
-
-.Rk-ZoomOut:hover {
- background-position: -21px -20px;
-}
--- a/metadataplayer/metadataplayer/Renkan.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,117 +0,0 @@
-IriSP.Widgets.Renkan = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Renkan.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Renkan.prototype.defaults = {
- annotation_regexp: /player\/([a-zA-Z0-9_-]+)\/.*id=([a-zA-Z0-9_-]+)/,
- tag_regexp: /search=([^&=]+)/,
- min_duration: 5000
-}
-
-IriSP.Widgets.Renkan.prototype.messages = {
- "fr": {
- },
- "en": {
- }
-}
-
-IriSP.Widgets.Renkan.prototype.template =
- '<div class="Ldt-Renkan"></div>';
-
-IriSP.Widgets.Renkan.prototype.draw = function() {
- this.renderTemplate();
- var _id = IriSP.Model.getUID();
- this.$.find(".Ldt-Renkan").attr("id", _id);
- this.renkan = new Rkns.Renkan({
- container: _id
- });
- if (typeof this.data === "string") {
- this.data = [ this.data ];
- }
- var _this = this,
- _list = this.getWidgetAnnotations();
- this.node_times = [];
- Rkns._(this.data).each(function(_url, _key) {
- var _opts = {
- url: _url
- }
- if (!_key) {
- _opts.callback = function(_p) {
- _this.renkan.renderProject(_p);
- }
- }
- var _proj = _this.renkan.addProject(_opts);
- _proj.on("add:nodes", function(_node) {
- var _uri = _node.get("uri"),
- _annmatch = _uri.match(_this.annotation_regexp);
- if (_annmatch) {
- var _annotations = _list.filter(function(_ann) {
- return _ann.getMedia().id == _annmatch[1] && _ann.id == _annmatch[2];
- });
- _annotations.forEach(function(_ann) {
- var _duration = _ann.getDuration(),
- _preroll = + ( _duration < _this.min_duration ) * ( _this.min_duration / 2);
- var _nt = {
- selected: false,
- node: _node,
- begin: _ann.begin - _preroll,
- end: _ann.end + _preroll
- }
- _this.node_times.push(_nt);
- _ann.on("select", function(_stop) {
- if (!_stop) {
- _node.trigger("select",true);
- }
- });
- _node.on("select", function(_stop) {
- if (!_stop) {
- _ann.trigger("select",true);
- }
- });
- _ann.on("unselect", function(_stop) {
- if (!_stop) {
- _node.trigger("unselect",true);
- }
- });
- _node.on("unselect", function(_stop) {
- _nt.selected = false;
- if (!_stop) {
- _ann.trigger("unselect",true);
- }
- });
- _node.on("click", function() {
- _this.media.setCurrentTime(_ann.begin);
- _this.player.trigger("Mediafragment.setHashToAnnotation", _ann.id);
- });
- });
- }
- var _tagmatch = _uri.match(_this.tag_regexp);
- if (_tagmatch) {
- _node.on("select", function() {
- _this.player.trigger("search.triggeredSearch",_tagmatch[1]);
- })
- _node.on("unselect", function() {
- _this.player.trigger("search.cleared");
- })
- }
- });
- })
- this.onMediaEvent("timeupdate","onTimeupdate");
-}
-
-IriSP.Widgets.Renkan.prototype.onTimeupdate = function(_time) {
- IriSP._(this.node_times).each(function(_nt) {
- if (_nt.begin <= _time && _nt.end >= _time) {
- if (!_nt.selected) {
- _nt.selected = true;
- _nt.node.trigger("select", true);
- }
- } else {
- if (_nt.selected) {
- _nt.node.trigger("unselect", true);
- }
- }
- });
-}
--- a/metadataplayer/metadataplayer/Segments.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-/*
- * Segments Widget
- */
-
-.Ldt-Segments-List {
- width: 100%; height: 100%;
-}
-
-.Ldt-Segments-Segment {
- position: absolute; height: 100%; opacity: .5; filter:alpha(opacity=50); margin-left: -1px; border-left: 1px solid #ffffff;
-}
-
-.Ldt-Segments-Segment.inactive, .Ldt-Segments-Segment.unfound {
- opacity: .2; filter:alpha(opacity=20);
-}
-
-.Ldt-Segments-Segment.active, .Ldt-Segments-Segment.found {
- opacity: 1; filter:alpha(opacity=100);
-}
-
-.Ldt-Segments-Position {
- background: #fc00ff;
- position: absolute;
- top: 0;
- left: 0;
- margin-left: -1px;
- width: 2px;
- height: 100%;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Segments.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,111 +0,0 @@
-// TODO: Trigger IriSP.SegmentsWidget.click
-
-IriSP.Widgets.Segments = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Segments.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Segments.prototype.defaults = {
- annotation_type : "chap",
- colors: ["#1f77b4","#aec7e8","#ff7f0e","#ffbb78","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5","#8c564b","#c49c94","#e377c2","#f7b6d2","#7f7f7f","#c7c7c7","#bcbd22","#dbdb8d","#17becf","#9edae5"],
- height: 10
-};
-
-IriSP.Widgets.Segments.prototype.template =
- '<div class="Ldt-Segments-List"></div>'
- + '<div class="Ldt-Segments-Position"></div>'
- + '<div class="Ldt-Segments-Tooltip"></div>';
-
-IriSP.Widgets.Segments.prototype.annotationTemplate =
- '<div class="Ldt-Segments-Segment Ldt-TraceMe" trace-info="segment-id:{{id}}, media-id:{{media_id}}" segment-text="{{text}}"'
- + 'style="left:{{left}}px; width:{{width}}px; background:{{color}}"></div>'
-
-
-IriSP.Widgets.Segments.prototype.draw = function() {
- this.onMdpEvent("search", "onSearch");
- this.onMdpEvent("search.closed", "onSearch");
- this.onMdpEvent("search.cleared", "onSearch");
- this.onMediaEvent("timeupdate", "onTimeupdate");
-
- this.renderTemplate();
-
- var _list = this.getWidgetAnnotations(),
- _this = this,
- _scale = this.width / this.source.getDuration();
- this.$.css({
- width : this.width + "px",
- height : (this.height - 2) + "px",
- margin : "1px 0"
- });
- this.list_$ = this.$.find('.Ldt-Segments-List');
-
- _list.forEach(function(_annotation, _k) {
- var _left = _annotation.begin * _scale,
- _width = ( _annotation.getDuration() ) * _scale,
- _center = Math.floor( _left + _width / 2 ),
- _fulltext = _annotation.title + ( _annotation.description ? ( '<br/>' + _annotation.description ) : '' );
- var _data = {
- color : ( typeof _annotation.color !== "undefined" && _annotation.color ? _annotation.color : _this.colors[_k % _this.colors.length] ),
- text: _fulltext.replace(/(\n|\r|\r\n)/mg,' ').replace(/(^.{120,140})[\s].+$/m,'$1…'),
- left : Math.floor( _left ),
- width : Math.floor( _width ),
- id : _annotation.id,
- media_id : _annotation.getMedia().id
- };
- var _html = Mustache.to_html(_this.annotationTemplate, _data),
- _el = IriSP.jQuery(_html);
- _el.mouseover(function() {
- _annotation.trigger("select");
- })
- .mouseout(function() {
- _annotation.trigger("unselect");
- })
- .click(function() {
- _annotation.trigger("click");
- })
- .appendTo(_this.list_$)
- _annotation.on("select", function() {
- _this.$segments.removeClass("active").addClass("inactive");
- _this.tooltip.show( _center, 0, _data.text, _data.color );
- _el.removeClass("inactive").addClass("active");
- });
- _annotation.on("unselect", function() {
- _this.tooltip.hide();
- _this.$segments.removeClass("inactive active");
- });
- });
- this.insertSubwidget(this.$.find(".Ldt-Segments-Tooltip"), { type: "Tooltip" }, "tooltip");
- this.$segments = this.$.find('.Ldt-Segments-Segment');
-}
-
-IriSP.Widgets.Segments.prototype.onSearch = function(searchString) {
- this.searchString = typeof searchString !== "undefined" ? searchString : '';
- var _found = 0,
- _re = IriSP.Model.regexpFromTextOrArray(searchString, true);
- if (this.searchString) {
- this.$segments.each(function() {
- var _el = IriSP.jQuery(this);
- if (_re.test(_el.attr("segment-text"))) {
- _el.removeClass("unfound").addClass("found");
- _found++;
- } else {
- _el.removeClass("found").addClass("unfound");
- }
- });
- if (_found) {
- this.player.trigger("search.matchFound");
- } else {
- this.player.trigger("search.noMatchFound");
- }
- } else {
- this.$segments.removeClass("found unfound");
- }
-}
-
-IriSP.Widgets.Segments.prototype.onTimeupdate = function(_time) {
- var _x = Math.floor( this.width * _time / this.media.duration);
- this.$.find('.Ldt-Segments-Position').css({
- left: _x + "px"
- })
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Slice.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-/* Slider Widget */
-
-.Ldt-Slice {
- border-radius: 0; border: none; padding: 0; margin: 12px 0 12px; background: #B6B8B8; height: 8px;
-}
-
-.Ldt-Slice .ui-slider-handle {
- width: 7px; height: 20px; top: 0; border: none; margin: 0; padding: 0;
- background: url(img/slice-handles.png); border-radius: 0; cursor: pointer;
-}
-
-.ui-slider-handle.Ldt-Slice-left-handle {
- margin-left: -7px;
-}
-
-.ui-slider-handle.Ldt-Slice-right-handle {
- margin-left: 0; background-position: -7px 0;
-}
-
-.Ldt-Slice .ui-slider-range {
- background: url(img/pinstripe-purple.png);
-}
-
--- a/metadataplayer/metadataplayer/Slice.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,81 +0,0 @@
-/*
- The Slider Widget shows time position and allows seek
- */
-
-IriSP.Widgets.Slice = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.sliding = false;
-};
-
-IriSP.Widgets.Slice.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Slice.prototype.defaults = {
- show_arrow: false
-};
-
-IriSP.Widgets.Slice.prototype.template =
- '<div class="Ldt-Slice"></div>'
- + '{{#show_arrow}}<div class="Ldt-Slice-Arrow"></div>{{/show_arrow}}'
-
-IriSP.Widgets.Slice.prototype.draw = function() {
-
- this.renderTemplate();
-
- this.$slider = this.$.find(".Ldt-Slice");
-
- if (this.show_arrow) {
- this.insertSubwidget(this.$.find(".Ldt-Slice-Arrow"), { type: "Arrow" },"arrow");
- }
-
- this.min = 0;
- this.max = this.media.duration.valueOf();
-
- var _this = this,
- _currentTime;
-
- this.$slider.slider({
- range: true,
- values: [0, this.max],
- min: 0,
- max: this.max,
- change: function(event, ui) {
- if (_this.arrow) {
- _this.arrow.moveToTime((ui.values[0]+ui.values[1])/2)
- }
- if (_this.onBoundsChanged) {
- _this.onBoundsChanged(ui.values[0],ui.values[1]);
- }
- },
- start: function() {
- _this.sliding = true;
- if (!_this.media.getPaused) {
- _this.media.pause();
- }
- _currentTime = _this.media.getCurrentTime();
- },
- slide: function(event, ui) {
- _this.media.setCurrentTime(ui.value);
- },
- stop: function() {
- _this.sliding = false;
- _this.media.setCurrentTime(_currentTime);
- }
- });
-
- this.$slider.find(".ui-slider-handle:first").addClass("Ldt-Slice-left-handle");
- this.$slider.find(".ui-slider-handle:last").addClass("Ldt-Slice-right-handle");
-
- this.getWidgetAnnotations().forEach(function(_a) {
- _a.on("enter", function() {
- _this.$slider.slider("values",[_a.begin, _a.end]);
- });
- });
-};
-
-IriSP.Widgets.Slice.prototype.show = function() {
- this.$slider.show();
-}
-
-IriSP.Widgets.Slice.prototype.hide = function() {
- this.$slider.hide();
-}
--- a/metadataplayer/metadataplayer/Slider.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-/* Slider Widget */
-
-.Ldt-Slider {
- border: none; border-radius: 0; padding: 0; margin: 0; background: #B6B8B8;
-}
-
-.Ldt-Slider .ui-slider-handle {
- border-radius: 8px; top: -2px; background: #fc00ff; border: 1px solid #ffffff;
-}
-
-.Ldt-Slider .ui-slider-range {
- background: #747474;
-}
-
-.Ldt-Slider-Time {
- position: absolute; top: -16px; background: #ffffc0; color: #000000; border-radius: 3px; z-index: 8;
- font-size: 9px; width: 34px; border: 1px solid #999999; padding: 1px; margin-left: -20px;
- display: none; text-align: center; font-weight: bold;
-}
--- a/metadataplayer/metadataplayer/Slider.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,133 +0,0 @@
-/*
- The Slider Widget fits right under the video
- */
-
-IriSP.Widgets.Slider = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Slider.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Slider.prototype.defaults = {
- minimized_height : 4,
- maximized_height : 10,
- minimize_timeout : 1500 /* time before minimizing slider after mouseout,
- set to zero for fixed slider */
-};
-
-IriSP.Widgets.Slider.prototype.template =
- '<div class="Ldt-Slider"></div><div class="Ldt-Slider-Time">00:00</div>'
-
-IriSP.Widgets.Slider.prototype.draw = function() {
-
- this.renderTemplate();
-
- this.$time = this.$.find(".Ldt-Slider-Time");
-
- this.$slider = this.$.find(".Ldt-Slider");
-
- var _this = this;
-
- this.$slider.slider({
- range: "min",
- value: 0,
- min: 0,
- max: this.source.getDuration().milliseconds,
- slide: function(event, ui) {
- _this.media.setCurrentTime(ui.value);
- _this.player.trigger("Mediafragment.setHashToTime");
- }
- });
-
- this.$handle = this.$slider.find('.ui-slider-handle');
-
- this.onMediaEvent("timeupdate","onTimeupdate");
- this.onMdpEvent("Player.MouseOver","onMouseover");
- this.onMdpEvent("Player.MouseOut","onMouseout");
-
- if (this.minimize_timeout) {
- this.$slider.css(this.calculateSliderCss(this.minimized_height));
- this.$handle.css(this.calculateHandleCss(this.minimized_height));
-
- this.maximized = false;
- this.timeoutId = false;
- }
-
- this.$
- .mouseover(function() {
- _this.$time.show();
- _this.onMouseover();
- })
- .mouseout(this.functionWrapper("onMouseout"))
- .mousemove(function(_e) {
- var _x = _e.pageX - _this.$.offset().left,
- _t = new IriSP.Model.Time(_this.media.duration * _x / _this.width);
- _this.$time.text(_t.toString()).css("left",_x);
- });
-};
-
-IriSP.Widgets.Slider.prototype.onTimeupdate = function(_time) {
- this.$slider.slider("value",_time);
- this.player.trigger("Arrow.updatePosition",{widget: this.type, time: _time});
-}
-
-IriSP.Widgets.Slider.prototype.onMouseover = function() {
- if (this.minimize_timeout) {
- if (this.timeoutId) {
- window.clearTimeout(this.timeoutId);
- this.timeoutId = false;
- }
- if (!this.maximized) {
- this.animateToHeight(this.maximized_height);
- this.maximized = true;
- }
- }
-}
-
-IriSP.Widgets.Slider.prototype.onMouseout = function() {
- this.$time.hide();
- if (this.minimize_timeout) {
- if (this.timeoutId) {
- window.clearTimeout(this.timeoutId);
- this.timeoutId = false;
- }
- var _this = this;
- this.timeoutId = window.setTimeout(function() {
- if (_this.maximized) {
- _this.animateToHeight(_this.minimized_height);
- _this.maximized = false;
- }
- _this.timeoutId = false;
- }, this.minimize_timeout);
- }
-}
-
-IriSP.Widgets.Slider.prototype.animateToHeight = function(_height) {
- this.$slider.stop().animate(
- this.calculateSliderCss(_height),
- 500,
- function() {
- IriSP.jQuery(this).css("overflow","visible");
- });
- this.$handle.stop().animate(
- this.calculateHandleCss(_height),
- 500,
- function() {
- IriSP.jQuery(this).css("overflow","visible");
- });
-}
-
-IriSP.Widgets.Slider.prototype.calculateSliderCss = function(_size) {
- return {
- height: _size + "px",
- "margin-top": (this.minimized_height - _size) + "px"
- };
-}
-
-IriSP.Widgets.Slider.prototype.calculateHandleCss = function(_size) {
- return {
- height: (2 + _size) + "px",
- width: (2 + _size) + "px",
- "margin-left": -Math.ceil(2 + _size / 2) + "px"
- }
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Slideshare.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-/* Slideshare widget */
-
--- a/metadataplayer/metadataplayer/Slideshare.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,119 +0,0 @@
-/* TODO: Add Slide synchronization */
-
-IriSP.Widgets.Slideshare = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-}
-
-IriSP.Widgets.Slideshare.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Slideshare.prototype.defaults = {
- annotation_type: "slide",
- sync: true,
- embed_width: 400,
- embed_height: 300
-}
-
-IriSP.Widgets.Slideshare.prototype.messages = {
- fr: {
- slides_ : "Diapositives :"
- },
- en: {
- slides_ : "Slides:"
- }
-}
-
-IriSP.Widgets.Slideshare.prototype.template =
- '<div class="Ldt-SlideShare"><h2>{{l10n.slides_}}</h2><hr /><div class="Ldt-SlideShare-Container"></div></div>';
-
-IriSP.Widgets.Slideshare.prototype.draw = function() {
-
- var _embedObject = null,
- $container,
- _lastEmbedded = "",
- _this = this;
-
- function insertSlideshare(_presentation, _slide) {
- if (_lastEmbedded === _presentation) {
- if (_.embedObject && typeof _embedObject.jumpTo === "function") {
- _embedObject.jumpTo(parseInt(_slide));
- }
- } else {
- _lastEmbedded = _presentation;
- var _id = IriSP.Model.getUID(),
- _params = {
- allowScriptAccess: "always"
- }
- _atts = {
- id: _id
- },
- _flashvars = {
- doc : _presentation,
- startSlide : _slide
- };
- $container.html('<div id="' + _id + '"></div>');
- swfobject.embedSWF(
- "http://static.slidesharecdn.com/swf/ssplayer2.swf",
- _id,
- _this.embed_width,
- _this.embed_height,
- "8",
- null,
- _flashvars,
- _params,
- _atts
- );
- _embedObject = document.getElementById(_id);
- }
- $container.show();
- }
-
- var _annotations = this.getWidgetAnnotations();
- if (!_annotations.length) {
- this.$.hide();
- } else {
- this.renderTemplate();
- var _lastPres = "",
- _embedObject = null,
- _oembedCache = {},
- _this = this;
- $container = this.$.find(".Ldt-SlideShare-Container");
- _annotations.forEach(function(_a) {
- _a.on("leave", function() {
- $container.hide();
- _lastPres = "";
- });
- _a.on("enter", function() {
- var _description = _a.description,
- _isurl = /^https?:\/\//.test(_description),
- _presentation = _description.replace(/#.*$/,''),
- _slidematch = _description.match(/(#|\?|&)id=(\d+)/),
- _slide = parseInt(_slidematch && _slidematch.length > 2 ? _slidematch[2] : 1);
- if (_presentation !== _lastPres) {
- if (_isurl) {
- if (typeof _oembedCache[_presentation] === "undefined") {
- var _ajaxUrl = "http://www.slideshare.net/api/oembed/1?url="
- + encodeURIComponent(_presentation)
- + "&format=jsonp&callback=?";
- IriSP.jQuery.getJSON(_ajaxUrl, function(_oembedData) {
- var _presmatch = _oembedData.html.match(/doc=([a-z0-9\-_%]+)/i);
- if (_presmatch && _presmatch.length > 1) {
- _oembedCache[_presentation] = _presmatch[1];
- insertSlideshare(_presmatch[1], _slide);
- }
- });
- } else {
- insertSlideshare(_oembedCache[_presentation], _slide);
- }
- } else {
- insertSlideshare(_presentation, _slide);
- }
- }
- if (_this.sync && _embedObject && typeof _embedObject.jumpTo === "function") {
- _embedObject.jumpTo(parseInt(_slide));
- }
- _lastPres = _presentation;
-
- })
- })
- }
-}
--- a/metadataplayer/metadataplayer/Social.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,78 +0,0 @@
-.Ldt-Social a {
- display: inline-block; width: 24px; height: 24px; margin: 2px 0 0 2px; background: url(img/socialbuttons.png);
-}
-
-.Ldt-Social-Url-Container {
- display: inline-block; width: 24px; height: 24px; margin: 2px 0 0 2px; position: relative;
-}
-
-a.Ldt-Social-Url {
- margin: 0; background-position: -96px 0;
-}
-
-a.Ldt-Social-Url:hover {
- background-position: -96px -24px;
-}
-
-.Ldt-Social-UrlPop {
- position: absolute; left: 20px; top: -2px; background: url(img/socialcopy.png);
- padding: 3px 0 0 12px; width: 218px; height: 27px;
- display: none;
-}
-
-.Ldt-Social-Input, .Ldt-Social-CopyBtn {
- font-size: 11px; margin: 1px; border: 1px solid #ccc; height: 16px;
- padding: 1px; border-radius: 2px; display: inline-block;
-}
-
-.Ldt-Social-Input:hover, .Ldt-Social-CopyBtn.hover {
- border-color: #8080ff;
-}
-
-.Ldt-Social-Input {
- width: 150px;
-}
-
-.Ldt-Social-CopyBtn {
- font-weight: bold; width: 50px; text-align: center; background: #f0f0ff;
-}
-
-.Ldt-Social-CopyBtn.hover {
- background: #ffe0a0;
-}
-
-.Ldt-Social-CopyBtn.active {
- background: #ff8000;
-}
-
-a.Ldt-Social-Twitter {
- background-position: 0 0;
-}
-
-a.Ldt-Social-Twitter:hover {
- background-position: 0 -24px;
-}
-
-a.Ldt-Social-Fb {
- background-position: -24px 0;
-}
-
-a.Ldt-Social-Fb:hover {
- background-position: -24px -24px;
-}
-
-a.Ldt-Social-Gplus {
- background-position: -48px 0;
-}
-
-a.Ldt-Social-Gplus:hover {
- background-position: -48px -24px;
-}
-
-a.Ldt-Social-Mail {
- background-position: -72px 0;
-}
-
-a.Ldt-Social-Mail:hover {
- background-position: -72px -24px;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Social.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,87 +0,0 @@
-// TODO: Open share links in a small window
-
-IriSP.Widgets.Social = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- ZeroClipboard.setMoviePath( IriSP.getLib('zeroClipboardSwf') );
-}
-
-IriSP.Widgets.Social.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Social.prototype.defaults = {
- text: "",
- url: "",
- show_url: true,
- show_twitter: true,
- show_fb: true,
- show_gplus: true,
- show_mail: true
-}
-
-IriSP.Widgets.Social.prototype.template =
- '<span class="Ldt-Social">{{#show_url}}<div class="Ldt-Social-Url-Container"><a href="#" target="_blank" class="Ldt-Social-Square Ldt-Social-Url Ldt-TraceMe" title="{{l10n.share_link}}">'
- + '</a><div class="Ldt-Social-UrlPop"><input class="Ldt-Social-Input"/><div class="Ldt-Social-CopyBtn">{{l10n.copy}}</div></div></div>{{/show_url}}'
- + '{{#show_fb}}<a href="#" target="_blank" class="Ldt-Social-Fb Ldt-TraceMe" title="{{l10n.share_on}} Facebook"></a>{{/show_fb}}'
- + '{{#show_twitter}}<a href="#" target="_blank" class="Ldt-Social-Twitter Ldt-TraceMe" title="{{l10n.share_on}} Twitter"></a>{{/show_twitter}}'
- + '{{#show_gplus}}<a href="#" target="_blank" class="Ldt-Social-Gplus Ldt-TraceMe" title="{{l10n.share_on}} Google+"></a>{{/show_gplus}}'
- + '{{#show_mail}}<a href="#" target="_blank" class="Ldt-Social-Mail Ldt-TraceMe" title="{{l10n.share_mail}}"></a>{{/show_mail}}</span>';
-
-IriSP.Widgets.Social.prototype.messages = {
- "fr": {
- share_on: "Partager sur",
- share_mail: "Envoyer par courriel",
- share_link: "Partager le lien hypertexte",
- copy: "Copier"
- },
- "en" : {
- share_on: "Share on",
- share_mail: "Share by e-mail",
- share_link: "Share hypertext link",
- copy: "Copy"
- }
-}
-
-IriSP.Widgets.Social.prototype.draw = function() {
- this.renderTemplate();
- this.clipId = IriSP._.uniqueId("Ldt-Social-CopyBtn-");
- this.$.find(".Ldt-Social-CopyBtn").attr("id", this.clipId);
- var _this = this;
- this.$.find(".Ldt-Social-Url").click(function() {
- _this.toggleCopy();
- return false;
- });
- this.$.find(".Ldt-Social-Input").focus(function() {
- this.select();
- });
- this.updateUrls(this.url, this.text);
-}
-
-IriSP.Widgets.Social.prototype.toggleCopy = function() {
- var _pop = this.$.find(".Ldt-Social-UrlPop");
- _pop.toggle();
- if (_pop.is(":visible")) {
- if (typeof this.clip == "undefined") {
- this.clip = new ZeroClipboard.Client();
- this.clip.setHandCursor( true );
- this.clip.glue(this.clipId);
- var _this = this;
- this.clip.addEventListener( 'onMouseUp', function() {
- _pop.hide();
- _this.clip.hide();
- });
- }
- this.clip.show();
- this.clip.setText( this.url );
- this.$.find(".Ldt-Social-Input").val(this.url).focus();
- } else {
- this.clip.hide();
- }
-}
-
-IriSP.Widgets.Social.prototype.updateUrls = function(_url, _text) {
- this.url = _url;
- this.text = _text;
- this.$.find(".Ldt-Social-Fb").attr("href", "http://www.facebook.com/share.php?" + IriSP.jQuery.param({ u: _url, t: _text }));
- this.$.find(".Ldt-Social-Twitter").attr("href", "https://twitter.com/intent/tweet?" + IriSP.jQuery.param({ url: _url, text: _text }));
- this.$.find(".Ldt-Social-Gplus").attr("href", "https://plusone.google.com/_/+1/confirm?" + IriSP.jQuery.param({ url: _url, title: _text }));
- this.$.find(".Ldt-Social-Mail").attr("href", "mailto:?" + IriSP.jQuery.param({ subject: _text, body: _text + ": " + _url }));
-}
--- a/metadataplayer/metadataplayer/Sparkline.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,84 +0,0 @@
-IriSP.Widgets.Sparkline = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Sparkline.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Sparkline.prototype.defaults = {
- lineColor : "#7492b4",
- fillColor : "#aeaeb8",
- lineWidth : 2,
- slice_count : 20,
- height : 50,
- margin : 5
-};
-
-IriSP.Widgets.Sparkline.prototype.draw = function() {
- var _slices = [],
- _duration = this.source.getDuration(),
- _max = 0,
- _list = this.getWidgetAnnotations();
-
- for (var _i = 0; _i < this.slice_count; _i++) {
- var _begin = new IriSP.Model.Time(_i*_duration/this.slice_count),
- _end = new IriSP.Model.Time((_i+1)*_duration/this.slice_count),
- _annotations = _list.filter(function(_annotation) {
- return _annotation.begin >= _begin && _annotation.end < _end;
- }).length;
- _max = Math.max(_max, _annotations);
- _slices.push(_annotations);
- }
- if (!_max) {
- return;
- }
- this.paper = new Raphael(this.$[0], this.width, this.height);
- var _scale = (this.height - this.margin) / _max,
- _width = this.width / this.slice_count,
- _this = this,
- _y = IriSP._(_slices).map(function(_v) {
- return _this.margin + _this.height - (_scale * _v);
- }),
- _d = IriSP._(_y).reduce(function(_memo, _v, _k) {
- return _memo + ( _k
- ? 'C' + (_k * _width) + ' ' + _y[_k - 1] + ' ' + (_k * _width) + ' ' + _v + ' ' + ((_k + .5) * _width) + ' ' + _v
- : 'M0 ' + _v + 'L' + (.5*_width) + ' ' + _v )
- },'') + 'L' + this.width + ' ' + _y[_y.length - 1],
- _d2 = _d + 'L' + this.width + ' ' + this.height + 'L0 ' + this.height;
-
- this.paper.path(_d2).attr({
- "stroke" : "none",
- "fill" : this.fillColor
- });
-
- this.paper.path(_d).attr({
- "fill" : "none",
- "stroke" : this.lineColor,
- "stroke-width" : this.lineWidth
- });
-
- this.rectangleProgress = this.paper.rect(0,0,0,this.height)
- .attr({
- "stroke" : "none",
- "fill" : "#808080",
- "opacity" : .3
- });
-
- this.ligneProgress = this.paper.path("M0 0L0 "+this.height).attr({"stroke":"#ff00ff", "line-width" : 2});
-
- this.$.click(function(_e) {
- var _x = _e.pageX - _this.$.offset().left;
- _this.media.setCurrentTime(_this.media.duration * _x / _this.width);
- });
-
- this.onMediaEvent("timeupdate","onTimeupdate");
-}
-
-IriSP.Widgets.Sparkline.prototype.onTimeupdate = function(_time) {
- var _x = Math.floor( this.width * _time / this.media.duration);
- this.rectangleProgress.attr({
- "width" : _x
- });
- this.ligneProgress.attr({
- "path" : "M" + _x + " 0L" + _x + " " + this.height
- });
-}
--- a/metadataplayer/metadataplayer/Tagcloud.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-/*
- *
- */
-.Ldt-Tagcloud-Container {
- border: 1px solid #b7b7b7;
- padding: 1px;
- margin: 0;
-}
-
-ul.Ldt-Tagcloud-List {
- background: url(img/pinstripe.png);
- padding: 5px;
- margin: 0;
- list-style: none;
- text-align: center;
-}
-
-li.Ldt-Tagcloud-item {
- display: inline-block;
- margin: 2px;
- cursor: pointer;
-}
-
-li.Ldt-Tagcloud-item:hover {
- color: #0099ff;
-}
-
-.Ldt-Tagcloud-active {
- color: #c000c0;
- padding: 0; margin: 0;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Tagcloud.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,130 +0,0 @@
-IriSP.Widgets.Tagcloud = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.stopwords = IriSP._.uniq([].concat(this.custom_stopwords).concat(this.stopword_lists[this.stopword_language]));
-}
-
-IriSP.Widgets.Tagcloud.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Tagcloud.prototype.template =
- '<div class="Ldt-Tagcloud-Container"><ul class="Ldt-Tagcloud-List">'
- + '{{#words}}<li class="Ldt-Tagcloud-item Ldt-TraceMe" trace-info="tag:{{word}}" content="{{word}}" style="font-size: {{size}}px">{{word}}</li>{{/words}}'
- + '</ul></div>';
-
-IriSP.Widgets.Tagcloud.prototype.defaults = {
- include_titles: true,
- include_descriptions: true,
- include_tag_texts: true,
- tag_count: 30,
- stopword_language: "fr",
- custom_stopwords: [],
- exclude_pattern: false,
- annotation_type: false,
- segment_annotation_type: false,
- min_font_size: 10,
- max_font_size: 26
-}
-
-IriSP.Widgets.Tagcloud.prototype.stopword_lists = {
- "fr" : [
- 'aussi', 'avec', 'aux', 'bien', 'car', 'cette', 'comme', 'dans', 'des', 'donc', 'dont', 'elle', 'encore', 'entre', 'est',
- 'être', 'eux', 'faire', 'fait', 'http', 'ici', 'ils', 'les', 'leur', 'leurs', 'mais', 'mes', 'même', 'mon', 'notre',
- 'non', 'nos', 'nous', 'ont', 'par', 'pas', 'peu', 'peut', 'plus', 'pour', 'quand', 'que', 'qui', 'quoi', 'sans',
- 'ses' ,'son', 'sont', 'sur', 'tes', 'très', 'the', 'ton', 'tous', 'tout', 'une', 'votre', 'vos', 'vous'
- ],
- "en" : [
- 'about', 'again', 'are', 'and', 'because', 'being', 'but', 'can', 'done', 'have', 'for', 'from',
- 'get', 'here', 'http', 'like', 'more', 'one', 'our', 'she', 'that', 'the', 'their', 'then', 'there',
- 'they', 'this', 'very', 'what', 'when', 'where', 'who', 'why', 'will', 'with', 'www', 'you', 'your'
- ]
-}
-
-IriSP.Widgets.Tagcloud.prototype.draw = function() {
- this.onMdpEvent("search", "onSearch");
- this.onMdpEvent("search.closed", "onSearch");
- this.onMdpEvent("search.cleared", "onSearch");
-
- if (this.segment_annotation_type) {
- var _this = this;
- this.source.getAnnotationsByTypeTitle(this.segment_annotation_type).forEach(function(_a) {
- _a.on("enter", function() {
- _this.redraw(_a.begin, _a.end);
- })
- });
- } else {
- this.redraw();
- }
-}
-
-IriSP.Widgets.Tagcloud.prototype.redraw = function(_from, _to) {
- var _urlRegExp = /https?:\/\/[0-9a-zA-Z\.%\/-_]+/g,
- _regexpword = /[^\s\.&;,'"!\?\d\(\)\+\[\]\\\…\-«»:\/]{3,}/g,
- _words = {},
- _this = this,
- _annotations = this.getWidgetAnnotations();
-
- if (typeof _from !== "undefined" && typeof _to !== "undefined") {
- _annotations = _annotations.filter(function(_annotation) {
- return _annotation.begin >= _from && _annotation.end <= _to;
- })
- }
-
- _annotations.forEach(function(_annotation) {
- var _txt =
- (_this.include_titles ? _annotation.title : '')
- + ' '
- + (_this.include_descriptions ? _annotation.description : '')
- + ' '
- + (_this.include_tag_texts ? _annotation.getTagTexts() : '');
- IriSP._(_txt.toLowerCase().replace(_urlRegExp, '').match(_regexpword)).each(function(_word) {
- if (IriSP._(_this.stopwords).indexOf(_word) == -1 && (!_this.exclude_pattern || !_this.exclude_pattern.test(_word))) {
- _words[_word] = 1 + (_words[_word] || 0);
- }
- })
- });
- _words = IriSP._(_words)
- .chain()
- .map(function(_v, _k) {
- return {
- "word" : _k,
- "count" : _v
- }
- })
- .filter(function(_v) {
- return _v.count > 2;
- })
- .sortBy(function(_v) {
- return - _v.count;
- })
- .first(this.tag_count)
- .value();
- if (_words.length) {
- var _max = _words[0].count,
- _min = Math.min(_words[_words.length - 1].count, _max - 1),
- _scale = (this.max_font_size - this.min_font_size) / Math.sqrt(_max - _min);
- IriSP._(_words).each(function(_word) {
- _word.size = Math.floor( _this.min_font_size + _scale * Math.sqrt(_word.count - _min) );
- });
- }
- this.$.html(Mustache.to_html(this.template, {words: _words }));
- this.$.find(".Ldt-Tagcloud-item").click(function() {
- var _txt = IriSP.jQuery(this).attr("content");
- _this.player.trigger("search.triggeredSearch", _txt);
- });
-
-}
-
-IriSP.Widgets.Tagcloud.prototype.onSearch = function(searchString) {
- searchString = typeof searchString !== "undefined" ? searchString : '';
- if (searchString) {
- var _rgxp = IriSP.Model.regexpFromTextOrArray(searchString);
- }
- this.$.find(".Ldt-Tagcloud-item").each(function() {
- var _el = IriSP.jQuery(this),
- _txt = _el.attr("content");
- if (searchString) {
- _el.html(_txt.replace(_rgxp, '<span class="Ldt-Tagcloud-active">$1</span>'));
- } else {
- _el.html(_txt);
- }
- });
-}
--- a/metadataplayer/metadataplayer/Tagger.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-
-.Ldt-Tagger {
- border-style: solid;
- border-width: 1px;
- border-color: #b7b7b7;
- padding: 1px;
- margin: 0;
-}
-
-.Ldt-Tagger-Inner {
- background: url(img/pinstripe.png);
- padding: 5px;
- margin: 0;
-}
--- a/metadataplayer/metadataplayer/Tagger.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,145 +0,0 @@
-IriSP.Widgets.Tagger = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Tagger.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Tagger.prototype.defaults = {
- created_annotation_type: "Contributions",
- creator_name: 'anonymous',
- api_endpoint: "",
- api_method: "PUT",
- pause_on_write : true,
- api_serializer: "ldt_annotate",
- tags: false
-}
-
-IriSP.Widgets.Tagger.prototype.messages = {
- en: {
- add_a_tag: "Add a tag",
- submit: "Submit"
- },
- fr: {
- add_a_tag: "Ajouter un tag",
- submit: "Envoyer"
- }
-}
-
-IriSP.Widgets.Tagger.prototype.template =
- '<div class="Ldt-Tagger"><form class="Ldt-Tagger-Inner"><input class="Ldt-Tagger-Input" placeholder="{{l10n.add_a_tag}}" />'
- + '<input class="Ldt-Tagger-Submit" type="submit" value="{{l10n.submit}}" /></form></div>';
-
-IriSP.Widgets.Tagger.prototype.draw = function() {
- this.renderTemplate();
- var _tags = this.tags || this.source.getTags().getTitles(),
- _this = this,
- _input = this.$.find(".Ldt-Tagger-Input");
- _input.autocomplete({
- source: _tags
- });
- if (this.pause_on_write) {
- _input.keyup(function() {
- _this.media.pause();
- });
- }
- this.$.find(".Ldt-Tagger").submit(function() {
- var _tagvalue = _input.val();
- if (_tagvalue) {
-
- /* Création d'une liste d'annotations contenant une annotation afin de l'envoyer au serveur */
- var _exportedAnnotations = new IriSP.Model.List(_this.player.sourceManager),
- /* Création d'un objet source utilisant un sérialiseur spécifique pour l'export */
- _export = _this.player.sourceManager.newLocalSource({serializer: IriSP.serializers[_this.api_serializer]}),
- /* Création d'une annotation dans cette source avec un ID généré à la volée (param. false) */
- _annotation = new IriSP.Model.Annotation(false, _export),
- /* Récupération du type d'annotation dans lequel l'annotation doit être ajoutée */
- _annotationTypes = _this.source.getAnnotationTypes().searchByTitle(_this.created_annotation_type),
- /* Si le Type d'Annotation n'existe pas, il est créé à la volée */
- _annotationType = (_annotationTypes.length ? _annotationTypes[0] : new IriSP.Model.AnnotationType(false, _export)),
- /* L'objet Tag qui sera envoyé */
- _tag = new IriSP.Model.Tag(false, _export);
- /* L'objet Tag doit avoir pour titre le texte du tag envoyé */
- _tag.title = _tagvalue;
- /* Si nous avons dû générer un ID d'annotationType à la volée... */
- if (!_annotationTypes.length) {
- /* Il ne faudra pas envoyer l'ID généré au serveur */
- _annotationType.dont_send_id = true;
- /* Il faut inclure le titre dans le type d'annotation */
- _annotationType.title = _this.created_annotation_type;
- }
-
- /*
- * Nous remplissons les données de l'annotation générée à la volée
- * ATTENTION: Si nous sommes sur un MASHUP, ces éléments doivent se référer AU MEDIA D'ORIGINE
- * */
- var _now = _this.media.getCurrentTime(),
- _pilotAnnotation = null;
- if (_this.source.currentMedia.elementType == "mashup") {
- /* Si c'est un mashup, on récupère l'annotation d'origine pour caler le temps */
- var _pilotAnnotation = _this.source.currentMedia.getAnnotationAtTime(_now).annotation;
- } else {
- /* Sinon, on recherche une annotation correspondant au temps */
- var _annotations = _this.getWidgetAnnotationsAtTime(_now);
- if (_annotations.length) {
- _pilotAnnotation = _annotations[0];
- }
- }
- if (_pilotAnnotation) {
- _annotation.setBegin(_pilotAnnotation.begin);
- _annotation.setEnd(_pilotAnnotation.end);
- /* Id du média annoté */
- _annotation.setMedia(_pilotAnnotation.getMedia().id);
- } else {
- _annotation.setBegin(_now);
- _annotation.setEnd(_now);
- /* Id du média annoté */
- _annotation.setMedia(_this.source.currentMedia.id);
- }
-
- /* Id du type d'annotation */
- _annotation.setAnnotationType(_annotationType.id);
-
- _annotation.title = _tagvalue;
- _annotation.created = new Date(); /* Date de création de l'annotation */
- _annotation.description = _tagvalue;
-
- _annotation.setTags([_tag.id]); /*Liste des ids de tags */
-
- /* Les données créateur/date de création sont envoyées non pas dans l'annotation, mais dans le projet */
- _export.creator = _this.creator_name;
- _export.created = new Date();
- /* Ajout de l'annotation à la liste à exporter */
- _exportedAnnotations.push(_annotation);
- /* Ajout de la liste à exporter à l'objet Source */
- _export.addList("annotation",_exportedAnnotations);
-
- IriSP.jQuery.ajax({
- url: _this.api_endpoint,
- type: _this.api_method,
- contentType: 'application/json',
- data: _export.serialize(), /* L'objet Source est sérialisé */
- success: function(_data) {
- console.log("success");
- /* Pour éviter les doublons, on supprime l'annotation qui a été envoyée */
- _export.getAnnotations().removeElement(_annotation, true);
- /* On désérialise les données reçues pour les réinjecter */
- _export.deSerialize(_data);
- /* On récupère les données réimportées dans l'espace global des données */
- _this.source.merge(_export);
- if (_this.pause_on_write && _this.media.getPaused()) {
- _this.media.play();
- }
- /* On force le rafraîchissement du widget AnnotationsList */
- _this.player.trigger("AnnotationsList.refresh");
- },
- error: function(_xhr, _error, _thrown) {
- console.log("Error when sending annotation", _thrown);
- _export.getAnnotations().removeElement(_annotation, true);
- }
- });
-
- _input.val("");
- }
- return false;
- });
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Tooltip.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-/* ToolTip Widget */
-
-.Ldt-Tooltip {
- position: absolute;
- z-index: 10000000000;
- background: transparent url("img/white_arrow_long.png");
- font-size: 12px;
- padding: 15px 15px 20px;
- color: black;
- font-family: Arial, Helvetica, sans-serif;
- overflow:hidden;
-}
-
-.Ldt-Tooltip-Inner {
- height: 115px;
- width: 180px;
- overflow: hidden;
-}
-
-.Ldt-Tooltip-Color {
- float: left; margin: 2px 4px 2px 0; width: 10px; height: 10px;
-}
-
-.Ldt-Tooltip img {
- max-width: 140px; max-height: 70px; margin: 0 20px;
-}
-
-.Ldt-Tooltip p {
- margin: 2px 0;
- font-size: 12px;
-}
--- a/metadataplayer/metadataplayer/Tooltip.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,42 +0,0 @@
-/* this widget displays a small tooltip */
-IriSP.Widgets.Tooltip = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-};
-
-IriSP.Widgets.Tooltip.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Tooltip.prototype.template = '<div class="Ldt-Tooltip"><div class="Ldt-Tooltip-Inner"><div class="Ldt-Tooltip-Color"></div><div class="Ldt-Tooltip-Text"></div></div></div>';
-
-IriSP.Widgets.Tooltip.prototype.draw = function() {
- _this = this;
- this.$.html(this.template);
- this.$.parent().css({
- "position" : "relative"
- });
- this.$tip = this.$.find(".Ldt-Tooltip");
- this.$.mouseover(function() {
- _this.$tip.hide();
- });
- this.hide();
-};
-
-IriSP.Widgets.Tooltip.prototype.show = function(x, y, text, color) {
-
- if (typeof color !== "undefined") {
- this.$.find(".Ldt-Tooltip-Color").show().css("background-color", color);
- } else {
- this.$.find(".Ldt-Tooltip-Color").hide();
- }
-
- this.$.find(".Ldt-Tooltip-Text").html(text);
-
- this.$tip.show();
- this.$tip.css({
- "left" : Math.floor(x - this.$tip.outerWidth() / 2) + "px",
- "top" : Math.floor(y - this.$tip.outerHeight()) + "px"
- });
-};
-
-IriSP.Widgets.Tooltip.prototype.hide = function() {
- this.$tip.hide();
-};
--- a/metadataplayer/metadataplayer/Trace.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,163 +0,0 @@
-IriSP.Widgets.Trace = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
-
-}
-
-IriSP.Widgets.Trace.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Trace.prototype.defaults = {
- js_console : false,
- url: "http://traces.advene.org:5000/",
- requestmode: 'GET',
- syncmode: "sync",
- default_subject: "IRI",
- tracer: null,
- extend: false
-}
-
-IriSP.Widgets.Trace.prototype.draw = function() {
- this.lastEvent = "";
- if (typeof window.tracemanager === "undefined") {
- console.log("Tracemanager not found");
- return;
- }
- var _this = this,
- _mdplisteners = {
- "search.open" : 0,
- "search.closed" : 0,
- "search" : 0,
- "search.cleared" : 0,
- "search.matchFound" : 0,
- "search.noMatchFound" : 0,
- "search.triggeredSearch" : 0,
- "TraceWidget.MouseEvents" : 0
- }
- _medialisteners = {
- "play" : 0,
- "pause" : 0,
- "volumechange" : 0,
- "seeked" : 0,
- "play" : 0,
- "pause" : 0,
- "timeupdate" : 2000
- };
- IriSP._(_mdplisteners).each(function(_ms, _listener) {
- var _f = function(_arg) {
- _this.eventHandler(_listener, _arg);
- }
- if (_ms) {
- _f = IriSP._.throttle(_f, _ms);
- }
- _this.onMdpEvent(_listener, _f);
- });
- IriSP._(_medialisteners).each(function(_ms, _listener) {
- var _f = function(_arg) {
- _this.eventHandler(_listener, _arg);
- }
- if (_ms) {
- _f = IriSP._.throttle(_f, _ms);
- }
- _this.media.on(_listener, _f);
- });
-
- if (!this.tracer) {
-
- this.tracer = window.tracemanager.init_trace("test", {
- url: this.url,
- requestmode: this.requestmode,
- syncmode: this.syncmode,
- default_subject: this.default_subject
- });
-
- }
-
- this.tracer.trace("TraceWidgetInit", {});
-
- this.mouseLocation = '';
- IriSP.jQuery(".Ldt-Widget").on("click mouseover mouseout", ".Ldt-TraceMe", function(_e) {
- var _target = IriSP.jQuery(this);
-
- var _widget = IriSP.jQuery(this).attr("widget-type"),
- _data = {
- "type": _e.type,
- "x": _e.clientX,
- "y": _e.clientY,
- "widget": _widget
- },
- _targetEl = _target[0],
- _class = _targetEl.className,
- _name = _targetEl.localName,
- _id = _targetEl.id,
- _value = _targetEl.value,
- _traceInfo = _target.attr("trace-info"),
- _lastTarget = _name + (_id && _id.length ? '#' + IriSP.jqEscape(_id) : '') + (_class && _class.length ? ('.' + IriSP.jqEscape(_class).replace(/\s/g,'.')).replace(/\.Ldt-(Widget|TraceMe)/g,'') : '');
- _data.target = _lastTarget
- if (typeof _traceInfo == "string" && _traceInfo.length) {
- _data.traceInfo = _traceInfo;
- _lastTarget += ( ";" + _traceInfo );
- }
- if (typeof _value == "string" && _value.length) {
- _data.value = _value;
- }
- switch(_e.type) {
- case "mouseover":
- if (_this.lastTarget != _lastTarget) {
- _this.player.trigger('TraceWidget.MouseEvents', _data);
- } else {
- if (typeof _this.moTimeout != "undefined") {
- clearTimeout(_this.moTimeout);
- _this.moTimeout = undefined;
- }
- }
- break;
- case "mouseout":
- if (typeof _this.moTimeout != "undefined") {
- clearTimeout(_this.moTimeout);
- }
- _this.moTimeout = setTimeout(function() {
- if (_lastTarget != _this.lastTarget) {
- _this.player.trigger('TraceWidget.MouseEvents', _data);
- }
- },100);
- break;
- default:
- _this.player.trigger('TraceWidget.MouseEvents', _data);
- }
- _this.lastTarget = _lastTarget;
- });
-}
-
-IriSP.Widgets.Trace.prototype.eventHandler = function(_listener, _arg) {
- var _traceName = 'Mdp_';
- if (typeof _arg == "string" || typeof _arg == "number") {
- _arg = { "value" : _arg }
- }
- if (typeof _arg == "undefined") {
- _arg = {}
- }
- switch(_listener) {
- case 'IriSP.TraceWidget.MouseEvents':
- _traceName += _arg.widget + '_' + _arg.type;
- delete _arg.widget;
- delete _arg.type;
- break;
- case 'play':
- case 'pause':
- _arg.milliseconds = this.media.getCurrentTime().milliseconds;
- case 'timeupdate':
- case 'seeked':
- case 'volumechange':
- _traceName += 'media_' + _listener;
- break;
- default:
- _traceName += _listener.replace('.','_');
- }
- this.lastEvent = _traceName;
- if (typeof this.extend === "object" && this.extend) {
- IriSP._(_arg).extend(this.extend);
- }
- this.tracer.trace(_traceName, _arg);
- if (this.js_console && typeof window.console !== "undefined" && typeof console.log !== "undefined") {
- console.log("tracer.trace('" + _traceName + "', " + JSON.stringify(_arg) + ");");
- }
-}
--- a/metadataplayer/metadataplayer/Tweet.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,109 +0,0 @@
-.Ldt-Tweet-Widget {
- border: 1px solid #b7b7b7;
- padding: 1px;
- margin: 0;
-}
-
-.Ldt-Tweet-Widget a {
- color: #0068C4;
-}
-
-.Ldt-Tweet-Widget a:hover {
- color: #003366;
-}
-
-.Ldt-Tweet-Inner {
- background: url(img/pinstripe.png);
- padding: 5px;
- margin: 0;
- min-height: 50px;
-}
-
-.Ldt-Tweet-PinClose-Buttons {
- float: right;
-}
-
-.Ldt-Tweet-PinClose-Buttons a {
- display: inline-block; width: 17px; height: 17px; margin: 2px;
- background: url(img/widget-control.png);
-}
-
-a.Ldt-Tweet-Pin {
- background-position: 0 -17px;
-}
-
-a.Ldt-Tweet-Pin:hover, a.Ldt-Tweet-Pin.active {
- background-position: -17px -17px;
-}
-
-a.Ldt-Tweet-Pin.active:hover {
- background-position: 0 -17px;
-}
-
-a.Ldt-Tweet-Close:hover {
- background-position: -17px 0;
-}
-
-.Ldt-Tweet-AvatarContainer {
- float: left; width: 48px; height: 48px; margin: 2px 4px 2px 0;
-}
-
-.Ldt-Tweet-Avatar {
- border: none; width: 48px; height: 48px;
-}
-
-.Ldt-Tweet-Inner h3 {
- margin: 2px 0 5px 52px;
- font-size: 14px;
-}
-
-a.Ldt-Tweet-ScreenName {
- text-decoration: none;
-}
-
-a.Ldt-Tweet-ScreenName:hover {
- text-decoration: underline;
-}
-
-p.Ldt-Tweet-Contents {
- margin: 5px 0 5px 52px;
- font-size: 12px;
-}
-
-.Ldt-Tweet-Bottom {
- margin: 5px 0 0;
- font-size: 12px;
- text-align: right;
-}
-
-.Ldt-Tweet-Time {
- display: inline-block;
-}
-
-.Ldt-Tweet-Bottom a {
- display: inline-block;
- margin-left: 12px;
- text-decoration: none;
-}
-
-.Ldt-Tweet-Bottom a:hover {
- text-decoration: underline;
-}
-
-.Ldt-Tweet-Icon {
- display: inline-block; width: 16px; height: 16px;
- margin: 0 2px -2px;
- background: url(img/twitter_sprites.png);
-}
-
-.Ldt-Tweet-Retweet .Ldt-Tweet-Icon {
- background-position: -80px 0;
-}
-
-.Ldt-Tweet-Retweet:hover .Ldt-Tweet-Icon {
- background-position: -96px 0;
-}
-
-.Ldt-Tweet-Reply:hover .Ldt-Tweet-Icon {
- background-position: -16px 0;
-}
\ No newline at end of file
--- a/metadataplayer/metadataplayer/Tweet.js Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,204 +0,0 @@
-IriSP.Widgets.Tweet = function(player, config) {
- IriSP.Widgets.Widget.call(this, player, config);
- this.lastAnnotation = false;
-};
-
-IriSP.Widgets.Tweet.prototype = new IriSP.Widgets.Widget();
-
-IriSP.Widgets.Tweet.prototype.defaults = {
- hide_timeout: 5000,
- polemics : [
- {
- "keywords" : [ "++" ],
- "color" : "#30d765"
- },
- {
- "keywords" : [ "--" ],
- "color" : "#f51123"
- },
- {
- "keywords" : [ "==" ],
- "color" : "#f1e24a"
- },
- {
- "keywords" : [ "??" ],
- "color" : "#05aae6"
- }
- ],
- annotation_type: "tweet",
- pin_at_start: false
-}
-
-IriSP.Widgets.Tweet.prototype.messages = {
- "fr": {
- retweet: "Retweeter",
- reply: "Répondre",
- keep_visible: "Garder visible",
- dont_keep_visible: "Permettre la fermeture automatique",
- close_widget: "Fermer l'affichage du tweet",
- original_time: "Heure d'envoi : ",
- video_time: "Temps de la vidéo : ",
- show_original: "Voir l'original"
- },
- "en": {
- retweet: "Retweet",
- reply: "Reply",
- keep_visible: "Keep visible",
- dont_keep_visible: "Don't keep visible",
- close_widget: "Close tweet display",
- original_time: "Tweet sent at: ",
- video_time: "Video time: ",
- show_original: "Show original"
- }
-}
-
-IriSP.Widgets.Tweet.prototype.template =
- '<div class="Ldt-Tweet-Widget"><div class="Ldt-Tweet-Inner"><div class="Ldt-Tweet-PinClose-Buttons">'
- + '<a href="#" class="Ldt-Tweet-Pin Ldt-TraceMe{{#pin_at_start}} active" title="{{l10n.dont_keep_visible}}{{/pin_at_start}}{{^pin_at_start}}" title="{{l10n.keep_visible}}{{/pin_at_start}}"></a>'
- + '<a href="#" class="Ldt-Tweet-Close Ldt-TraceMe" title="{{l10n.close_widget}}"></a>'
- + '</div><div class="Ldt-Tweet-AvatarContainer"><a href="#" class="Ldt-Tweet-ProfileLink" target="_blank">'
- + '<img src="" class="Ldt-Tweet-Avatar"/></a></div><h3><a href="#" class="Ldt-Tweet-ProfileLink Ldt-Tweet-ScreenName" target="_blank">'
- + '</a> (<span class="Ldt-Tweet-FullName"></span>)</h3><p class="Ldt-Tweet-Contents"></p><div class="Ldt-Tweet-Bottom">'
- + '<span class="Ldt-Tweet-Time"></span>'
- + '<a class="Ldt-Tweet-Original" href="" target="_blank">{{l10n.show_original}}</a>'
- + '<a href="" target="_blank" class="Ldt-Tweet-Retweet"><div class="Ldt-Tweet-Icon"></div>{{l10n.retweet}}</a>'
- + '<a href="" target="_blank" class="Ldt-Tweet-Reply"><div class="Ldt-Tweet-Icon"></div>{{l10n.reply}}</a></div></div></div>';
-
-
-IriSP.Widgets.Tweet.prototype.draw = function() {
- this.renderTemplate();
- this.pinned = this.pin_at_start;
- var _this = this;
- this.$.find(".Ldt-Tweet-Pin").click(function() {
- _this.pinned = !_this.pinned;
- var _el = IriSP.jQuery(this)
- if (_this.pinned) {
- _el.addClass("active").attr("title",_this.l10n.dont_keep_visible);
- _this.cancelTimeout();
- } else {
- _el.removeClass("active").attr("title",_this.l10n.keep_visible);
- _this.hideTimeout();
- }
- });
- this.$.find(".Ldt-Tweet-Close").click(function() {
- _this.hide();
- });
- this.$.hide();
- this.getWidgetAnnotations().forEach(function(_annotation) {
- _annotation.on("click", function() {
- _this.show(_annotation);
- });
- });
-}
-
-IriSP.Widgets.Tweet.prototype.show = function(_tweet) {
- if (typeof _tweet !== "undefined" && typeof _tweet.source !== "undefined") {
- var _entities = [];
- for (var _i = 0; _i < _tweet.source.entities.hashtags.length; _i++) {
- var _hash = _tweet.source.entities.hashtags[_i];
- _entities.push({
- is_link: true,
- text: '#' + _hash.text,
- url: 'http://twitter.com/search?q=%23' + encodeURIComponent(_hash.text),
- indices: _hash.indices
- });
- }
- for (var _i = 0; _i < _tweet.source.entities.urls.length; _i++) {
- var _url = _tweet.source.entities.urls[_i],
- _displayurl = (typeof _url.display_url !== "undefined" && _url.display_url !== null ? _url.display_url : _url.url),
- _linkurl = (typeof _url.expanded_url !== "undefined" && _url.expanded_url !== null ? _url.expanded_url : _url.url);
- _displayurl = _displayurl.replace(/^\w+:\/\//,'');
- if (!/^\w+:\/\//.test(_linkurl)) {
- _linkurl = 'http://' + _linkurl;
- }
- _entities.push({
- is_link: true,
- text: _displayurl,
- url: _linkurl,
- indices: _url.indices
- });
- }
- for (var _i = 0; _i < _tweet.source.entities.user_mentions.length; _i++) {
- var _user = _tweet.source.entities.user_mentions[_i];
- _entities.push({
- is_link: true,
- text: '@' + _user.screen_name,
- url: 'http://twitter.com/' + encodeURIComponent(_user.screen_name),
- indices: _user.indices
- });
- }
- for (var _i = 0; _i < this.polemics.length; _i++) {
- for (var _j = 0; _j < this.polemics[_i].keywords.length; _j++) {
- var _p = _tweet.source.text.indexOf(this.polemics[_i].keywords[_j]);
- while (_p !== -1) {
- var _end = (_p + this.polemics[_i].keywords[_j].length);
- _entities.push({
- is_link: false,
- text: this.polemics[_i].keywords[_j],
- color: this.polemics[_i].color,
- indices: [_p, _end]
- });
- _p = _tweet.source.text.indexOf(this.polemics[_i].keywords[_j], _end);
- }
- }
- }
- _entities = IriSP._(_entities).sortBy(function(_entity) {
- return _entity.indices[0];
- });
- var _currentPos = 0,
- _txt = '';
- for (var _i = 0; _i < _entities.length; _i++) {
- if (_entities[_i].indices[0] >= _currentPos) {
- _txt += _tweet.source.text.substring(_currentPos, _entities[_i].indices[0]);
- _currentPos = _entities[_i].indices[1];
- if (_entities[_i].is_link) {
- _txt += '<a href="' + _entities[_i].url + '" target="_blank">';
- } else {
- _txt += '<span style="background:' + _entities[_i].color + '">';
- }
- _txt += _entities[_i].text;
- if (_entities[_i].is_link) {
- _txt += '</a>';
- } else {
- _txt += '</span>';
- }
- }
- }
- _txt += _tweet.source.text.substring(_currentPos);
- this.$.find(".Ldt-Tweet-Avatar").attr("src",_tweet.source.user.profile_image_url);
- this.$.find(".Ldt-Tweet-ScreenName").html('@'+_tweet.source.user.screen_name);
- this.$.find(".Ldt-Tweet-ProfileLink").attr("href", "https://twitter.com/" + _tweet.source.user.screen_name);
- this.$.find(".Ldt-Tweet-FullName").html(_tweet.source.user.name);
- this.$.find(".Ldt-Tweet-Contents").html(_txt);
- this.$.find(".Ldt-Tweet-Time").html(this.l10n.original_time + new Date(_tweet.source.created_at).toLocaleTimeString() + " / " + this.l10n.video_time + _tweet.begin.toString());
- this.$.find(".Ldt-Tweet-Retweet").attr("href", "https://twitter.com/intent/retweet?tweet_id=" + _tweet.source.id_str);
- this.$.find(".Ldt-Tweet-Reply").attr("href", "https://twitter.com/intent/tweet?in_reply_to=" + _tweet.source.id_str);
- this.$.find(".Ldt-Tweet-Original").attr("href", "https://twitter.com/" + _tweet.source.user.screen_name + "/status/" + _tweet.source.id_str);
- this.player.trigger("Annotation.minimize");
- this.$.slideDown();
- this.cancelTimeout();
- if (!this.pinned) {
- this.hideTimeout();
- }
- } else {
- this.hide();
- }
-}
-
-IriSP.Widgets.Tweet.prototype.hide = function() {
- this.player.trigger("Annotation.maximize");
- this.$.slideUp();
- this.cancelTimeout();
-}
-
-IriSP.Widgets.Tweet.prototype.cancelTimeout = function() {
- if (typeof this.hide_timer !== "undefined") {
- window.clearTimeout(this.hide_timer);
- this.hide_timer = undefined;
- }
-}
-
-IriSP.Widgets.Tweet.prototype.hideTimeout = function() {
- this.cancelTimeout();
- this.hide_timer = window.setTimeout(this.functionWrapper("hide"), this.hide_timeout);
-}
Binary file metadataplayer/metadataplayer/img/loader.gif has changed
Binary file metadataplayer/metadataplayer/img/pinstripe-grey.png has changed
Binary file metadataplayer/metadataplayer/img/pinstripe-purple.png has changed
Binary file metadataplayer/metadataplayer/img/pinstripe.png has changed
Binary file metadataplayer/metadataplayer/img/player-sprites.png has changed
Binary file metadataplayer/metadataplayer/img/player_gradient.png has changed
Binary file metadataplayer/metadataplayer/img/polemic.png has changed
Binary file metadataplayer/metadataplayer/img/profile_arrow.png has changed
Binary file metadataplayer/metadataplayer/img/slice-handles.png has changed
Binary file metadataplayer/metadataplayer/img/socialbuttons.png has changed
Binary file metadataplayer/metadataplayer/img/socialcopy.png has changed
Binary file metadataplayer/metadataplayer/img/submit_annotation.png has changed
Binary file metadataplayer/metadataplayer/img/tag.png has changed
Binary file metadataplayer/metadataplayer/img/twitter_sprites.png has changed
Binary file metadataplayer/metadataplayer/img/voiceannotation.png has changed
Binary file metadataplayer/metadataplayer/img/white_arrow_long.png has changed
Binary file metadataplayer/metadataplayer/img/widget-control.png has changed
Binary file metadataplayer/metadataplayer/img/zoombuttons.png has changed
--- a/metadataplayer/oggvideo.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,50 +0,0 @@
-<!doctype html>
-<html>
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Metadataplayer test with HTML5 / OGG Video</title>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <link href='test.css' rel='stylesheet' type='text/css'>
- <script type="text/javascript" src="metadataplayer/LdtPlayer-core.js" type="text/javascript"></script>
- </head>
-
- <body>
- <h1>Metadataplayer test with HTML5 / OGG Video - Does not work with IE and Safari</h1>
- <div id="LdtPlayer"></div>
- <div id="AnnotationsListContainer"></div>
- <script type="text/javascript">
-IriSP.libFiles.defaultDir = "libs/";
-IriSP.widgetsDir = "metadataplayer";
-var _metadata = {
- url: "json/ldt-ogv.json",
- format: 'ldt'
-};
-var _config = {
- width : 620,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : 'metadataplayer/LdtPlayer-core.css',
- widgets: [
- { type: "AutoPlayer" },
- { type: "Sparkline" },
- { type: "Slider" },
- { type: "Controller" },
- { type: "Polemic" },
- { type: "Segments" },
- { type: "Annotation" },
- { type: "Tweet" },
- { type: "Tagcloud" },
- {
- type: "AnnotationsList",
- container: "AnnotationsListContainer"
- },
- { type: "Mediafragment"}
- ]
-};
-_myPlayer = new IriSP.Metadataplayer(_config);
- </script>
- </body>
-</html>
Binary file metadataplayer/player.swf has changed
--- a/metadataplayer/post-test.php Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-<?php
-
-$data = json_decode(file_get_contents("php://input"));
-
-if (!isset($data->annotations[0]->id)) {
- $data->annotations[0]->id = uniqid("annotation_");
-}
-
-if (!isset($data->annotations[0]->type)) {
- $data->annotations[0]->type = uniqid("annotationType_");
-}
-
-print_r(json_encode($data));
-
-?>
\ No newline at end of file
--- a/metadataplayer/test.css Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,56 +0,0 @@
-html, body, div, span, applet, object, iframe,
-h1, h2, h3, h4, h5, h6, p, blockquote, pre,
-a, abbr, acronym, address, big, cite, code,
-del, dfn, em, img, ins, kbd, q, s, samp,
-small, strike, strong, sub, sup, tt, var,
-b, u, i, center,
-dl, dt, dd, ol, ul, li,
-fieldset, form, label, legend,
-table, caption, tbody, tfoot, thead, tr, th, td,
-article, aside, canvas, details, embed,
-figure, figcaption, footer, header, hgroup,
-menu, nav, output, ruby, section, summary,
-time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
-}
-
-img a {
- border: none;
-}
-
-body {
- background-color: #F7F6F6;
- color: #003050;
-}
-
-body, p, h1, h2, h3 {
- font-family: 'Open Sans', Helvetica, Arial, sans-serif;
-}
-
-h1 {
- margin: 5px 0; text-align: center; font-size: 24px;
-}
-
-ul.pageindex {
- font-size: 20px; padding-left: 25px; list-style: disc;
-}
-
-h2 {
- font-size: 20px; margin: 5px 0;
-}
-
-#LdtPlayer {
- float: left;
- margin: 10px;
-}
-
-#AnnotationsListContainer {
- float: left;
- width: 400px;
- margin: 10px 0;
-}
Binary file metadataplayer/trailer.ogv has changed
--- a/metadataplayer/youtube.htm Fri Dec 14 17:15:09 2012 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,51 +0,0 @@
-<!doctype html>
-<html>
-
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- <title>Metadataplayer test with Youtube</title>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <link href='test.css' rel='stylesheet' type='text/css'>
- <script type="text/javascript" src="../build/LdtPlayer-core.js" type="text/javascript"></script>
- </head>
-
- <body>
- <h1>Metadataplayer test with Youtube</h1>
- <div id="LdtPlayer"></div>
- <div id="AnnotationsListContainer"></div>
- <script type="text/javascript">
-IriSP.libFiles.defaultDir = "libs/";
-IriSP.widgetsDir = "metadataplayer";
-var _metadata = {
- url: "json/ldt-youtube.json",
- format: 'ldt'
-};
-var _config = {
- width : 620,
- container : 'LdtPlayer',
- default_options: {
- metadata: _metadata
- },
- css : 'metadataplayer/LdtPlayer-core.css',
- widgets: [
- { type: "AutoPlayer" },
- { type: "Sparkline" },
- { type: "Slider" },
- { type: "Controller" },
- { type: "Polemic" },
- { type: "Segments" },
- { type: "Annotation" },
- { type: "CreateAnnotation" },
- { type: "Tweet" },
- { type: "Tagcloud" },
- {
- type: "AnnotationsList",
- container: "AnnotationsListContainer"
- },
- { type: "Mediafragment"}
- ]
-};
-_myPlayer = new IriSP.Metadataplayer(_config);
- </script>
- </body>
-</html>