diff --git a/blueprints-graph-sail/src/main/java/com/tinkerpop/blueprints/oupls/sail/GraphSail.java b/blueprints-graph-sail/src/main/java/com/tinkerpop/blueprints/oupls/sail/GraphSail.java index 943fa241..dfeec5a3 100644 --- a/blueprints-graph-sail/src/main/java/com/tinkerpop/blueprints/oupls/sail/GraphSail.java +++ b/blueprints-graph-sail/src/main/java/com/tinkerpop/blueprints/oupls/sail/GraphSail.java @@ -95,7 +95,7 @@ public class GraphSail extends NotifyingSailBase im private static final String NAMESPACES_VERTEX_ID = "urn:com.tinkerpop.blueprints.pgm.oupls.sail:namespaces"; - private final DataStore store = new DataStore(); + private final DataStore store; /** * Create a new RDF store using the provided Blueprints graph. Default edge indices ("p,c,pc") will be used. @@ -133,6 +133,7 @@ public void handleComment(String s) throws RDFHandlerException {} * To use GraphSail with a base Graph which does not support edge indices, provide "" as the argument. */ public GraphSail(final T graph, final String indexedPatterns) { + store = createStore(); store.sail = this; store.graph = graph; @@ -247,11 +248,15 @@ public String toString() { } //////////////////////////////////////////////////////////////////////////// + protected DataStore createStore() { + return new DataStore(); + } + /** * A context object which is shared between the Sail and its Connections */ - class DataStore { + protected static class DataStore { public T graph; public NotifyingSailBase sail; @@ -271,7 +276,7 @@ class DataStore { public Vertex getReferenceVertex() { //System.out.println("value = " + value); - Iterable i = store.graph.getVertices(VALUE, NAMESPACES_VERTEX_ID); + Iterable i = graph.getVertices(VALUE, NAMESPACES_VERTEX_ID); // TODO: restore the close() //try { Iterator iter = i.iterator(); @@ -309,7 +314,7 @@ public Vertex addVertex(final Value value) { } public Vertex getVertex(final Value value) { - for (Vertex v : store.graph.getVertices(VALUE, value.stringValue())) { + for (Vertex v : graph.getVertices(VALUE, value.stringValue())) { if (matches(v, value)) { return v; } diff --git a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jEdgeIterable.java b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jEdgeIterable.java index d7c55ccc..f39517df 100644 --- a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jEdgeIterable.java +++ b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jEdgeIterable.java @@ -29,6 +29,7 @@ public Neo4jEdgeIterable(final Iterable relationships, final Neo4j } public Iterator iterator() { + graph.autoStartTransaction(); return new Iterator() { private final Iterator itty = relationships.iterator(); private Relationship nextRelationship = null; diff --git a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jGraph.java b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jGraph.java index 2b04b295..96c91aa1 100644 --- a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jGraph.java +++ b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jGraph.java @@ -285,7 +285,6 @@ public Index getIndex(final String indexName, final Class /** * {@inheritDoc} - *

* Note that this method will force a successful closing of the current * thread's transaction. As such, once the index is dropped, the operation * is committed. @@ -348,7 +347,6 @@ else if (id instanceof Number) /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a * transaction. If the graph is not currently in a transaction, then the * operation runs efficiently and correctly. If the graph is currently in a @@ -372,7 +370,6 @@ public Iterable getVertices(final String key, final Object value) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a * transaction. If the graph is not currently in a transaction, then the * operation runs efficiently and correctly. If the graph is currently in a diff --git a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jIndex.java b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jIndex.java index e2288eb2..1fd67be2 100644 --- a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jIndex.java +++ b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/Neo4jIndex.java @@ -55,7 +55,6 @@ public void put(final String key, final Object value, final T element) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. @@ -70,7 +69,6 @@ public CloseableIterable get(final String key, final Object value) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. @@ -85,7 +83,6 @@ public CloseableIterable query(final String key, final Object query) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. diff --git a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/batch/Neo4jBatchGraph.java b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/batch/Neo4jBatchGraph.java index 99fb2246..e737e726 100644 --- a/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/batch/Neo4jBatchGraph.java +++ b/blueprints-neo4j-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j/batch/Neo4jBatchGraph.java @@ -36,7 +36,6 @@ /** * A Blueprints implementation of the Neo4j batch inserter for bulk loading data into a Neo4j graph. * This is a single threaded, non-transactional bulk loader and should not be used for any other reason than for massive initial data loads. - *

* Neo4jBatchGraph is not a completely faithful Blueprints implementation. * Many methods throw UnsupportedOperationExceptions and take unique arguments. Be sure to review each method's JavaDoc. * The Neo4j "reference node" (vertex 0) is automatically created and is not removed until the database is shutdown() (do not add edges to the reference node). @@ -205,7 +204,6 @@ public BatchInserter getRawGraph() { /** * {@inheritDoc} - *

* The object id can either be null, a long id, or a Map<String,Object>. * If null, then an internal long is provided on the construction of the vertex. * If a long id is provided, then the vertex is constructed with that long id. @@ -268,30 +266,20 @@ public Vertex getVertex(final Object id) { } } - /** - * @throws UnsupportedOperationException - */ public Iterable getVertices() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getVertices(final String key, final Object value) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public void removeVertex(final Vertex vertex) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4jBatchTokens.DELETE_OPERATION_MESSAGE); } /** * {@inheritDoc} - *

* The object id must be a Map<String,Object> or null. * The id is the properties written when the vertex is created. * While it is possible to Edge.setProperty(), this method is faster. @@ -313,30 +301,18 @@ public Edge addEdge(final Object id, final Vertex outVertex, final Vertex inVert return new Neo4jBatchEdge(this, finalId, label); } - /** - * @throws UnsupportedOperationException - */ public Edge getEdge(final Object id) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getEdges() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getEdges(final String key, final Object value) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public void removeEdge(final Edge edge) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4jBatchTokens.DELETE_OPERATION_MESSAGE); } @@ -366,9 +342,6 @@ public Iterable> getIndices() { return (Iterable) this.indices.values(); } - /** - * @throws UnsupportedOperationException - */ public void dropIndex(final String indexName) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4jBatchTokens.DELETE_OPERATION_MESSAGE); } diff --git a/blueprints-neo4j2-graph/pom.xml b/blueprints-neo4j2-graph/pom.xml index c277c451..6958346b 100644 --- a/blueprints-neo4j2-graph/pom.xml +++ b/blueprints-neo4j2-graph/pom.xml @@ -12,7 +12,7 @@ Blueprints-Neo4j2Graph Blueprints property graph implementation for the Neo4j 2 graph database - 2.1.6 + 2.2.1 @@ -38,6 +38,11 @@ ${neo4j.version} compile + + org.apache.geronimo.specs + geronimo-jta_1.1_spec + 1.1.1 + com.tinkerpop.rexster rexster-core diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Edge.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Edge.java index 745e191c..ffbe661a 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Edge.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Edge.java @@ -19,12 +19,12 @@ public Neo4j2Edge(final Relationship relationship, final Neo4j2Graph graph) { } public String getLabel() { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); return ((Relationship) this.rawElement).getType().name(); } public Vertex getVertex(final Direction direction) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (direction.equals(Direction.OUT)) return new Neo4j2Vertex(((Relationship) this.rawElement).getStartNode(), this.graph); else if (direction.equals(Direction.IN)) diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2EdgeIterable.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2EdgeIterable.java index 2e0f21a1..f902790a 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2EdgeIterable.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2EdgeIterable.java @@ -28,17 +28,18 @@ public Neo4j2EdgeIterable(final Iterable relationships, final Neo4 } public Iterator iterator() { + graph.autoStartTransaction(); return new Iterator() { private final Iterator itty = relationships.iterator(); private Relationship nextRelationship = null; public void remove() { - graph.autoStartTransaction(true); + graph.autoStartTransaction(); this.itty.remove(); } public Neo4j2Edge next() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); if (!checkTransaction) { return new Neo4j2Edge(this.itty.next(), graph); } else { @@ -62,7 +63,7 @@ public Neo4j2Edge next() { } public boolean hasNext() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); if (!checkTransaction) return this.itty.hasNext(); else { diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Element.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Element.java index 4c5ec266..e6ed7d05 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Element.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Element.java @@ -10,11 +10,7 @@ import org.neo4j.graphdb.Relationship; import java.lang.reflect.Array; -import java.util.ArrayList; -import java.util.Collection; -import java.util.HashSet; -import java.util.Iterator; -import java.util.Set; +import java.util.*; /** * @author Marko A. Rodriguez (http://markorodriguez.com) @@ -29,7 +25,7 @@ public Neo4j2Element(final Neo4j2Graph graph) { } public T getProperty(final String key) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (this.rawElement.hasProperty(key)) return (T) tryConvertCollectionToArrayList(this.rawElement.getProperty(key)); else @@ -38,7 +34,7 @@ public T getProperty(final String key) { public void setProperty(final String key, final Object value) { ElementHelper.validateProperty(this, key, value); - this.graph.autoStartTransaction(true); + this.graph.autoStartTransaction(); // attempts to take a collection and convert it to an array so that Neo4j can consume it this.rawElement.setProperty(key, tryConvertCollectionToArray(value)); } @@ -47,13 +43,13 @@ public T removeProperty(final String key) { if (!this.rawElement.hasProperty(key)) return null; else { - this.graph.autoStartTransaction(true); + this.graph.autoStartTransaction(); return (T) this.rawElement.removeProperty(key); } } public Set getPropertyKeys() { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); final Set keys = new HashSet(); for (final String key : this.rawElement.getPropertyKeys()) { keys.add(key); @@ -70,7 +66,7 @@ public PropertyContainer getRawElement() { } public Object getId() { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (this.rawElement instanceof Node) { return ((Node) this.rawElement).getId(); } else { diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Graph.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Graph.java index 9cd71cd8..5e4ef659 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Graph.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Graph.java @@ -1,46 +1,18 @@ package com.tinkerpop.blueprints.impls.neo4j2; -import com.tinkerpop.blueprints.Edge; -import com.tinkerpop.blueprints.Element; -import com.tinkerpop.blueprints.Features; -import com.tinkerpop.blueprints.GraphQuery; -import com.tinkerpop.blueprints.Index; -import com.tinkerpop.blueprints.IndexableGraph; -import com.tinkerpop.blueprints.KeyIndexableGraph; -import com.tinkerpop.blueprints.MetaGraph; -import com.tinkerpop.blueprints.Parameter; -import com.tinkerpop.blueprints.TransactionalGraph; -import com.tinkerpop.blueprints.Vertex; -import com.tinkerpop.blueprints.util.DefaultGraphQuery; -import com.tinkerpop.blueprints.util.ExceptionFactory; -import com.tinkerpop.blueprints.util.KeyIndexableGraphHelper; -import com.tinkerpop.blueprints.util.PropertyFilteredIterable; -import com.tinkerpop.blueprints.util.StringFactory; +import com.tinkerpop.blueprints.*; +import com.tinkerpop.blueprints.util.*; import org.apache.commons.configuration.Configuration; import org.apache.commons.configuration.ConfigurationConverter; -import org.neo4j.cypher.javacompat.ExecutionEngine; -import org.neo4j.graphdb.DynamicRelationshipType; -import org.neo4j.graphdb.GraphDatabaseService; -import org.neo4j.graphdb.Node; -import org.neo4j.graphdb.NotFoundException; -import org.neo4j.graphdb.PropertyContainer; -import org.neo4j.graphdb.Relationship; -import org.neo4j.graphdb.Transaction; -import org.neo4j.graphdb.TransactionFailureException; +import org.neo4j.graphdb.*; import org.neo4j.graphdb.factory.GraphDatabaseBuilder; import org.neo4j.graphdb.factory.GraphDatabaseFactory; import org.neo4j.graphdb.index.AutoIndexer; import org.neo4j.graphdb.index.RelationshipIndex; -import org.neo4j.kernel.GraphDatabaseAPI; -import org.neo4j.kernel.impl.core.NodeManager; -import org.neo4j.kernel.impl.transaction.AbstractTransactionManager; +import org.neo4j.graphdb.schema.IndexDefinition; import org.neo4j.tooling.GlobalGraphOperations; -import javax.transaction.Status; -import javax.transaction.SystemException; -import javax.transaction.TransactionManager; import java.util.*; -import java.util.logging.Level; import java.util.logging.Logger; /** @@ -48,560 +20,529 @@ * * @author Marko A. Rodriguez (http://markorodriguez.com) */ -public class Neo4j2Graph implements TransactionalGraph, IndexableGraph, KeyIndexableGraph, MetaGraph { - private static final Logger logger = Logger.getLogger(Neo4j2Graph.class.getName()); - - private GraphDatabaseService rawGraph; - private static final String INDEXED_KEYS_POSTFIX = ":indexed_keys"; - - protected final ThreadLocal tx = new ThreadLocal() { - protected Transaction initialValue() { - return null; - } - }; - - protected final ThreadLocal checkElementsInTransaction = new ThreadLocal() { - protected Boolean initialValue() { - return false; - } - }; - - private static final Features FEATURES = new Features(); - - static { - - FEATURES.supportsSerializableObjectProperty = false; - FEATURES.supportsBooleanProperty = true; - FEATURES.supportsDoubleProperty = true; - FEATURES.supportsFloatProperty = true; - FEATURES.supportsIntegerProperty = true; - FEATURES.supportsPrimitiveArrayProperty = true; - FEATURES.supportsUniformListProperty = true; - FEATURES.supportsMixedListProperty = false; - FEATURES.supportsLongProperty = true; - FEATURES.supportsMapProperty = false; - FEATURES.supportsStringProperty = true; - - FEATURES.supportsDuplicateEdges = true; - FEATURES.supportsSelfLoops = true; - FEATURES.isPersistent = true; - FEATURES.isWrapper = false; - FEATURES.supportsVertexIteration = true; - FEATURES.supportsEdgeIteration = true; - FEATURES.supportsVertexIndex = true; - FEATURES.supportsEdgeIndex = true; - FEATURES.ignoresSuppliedIds = true; - FEATURES.supportsTransactions = true; - FEATURES.supportsIndices = true; - FEATURES.supportsKeyIndices = true; - FEATURES.supportsVertexKeyIndex = true; - FEATURES.supportsEdgeKeyIndex = true; - FEATURES.supportsEdgeRetrieval = true; - FEATURES.supportsVertexProperties = true; - FEATURES.supportsEdgeProperties = true; - FEATURES.supportsThreadedTransactions = false; - FEATURES.supportsThreadIsolatedTransactions = true; - } - - private final TransactionManager transactionManager; - private final ExecutionEngine cypher; - - protected boolean checkElementsInTransaction() { - if (this.tx.get() == null) { - return false; - } else { - return this.checkElementsInTransaction.get(); - } - } - - /** - * Neo4j's transactions are not consistent between the graph and the graph - * indices. Moreover, global graph operations are not consistent. For - * example, if a vertex is removed and then an index is queried in the same - * transaction, the removed vertex can be returned. This method allows the - * developer to turn on/off a Neo4j2Graph 'hack' that ensures transactional - * consistency. The default behavior for Neo4j2Graph is to use Neo4j's native - * behavior which ensures speed at the expensive of consistency. Note that - * this boolean switch is local to the current thread (i.e. a ThreadLocal - * variable). - * - * @param checkElementsInTransaction check whether an element is in the transaction between - * returning it - */ - public void setCheckElementsInTransaction(final boolean checkElementsInTransaction) { - this.checkElementsInTransaction.set(checkElementsInTransaction); - } - - public Neo4j2Graph(final String directory) { - this(directory, null); - } - - public Neo4j2Graph(final GraphDatabaseService rawGraph) { - this.rawGraph = rawGraph; - - transactionManager = ((GraphDatabaseAPI) rawGraph).getDependencyResolver().resolveDependency(TransactionManager.class); - - cypher = new ExecutionEngine(rawGraph); - init(); - } - - public Neo4j2Graph(final String directory, final Map configuration) { - try { - GraphDatabaseBuilder builder = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder(directory); - if (null != configuration) - this.rawGraph = builder.setConfig(configuration).newGraphDatabase(); - else - this.rawGraph = builder.newGraphDatabase(); - - transactionManager = ((GraphDatabaseAPI) rawGraph).getDependencyResolver().resolveDependency(TransactionManager.class); - cypher = new ExecutionEngine(rawGraph); - - init(); - - } catch (Exception e) { - if (this.rawGraph != null) - this.rawGraph.shutdown(); - throw new RuntimeException(e.getMessage(), e); - } - } - - protected void init() { - this.loadKeyIndices(); - } - - public Neo4j2Graph(final Configuration configuration) { - this(configuration.getString("blueprints.neo4j.directory", null), - ConfigurationConverter.getMap(configuration.subset("blueprints.neo4j.conf"))); - } - - private void loadKeyIndices() { - this.autoStartTransaction(true); - for (final String key : this.getInternalIndexKeys(Vertex.class)) { - this.createKeyIndex(key, Vertex.class); - } - for (final String key : this.getInternalIndexKeys(Edge.class)) { - this.createKeyIndex(key, Edge.class); - } - this.commit(); - } - - private void createInternalIndexKey(final String key, final Class elementClass) { - final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; - if (rawGraph instanceof GraphDatabaseAPI) { - final PropertyContainer pc = getGraphProperties(); - try { - final String[] keys = (String[]) pc.getProperty(propertyName); - final Set temp = new HashSet(Arrays.asList(keys)); - temp.add(key); - pc.setProperty(propertyName, temp.toArray(new String[temp.size()])); - } catch (Exception e) { - // no indexed_keys kernel data property - pc.setProperty(propertyName, new String[]{key}); - - } - } else { - throw new UnsupportedOperationException( - "Unable to create an index on a non-GraphDatabaseAPI graph"); - } - } - - private void dropInternalIndexKey(final String key, final Class elementClass) { - final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; - if (rawGraph instanceof GraphDatabaseAPI) { - final PropertyContainer pc = getGraphProperties(); - try { - final String[] keys = (String[]) pc.getProperty(propertyName); - final Set temp = new HashSet(Arrays.asList(keys)); - temp.remove(key); - pc.setProperty(propertyName, temp.toArray(new String[temp.size()])); - } catch (Exception e) { - // no indexed_keys kernel data property - } - } else { - logNotGraphDatabaseAPI(); - } - } - - public Set getInternalIndexKeys(final Class elementClass) { - final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; - if (rawGraph instanceof GraphDatabaseAPI) { - final PropertyContainer pc = getGraphProperties(); - try { - final String[] keys = (String[]) pc.getProperty(propertyName); - return new HashSet(Arrays.asList(keys)); - } catch (Exception e) { - // no indexed_keys kernel data property - } - } else { - logNotGraphDatabaseAPI(); - } - return Collections.emptySet(); - } - - private PropertyContainer getGraphProperties() { - return ((GraphDatabaseAPI) this.rawGraph).getDependencyResolver().resolveDependency(NodeManager.class).getGraphProperties(); - } - - private void logNotGraphDatabaseAPI() { - if (logger.isLoggable(Level.WARNING)) { - logger.log(Level.WARNING, "Indices are not available on non-GraphDatabaseAPI instances" + - " Current graph class is " + rawGraph.getClass().getName()); - } - } - - public synchronized Index createIndex(final String indexName, final Class indexClass, final Parameter... indexParameters) { - this.autoStartTransaction(true); - if (this.rawGraph.index().existsForNodes(indexName) || this.rawGraph.index().existsForRelationships(indexName)) { - throw ExceptionFactory.indexAlreadyExists(indexName); - } - return new Neo4j2Index(indexName, indexClass, this, indexParameters); - } - - public Index getIndex(final String indexName, final Class indexClass) { - this.autoStartTransaction(false); - if (Vertex.class.isAssignableFrom(indexClass)) { - if (this.rawGraph.index().existsForNodes(indexName)) { - return new Neo4j2Index(indexName, indexClass, this); - } else if (this.rawGraph.index().existsForRelationships(indexName)) { - throw ExceptionFactory.indexDoesNotSupportClass(indexName, indexClass); - } else { - return null; - } - } else if (Edge.class.isAssignableFrom(indexClass)) { - if (this.rawGraph.index().existsForRelationships(indexName)) { - return new Neo4j2Index(indexName, indexClass, this); - } else if (this.rawGraph.index().existsForNodes(indexName)) { - throw ExceptionFactory.indexDoesNotSupportClass(indexName, indexClass); - } else { - return null; - } - } else { - return null; - } - } - - /** - * {@inheritDoc} - *

- * Note that this method will force a successful closing of the current - * thread's transaction. As such, once the index is dropped, the operation - * is committed. - * - * @param indexName the name of the index to drop - */ - public synchronized void dropIndex(final String indexName) { - this.autoStartTransaction(true); - if (this.rawGraph.index().existsForNodes(indexName)) { - org.neo4j.graphdb.index.Index nodeIndex = this.rawGraph.index().forNodes(indexName); - if (nodeIndex.isWriteable()) { - nodeIndex.delete(); - } - } else if (this.rawGraph.index().existsForRelationships(indexName)) { - RelationshipIndex relationshipIndex = this.rawGraph.index().forRelationships(indexName); - if (relationshipIndex.isWriteable()) { - relationshipIndex.delete(); - } - } - this.commit(); - } - - public Iterable> getIndices() { - this.autoStartTransaction(false); - final List> indices = new ArrayList>(); - for (final String name : this.rawGraph.index().nodeIndexNames()) { - if (!name.equals(Neo4j2Tokens.NODE_AUTO_INDEX)) - indices.add(new Neo4j2Index(name, Vertex.class, this)); - } - for (final String name : this.rawGraph.index().relationshipIndexNames()) { - if (!name.equals(Neo4j2Tokens.RELATIONSHIP_AUTO_INDEX)) - indices.add(new Neo4j2Index(name, Edge.class, this)); - } - return indices; - } - - public Neo4j2Vertex addVertex(final Object id) { - this.autoStartTransaction(true); - return new Neo4j2Vertex(this.rawGraph.createNode(), this); - } - - public Neo4j2Vertex getVertex(final Object id) { - this.autoStartTransaction(false); - - if (null == id) - throw ExceptionFactory.vertexIdCanNotBeNull(); - - try { - final Long longId; - if (id instanceof Long) - longId = (Long) id; - else if (id instanceof Number) - longId = ((Number) id).longValue(); - else - longId = Double.valueOf(id.toString()).longValue(); - return new Neo4j2Vertex(this.rawGraph.getNodeById(longId), this); - } catch (NotFoundException e) { - return null; - } catch (NumberFormatException e) { - return null; - } - } - - /** - * {@inheritDoc} - *

- * The underlying Neo4j graph does not natively support this method within a - * transaction. If the graph is not currently in a transaction, then the - * operation runs efficiently and correctly. If the graph is currently in a - * transaction, please use setCheckElementsInTransaction() if it is - * necessary to ensure proper transactional semantics. Note that it is - * costly to check if an element is in the transaction. - * - * @return all the vertices in the graph - */ - public Iterable getVertices() { - this.autoStartTransaction(false); - return new Neo4j2VertexIterable(GlobalGraphOperations.at(rawGraph).getAllNodes(), this, this.checkElementsInTransaction()); - } - - public Iterable getVertices(final String key, final Object value) { - this.autoStartTransaction(false); - final AutoIndexer indexer = this.rawGraph.index().getNodeAutoIndexer(); - if (indexer.isEnabled() && indexer.getAutoIndexedProperties().contains(key)) - return new Neo4j2VertexIterable(this.rawGraph.index().getNodeAutoIndexer().getAutoIndex().get(key, value), this, this.checkElementsInTransaction()); - else - return new PropertyFilteredIterable(key, value, this.getVertices()); - } - - /** - * {@inheritDoc} - *

- * The underlying Neo4j graph does not natively support this method within a - * transaction. If the graph is not currently in a transaction, then the - * operation runs efficiently and correctly. If the graph is currently in a - * transaction, please use setCheckElementsInTransaction() if it is - * necessary to ensure proper transactional semantics. Note that it is - * costly to check if an element is in the transaction. - * - * @return all the edges in the graph - */ - public Iterable getEdges() { - this.autoStartTransaction(false); - return new Neo4j2EdgeIterable(GlobalGraphOperations.at(rawGraph).getAllRelationships(), this, this.checkElementsInTransaction()); - } - - public Iterable getEdges(final String key, final Object value) { - this.autoStartTransaction(false); - final AutoIndexer indexer = this.rawGraph.index().getRelationshipAutoIndexer(); - if (indexer.isEnabled() && indexer.getAutoIndexedProperties().contains(key)) - return new Neo4j2EdgeIterable(this.rawGraph.index().getRelationshipAutoIndexer().getAutoIndex().get(key, value), this, - this.checkElementsInTransaction()); - else - return new PropertyFilteredIterable(key, value, this.getEdges()); - } - - public void dropKeyIndex(final String key, final Class elementClass) { - if (elementClass == null) - throw ExceptionFactory.classForElementCannotBeNull(); - - this.autoStartTransaction(true); - if (Vertex.class.isAssignableFrom(elementClass)) { - if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) - return; - this.rawGraph.index().getNodeAutoIndexer().stopAutoIndexingProperty(key); - } else if (Edge.class.isAssignableFrom(elementClass)) { - if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) - return; - this.rawGraph.index().getRelationshipAutoIndexer().stopAutoIndexingProperty(key); - } else { - throw ExceptionFactory.classIsNotIndexable(elementClass); - } - this.dropInternalIndexKey(key, elementClass); - } - - public void createKeyIndex(final String key, final Class elementClass, final Parameter... indexParameters) { - if (elementClass == null) - throw ExceptionFactory.classForElementCannotBeNull(); - - if (Vertex.class.isAssignableFrom(elementClass)) { - this.autoStartTransaction(true); - if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) - this.rawGraph.index().getNodeAutoIndexer().setEnabled(true); - - this.rawGraph.index().getNodeAutoIndexer().startAutoIndexingProperty(key); - if (!this.getInternalIndexKeys(Vertex.class).contains(key)) { - - KeyIndexableGraphHelper.reIndexElements(this, this.getVertices(), new HashSet(Arrays.asList(key))); - this.autoStartTransaction(true); - this.createInternalIndexKey(key, elementClass); - } - } else if (Edge.class.isAssignableFrom(elementClass)) { - this.autoStartTransaction(true); - if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) - this.rawGraph.index().getRelationshipAutoIndexer().setEnabled(true); - - this.rawGraph.index().getRelationshipAutoIndexer().startAutoIndexingProperty(key); - if (!this.getInternalIndexKeys(Edge.class).contains(key)) { - KeyIndexableGraphHelper.reIndexElements(this, this.getEdges(), new HashSet(Arrays.asList(key))); - this.autoStartTransaction(true); - this.createInternalIndexKey(key, elementClass); - } - } else { - throw ExceptionFactory.classIsNotIndexable(elementClass); - } - } - - public Set getIndexedKeys(final Class elementClass) { - if (elementClass == null) - throw ExceptionFactory.classForElementCannotBeNull(); - - if (Vertex.class.isAssignableFrom(elementClass)) { - if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) - return Collections.emptySet(); - return this.rawGraph.index().getNodeAutoIndexer().getAutoIndexedProperties(); - } else if (Edge.class.isAssignableFrom(elementClass)) { - if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) - return Collections.emptySet(); - return this.rawGraph.index().getRelationshipAutoIndexer().getAutoIndexedProperties(); - } else { - throw ExceptionFactory.classIsNotIndexable(elementClass); - } - } - - public void removeVertex(final Vertex vertex) { - this.autoStartTransaction(true); - - try { - final Node node = ((Neo4j2Vertex) vertex).getRawVertex(); - for (final Relationship relationship : node.getRelationships(org.neo4j.graphdb.Direction.BOTH)) { - relationship.delete(); - } - node.delete(); - } catch (NotFoundException nfe) { - throw ExceptionFactory.vertexWithIdDoesNotExist(vertex.getId()); - } catch (IllegalStateException ise) { - // wrap the neo4j exception so that the message is consistent in blueprints. - throw ExceptionFactory.vertexWithIdDoesNotExist(vertex.getId()); - } - } - - public Neo4j2Edge addEdge(final Object id, final Vertex outVertex, final Vertex inVertex, final String label) { - if (label == null) - throw ExceptionFactory.edgeLabelCanNotBeNull(); - - this.autoStartTransaction(true); - return new Neo4j2Edge(((Neo4j2Vertex) outVertex).getRawVertex().createRelationshipTo(((Neo4j2Vertex) inVertex).getRawVertex(), - DynamicRelationshipType.withName(label)), this); - } - - public Neo4j2Edge getEdge(final Object id) { - if (null == id) - throw ExceptionFactory.edgeIdCanNotBeNull(); - - this.autoStartTransaction(true); - try { - final Long longId; - if (id instanceof Long) - longId = (Long) id; - else - longId = Double.valueOf(id.toString()).longValue(); - return new Neo4j2Edge(this.rawGraph.getRelationshipById(longId), this); - } catch (NotFoundException e) { - return null; - } catch (NumberFormatException e) { - return null; - } - } - - public void removeEdge(final Edge edge) { - this.autoStartTransaction(true); - ((Relationship) ((Neo4j2Edge) edge).getRawElement()).delete(); - } - - public void stopTransaction(Conclusion conclusion) { - if (Conclusion.SUCCESS == conclusion) - commit(); - else - rollback(); - } - - public void commit() { - if (null == tx.get()) { - return; - } - - try { - tx.get().success(); - } finally { - tx.get().finish(); - tx.remove(); - } - } - - public void rollback() { - if (null == tx.get()) { - return; - } - - try { - javax.transaction.Transaction t = transactionManager.getTransaction(); - if (t == null || t.getStatus() == Status.STATUS_ROLLEDBACK) { - return; - } - tx.get().failure(); - } catch (SystemException e) { - throw new RuntimeException(e); - } finally { - tx.get().close(); - tx.remove(); - } - } - - public void shutdown() { - try { - this.commit(); - } catch (TransactionFailureException e) { - logger.warning("Failure on shutdown "+e.getMessage()); - // TODO: inspect why certain transactions fail - } - this.rawGraph.shutdown(); - } - - // The forWrite flag is true when the autoStartTransaction method is - // called before any operation which will modify the graph in any way. It - // is not used in this simple implementation but is required in subclasses - // which enforce transaction rules. Now that Neo4j reads also require a - // transaction to be open it is otherwise impossible to tell the difference - // between the beginning of a write operation and the beginning of a read - // operation. - public void autoStartTransaction(boolean forWrite) { - if (tx.get() == null) - tx.set(this.rawGraph.beginTx()); - } - - public GraphDatabaseService getRawGraph() { - return this.rawGraph; - } - - public Features getFeatures() { - return FEATURES; - } - - public String toString() { - return StringFactory.graphString(this, this.rawGraph.toString()); - } - - public GraphQuery query() { - return new DefaultGraphQuery(this); - } - - public Iterator> query(String query, Map params) { - return cypher.execute(query,params==null ? Collections.emptyMap() : params).iterator(); - } - - public boolean nodeIsDeleted(long nodeId) { - return ((AbstractTransactionManager) transactionManager).getTransactionState().nodeIsDeleted(nodeId); - } - public boolean relationshipIsDeleted(long nodeId) { - return ((AbstractTransactionManager) transactionManager).getTransactionState().relationshipIsDeleted(nodeId); - } +public class Neo4j2Graph implements AutoCloseable, TransactionalGraph, IndexableGraph, KeyIndexableGraph, + MetaGraph { + + private static final Logger logger = Logger.getLogger(Neo4j2Graph.class.getName()); + + private GraphDatabaseService rawGraph; + + private static final String INDEXED_KEYS_POSTFIX = ":indexed_keys"; + + protected final ThreadLocal tx = new ThreadLocal() { + protected Transaction initialValue() { + return null; + } + }; + + protected final ThreadLocal checkElementsInTransaction = new ThreadLocal() { + protected Boolean initialValue() { + return false; + } + }; + + private static final Features FEATURES = new Features(); + + static { + + FEATURES.supportsSerializableObjectProperty = false; + FEATURES.supportsBooleanProperty = true; + FEATURES.supportsDoubleProperty = true; + FEATURES.supportsFloatProperty = true; + FEATURES.supportsIntegerProperty = true; + FEATURES.supportsPrimitiveArrayProperty = true; + FEATURES.supportsUniformListProperty = true; + FEATURES.supportsMixedListProperty = false; + FEATURES.supportsLongProperty = true; + FEATURES.supportsMapProperty = false; + FEATURES.supportsStringProperty = true; + + FEATURES.supportsDuplicateEdges = true; + FEATURES.supportsSelfLoops = true; + FEATURES.isPersistent = true; + FEATURES.isWrapper = false; + FEATURES.supportsVertexIteration = true; + FEATURES.supportsEdgeIteration = true; + FEATURES.supportsVertexIndex = true; + FEATURES.supportsEdgeIndex = true; + FEATURES.ignoresSuppliedIds = true; + FEATURES.supportsTransactions = true; + FEATURES.supportsIndices = true; + FEATURES.supportsKeyIndices = true; + FEATURES.supportsVertexKeyIndex = true; + FEATURES.supportsEdgeKeyIndex = true; + FEATURES.supportsEdgeRetrieval = true; + FEATURES.supportsVertexProperties = true; + FEATURES.supportsEdgeProperties = true; + FEATURES.supportsThreadedTransactions = false; + FEATURES.supportsThreadIsolatedTransactions = true; + } + + protected boolean checkElementsInTransaction() { + if (this.tx.get() == null) { + return false; + } else { + return this.checkElementsInTransaction.get(); + } + } + + /** + * Neo4j's transactions are not consistent between the graph and the graph indices. Moreover, global graph + * operations are not consistent. For example, if a vertex is removed and then an index is queried in the same + * transaction, the removed vertex can be returned. This method allows the developer to turn on/off a Neo4j2Graph + * 'hack' that ensures transactional consistency. The default behavior for Neo4j2Graph is to use Neo4j's native + * behavior which ensures speed at the expensive of consistency. Note that this boolean switch is local to the + * current thread (i.e. a ThreadLocal variable). + * + * @param checkElementsInTransaction + * check whether an element is in the transaction between returning it + */ + public void setCheckElementsInTransaction(final boolean checkElementsInTransaction) { + this.checkElementsInTransaction.set(checkElementsInTransaction); + } + + public Neo4j2Graph(final String directory) { + this(directory, null); + } + + public Neo4j2Graph(final GraphDatabaseService rawGraph) { + this.rawGraph = rawGraph; + init(); + } + + public Neo4j2Graph(final String directory, final Map configuration) { + try { + GraphDatabaseBuilder builder = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder(directory); + if (null != configuration) { + this.rawGraph = builder.setConfig(configuration).newGraphDatabase(); + } else { + this.rawGraph = builder.newGraphDatabase(); + } + init(); + } catch (Exception e) { + if (this.rawGraph != null) + this.rawGraph.shutdown(); + throw new RuntimeException(e.getMessage(), e); + } + } + + protected void init() { + this.loadKeyIndices(); + } + + public Neo4j2Graph(final Configuration configuration) { + this(configuration.getString("blueprints.neo4j.directory", null), ConfigurationConverter.getMap(configuration + .subset("blueprints.neo4j.conf"))); + } + + private void loadKeyIndices() { + this.autoStartKeyTransaction(); + for (final String key : this.getInternalIndexKeys(Vertex.class)) { + this.createKeyIndex(key, Vertex.class); + } + for (final String key : this.getInternalIndexKeys(Edge.class)) { + this.createKeyIndex(key, Edge.class); + } + this.commit(); + } + + private void createInternalIndexKey(final String key, final Class elementClass) { + this.autoStartKeyTransaction(); + final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; + rawGraph.schema().indexFor(DynamicLabel.label(propertyName)).on(key).create(); + this.commit(); + } + + private void dropInternalIndexKey(final String key, final Class elementClass) { + this.autoStartKeyTransaction(); + final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; + Iterable indexes = rawGraph.schema().getIndexes(DynamicLabel.label(propertyName)); + for(IndexDefinition index : indexes) { + for (String indexKey : index.getPropertyKeys()) { + if (indexKey.equals(key)) { + index.drop(); + } + } + } + this.commit(); + } + + public Set getInternalIndexKeys(final Class elementClass) { + this.autoStartTransaction(); + final String propertyName = elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX; + Iterable indexes = rawGraph.schema().getIndexes(DynamicLabel.label(propertyName)); + Set keys = new HashSet(); + for(IndexDefinition index : indexes) { + for (String key : index.getPropertyKeys()) { + keys.add(key); + } + } + return keys; + } + + public synchronized Index createIndex(final String indexName, final Class indexClass, + final Parameter... indexParameters) { + this.autoStartKeyTransaction(); + if (this.rawGraph.index().existsForNodes(indexName) || this.rawGraph.index().existsForRelationships(indexName)) { + throw ExceptionFactory.indexAlreadyExists(indexName); + } + Neo4j2Index index = new Neo4j2Index(indexName, indexClass, this, indexParameters); + this.commit(); + return index; + } + + public Index getIndex(final String indexName, final Class indexClass) { + this.autoStartTransaction(); + if (Vertex.class.isAssignableFrom(indexClass)) { + if (this.rawGraph.index().existsForNodes(indexName)) { + return new Neo4j2Index(indexName, indexClass, this); + } else if (this.rawGraph.index().existsForRelationships(indexName)) { + throw ExceptionFactory.indexDoesNotSupportClass(indexName, indexClass); + } else { + return null; + } + } else if (Edge.class.isAssignableFrom(indexClass)) { + if (this.rawGraph.index().existsForRelationships(indexName)) { + return new Neo4j2Index(indexName, indexClass, this); + } else if (this.rawGraph.index().existsForNodes(indexName)) { + throw ExceptionFactory.indexDoesNotSupportClass(indexName, indexClass); + } else { + return null; + } + } else { + return null; + } + } + + /** + * {@inheritDoc} + * Note that this method will force a successful closing of the current thread's transaction. As such, once the + * index is dropped, the operation is committed. + * + * @param indexName + * the name of the index to drop + */ + public synchronized void dropIndex(final String indexName) { + this.autoStartKeyTransaction(); + if (this.rawGraph.index().existsForNodes(indexName)) { + org.neo4j.graphdb.index.Index nodeIndex = this.rawGraph.index().forNodes(indexName); + if (nodeIndex.isWriteable()) { + nodeIndex.delete(); + } + } else if (this.rawGraph.index().existsForRelationships(indexName)) { + RelationshipIndex relationshipIndex = this.rawGraph.index().forRelationships(indexName); + if (relationshipIndex.isWriteable()) { + relationshipIndex.delete(); + } + } + this.commit(); + } + + public Iterable> getIndices() { + this.autoStartTransaction(); + final List> indices = new ArrayList>(); + for (final String name : this.rawGraph.index().nodeIndexNames()) { + if (!name.equals(Neo4j2Tokens.NODE_AUTO_INDEX)) + indices.add(new Neo4j2Index(name, Vertex.class, this)); + } + for (final String name : this.rawGraph.index().relationshipIndexNames()) { + if (!name.equals(Neo4j2Tokens.RELATIONSHIP_AUTO_INDEX)) + indices.add(new Neo4j2Index(name, Edge.class, this)); + } + return indices; + } + + public Neo4j2Vertex addVertex(final Object id) { + this.autoStartTransaction(); + return new Neo4j2Vertex(this.rawGraph.createNode(), this); + } + + public Neo4j2Vertex getVertex(final Object id) { + this.autoStartTransaction(); + if (null == id) + throw ExceptionFactory.vertexIdCanNotBeNull(); + try { + final Long longId; + if (id instanceof Long) + longId = (Long) id; + else if (id instanceof Number) + longId = ((Number) id).longValue(); + else + longId = Double.valueOf(id.toString()).longValue(); + return new Neo4j2Vertex(this.rawGraph.getNodeById(longId), this); + } catch (NotFoundException e) { + return null; + } catch (NumberFormatException e) { + return null; + } + } + + /** + * {@inheritDoc} + * The underlying Neo4j graph does not natively support this method within a transaction. If the graph is not + * currently in a transaction, then the operation runs efficiently and correctly. If the graph is currently in a + * transaction, please use setCheckElementsInTransaction() if it is necessary to ensure proper transactional + * semantics. Note that it is costly to check if an element is in the transaction. + * + * @return all the vertices in the graph + */ + public Iterable getVertices() { + this.autoStartTransaction(); + return new Neo4j2VertexIterable(GlobalGraphOperations.at(rawGraph).getAllNodes(), this, + this.checkElementsInTransaction()); + } + + public Iterable getVertices(final String key, final Object value) { + this.autoStartTransaction(); + final AutoIndexer indexer = this.rawGraph.index().getNodeAutoIndexer(); + if (indexer.isEnabled() && indexer.getAutoIndexedProperties().contains(key)) + return new Neo4j2VertexIterable(this.rawGraph.index().getNodeAutoIndexer().getAutoIndex().get(key, value), + this, this.checkElementsInTransaction()); + else + return new PropertyFilteredIterable(key, value, this.getVertices()); + } + + /** + * {@inheritDoc} + * The underlying Neo4j graph does not natively support this method within a transaction. If the graph is not + * currently in a transaction, then the operation runs efficiently and correctly. If the graph is currently in a + * transaction, please use setCheckElementsInTransaction() if it is necessary to ensure proper transactional + * semantics. Note that it is costly to check if an element is in the transaction. + * + * @return all the edges in the graph + */ + public Iterable getEdges() { + this.autoStartTransaction(); + return new Neo4j2EdgeIterable(GlobalGraphOperations.at(rawGraph).getAllRelationships(), this, + this.checkElementsInTransaction()); + } + + public Iterable getEdges(final String key, final Object value) { + this.autoStartTransaction(); + final AutoIndexer indexer = this.rawGraph.index().getRelationshipAutoIndexer(); + if (indexer.isEnabled() && indexer.getAutoIndexedProperties().contains(key)) + return new Neo4j2EdgeIterable(this.rawGraph.index().getRelationshipAutoIndexer().getAutoIndex() + .get(key, value), this, this.checkElementsInTransaction()); + else + return new PropertyFilteredIterable(key, value, this.getEdges()); + } + + public void dropKeyIndex(final String key, final Class elementClass) { + if (elementClass == null) + throw ExceptionFactory.classForElementCannotBeNull(); + this.autoStartKeyTransaction(); + if (Vertex.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) + return; + this.rawGraph.index().getNodeAutoIndexer().stopAutoIndexingProperty(key); + } else if (Edge.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) + return; + this.rawGraph.index().getRelationshipAutoIndexer().stopAutoIndexingProperty(key); + } else { + throw ExceptionFactory.classIsNotIndexable(elementClass); + } + this.dropInternalIndexKey(key, elementClass); + this.commit(); + } + + public void createKeyIndex(final String key, final Class elementClass, + final Parameter... indexParameters) { + if (elementClass == null) + throw ExceptionFactory.classForElementCannotBeNull(); + this.autoStartKeyTransaction(); + if (Vertex.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) + this.rawGraph.index().getNodeAutoIndexer().setEnabled(true); + + this.rawGraph.index().getNodeAutoIndexer().startAutoIndexingProperty(key); + if (!this.getInternalIndexKeys(Vertex.class).contains(key)) { + + KeyIndexableGraphHelper.reIndexElements(this, this.getVertices(), + new HashSet(Arrays.asList(key))); + this.autoStartTransaction(); + this.createInternalIndexKey(key, elementClass); + } + } else if (Edge.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) + this.rawGraph.index().getRelationshipAutoIndexer().setEnabled(true); + + this.rawGraph.index().getRelationshipAutoIndexer().startAutoIndexingProperty(key); + if (!this.getInternalIndexKeys(Edge.class).contains(key)) { + KeyIndexableGraphHelper.reIndexElements(this, this.getEdges(), new HashSet(Arrays.asList(key))); + this.autoStartTransaction(); + this.createInternalIndexKey(key, elementClass); + } + } else { + throw ExceptionFactory.classIsNotIndexable(elementClass); + } + this.commit(); + } + + public Set getIndexedKeys(final Class elementClass) { + if (elementClass == null) + throw ExceptionFactory.classForElementCannotBeNull(); + this.autoStartTransaction(); + if (Vertex.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getNodeAutoIndexer().isEnabled()) + return Collections.emptySet(); + return this.rawGraph.index().getNodeAutoIndexer().getAutoIndexedProperties(); + } else if (Edge.class.isAssignableFrom(elementClass)) { + if (!this.rawGraph.index().getRelationshipAutoIndexer().isEnabled()) + return Collections.emptySet(); + return this.rawGraph.index().getRelationshipAutoIndexer().getAutoIndexedProperties(); + } else { + throw ExceptionFactory.classIsNotIndexable(elementClass); + } + } + + public void removeVertex(final Vertex vertex) { + this.autoStartTransaction(); + + try { + final Node node = ((Neo4j2Vertex) vertex).getRawVertex(); + for (final Relationship relationship : node.getRelationships(org.neo4j.graphdb.Direction.BOTH)) { + relationship.delete(); + } + node.delete(); + } catch (NotFoundException nfe) { + throw ExceptionFactory.vertexWithIdDoesNotExist(vertex.getId()); + } catch (IllegalStateException ise) { + // wrap the neo4j exception so that the message is consistent in blueprints. + throw ExceptionFactory.vertexWithIdDoesNotExist(vertex.getId()); + } + } + + public Neo4j2Edge addEdge(final Object id, final Vertex outVertex, final Vertex inVertex, final String label) { + if (label == null) + throw ExceptionFactory.edgeLabelCanNotBeNull(); + + this.autoStartTransaction(); + return new Neo4j2Edge(((Neo4j2Vertex) outVertex).getRawVertex().createRelationshipTo( + ((Neo4j2Vertex) inVertex).getRawVertex(), DynamicRelationshipType.withName(label)), this); + } + + public Neo4j2Edge getEdge(final Object id) { + if (null == id) + throw ExceptionFactory.edgeIdCanNotBeNull(); + + this.autoStartTransaction(); + try { + final Long longId; + if (id instanceof Long) + longId = (Long) id; + else + longId = Double.valueOf(id.toString()).longValue(); + return new Neo4j2Edge(this.rawGraph.getRelationshipById(longId), this); + } catch (NotFoundException e) { + return null; + } catch (NumberFormatException e) { + return null; + } + } + + public void removeEdge(final Edge edge) { + this.autoStartTransaction(); + ((Relationship) ((Neo4j2Edge) edge).getRawElement()).delete(); + } + + /** + * Since Blueprints 2.3.0 stopTransaction(Conclusion) has been deprecated in favor of commit() and rollback(). Same + * semantics as SUCCESS/FAILURE, but less typing for the developer. + */ + @Deprecated + public void stopTransaction(Conclusion conclusion) { + if (Conclusion.SUCCESS == conclusion) + commit(); + else + rollback(); + } + + public void commit() { + if (null == tx.get()) { + return; + } + try { + tx.get().success(); + } finally { + tx.get().close(); + tx.remove(); + } + } + + public void rollback() { + if (null == tx.get()) { + return; + } + try { + tx.get().failure(); + } finally { + tx.get().close(); + tx.remove(); + } + } + + public void shutdown() { + try { + this.commit(); + } catch (TransactionFailureException e) { + logger.warning("Failure on shutdown " + e.getMessage()); + // TODO: inspect why certain transactions fail + } + this.rawGraph.shutdown(); + } + + public void autoStartTransaction() { + if (tx.get() == null) + tx.set(this.rawGraph.beginTx()); + } + + public void autoStartKeyTransaction() { + this.commit(); + tx.set(this.rawGraph.beginTx()); + } + + public GraphDatabaseService getRawGraph() { + return this.rawGraph; + } + + public Features getFeatures() { + return FEATURES; + } + + public String toString() { + return StringFactory.graphString(this, this.rawGraph.toString()); + } + + public GraphQuery query() { + return new DefaultGraphQuery(this); + } + + public Result query(String query, Map params) { + return params != null ? rawGraph.execute(query, params) : rawGraph.execute(query); + } + + public boolean nodeIsDeleted(long nodeId) { + boolean deleted = true; + try { + rawGraph.getNodeById(nodeId); + deleted = false; + } catch (NotFoundException ignored) { + } + return deleted; + } + + public boolean relationshipIsDeleted(long nodeId) { + boolean deleted = true; + try { + rawGraph.getRelationshipById(nodeId); + deleted = false; + } catch (NotFoundException ignored) { + } + return deleted; + } + + public void close() throws Exception { + tx.get().close(); + } } diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Index.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Index.java index f0e9199f..3a6cd1b5 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Index.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Index.java @@ -1,10 +1,6 @@ package com.tinkerpop.blueprints.impls.neo4j2; -import com.tinkerpop.blueprints.CloseableIterable; -import com.tinkerpop.blueprints.Edge; -import com.tinkerpop.blueprints.Index; -import com.tinkerpop.blueprints.Parameter; -import com.tinkerpop.blueprints.Vertex; +import com.tinkerpop.blueprints.*; import com.tinkerpop.blueprints.util.StringFactory; import org.neo4j.graphdb.Node; import org.neo4j.graphdb.PropertyContainer; @@ -46,7 +42,7 @@ public String getIndexName() { public void put(final String key, final Object value, final T element) { try { - this.graph.autoStartTransaction(true); + this.graph.autoStartTransaction(); this.rawIndex.add((S) element.getRawElement(), key, value); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); @@ -55,13 +51,12 @@ public void put(final String key, final Object value, final T element) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. */ public CloseableIterable get(final String key, final Object value) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); final IndexHits itty = this.rawIndex.get(key, value); if (this.indexClass.isAssignableFrom(Neo4j2Vertex.class)) return new Neo4j2VertexIterable((Iterable) itty, this.graph, this.graph.checkElementsInTransaction()); @@ -70,13 +65,12 @@ public CloseableIterable get(final String key, final Object value) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. */ public CloseableIterable query(final String key, final Object query) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); final IndexHits itty = this.rawIndex.query(key, query); if (this.indexClass.isAssignableFrom(Neo4j2Vertex.class)) return new Neo4j2VertexIterable((Iterable) itty, this.graph, this.graph.checkElementsInTransaction()); @@ -85,13 +79,12 @@ public CloseableIterable query(final String key, final Object query) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. */ public CloseableIterable query(final Object query) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); final IndexHits itty = this.rawIndex.query(query); if (this.indexClass.isAssignableFrom(Neo4j2Vertex.class)) return new Neo4j2VertexIterable((Iterable) itty, this.graph, this.graph.checkElementsInTransaction()); @@ -100,13 +93,12 @@ public CloseableIterable query(final Object query) { /** * {@inheritDoc} - *

* The underlying Neo4j graph does not natively support this method within a transaction. * If the graph is not currently in a transaction, then the operation runs efficiently. * If the graph is in a transaction, then, for every element, a try/catch is used to determine if its in the current transaction. */ public long count(final String key, final Object value) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (!this.graph.checkElementsInTransaction()) { final IndexHits hits = this.rawIndex.get(key, value); final long count = hits.size(); @@ -125,7 +117,7 @@ public long count(final String key, final Object value) { public void remove(final String key, final Object value, final T element) { try { - this.graph.autoStartTransaction(true); + this.graph.autoStartTransaction(); this.rawIndex.remove((S) element.getRawElement(), key, value); } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); @@ -133,7 +125,7 @@ public void remove(final String key, final Object value, final T element) { } private void generateIndex(final Parameter... indexParameters) { - this.graph.autoStartTransaction(true); + this.graph.autoStartTransaction(); final IndexManager manager = this.graph.getRawGraph().index(); if (Vertex.class.isAssignableFrom(this.indexClass)) { if (indexParameters.length > 0) diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Vertex.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Vertex.java index 1df801ad..1b55c24c 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Vertex.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2Vertex.java @@ -6,12 +6,7 @@ import com.tinkerpop.blueprints.util.DefaultVertexQuery; import com.tinkerpop.blueprints.util.MultiIterable; import com.tinkerpop.blueprints.util.StringFactory; -import org.neo4j.graphdb.Direction; -import org.neo4j.graphdb.DynamicLabel; -import org.neo4j.graphdb.DynamicRelationshipType; -import org.neo4j.graphdb.Label; -import org.neo4j.graphdb.Node; -import org.neo4j.graphdb.Relationship; +import org.neo4j.graphdb.*; import java.util.ArrayList; import java.util.Arrays; @@ -30,7 +25,7 @@ public Neo4j2Vertex(final Node node, final Neo4j2Graph graph) { } public Iterable getEdges(final com.tinkerpop.blueprints.Direction direction, final String... labels) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (direction.equals(com.tinkerpop.blueprints.Direction.OUT)) return new Neo4jVertexEdgeIterable(this.graph, (Node) this.rawElement, Direction.OUTGOING, labels); else if (direction.equals(com.tinkerpop.blueprints.Direction.IN)) @@ -40,7 +35,7 @@ else if (direction.equals(com.tinkerpop.blueprints.Direction.IN)) } public Iterable getVertices(final com.tinkerpop.blueprints.Direction direction, final String... labels) { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); if (direction.equals(com.tinkerpop.blueprints.Direction.OUT)) return new Neo4jVertexVertexIterable(this.graph, (Node) this.rawElement, Direction.OUTGOING, labels); else if (direction.equals(com.tinkerpop.blueprints.Direction.IN)) @@ -54,7 +49,7 @@ public Edge addEdge(final String label, final Vertex vertex) { } public Collection getLabels() { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); final Collection labels = new ArrayList(); for (Label label : getRawVertex().getLabels()) { labels.add(label.name()); @@ -63,17 +58,17 @@ public Collection getLabels() { } public void addLabel(String label) { - graph.autoStartTransaction(true); + graph.autoStartTransaction(); getRawVertex().addLabel(DynamicLabel.label(label)); } public void removeLabel(String label) { - graph.autoStartTransaction(true); + graph.autoStartTransaction(); getRawVertex().removeLabel(DynamicLabel.label(label)); } public VertexQuery query() { - this.graph.autoStartTransaction(false); + this.graph.autoStartTransaction(); return new DefaultVertexQuery(this); } @@ -106,7 +101,7 @@ public Neo4jVertexVertexIterable(final Neo4j2Graph graph, final Node node, final } public Iterator iterator() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); final Iterator itty; if (labels.length > 0) itty = node.getRelationships(direction, labels).iterator(); @@ -115,17 +110,17 @@ public Iterator iterator() { return new Iterator() { public Neo4j2Vertex next() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); return new Neo4j2Vertex(itty.next().getOtherNode(node), graph); } public boolean hasNext() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); return itty.hasNext(); } public void remove() { - graph.autoStartTransaction(true); + graph.autoStartTransaction(); itty.remove(); } }; @@ -150,7 +145,7 @@ public Neo4jVertexEdgeIterable(final Neo4j2Graph graph, final Node node, final D } public Iterator iterator() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); final Iterator itty; if (labels.length > 0) itty = node.getRelationships(direction, labels).iterator(); @@ -159,17 +154,17 @@ public Iterator iterator() { return new Iterator() { public Neo4j2Edge next() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); return new Neo4j2Edge(itty.next(), graph); } public boolean hasNext() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); return itty.hasNext(); } public void remove() { - graph.autoStartTransaction(true); + graph.autoStartTransaction(); itty.remove(); } }; diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexIterable.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexIterable.java index b37259af..0d15307a 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexIterable.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexIterable.java @@ -28,6 +28,7 @@ public Neo4j2VertexIterable(final Iterable nodes, final Neo4j2Graph graph) } public Iterator iterator() { + graph.autoStartTransaction(); return new Iterator() { private final Iterator itty = nodes.iterator(); private Node nextNode = null; @@ -37,7 +38,6 @@ public void remove() { } public Neo4j2Vertex next() { - graph.autoStartTransaction(false); if (!checkTransaction) { return new Neo4j2Vertex(this.itty.next(), graph); } else { @@ -59,7 +59,7 @@ public Neo4j2Vertex next() { } public boolean hasNext() { - graph.autoStartTransaction(false); + graph.autoStartTransaction(); if (!checkTransaction) return this.itty.hasNext(); else { diff --git a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraph.java b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraph.java index 4f34c556..ae685e5b 100644 --- a/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraph.java +++ b/blueprints-neo4j2-graph/src/main/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraph.java @@ -1,28 +1,14 @@ package com.tinkerpop.blueprints.impls.neo4j2.batch; -import com.tinkerpop.blueprints.Edge; -import com.tinkerpop.blueprints.Element; -import com.tinkerpop.blueprints.Features; -import com.tinkerpop.blueprints.GraphQuery; -import com.tinkerpop.blueprints.Index; -import com.tinkerpop.blueprints.IndexableGraph; -import com.tinkerpop.blueprints.KeyIndexableGraph; -import com.tinkerpop.blueprints.MetaGraph; -import com.tinkerpop.blueprints.Parameter; -import com.tinkerpop.blueprints.Vertex; +import com.tinkerpop.blueprints.*; import com.tinkerpop.blueprints.util.ExceptionFactory; import com.tinkerpop.blueprints.util.StringFactory; -import org.neo4j.graphdb.DynamicRelationshipType; -import org.neo4j.graphdb.GraphDatabaseService; -import org.neo4j.graphdb.PropertyContainer; -import org.neo4j.graphdb.Transaction; +import org.neo4j.graphdb.*; import org.neo4j.graphdb.factory.GraphDatabaseBuilder; import org.neo4j.graphdb.factory.GraphDatabaseFactory; import org.neo4j.graphdb.factory.GraphDatabaseSettings; import org.neo4j.graphdb.index.AutoIndexer; import org.neo4j.index.lucene.unsafe.batchinsert.LuceneBatchInserterIndexProvider; -import org.neo4j.kernel.GraphDatabaseAPI; -import org.neo4j.kernel.impl.core.NodeManager; import org.neo4j.tooling.GlobalGraphOperations; import org.neo4j.unsafe.batchinsert.BatchInserter; import org.neo4j.unsafe.batchinsert.BatchInserterIndexProvider; @@ -36,7 +22,6 @@ /** * A Blueprints implementation of the Neo4j batch inserter for bulk loading data into a Neo4j graph. * This is a single threaded, non-transactional bulk loader and should not be used for any other reason than for massive initial data loads. - *

* Neo4j2BatchGraph is not a completely faithful Blueprints implementation. * Many methods throw UnsupportedOperationExceptions and take unique arguments. Be sure to review each method's JavaDoc. * The Neo4j "reference node" (vertex 0) is automatically created and is not removed until the database is shutdown() (do not add edges to the reference node). @@ -143,17 +128,23 @@ private void removeReferenceNodeAndFinalizeKeyIndices() { builder.setConfig(GraphDatabaseSettings.relationship_keys_indexable, edgeIndexKeys.toString().replace("[", "").replace("]", "")).setConfig(GraphDatabaseSettings.relationship_auto_indexing, "true"); rawGraphDB = builder.newGraphDatabase(); + GlobalGraphOperations graphOperations = GlobalGraphOperations.at(rawGraphDB); - Transaction tx = rawGraphDB.beginTx(); - try { - GlobalGraphOperations graphOperations = GlobalGraphOperations.at(rawGraphDB); - if (this.vertexIndexKeys.size() > 0) - populateKeyIndices(rawGraphDB, rawGraphDB.index().getNodeAutoIndexer(), graphOperations.getAllNodes(), Vertex.class); - if (this.edgeIndexKeys.size() > 0) - populateKeyIndices(rawGraphDB, rawGraphDB.index().getRelationshipAutoIndexer(), graphOperations.getAllRelationships(), Edge.class); - tx.success(); - } finally { - tx.close(); + if (this.vertexIndexKeys.size() > 0) { + ResourceIterable nodes; + try (Transaction tx = rawGraphDB.beginTx()) { + nodes = graphOperations.getAllNodes(); + tx.success(); + } + populateKeyIndices(rawGraphDB, rawGraphDB.index().getNodeAutoIndexer(), nodes, Vertex.class); + } + if (this.edgeIndexKeys.size() > 0) { + Iterable relationships; + try (Transaction tx = rawGraphDB.beginTx()) { + relationships = graphOperations.getAllRelationships(); + tx.success(); + } + populateKeyIndices(rawGraphDB, rawGraphDB.index().getRelationshipAutoIndexer(), relationships, Edge.class); } } catch (Exception e) { throw new RuntimeException(e.getMessage(), e); @@ -162,33 +153,39 @@ private void removeReferenceNodeAndFinalizeKeyIndices() { } } + private static void populateKeyIndices(final GraphDatabaseService rawGraphDB, final AutoIndexer rawAutoIndexer, final Iterable rawElements, final Class elementClass) { - if (!rawAutoIndexer.isEnabled()) + if (!rawAutoIndexer.isEnabled()) { return; - - + } final Set properties = rawAutoIndexer.getAutoIndexedProperties(); + Label indexesLabel = DynamicLabel.label(elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX); + try (Transaction tx = rawGraphDB.beginTx()) { + for (String property : properties) { + rawGraphDB.schema().indexFor(indexesLabel).on(property).create(); + } + tx.success(); + } Transaction tx = rawGraphDB.beginTx(); - - final PropertyContainer kernel = ((GraphDatabaseAPI) rawGraphDB).getDependencyResolver().resolveDependency(NodeManager.class).getGraphProperties(); - kernel.setProperty(elementClass.getSimpleName() + INDEXED_KEYS_POSTFIX, properties.toArray(new String[properties.size()])); - int count = 0; for (final PropertyContainer pc : rawElements) { + Transaction transaction = pc.getGraphDatabase().beginTx(); for (final String property : properties) { if (!pc.hasProperty(property)) continue; pc.setProperty(property, pc.getProperty(property)); + transaction.success(); + transaction.close(); count++; if (count >= 10000) { count = 0; tx.success(); - tx.finish(); + tx.close(); tx = rawGraphDB.beginTx(); } } } tx.success(); - tx.finish(); + tx.close(); } public String toString() { @@ -201,7 +198,6 @@ public BatchInserter getRawGraph() { /** * {@inheritDoc} - *

* The object id can either be null, a long id, or a Map<String,Object>. * If null, then an internal long is provided on the construction of the vertex. * If a long id is provided, then the vertex is constructed with that long id. @@ -264,30 +260,20 @@ public Vertex getVertex(final Object id) { } } - /** - * @throws UnsupportedOperationException - */ public Iterable getVertices() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getVertices(final String key, final Object value) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public void removeVertex(final Vertex vertex) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4j2BatchTokens.DELETE_OPERATION_MESSAGE); } /** * {@inheritDoc} - *

* The object id must be a Map<String,Object> or null. * The id is the properties written when the vertex is created. * While it is possible to Edge.setProperty(), this method is faster. @@ -309,30 +295,18 @@ public Edge addEdge(final Object id, final Vertex outVertex, final Vertex inVert return new Neo4j2BatchEdge(this, finalId, label); } - /** - * @throws UnsupportedOperationException - */ public Edge getEdge(final Object id) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getEdges() throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public Iterable getEdges(final String key, final Object value) throws UnsupportedOperationException { throw new UnsupportedOperationException(); } - /** - * @throws UnsupportedOperationException - */ public void removeEdge(final Edge edge) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4j2BatchTokens.DELETE_OPERATION_MESSAGE); } @@ -362,9 +336,6 @@ public Iterable> getIndices() { return (Iterable) this.indices.values(); } - /** - * @throws UnsupportedOperationException - */ public void dropIndex(final String indexName) throws UnsupportedOperationException { throw new UnsupportedOperationException(Neo4j2BatchTokens.DELETE_OPERATION_MESSAGE); } diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2BenchmarkTestSuite.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2BenchmarkTestSuite.java index 1c8b1f79..b814e75d 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2BenchmarkTestSuite.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2BenchmarkTestSuite.java @@ -1,16 +1,11 @@ package com.tinkerpop.blueprints.impls.neo4j2; -import com.tinkerpop.blueprints.BaseTest; -import com.tinkerpop.blueprints.Edge; -import com.tinkerpop.blueprints.Graph; -import com.tinkerpop.blueprints.TestSuite; -import com.tinkerpop.blueprints.Vertex; +import com.tinkerpop.blueprints.*; import com.tinkerpop.blueprints.impls.GraphTest; import com.tinkerpop.blueprints.util.io.graphml.GraphMLReader; import org.neo4j.graphdb.Direction; -import org.neo4j.graphdb.GraphDatabaseService; -import org.neo4j.graphdb.Node; -import org.neo4j.graphdb.Relationship; +import org.neo4j.graphdb.*; +import org.neo4j.tooling.GlobalGraphOperations; /** * @author Marko A. Rodriguez (http://markorodriguez.com) @@ -37,23 +32,27 @@ public void testNeo4jRaw() throws Exception { GraphDatabaseService neo4j = ((Neo4j2Graph) graph).getRawGraph(); int counter = 0; this.stopWatch(); - for (final Node node : neo4j.getAllNodes()) { - counter++; - for (final Relationship relationship : node.getRelationships(Direction.OUTGOING)) { - counter++; - final Node node2 = relationship.getEndNode(); + GlobalGraphOperations graphOperations = GlobalGraphOperations.at(neo4j); + try (Transaction tx = neo4j.beginTx()) { + for (final Node node : graphOperations.getAllNodes()) { counter++; - for (final Relationship relationship2 : node2.getRelationships(Direction.OUTGOING)) { + for (final Relationship relationship : node.getRelationships(Direction.OUTGOING)) { counter++; - final Node node3 = relationship2.getEndNode(); + final Node node2 = relationship.getEndNode(); counter++; - for (final Relationship relationship3 : node3.getRelationships(Direction.OUTGOING)) { + for (final Relationship relationship2 : node2.getRelationships(Direction.OUTGOING)) { counter++; - relationship3.getEndNode(); + final Node node3 = relationship2.getEndNode(); counter++; + for (final Relationship relationship3 : node3.getRelationships(Direction.OUTGOING)) { + counter++; + relationship3.getEndNode(); + counter++; + } } } } + tx.success(); } double currentTime = this.stopWatch(); totalTime = totalTime + currentTime; diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphCypherTest.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphCypherTest.java index fa147204..5532301b 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphCypherTest.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphCypherTest.java @@ -5,7 +5,7 @@ import org.junit.Test; import org.neo4j.helpers.collection.IteratorUtil; import org.neo4j.helpers.collection.MapUtil; -import org.neo4j.kernel.impl.util.FileUtils; +import org.neo4j.io.fs.FileUtils; import java.io.File; import java.util.Map; diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphSpecificTestSuite.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphSpecificTestSuite.java index 3a81dec4..770ad713 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphSpecificTestSuite.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphSpecificTestSuite.java @@ -213,20 +213,16 @@ public void testRollbackExceptionOnBeforeTxCommit() throws Exception { @Override public Object beforeCommit(TransactionData data) throws Exception { if (true) { - throw new RuntimeException("jippo validation exception"); + throw new RuntimeException("Jippo validation exception"); } - return null; //To change body of implemented methods use File | Settings | File Templates. + return null; } @Override - public void afterCommit(TransactionData data, Object state) { - //To change body of implemented methods use File | Settings | File Templates. - } + public void afterCommit(TransactionData data, Object state) {} @Override - public void afterRollback(TransactionData data, Object state) { - //To change body of implemented methods use File | Settings | File Templates. - } + public void afterRollback(TransactionData data, Object state) {} }); try { Vertex vertex = graph.addVertex(null); diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphTest.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphTest.java index 2fcfcefe..2cc1391d 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphTest.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphTest.java @@ -1,16 +1,6 @@ package com.tinkerpop.blueprints.impls.neo4j2; -import com.tinkerpop.blueprints.EdgeTestSuite; -import com.tinkerpop.blueprints.Graph; -import com.tinkerpop.blueprints.GraphQueryTestSuite; -import com.tinkerpop.blueprints.GraphTestSuite; -import com.tinkerpop.blueprints.IndexTestSuite; -import com.tinkerpop.blueprints.IndexableGraphTestSuite; -import com.tinkerpop.blueprints.KeyIndexableGraphTestSuite; -import com.tinkerpop.blueprints.TestSuite; -import com.tinkerpop.blueprints.TransactionalGraphTestSuite; -import com.tinkerpop.blueprints.VertexQueryTestSuite; -import com.tinkerpop.blueprints.VertexTestSuite; +import com.tinkerpop.blueprints.*; import com.tinkerpop.blueprints.impls.GraphTest; import com.tinkerpop.blueprints.util.io.gml.GMLReaderTestSuite; import com.tinkerpop.blueprints.util.io.graphml.GraphMLReaderTestSuite; @@ -26,11 +16,11 @@ */ public class Neo4j2GraphTest extends GraphTest { - /*public void testNeo4jBenchmarkTestSuite() throws Exception { + public void testNeo4jBenchmarkTestSuite() throws Exception { this.stopWatch(); doTestSuite(new Neo4j2BenchmarkTestSuite(this)); printTestPerformance("Neo4j2BenchmarkTestSuite", this.stopWatch()); - }*/ + } public void testVertexTestSuite() throws Exception { this.stopWatch(); diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphUsingANonInternalAbstractGraphClassFail.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphUsingANonInternalAbstractGraphClassFail.java index 7a8b6951..06528b70 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphUsingANonInternalAbstractGraphClassFail.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2GraphUsingANonInternalAbstractGraphClassFail.java @@ -12,19 +12,20 @@ import org.neo4j.graphdb.schema.Schema; import org.neo4j.graphdb.traversal.BidirectionalTraversalDescription; import org.neo4j.graphdb.traversal.TraversalDescription; -import org.neo4j.kernel.GraphDatabaseAPI; -import org.neo4j.kernel.TransactionBuilder; -import org.neo4j.kernel.impl.nioneo.store.StoreId; + +import java.util.Map; import static org.junit.Assert.assertThat; public class Neo4j2GraphUsingANonInternalAbstractGraphClassFail { + private class LazyLoadedGraphDatabase implements GraphDatabaseService { + private GraphDatabaseService lazy; public GraphDatabaseService getLazy() { if (lazy == null) { - // load that lazy graph in a unique folder + //Load that lazy graph in a unique folder lazy = new GraphDatabaseFactory().newEmbeddedDatabase(getClass().getName() + "/" + System.currentTimeMillis()); } return lazy; @@ -69,6 +70,40 @@ public Iterable getAllNodes() { return getLazy().getAllNodes(); } + /** + * @param label + * @param key + * @param value + * @return + * @category delegate + * @see org.neo4j.graphdb.GraphDatabaseService#findNodes(Label, String, Object) + */ + public ResourceIterator findNodes(Label label, String key, Object value) { + return getLazy().findNodes(label, key, value); + } + + /** + * @param label + * @param key + * @param value + * @return + * @category delegate + * @see org.neo4j.graphdb.GraphDatabaseService#findNode(Label, String, Object) + */ + public Node findNode(Label label, String key, Object value) { + return getLazy().findNode(label, key, value); + } + + /** + * @param label + * @return + * @category delegate + * @see org.neo4j.graphdb.GraphDatabaseService#findNodes(Label) + */ + public ResourceIterator findNodes(Label label) { + return getLazy().findNodes(label); + } + /** * @return * @category delegate @@ -96,6 +131,27 @@ public Transaction beginTx() { return getLazy().beginTx(); } + /** + * @param query + * @return + * @category delegate + * @see org.neo4j.graphdb.GraphDatabaseService#execute(String) + */ + public Result execute(String query) throws QueryExecutionException { + return getLazy().execute(query); + } + + /** + * @param query + * @param parameters + * @return + * @category delegate + * @see org.neo4j.graphdb.GraphDatabaseService#execute(String, Map) + */ + public Result execute(String query, Map parameters) throws QueryExecutionException { + return getLazy().execute(query, parameters); + } + /** * @param handler * @return @@ -176,33 +232,6 @@ public BidirectionalTraversalDescription bidirectionalTraversalDescription() { } } - private class LazyLoadableGraphAPI extends LazyLoadedGraphDatabase implements GraphDatabaseAPI { - - @Override - public DependencyResolver getDependencyResolver() { - return ((GraphDatabaseAPI) getLazy()).getDependencyResolver(); - } - - @Override - @Deprecated - public String getStoreDir() { - return ((GraphDatabaseAPI) getLazy()).getStoreDir(); - } - - @Override - @Deprecated - public StoreId storeId() { - return ((GraphDatabaseAPI) getLazy()).storeId(); - } - - @Override - @Deprecated - public TransactionBuilder tx() { - return ((GraphDatabaseAPI) getLazy()).tx(); - } - - } - /** * in this test, our class is a graph database service, but not an InternalAbstractGraphDatabase instance.As a consequence, {@link Neo4j2Graph#getInternalIndexKeys} * won't load any index, with an additional {@link ClassCastException} @@ -222,7 +251,7 @@ public void loadingANeo4jGraphFromAnyGraphDatabaseClassShouldWork() throws Class @Test public void loadingANeo4jGraphFromAnyGraphAPIClassShouldWork() throws ClassCastException { String METHOD_NAME = "#loadingANeo4jGraphFromAnyGraphAPIClassShouldWork"; - Neo4j2Graph tested = new Neo4j2Graph(new LazyLoadableGraphAPI()); + Neo4j2Graph tested = new Neo4j2Graph(new LazyLoadedGraphDatabase()); assertThat(tested, IsNull.notNullValue()); // at startup there is no index assertThat(tested.getIndices().iterator().hasNext(), Is.is(false)); diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexTest.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexTest.java index 67412e0f..cad7d07f 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexTest.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/Neo4j2VertexTest.java @@ -3,7 +3,7 @@ import org.junit.After; import org.junit.Before; import org.junit.Test; -import org.neo4j.kernel.impl.util.FileUtils; +import org.neo4j.io.fs.FileUtils; import java.io.File; import java.util.Arrays; diff --git a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraphTest.java b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraphTest.java index 34440fbe..50042986 100644 --- a/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraphTest.java +++ b/blueprints-neo4j2-graph/src/test/java/com/tinkerpop/blueprints/impls/neo4j2/batch/Neo4j2BatchGraphTest.java @@ -7,15 +7,7 @@ import org.neo4j.index.impl.lucene.LowerCaseKeywordAnalyzer; import java.io.File; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Random; -import java.util.Set; +import java.util.*; /** * @author Marko A. Rodriguez (http://markorodriguez.com) @@ -50,7 +42,7 @@ public void testAddingVerticesEdges() { // native neo4j graph load final Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getVertices()), 10); assertEquals(count(graph.getEdges()), 9); @@ -87,7 +79,7 @@ public void testAddingVerticesWithUserIdsThenSettingProperties() { // native neo4j graph load final Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getVertices()), ids.size()); for (final Long id : ids) { assertNotNull(graph.getVertex(id)); @@ -120,7 +112,7 @@ public void testAddingVerticesWithUserIdsAsStringsThenSettingProperties() { // native neo4j graph load final Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getVertices()), ids.size()); assertNotNull(graph.getVertex(100l)); assertNotNull(graph.getVertex(5l)); @@ -166,13 +158,12 @@ public void testAddingVerticesEdgesWithIndices() { edgeIndex.put("unique", idA + "-" + idB, edge); edgeIndex.put("full", "blah", edge); } - batch.flushIndices(); batch.shutdown(); // native neo4j graph load final Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getIndices()), 1); @@ -290,7 +281,7 @@ public void testElementPropertyManipulation() { // native neo4j graph load Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getVertices()), 10); for (final Long id : vertexIds) { Vertex vertex = graph.getVertex(id); @@ -341,7 +332,7 @@ public void testGraphMLLoad() throws Exception { // native neo4j graph load Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); assertEquals(count(graph.getVertices()), 6); assertEquals(count(graph.getEdges()), 6); assertEquals(count(graph.getVertex("1").getEdges(Direction.OUT)), 3); @@ -384,7 +375,7 @@ public void testIndexParameters() throws Exception { // native neo4j graph load Neo4j2Graph graph = new Neo4j2Graph(directory); - graph.autoStartTransaction(true); + graph.autoStartTransaction(); Iterator itty = graph.getIndex("testIdx", Vertex.class).query("name", "*rko").iterator(); int counter = 0; while (itty.hasNext()) { diff --git a/blueprints-sparksee-graph/src/main/java/com/tinkerpop/blueprints/impls/sparksee/SparkseeGraph.java b/blueprints-sparksee-graph/src/main/java/com/tinkerpop/blueprints/impls/sparksee/SparkseeGraph.java index 00211676..b3f1128f 100644 --- a/blueprints-sparksee-graph/src/main/java/com/tinkerpop/blueprints/impls/sparksee/SparkseeGraph.java +++ b/blueprints-sparksee-graph/src/main/java/com/tinkerpop/blueprints/impls/sparksee/SparkseeGraph.java @@ -29,25 +29,20 @@ /** * Sparksee is a graph database developed by Sparsity Technologies. - *

* Sparksee natively supports the property graph data model defined by Blueprints. * However, there are a few peculiarities. No user defined element identifiers: * Sparksee is the gatekeeper and creator of vertex and edge identifiers. Thus, when * creating a new vertex or edge instance, the provided object identifier is * ignored. - *

* Vertices are labeled too: When adding vertices, the user can set * {@link SparkseeGraph#label} to be used as the label of the vertex to be created. * Also, the label of a vertex (or even an element) can be retrieved through the * {@link StringFactory#LABEL} property. - *

* SparkseeGraph implements {@link KeyIndexableGraph} with some particularities on * the way it can be used. As both vertices and edges are labeled when working * with Sparksee, the use of some APIs may require previously setting the label (by * means of {@link SparkseeGraph#label}). Those APIs are: * {@link #getVertices(String, Object)}, {@link #getEdges(String, Object)}, and - * {@link #createKeyIndex(String, Class)}. - *

* When working with SparkseeGraph, all methods having as a result a collection * actually return a {@link CloseableIterable} collection. Thus users can * {@link CloseableIterable#close()} the collection to free resources. @@ -67,16 +62,13 @@ public class SparkseeGraph implements MetaGraph /** * This is a "bypass" to set the Sparksee vertex label (node type). - *

* Sparksee vertices belong to a vertex/node type (thus all of them have a label). * By default, all vertices will have the {@link #DEFAULT_SPARKSEE_VERTEX_LABEL} label. * The user may set a different vertex label by setting this property when calling * {@link #addVertex(Object)}. - *

* Moreover, this value will also be used for the KeyIndex-related methods. * * @see #addVertex(Object) - * @see #createKeyIndex(String, Class) * @see #getVertices(String, Object) * @see #getEdges(String, Object) */ @@ -266,9 +258,7 @@ public SparkseeGraph(final Configuration configuration) { /** * Creates a new Vertex. - *

* Given identifier is ignored. - *

* Use {@link #label} to specify the label for the new Vertex. * If no label is given, {@value #DEFAULT_SPARKSEE_VERTEX_LABEL} will be used. * @@ -366,10 +356,8 @@ public CloseableIterable getVertices() { /** * Returns an iterable to all the vertices in the graph that have a particular key/value property. - *

* In case key is {@link StringFactory#LABEL}, it returns an iterable of all the vertices having * the given value as the label (therefore, belonging to the given type). - *

* In case {@link #label} is null, it will return all vertices having a particular * key/value no matters the type. * In case {@link #label} is not null, it will return all vertices having a particular @@ -540,10 +528,8 @@ public CloseableIterable getEdges() { /** * Returns an iterable to all the edges in the graph that have a particular key/value property. - *

* In case key is {@link StringFactory#LABEL}, it returns an iterable of all the edges having * the given value as the label (therefore, belonging to the given type). - *

* In case {@link #label} is null, it will return all edges having a particular * key/value no matters the type. * In case {@link #label} is not null, it will return all edges having a particular @@ -689,15 +675,12 @@ public void dropKeyIndex(String key, Class elementClass) /** * Create an automatic indexing structure for indexing provided key for element class. - *

* Sparksee attributes are restricted to an specific vertex/edge type. The property * {@link #label} must be used to specify the vertex/edge label. - *

* The index could be created even before the vertex/edge label * had been created (that is, there are no instances for the given vertex/edge label). * If so, this will create the vertex/edge type automatically. * The same way, if necessary the attribute will be created automatically. - *

* FIXME: In case the attribute is created, this always creates an String * attribute, could this be set somehow? */ diff --git a/blueprints-test/src/main/resources/com/tinkerpop/blueprints/util/io/graphson/graph-example-2-normalized.json b/blueprints-test/src/main/resources/com/tinkerpop/blueprints/util/io/graphson/graph-example-2-normalized.json index 7693b2c9..c707381c 100644 --- a/blueprints-test/src/main/resources/com/tinkerpop/blueprints/util/io/graphson/graph-example-2-normalized.json +++ b/blueprints-test/src/main/resources/com/tinkerpop/blueprints/util/io/graphson/graph-example-2-normalized.json @@ -1 +1 @@ -{"mode":"NORMAL","vertices":[{"_id":"0","_type":"vertex"},{"name":"HEY BO DIDDLEY","song_type":"cover","performances":5,"type":"song","_id":"1","_type":"vertex"},{"name":"BEAT IT ON DOWN THE LINE","song_type":"cover","performances":325,"type":"song","_id":"10","_type":"vertex"},{"name":"BROWN EYED WOMEN","song_type":"original","performances":347,"type":"song","_id":"100","_type":"vertex"},{"name":"LET IT GROW","song_type":"original","performances":276,"type":"song","_id":"101","_type":"vertex"},{"name":"MAYBE YOU KNOW HOW I FEEL","type":"song","_id":"102","_type":"vertex"},{"name":"THE MUSIC NEVER STOPPED","song_type":"original","performances":234,"type":"song","_id":"103","_type":"vertex"},{"name":"FRIEND OF THE DEVIL","song_type":"original","performances":304,"type":"song","_id":"104","_type":"vertex"},{"name":"STAGGER LEE","song_type":"original","performances":146,"type":"song","_id":"105","_type":"vertex"},{"name":"FAR FROM ME","song_type":"original","performances":74,"type":"song","_id":"106","_type":"vertex"},{"name":"BANKS OF OHIO","type":"song","_id":"107","_type":"vertex"},{"name":"DUPREES DIAMOND BLUES","song_type":"original","performances":80,"type":"song","_id":"108","_type":"vertex"},{"name":"PASSENGER","song_type":"original","performances":98,"type":"song","_id":"109","_type":"vertex"},{"name":"BLACK THROATED WIND","song_type":"original","performances":158,"type":"song","_id":"11","_type":"vertex"},{"name":"DANCIN IN THE STREETS","type":"song","_id":"110","_type":"vertex"},{"name":"ON THE ROAD AGAIN","song_type":"cover","performances":38,"type":"song","_id":"111","_type":"vertex"},{"name":"MAMA TRIED","song_type":"cover","performances":302,"type":"song","_id":"112","_type":"vertex"},{"name":"SMOKESTACK LIGHTNING","song_type":"cover","performances":60,"type":"song","_id":"113","_type":"vertex"},{"name":"ONE MORE SATURDAY NIGHT","song_type":"original","performances":340,"type":"song","_id":"114","_type":"vertex"},{"name":"TOM THUMB BLUES","type":"song","_id":"115","_type":"vertex"},{"name":"GOOD TIME BLUES","type":"song","_id":"116","_type":"vertex"},{"name":"WHEN I PAINT MY MASTERPIECE","song_type":"cover","performances":144,"type":"song","_id":"117","_type":"vertex"},{"name":"JUST A LITTLE LIGHT","song_type":"original","performances":21,"type":"song","_id":"118","_type":"vertex"},{"name":"CHILDHOODS END","song_type":"original","performances":11,"type":"song","_id":"119","_type":"vertex"},{"name":"ME AND MY UNCLE","song_type":"cover","performances":616,"type":"song","_id":"12","_type":"vertex"},{"name":"GOOD LOVING","song_type":"cover","performances":428,"type":"song","_id":"120","_type":"vertex"},{"name":"LAZY LIGHTNING","song_type":"original","performances":111,"type":"song","_id":"121","_type":"vertex"},{"name":"CASEY JONES","song_type":"original","performances":312,"type":"song","_id":"122","_type":"vertex"},{"name":"JAM","song_type":"original","performances":24,"type":"song","_id":"123","_type":"vertex"},{"name":"BABY BLUE","type":"song","_id":"124","_type":"vertex"},{"name":"BLACK PETER","song_type":"original","performances":343,"type":"song","_id":"125","_type":"vertex"},{"name":"AINT SUPERSTITIOUS","type":"song","_id":"126","_type":"vertex"},{"name":"MORNING DEW","song_type":"cover","performances":254,"type":"song","_id":"127","_type":"vertex"},{"name":"SHE BELONGS TO ME","song_type":"cover","performances":10,"type":"song","_id":"128","_type":"vertex"},{"name":"CHINA DOLL","song_type":"original","performances":114,"type":"song","_id":"129","_type":"vertex"},{"name":"PLAYING IN THE BAND","song_type":"original","performances":582,"type":"song","_id":"13","_type":"vertex"},{"name":"WHARF RAT","song_type":"original","performances":394,"type":"song","_id":"130","_type":"vertex"},{"name":"MAGGIES FARM","song_type":"cover","performances":43,"type":"song","_id":"131","_type":"vertex"},{"name":"HEY JUDE","song_type":"cover","performances":3,"type":"song","_id":"132","_type":"vertex"},{"name":"SUNSHINE DAYDREAM","song_type":"original","performances":31,"type":"song","_id":"133","_type":"vertex"},{"name":"THE WHEEL","song_type":"original","performances":258,"type":"song","_id":"134","_type":"vertex"},{"name":"DEATH DONT HAVE NO MERCY","song_type":"cover","performances":49,"type":"song","_id":"135","_type":"vertex"},{"name":"STANDER ON THE MOUNTAIN","song_type":"cover","performances":3,"type":"song","_id":"136","_type":"vertex"},{"name":"SO MANY ROADS","song_type":"original","performances":55,"type":"song","_id":"137","_type":"vertex"},{"name":"THE DAYS BETWEEN","type":"song","_id":"138","_type":"vertex"},{"name":"THAT WOULD BE SOMETHING","song_type":"cover","performances":17,"type":"song","_id":"139","_type":"vertex"},{"name":"LOOKS LIKE RAIN","song_type":"original","performances":417,"type":"song","_id":"14","_type":"vertex"},{"name":"ATTICS OF MY LIFE","song_type":"original","performances":48,"type":"song","_id":"140","_type":"vertex"},{"name":"COMES A TIME","song_type":"original","performances":66,"type":"song","_id":"141","_type":"vertex"},{"name":"CHILDREN OF THE EIGHTIES","type":"song","_id":"142","_type":"vertex"},{"name":"LUCIFERS EYES","song_type":"cover","performances":2,"type":"song","_id":"143","_type":"vertex"},{"name":"LA BAMBA","song_type":"cover","performances":4,"type":"song","_id":"144","_type":"vertex"},{"name":"CAUTION","song_type":"original","performances":56,"type":"song","_id":"145","_type":"vertex"},{"name":"WHO DO YOU LOVE","song_type":"cover","performances":3,"type":"song","_id":"146","_type":"vertex"},{"name":"MOJO","type":"song","_id":"147","_type":"vertex"},{"name":"THE OTHER ONE","song_type":"original","performances":583,"type":"song","_id":"148","_type":"vertex"},{"name":"SPANISH JAM","song_type":"original","performances":41,"type":"song","_id":"149","_type":"vertex"},{"name":"BIG RIVER","song_type":"cover","performances":397,"type":"song","_id":"15","_type":"vertex"},{"name":"BIRDSONG","song_type":"original","performances":296,"type":"song","_id":"150","_type":"vertex"},{"name":"HEY POCKY WAY","song_type":"cover","performances":25,"type":"song","_id":"151","_type":"vertex"},{"name":"BIG BOSS MAN","song_type":"cover","performances":71,"type":"song","_id":"152","_type":"vertex"},{"name":"SUGAR MAGNOLIA","song_type":"original","performances":594,"type":"song","_id":"153","_type":"vertex"},{"name":"FRANKLINS TOWER","song_type":"original","performances":221,"type":"song","_id":"154","_type":"vertex"},{"name":"FUNICULI FUNICULA","type":"song","_id":"155","_type":"vertex"},{"name":"CALIFORNIA EARTHQUAKE","song_type":"cover","performances":2,"type":"song","_id":"156","_type":"vertex"},{"name":"WE BID YOU GOODNIGHT","type":"song","_id":"157","_type":"vertex"},{"name":"EASY ANSWERS","song_type":"original","performances":44,"type":"song","_id":"158","_type":"vertex"},{"name":"BLUES FOR ALLAH","song_type":"original","performances":3,"type":"song","_id":"159","_type":"vertex"},{"name":"WEATHER REPORT SUITE","type":"song","_id":"16","_type":"vertex"},{"name":"BROKEDOWN PALACE","song_type":"original","performances":215,"type":"song","_id":"160","_type":"vertex"},{"name":"HARD TO HANDLE","song_type":"cover","performances":105,"type":"song","_id":"161","_type":"vertex"},{"name":"SATISFACTION","type":"song","_id":"162","_type":"vertex"},{"name":"BABY WHAT YOU WANT ME TO DO","song_type":"cover","performances":5,"type":"song","_id":"163","_type":"vertex"},{"name":"TURN ON YOUR LOVE LIGHT","song_type":"cover","performances":341,"type":"song","_id":"164","_type":"vertex"},{"name":"ALL ALONG THE WATCHTOWER","song_type":"cover","performances":123,"type":"song","_id":"165","_type":"vertex"},{"name":"JOHNNY B GOODE","song_type":"cover","performances":284,"type":"song","_id":"166","_type":"vertex"},{"name":"BLOW AWAY","song_type":"original","performances":23,"type":"song","_id":"167","_type":"vertex"},{"name":"BUILT TO LAST","song_type":"original","performances":18,"type":"song","_id":"168","_type":"vertex"},{"name":"WE CAN RUN BUT WE CANT HIDE","type":"song","_id":"169","_type":"vertex"},{"name":"THEY LOVE EACH OTHER","song_type":"original","performances":227,"type":"song","_id":"17","_type":"vertex"},{"name":"TO LAY ME DOWN","song_type":"original","performances":63,"type":"song","_id":"170","_type":"vertex"},{"name":"FIRE ON THE MOUNTAIN","song_type":"original","performances":253,"type":"song","_id":"171","_type":"vertex"},{"name":"WAVE TO THE WIND","song_type":"original","performances":21,"type":"song","_id":"172","_type":"vertex"},{"name":"LAZY RIVER","type":"song","_id":"173","_type":"vertex"},{"name":"IF THE SHOE FITS","song_type":"original","performances":17,"type":"song","_id":"174","_type":"vertex"},{"name":"NEW SPEEDWAY BOOGIE","song_type":"original","performances":55,"type":"song","_id":"175","_type":"vertex"},{"name":"UNBROKEN CHAIN","song_type":"original","performances":10,"type":"song","_id":"176","_type":"vertex"},{"name":"ITS ALL TOO MUCH","song_type":"cover","performances":6,"type":"song","_id":"177","_type":"vertex"},{"name":"STRONGER THAN DIRT","type":"song","_id":"178","_type":"vertex"},{"name":"COSMIC CHARLIE","type":"song","_id":"179","_type":"vertex"},{"name":"EL PASO","song_type":"cover","performances":388,"type":"song","_id":"18","_type":"vertex"},{"name":"DEEP ELEM BLUES","song_type":"cover","performances":45,"type":"song","_id":"180","_type":"vertex"},{"name":"LOST SAILOR","song_type":"original","performances":145,"type":"song","_id":"181","_type":"vertex"},{"name":"ONLY A FOOL","song_type":"original","performances":1,"type":"song","_id":"182","_type":"vertex"},{"name":"DONT NEED LOVE","song_type":"original","performances":16,"type":"song","_id":"183","_type":"vertex"},{"name":"SUPPLICATION","song_type":"original","performances":113,"type":"song","_id":"184","_type":"vertex"},{"name":"BABA ORILEY","song_type":"cover","performances":12,"type":"song","_id":"185","_type":"vertex"},{"name":"SPACE","type":"song","_id":"186","_type":"vertex"},{"name":"I KNOW YOU RIDER","song_type":"cover","performances":550,"type":"song","_id":"187","_type":"vertex"},{"name":"QUEEN JANE","type":"song","_id":"188","_type":"vertex"},{"name":"EASY TO LOVE YOU","song_type":"original","performances":45,"type":"song","_id":"189","_type":"vertex"},{"name":"CHINA CAT SUNFLOWER","song_type":"original","performances":554,"type":"song","_id":"19","_type":"vertex"},{"name":"WEST LA FADEAWAY","type":"song","_id":"190","_type":"vertex"},{"name":"JACK A ROE","type":"song","_id":"191","_type":"vertex"},{"name":"PEGGY O","type":"song","_id":"192","_type":"vertex"},{"name":"US BLUES","song_type":"original","performances":323,"type":"song","_id":"193","_type":"vertex"},{"name":"PROUD MARY","song_type":"cover","performances":1,"type":"song","_id":"194","_type":"vertex"},{"name":"LET ME SING YOUR BLUES AWAY","song_type":"original","performances":6,"type":"song","_id":"195","_type":"vertex"},{"name":"SUNRISE","song_type":"original","performances":30,"type":"song","_id":"196","_type":"vertex"},{"name":"MONKEY AND THE ENGINEER","song_type":"cover","performances":32,"type":"song","_id":"197","_type":"vertex"},{"name":"DARK HOLLOW","song_type":"cover","performances":29,"type":"song","_id":"198","_type":"vertex"},{"name":"OH BABE IT AINT NO LIE","song_type":"cover","performances":13,"type":"song","_id":"199","_type":"vertex"},{"name":"IM A MAN","song_type":"cover","performances":1,"type":"song","_id":"2","_type":"vertex"},{"name":"THE RACE IS ON","song_type":"cover","performances":59,"type":"song","_id":"20","_type":"vertex"},{"name":"FRERE JACQUES","type":"song","_id":"200","_type":"vertex"},{"name":"THIS COULD BE THE LAST TIME","type":"song","_id":"201","_type":"vertex"},{"name":"LOOSE LUCY","song_type":"original","performances":98,"type":"song","_id":"202","_type":"vertex"},{"name":"BANANA BOAT SONG","type":"song","_id":"203","_type":"vertex"},{"name":"KNOCKING ON HEAVENS DOOR","song_type":"cover","performances":76,"type":"song","_id":"204","_type":"vertex"},{"name":"MISTER CHARLIE","song_type":"original","performances":48,"type":"song","_id":"205","_type":"vertex"},{"name":"SING ME BACK HOME","song_type":"cover","performances":39,"type":"song","_id":"206","_type":"vertex"},{"name":"NEXT TIME YOU SEE ME","song_type":"cover","performances":72,"type":"song","_id":"207","_type":"vertex"},{"name":"FROM THE HEART OF ME","song_type":"original","performances":26,"type":"song","_id":"208","_type":"vertex"},{"name":"HEAVEN HELP THE FOOL","song_type":"original","performances":17,"type":"song","_id":"209","_type":"vertex"},{"name":"TRUCKING","song_type":"original","performances":519,"type":"song","_id":"21","_type":"vertex"},{"name":"DAY JOB","type":"song","_id":"210","_type":"vertex"},{"name":"REVOLUTION","song_type":"cover","performances":11,"type":"song","_id":"211","_type":"vertex"},{"name":"DAY TRIPPER","song_type":"cover","performances":5,"type":"song","_id":"212","_type":"vertex"},{"name":"QUINN THE ESKIMO","type":"song","_id":"213","_type":"vertex"},{"name":"WEREWOLVES OF LONDON","song_type":"cover","performances":12,"type":"song","_id":"214","_type":"vertex"},{"name":"HELP ON THE WAY","song_type":"original","performances":110,"type":"song","_id":"215","_type":"vertex"},{"name":"I FOUGHT THE LAW","song_type":"cover","performances":36,"type":"song","_id":"216","_type":"vertex"},{"name":"LUCY IN THE SKY","type":"song","_id":"217","_type":"vertex"},{"name":"TWO SOULS IN COMMUNION","type":"song","_id":"218","_type":"vertex"},{"name":"SAGE AND SPIRIT","song_type":"original","performances":2,"type":"song","_id":"219","_type":"vertex"},{"name":"ME AND BOBBY MCGEE","song_type":"cover","performances":118,"type":"song","_id":"22","_type":"vertex"},{"name":"LITTLE SADIE","song_type":"cover","performances":6,"type":"song","_id":"220","_type":"vertex"},{"name":"GENTLEMEN START YOUR ENGINES","song_type":"original","performances":2,"type":"song","_id":"221","_type":"vertex"},{"name":"RIPPLE","song_type":"original","performances":39,"type":"song","_id":"222","_type":"vertex"},{"name":"TONS OF STEEL","song_type":"original","performances":29,"type":"song","_id":"223","_type":"vertex"},{"name":"ROSALIE MCFALL","type":"song","_id":"224","_type":"vertex"},{"name":"TOP OF THE WORLD","type":"song","_id":"225","_type":"vertex"},{"name":"ROCKIN PNEUMONIA","type":"song","_id":"226","_type":"vertex"},{"name":"GLORIA","song_type":"cover","performances":15,"type":"song","_id":"227","_type":"vertex"},{"name":"STIR IT UP","song_type":"cover","performances":1,"type":"song","_id":"228","_type":"vertex"},{"name":"WOMEN ARE SMARTER","type":"song","_id":"229","_type":"vertex"},{"name":"GREATEST STORY","type":"song","_id":"23","_type":"vertex"},{"name":"THE ALHAMBRA","type":"song","_id":"230","_type":"vertex"},{"name":"I WILL TAKE YOU HOME","song_type":"original","performances":34,"type":"song","_id":"231","_type":"vertex"},{"name":"BELIEVE IT OR NOT","song_type":"original","performances":7,"type":"song","_id":"232","_type":"vertex"},{"name":"BLACK QUEEN","song_type":"cover","performances":2,"type":"song","_id":"233","_type":"vertex"},{"name":"CHINATOWN SHUFFLE","song_type":"original","performances":28,"type":"song","_id":"234","_type":"vertex"},{"name":"YOU WIN AGAIN","song_type":"cover","performances":25,"type":"song","_id":"235","_type":"vertex"},{"name":"LIBERTY","song_type":"original","performances":56,"type":"song","_id":"236","_type":"vertex"},{"name":"YOUR LOVE AT HOME","type":"song","_id":"237","_type":"vertex"},{"name":"WILLIE AND THE HAND JIVE","song_type":"cover","performances":6,"type":"song","_id":"238","_type":"vertex"},{"name":"IT TAKES A TRAIN TO CRY","type":"song","_id":"239","_type":"vertex"},{"name":"MEXICALI BLUES","song_type":"original","performances":435,"type":"song","_id":"24","_type":"vertex"},{"name":"SALT LAKE CITY","song_type":"original","performances":1,"type":"song","_id":"240","_type":"vertex"},{"name":"LINDA LOU","type":"song","_id":"241","_type":"vertex"},{"name":"WHY DONT WE DO IT IN THE ROAD","song_type":"cover","performances":7,"type":"song","_id":"242","_type":"vertex"},{"name":"HAPPY BIRTHDAY","type":"song","_id":"243","_type":"vertex"},{"name":"KANSAS CITY","song_type":"cover","performances":1,"type":"song","_id":"244","_type":"vertex"},{"name":"DOWN IN THE BOTTOM","song_type":"cover","performances":9,"type":"song","_id":"245","_type":"vertex"},{"name":"HULLY GULLY","type":"song","_id":"246","_type":"vertex"},{"name":"HOW LONG BLUES","song_type":"cover","performances":4,"type":"song","_id":"247","_type":"vertex"},{"name":"VALLEY ROAD","type":"song","_id":"248","_type":"vertex"},{"name":"JOHN BROWN","song_type":"cover","performances":3,"type":"song","_id":"249","_type":"vertex"},{"name":"AROUND AND AROUND","song_type":"cover","performances":418,"type":"song","_id":"25","_type":"vertex"},{"name":"SIMPLE TWIST OF FATE","song_type":"cover","performances":3,"type":"song","_id":"250","_type":"vertex"},{"name":"I WANT YOU","song_type":"cover","performances":2,"type":"song","_id":"251","_type":"vertex"},{"name":"HURTS ME TOO","type":"song","_id":"252","_type":"vertex"},{"name":"ADDAMS FAMILY","type":"song","_id":"253","_type":"vertex"},{"name":"BROKEN ARROW","song_type":"cover","performances":35,"type":"song","_id":"254","_type":"vertex"},{"name":"TELL MAMA","song_type":"cover","performances":1,"type":"song","_id":"255","_type":"vertex"},{"name":"BORN ON THE BAYOU","song_type":"cover","performances":1,"type":"song","_id":"256","_type":"vertex"},{"name":"LOUIE LOUIE","song_type":"cover","performances":8,"type":"song","_id":"257","_type":"vertex"},{"name":"I WANT TO TELL YOU","song_type":"cover","performances":7,"type":"song","_id":"258","_type":"vertex"},{"name":"MISSISSIPPI HALF-STEP","song_type":"original","performances":234,"type":"song","_id":"259","_type":"vertex"},{"name":"PROMISED LAND","song_type":"cover","performances":427,"type":"song","_id":"26","_type":"vertex"},{"name":"HEART OF MINE","song_type":"cover","performances":1,"type":"song","_id":"260","_type":"vertex"},{"name":"ROADRUNNER","type":"song","_id":"261","_type":"vertex"},{"name":"MARDI GRAS PARADE","type":"song","_id":"262","_type":"vertex"},{"name":"THATS ALRIGHT MAMA","type":"song","_id":"263","_type":"vertex"},{"name":"MAN OF PEACE","song_type":"cover","performances":3,"type":"song","_id":"264","_type":"vertex"},{"name":"FRANKIE LEE AND JUDAS PRIEST","type":"song","_id":"265","_type":"vertex"},{"name":"ILL BE YOUR BABY TONIGHT","song_type":"cover","performances":3,"type":"song","_id":"266","_type":"vertex"},{"name":"REVOLUTIONARY HAMSTRUNG BLUES","song_type":"original","performances":1,"type":"song","_id":"267","_type":"vertex"},{"name":"WALKIN THE DOG","type":"song","_id":"268","_type":"vertex"},{"name":"BALLAD OF A THIN MAN","song_type":"cover","performances":8,"type":"song","_id":"269","_type":"vertex"},{"name":"RAMBLE ON ROSE","song_type":"original","performances":316,"type":"song","_id":"27","_type":"vertex"},{"name":"RAINY DAY WOMAN","type":"song","_id":"270","_type":"vertex"},{"name":"CHIMES OF FREEDOM","song_type":"cover","performances":4,"type":"song","_id":"271","_type":"vertex"},{"name":"TAKE ME TO THE RIVER","song_type":"cover","performances":4,"type":"song","_id":"272","_type":"vertex"},{"name":"BEEN ALL AROUND THIS WORLD","type":"song","_id":"273","_type":"vertex"},{"name":"MATILDA","type":"song","_id":"274","_type":"vertex"},{"name":"TOMORROW NEVER KNOWS","song_type":"cover","performances":12,"type":"song","_id":"275","_type":"vertex"},{"name":"ITS A SIN","type":"song","_id":"276","_type":"vertex"},{"name":"CLOSE ENCOUNTERS","type":"song","_id":"277","_type":"vertex"},{"name":"CRYPTICAL ENVELOPMENT","song_type":"original","performances":132,"type":"song","_id":"278","_type":"vertex"},{"name":"CHANTING BY THE GYOTO MONKS","type":"song","_id":"279","_type":"vertex"},{"name":"LONG WAY TO GO HOME","type":"song","_id":"28","_type":"vertex"},{"name":"EVERY TIME YOU GO","type":"song","_id":"280","_type":"vertex"},{"name":"THE ELEVEN","song_type":"original","performances":93,"type":"song","_id":"281","_type":"vertex"},{"name":"TAKE IT OFF","type":"song","_id":"282","_type":"vertex"},{"name":"FEVER","song_type":"cover","performances":1,"type":"song","_id":"283","_type":"vertex"},{"name":"GOTTA SERVE SOMEBODY","song_type":"cover","performances":2,"type":"song","_id":"284","_type":"vertex"},{"name":"RUBIN AND CHERISE","type":"song","_id":"285","_type":"vertex"},{"name":"I JUST WANNA MAKE LOVE TO YOU","type":"song","_id":"286","_type":"vertex"},{"name":"WATCHING THE RIVER FLOW","song_type":"cover","performances":2,"type":"song","_id":"287","_type":"vertex"},{"name":"SLIPKNOT","song_type":"original","performances":112,"type":"song","_id":"288","_type":"vertex"},{"name":"OLLIN ARRAGEED","type":"song","_id":"289","_type":"vertex"},{"name":"THROWING STONES","song_type":"original","performances":265,"type":"song","_id":"29","_type":"vertex"},{"name":"MONEY MONEY","song_type":"original","performances":3,"type":"song","_id":"290","_type":"vertex"},{"name":"KING BEE","type":"song","_id":"291","_type":"vertex"},{"name":"GOOD MORNING LITTLE SCHOOL GIRL","song_type":"cover","performances":62,"type":"song","_id":"292","_type":"vertex"},{"name":"HOW SWEET IT IS","type":"song","_id":"293","_type":"vertex"},{"name":"MISSION IN THE RAIN","song_type":"original","performances":5,"type":"song","_id":"294","_type":"vertex"},{"name":"YOU WONT FIND ME","type":"song","_id":"295","_type":"vertex"},{"name":"MIND LEFT BODY JAM","song_type":"original","performances":4,"type":"song","_id":"296","_type":"vertex"},{"name":"WICKED MESSENGER","song_type":"cover","performances":1,"type":"song","_id":"297","_type":"vertex"},{"name":"KC MOAN","song_type":"cover","performances":2,"type":"song","_id":"298","_type":"vertex"},{"name":"KEEP ON GROWING","song_type":"cover","performances":4,"type":"song","_id":"299","_type":"vertex"},{"name":"NOT FADE AWAY","song_type":"cover","performances":531,"type":"song","_id":"3","_type":"vertex"},{"name":"WALKING BLUES","song_type":"cover","performances":139,"type":"song","_id":"30","_type":"vertex"},{"name":"WARRIORS OF THE SUN","song_type":"cover","performances":1,"type":"song","_id":"300","_type":"vertex"},{"name":"BYE BYE LOVE","song_type":"cover","performances":2,"type":"song","_id":"301","_type":"vertex"},{"name":"LADY DI","type":"song","_id":"302","_type":"vertex"},{"name":"BIG BOY PETE","song_type":"cover","performances":7,"type":"song","_id":"303","_type":"vertex"},{"name":"SILENT WAY JAM","type":"song","_id":"304","_type":"vertex"},{"name":"ARE YOU LONELY FOR ME","type":"song","_id":"305","_type":"vertex"},{"name":"MACK THE KNIFE","song_type":"cover","performances":1,"type":"song","_id":"306","_type":"vertex"},{"name":"TORE UP OVER YOU","type":"song","_id":"307","_type":"vertex"},{"name":"BARBRY ALLEN","type":"song","_id":"308","_type":"vertex"},{"name":"SLOW TRAIN COMIN","type":"song","_id":"309","_type":"vertex"},{"name":"WANG DANG DOODLE","song_type":"cover","performances":95,"type":"song","_id":"31","_type":"vertex"},{"name":"JOEY","song_type":"cover","performances":3,"type":"song","_id":"310","_type":"vertex"},{"name":"TOMORROW IS A LONG TIME","song_type":"cover","performances":1,"type":"song","_id":"311","_type":"vertex"},{"name":"GET BACK","song_type":"cover","performances":1,"type":"song","_id":"312","_type":"vertex"},{"name":"MY BABY LEFT ME","song_type":"cover","performances":1,"type":"song","_id":"313","_type":"vertex"},{"name":"STEP BACK","type":"song","_id":"314","_type":"vertex"},{"name":"THE FROZEN LOGGER","song_type":"cover","performances":6,"type":"song","_id":"315","_type":"vertex"},{"name":"SUGAR SHACK","type":"song","_id":"316","_type":"vertex"},{"name":"SIDEWALKS OF NEW YORK","song_type":"cover","performances":1,"type":"song","_id":"317","_type":"vertex"},{"name":"MOUNTAIN JAM","type":"song","_id":"318","_type":"vertex"},{"name":"NOBODYS FAULT BUT MINE","song_type":"cover","performances":16,"type":"song","_id":"319","_type":"vertex"},{"name":"NEW MINGLEWOOD BLUES","song_type":"cover","performances":435,"type":"song","_id":"32","_type":"vertex"},{"name":"NEW ORLEANS","song_type":"cover","performances":5,"type":"song","_id":"320","_type":"vertex"},{"name":"BLACKBIRD","song_type":"cover","performances":2,"type":"song","_id":"321","_type":"vertex"},{"name":"DONT THINK TWICE ITS ALRIGHT","type":"song","_id":"322","_type":"vertex"},{"name":"LOVE THE ONE YOURE WITH","song_type":"cover","performances":1,"type":"song","_id":"323","_type":"vertex"},{"name":"LET IT ROCK","song_type":"cover","performances":1,"type":"song","_id":"324","_type":"vertex"},{"name":"GREEN RIVER","song_type":"cover","performances":1,"type":"song","_id":"325","_type":"vertex"},{"name":"BAD MOON RISING","song_type":"cover","performances":1,"type":"song","_id":"326","_type":"vertex"},{"name":"IF I HAD THE WORLD TO GIVE","song_type":"original","performances":3,"type":"song","_id":"327","_type":"vertex"},{"name":"THE BOXER","type":"song","_id":"328","_type":"vertex"},{"name":"ROLLIN AND TUMBLIN","type":"song","_id":"329","_type":"vertex"},{"name":"SPOONFUL","song_type":"cover","performances":52,"type":"song","_id":"33","_type":"vertex"},{"name":"TANGLED UP IN BLUE","song_type":"cover","performances":2,"type":"song","_id":"330","_type":"vertex"},{"name":"SHELTER FROM THE STORM","song_type":"cover","performances":1,"type":"song","_id":"331","_type":"vertex"},{"name":"HIDEAWAY","song_type":"cover","performances":1,"type":"song","_id":"332","_type":"vertex"},{"name":"A MIND TO GIVE UP LIVIN","type":"song","_id":"333","_type":"vertex"},{"name":"NEIGHBORHOOD GIRLS","song_type":"cover","performances":1,"type":"song","_id":"334","_type":"vertex"},{"name":"FOREVER YOUNG","song_type":"cover","performances":1,"type":"song","_id":"335","_type":"vertex"},{"name":"GOODNIGHT IRENE","song_type":"cover","performances":1,"type":"song","_id":"336","_type":"vertex"},{"name":"CHINESE BONES","song_type":"cover","performances":1,"type":"song","_id":"337","_type":"vertex"},{"name":"OTHER ONE JAM","type":"song","_id":"338","_type":"vertex"},{"name":"Hunter","type":"artist","_id":"339","_type":"vertex"},{"name":"VICTIM OR THE CRIME","song_type":"original","performances":96,"type":"song","_id":"34","_type":"vertex"},{"name":"Garcia","type":"artist","_id":"340","_type":"vertex"},{"name":"ALICE D MILLIONAIRE","song_type":"original","performances":3,"type":"song","_id":"341","_type":"vertex"},{"name":"Grateful_Dead","type":"artist","_id":"342","_type":"vertex"},{"name":"ALLIGATOR","song_type":"original","performances":63,"type":"song","_id":"343","_type":"vertex"},{"name":"Hunter_Pigpen","type":"artist","_id":"344","_type":"vertex"},{"name":"Lesh_Pigpen","type":"artist","_id":"345","_type":"vertex"},{"name":"AT A SIDING","song_type":"original","performances":0,"type":"song","_id":"346","_type":"vertex"},{"name":"Hart","type":"artist","_id":"347","_type":"vertex"},{"name":"BARBED WIRE WHIPPING PARTY","song_type":"original","performances":0,"type":"song","_id":"348","_type":"vertex"},{"name":"BLACK MUDDY RIVER","song_type":"original","performances":66,"type":"song","_id":"349","_type":"vertex"},{"name":"WAY TO GO HOME","song_type":"original","performances":92,"type":"song","_id":"35","_type":"vertex"},{"name":"Barlow","type":"artist","_id":"350","_type":"vertex"},{"name":"Weir","type":"artist","_id":"351","_type":"vertex"},{"name":"Mydland","type":"artist","_id":"352","_type":"vertex"},{"name":"BORN CROSS EYED","song_type":"original","performances":13,"type":"song","_id":"353","_type":"vertex"},{"name":"Lesh","type":"artist","_id":"354","_type":"vertex"},{"name":"CANT COME DOWN","song_type":"original","performances":1,"type":"song","_id":"355","_type":"vertex"},{"name":"Pigpen","type":"artist","_id":"356","_type":"vertex"},{"name":"CLEMENTINE","song_type":"original","performances":3,"type":"song","_id":"357","_type":"vertex"},{"name":"CORRINA","song_type":"original","performances":77,"type":"song","_id":"358","_type":"vertex"},{"name":"Weir_Hart","type":"artist","_id":"359","_type":"vertex"},{"name":"SAINT OF CIRCUMSTANCE","song_type":"original","performances":222,"type":"song","_id":"36","_type":"vertex"},{"name":"COSMIC CHARLEY","song_type":"original","performances":41,"type":"song","_id":"360","_type":"vertex"},{"name":"CREAM PUFF WAR","song_type":"original","performances":7,"type":"song","_id":"361","_type":"vertex"},{"name":"Garcia_Lesh","type":"artist","_id":"362","_type":"vertex"},{"name":"DAYS BETWEEN","song_type":"original","performances":41,"type":"song","_id":"363","_type":"vertex"},{"name":"DOING THAT RAG","song_type":"original","performances":37,"type":"song","_id":"364","_type":"vertex"},{"name":"DOWN SO LONG","song_type":"cover","performances":2,"type":"song","_id":"365","_type":"vertex"},{"name":"THE DWARF","song_type":"original","performances":0,"type":"song","_id":"366","_type":"vertex"},{"name":"Hunter_Weir","type":"artist","_id":"367","_type":"vertex"},{"name":"Weir_Hart_Welnick","type":"artist","_id":"368","_type":"vertex"},{"name":"EASY WIND","song_type":"original","performances":44,"type":"song","_id":"369","_type":"vertex"},{"name":"SAMBA IN THE RAIN","song_type":"original","performances":38,"type":"song","_id":"37","_type":"vertex"},{"name":"EMPTY PAGES","song_type":"original","performances":2,"type":"song","_id":"370","_type":"vertex"},{"name":"EQUINOX","song_type":"original","performances":0,"type":"song","_id":"371","_type":"vertex"},{"name":"Dixon","type":"artist","_id":"372","_type":"vertex"},{"name":"Weir_Wasserman","type":"artist","_id":"373","_type":"vertex"},{"name":"FRANCE","song_type":"original","performances":0,"type":"song","_id":"374","_type":"vertex"},{"name":"Garcia_Kreutzmann","type":"artist","_id":"375","_type":"vertex"},{"name":"Garcia_Dawson","type":"artist","_id":"376","_type":"vertex"},{"name":"Donna_Godchaux","type":"artist","_id":"377","_type":"vertex"},{"name":"THE GOLDEN ROAD (TO UNLIMITED DEVOTION)","song_type":"original","performances":3,"type":"song","_id":"378","_type":"vertex"},{"name":"GREATEST STORY EVER TOLD","song_type":"original","performances":280,"type":"song","_id":"379","_type":"vertex"},{"name":"FEEL LIKE A STRANGER","song_type":"original","performances":207,"type":"song","_id":"38","_type":"vertex"},{"name":"Barlow_instrumental","type":"artist","_id":"380","_type":"vertex"},{"name":"Weir_Mydland","type":"artist","_id":"381","_type":"vertex"},{"name":"HOLLYWOOD CANTATA","song_type":"original","performances":0,"type":"song","_id":"382","_type":"vertex"},{"name":"Charles","type":"artist","_id":"383","_type":"vertex"},{"name":"instrumental","type":"artist","_id":"384","_type":"vertex"},{"name":"KEEP ROLLING BY","song_type":"cover","performances":1,"type":"song","_id":"385","_type":"vertex"},{"name":"KEEP YOUR DAY JOB","song_type":"original","performances":57,"type":"song","_id":"386","_type":"vertex"},{"name":"KING SOLOMONS MARBLES","song_type":"original","performances":5,"type":"song","_id":"387","_type":"vertex"},{"name":"Lesh_Hart_Kreutzmann","type":"artist","_id":"388","_type":"vertex"},{"name":"LADY WITH A FAN","song_type":"original","performances":302,"type":"song","_id":"389","_type":"vertex"},{"name":"CUMBERLAND BLUES","song_type":"original","performances":223,"type":"song","_id":"39","_type":"vertex"},{"name":"LAZY RIVER ROAD","song_type":"original","performances":65,"type":"song","_id":"390","_type":"vertex"},{"name":"Keith_Godchaux","type":"artist","_id":"391","_type":"vertex"},{"name":"LITTLE STAR","song_type":"original","performances":3,"type":"song","_id":"392","_type":"vertex"},{"name":"MASONS CHILDREN","song_type":"original","performances":18,"type":"song","_id":"393","_type":"vertex"},{"name":"Garcia_Weir_Lesh","type":"artist","_id":"394","_type":"vertex"},{"name":"MAYBE YOU KNOW","song_type":"original","performances":6,"type":"song","_id":"395","_type":"vertex"},{"name":"MINDBENDER","song_type":"original","performances":2,"type":"song","_id":"396","_type":"vertex"},{"name":"THE MONSTER","song_type":"original","performances":1,"type":"song","_id":"397","_type":"vertex"},{"name":"MOUNTAINS OF THE MOON","song_type":"original","performances":12,"type":"song","_id":"398","_type":"vertex"},{"name":"NEVER TRUST A WOMAN","song_type":"original","performances":42,"type":"song","_id":"399","_type":"vertex"},{"name":"BERTHA","song_type":"original","performances":394,"type":"song","_id":"4","_type":"vertex"},{"name":"THE SAME THING","song_type":"cover","performances":45,"type":"song","_id":"40","_type":"vertex"},{"name":"NEW POTATO CABOOSE","song_type":"original","performances":26,"type":"song","_id":"400","_type":"vertex"},{"name":"Petersen","type":"artist","_id":"401","_type":"vertex"},{"name":"NO LEFT TURN UNSTONED (CARDBOARD COWBOY)","song_type":"original","performances":2,"type":"song","_id":"402","_type":"vertex"},{"name":"THE ONLY TIME IS NOW","song_type":"original","performances":1,"type":"song","_id":"403","_type":"vertex"},{"name":"OPERATOR","song_type":"original","performances":4,"type":"song","_id":"404","_type":"vertex"},{"name":"Weir_Kreutzmann","type":"artist","_id":"405","_type":"vertex"},{"name":"OTIS ON A SHAKEDOWN CRUISE","song_type":"original","performances":1,"type":"song","_id":"406","_type":"vertex"},{"name":"Monk","type":"artist","_id":"407","_type":"vertex"},{"name":"Weir_Bralove","type":"artist","_id":"408","_type":"vertex"},{"name":"PRIDE OF CUCAMONGA","song_type":"original","performances":0,"type":"song","_id":"409","_type":"vertex"},{"name":"CORINA","type":"song","_id":"41","_type":"vertex"},{"name":"RED","song_type":"original","performances":0,"type":"song","_id":"410","_type":"vertex"},{"name":"REUBEN AND CERISE","song_type":"original","performances":4,"type":"song","_id":"411","_type":"vertex"},{"name":"Mydland_Lesh","type":"artist","_id":"412","_type":"vertex"},{"name":"ROSEMARY","song_type":"original","performances":1,"type":"song","_id":"413","_type":"vertex"},{"name":"SAINT STEPHEN","song_type":"original","performances":165,"type":"song","_id":"414","_type":"vertex"},{"name":"Welnick","type":"artist","_id":"415","_type":"vertex"},{"name":"Hornsby","type":"artist","_id":"416","_type":"vertex"},{"name":"STANDING ON THE CORNER","song_type":"original","performances":3,"type":"song","_id":"417","_type":"vertex"},{"name":"THE STRANGER (TWO SOULS IN COMMUNION)","song_type":"original","performances":12,"type":"song","_id":"418","_type":"vertex"},{"name":"TASTEBUD","song_type":"original","performances":1,"type":"song","_id":"419","_type":"vertex"},{"name":"ITS ALL OVER NOW","song_type":"cover","performances":160,"type":"song","_id":"42","_type":"vertex"},{"name":"TENNESSEE JED","song_type":"original","performances":433,"type":"song","_id":"420","_type":"vertex"},{"name":"TERRAPIN FLYER","song_type":"original","performances":1,"type":"song","_id":"421","_type":"vertex"},{"name":"Hart_Kreutzmann","type":"artist","_id":"422","_type":"vertex"},{"name":"TERRAPIN TRANSIT","song_type":"original","performances":1,"type":"song","_id":"423","_type":"vertex"},{"name":"THIS TIME FOREVER","song_type":"original","performances":1,"type":"song","_id":"424","_type":"vertex"},{"name":"TILL THE MORNING COMES","song_type":"original","performances":5,"type":"song","_id":"425","_type":"vertex"},{"name":"Garcia_Lesh_Weir","type":"artist","_id":"426","_type":"vertex"},{"name":"THE VALLEY ROAD","song_type":"original","performances":6,"type":"song","_id":"427","_type":"vertex"},{"name":"Graham","type":"artist","_id":"428","_type":"vertex"},{"name":"WALK IN THE SUNSHINE","song_type":"original","performances":0,"type":"song","_id":"429","_type":"vertex"},{"name":"ETERNITY","song_type":"original","performances":44,"type":"song","_id":"43","_type":"vertex"},{"name":"Welnick_Bralove","type":"artist","_id":"430","_type":"vertex"},{"name":"WE CAN RUN","song_type":"original","performances":22,"type":"song","_id":"431","_type":"vertex"},{"name":"WEATHER REPORT SUITE PRELUDE","song_type":"original","performances":52,"type":"song","_id":"432","_type":"vertex"},{"name":"WEATHER REPORT SUITE PART 1","song_type":"original","performances":47,"type":"song","_id":"433","_type":"vertex"},{"name":"Weir_Andersen","type":"artist","_id":"434","_type":"vertex"},{"name":"WEST L.A. FADEAWAY","song_type":"original","performances":140,"type":"song","_id":"435","_type":"vertex"},{"name":"WHATLL YOU RAISE","song_type":"original","performances":0,"type":"song","_id":"436","_type":"vertex"},{"name":"WHATS BECOME OF THE BABY","song_type":"original","performances":0,"type":"song","_id":"437","_type":"vertex"},{"name":"YOU CANT CATCH ME","song_type":"original","performances":1,"type":"song","_id":"438","_type":"vertex"},{"name":"YOU DONT HAVE TO ASK","song_type":"original","performances":5,"type":"song","_id":"439","_type":"vertex"},{"name":"GOOD GOLLY MISS MOLLY","song_type":"cover","performances":3,"type":"song","_id":"44","_type":"vertex"},{"name":"YOU SEE A BROKEN HEART","song_type":"original","performances":1,"type":"song","_id":"440","_type":"vertex"},{"name":"AINT IT CRAZY (THE RUB)","song_type":"cover","performances":12,"type":"song","_id":"441","_type":"vertex"},{"name":"Lightning_Hopkins","type":"artist","_id":"442","_type":"vertex"},{"name":"AINT THAT PECULIAR","song_type":"cover","performances":1,"type":"song","_id":"443","_type":"vertex"},{"name":"Robinson_et_al","type":"artist","_id":"444","_type":"vertex"},{"name":"ALABAMA BOUND","song_type":"cover","performances":1,"type":"song","_id":"445","_type":"vertex"},{"name":"Traditional","type":"artist","_id":"446","_type":"vertex"},{"name":"Bob_Dylan","type":"artist","_id":"447","_type":"vertex"},{"name":"ALL I HAVE TO DO IS DREAM","song_type":"cover","performances":1,"type":"song","_id":"448","_type":"vertex"},{"name":"Boudleaux_Bryant","type":"artist","_id":"449","_type":"vertex"},{"name":"DEVIL WITH A BLUE DRESS","type":"song","_id":"45","_type":"vertex"},{"name":"ALL OF MY LOVE","song_type":"cover","performances":1,"type":"song","_id":"450","_type":"vertex"},{"name":"Unknown","type":"artist","_id":"451","_type":"vertex"},{"name":"AND WE BID YOU GOODNIGHT","song_type":"cover","performances":61,"type":"song","_id":"452","_type":"vertex"},{"name":"All","type":"artist","_id":"453","_type":"vertex"},{"name":"ANY WONDER","song_type":"cover","performances":1,"type":"song","_id":"454","_type":"vertex"},{"name":"ARE YOU LONELY FOR ME BABY","song_type":"cover","performances":1,"type":"song","_id":"455","_type":"vertex"},{"name":"Freddie_Scott","type":"artist","_id":"456","_type":"vertex"},{"name":"Donna","type":"artist","_id":"457","_type":"vertex"},{"name":"Chuck_Berry","type":"artist","_id":"458","_type":"vertex"},{"name":"Pete_Townshend","type":"artist","_id":"459","_type":"vertex"},{"name":"BOX OF RAIN","song_type":"original","performances":161,"type":"song","_id":"46","_type":"vertex"},{"name":"Jimmy_Reed","type":"artist","_id":"460","_type":"vertex"},{"name":"Pigpen_Mydland","type":"artist","_id":"461","_type":"vertex"},{"name":"John_Fogerty","type":"artist","_id":"462","_type":"vertex"},{"name":"BALLAD OF CASEY JONES","song_type":"cover","performances":2,"type":"song","_id":"463","_type":"vertex"},{"name":"BALLAD OF FRANKIE LEE AND JUDAS PRIEST","song_type":"cover","performances":2,"type":"song","_id":"464","_type":"vertex"},{"name":"BANANA BOAT SONG (DAY-O)","song_type":"cover","performances":1,"type":"song","_id":"465","_type":"vertex"},{"name":"Darling_Carey_Arkin","type":"artist","_id":"466","_type":"vertex"},{"name":"Neville_Brothers","type":"artist","_id":"467","_type":"vertex"},{"name":"BANKS OF THE OHIO","song_type":"cover","performances":1,"type":"song","_id":"468","_type":"vertex"},{"name":"Joan_Baez","type":"artist","_id":"469","_type":"vertex"},{"name":"TOMORROW IS FOREVER","song_type":"cover","performances":10,"type":"song","_id":"47","_type":"vertex"},{"name":"BARBARA ALLEN","song_type":"cover","performances":2,"type":"song","_id":"470","_type":"vertex"},{"name":"Jesse_Fuller","type":"artist","_id":"471","_type":"vertex"},{"name":"BETTY AND DUPREE","song_type":"cover","performances":1,"type":"song","_id":"472","_type":"vertex"},{"name":"Smith_Dixon","type":"artist","_id":"473","_type":"vertex"},{"name":"Pigpen_Garcia","type":"artist","_id":"474","_type":"vertex"},{"name":"Harris_Terry","type":"artist","_id":"475","_type":"vertex"},{"name":"Pigpen_Weir","type":"artist","_id":"476","_type":"vertex"},{"name":"BIG BREASA","song_type":"cover","performances":1,"type":"song","_id":"477","_type":"vertex"},{"name":"Noah_Lewis","type":"artist","_id":"478","_type":"vertex"},{"name":"Johnny_Cash","type":"artist","_id":"479","_type":"vertex"},{"name":"CANDYMAN","song_type":"original","performances":277,"type":"song","_id":"48","_type":"vertex"},{"name":"Lennon_McCartney","type":"artist","_id":"480","_type":"vertex"},{"name":"Stephen_Stills","type":"artist","_id":"481","_type":"vertex"},{"name":"BLUE MOON","song_type":"cover","performances":1,"type":"song","_id":"482","_type":"vertex"},{"name":"Rodgers_Hart","type":"artist","_id":"483","_type":"vertex"},{"name":"Joey_Covington","type":"artist","_id":"484","_type":"vertex"},{"name":"BLUE SUEDE SHOES","song_type":"cover","performances":2,"type":"song","_id":"485","_type":"vertex"},{"name":"Carl_Perkins","type":"artist","_id":"486","_type":"vertex"},{"name":"BOXER THE","song_type":"cover","performances":1,"type":"song","_id":"487","_type":"vertex"},{"name":"Paul_Simon","type":"artist","_id":"488","_type":"vertex"},{"name":"BRING ME MY SHOTGUN","song_type":"cover","performances":1,"type":"song","_id":"489","_type":"vertex"},{"name":"HES GONE","song_type":"original","performances":328,"type":"song","_id":"49","_type":"vertex"},{"name":"Robbie_Robertson","type":"artist","_id":"490","_type":"vertex"},{"name":"F_and_B_Bryant","type":"artist","_id":"491","_type":"vertex"},{"name":"C.C.RIDER","song_type":"cover","performances":127,"type":"song","_id":"492","_type":"vertex"},{"name":"Rodney_Crowell","type":"artist","_id":"493","_type":"vertex"},{"name":"CATHYS CLOWN","song_type":"cover","performances":2,"type":"song","_id":"494","_type":"vertex"},{"name":"Don_and_Phil_Everly","type":"artist","_id":"495","_type":"vertex"},{"name":"CHECKING UP","song_type":"cover","performances":1,"type":"song","_id":"496","_type":"vertex"},{"name":"Sonny_Boy_Williamson","type":"artist","_id":"497","_type":"vertex"},{"name":"Elvin_Bishop","type":"artist","_id":"498","_type":"vertex"},{"name":"CHILDREN OF THE 80S","song_type":"cover","performances":2,"type":"song","_id":"499","_type":"vertex"},{"name":"GOING DOWN THE ROAD FEELING BAD","song_type":"cover","performances":293,"type":"song","_id":"5","_type":"vertex"},{"name":"JACK STRAW","song_type":"original","performances":473,"type":"song","_id":"50","_type":"vertex"},{"name":"Robyn_Hitchcock","type":"artist","_id":"500","_type":"vertex"},{"name":"Suzanne_Vega","type":"artist","_id":"501","_type":"vertex"},{"name":"COME BACK BABY","song_type":"cover","performances":1,"type":"song","_id":"502","_type":"vertex"},{"name":"COWBOY SONG","song_type":"cover","performances":1,"type":"song","_id":"503","_type":"vertex"},{"name":"DANCING IN THE STREET","song_type":"cover","performances":123,"type":"song","_id":"504","_type":"vertex"},{"name":"Stevenson_et_al","type":"artist","_id":"505","_type":"vertex"},{"name":"DARLING COREY","song_type":"cover","performances":1,"type":"song","_id":"506","_type":"vertex"},{"name":"Garcia_Weir","type":"artist","_id":"507","_type":"vertex"},{"name":"DEAD MAN DEAD MAN","song_type":"cover","performances":2,"type":"song","_id":"508","_type":"vertex"},{"name":"DEAR MR FANTASY","song_type":"cover","performances":58,"type":"song","_id":"509","_type":"vertex"},{"name":"ROW JIMMY","song_type":"original","performances":274,"type":"song","_id":"51","_type":"vertex"},{"name":"Winwood_et_al","type":"artist","_id":"510","_type":"vertex"},{"name":"Rev_Gary_Davis","type":"artist","_id":"511","_type":"vertex"},{"name":"DEATH LETTER BLUES","song_type":"cover","performances":1,"type":"song","_id":"512","_type":"vertex"},{"name":"DEVIL WITH THE BLUE DRESS ON","song_type":"cover","performances":3,"type":"song","_id":"513","_type":"vertex"},{"name":"Long_Stevenson","type":"artist","_id":"514","_type":"vertex"},{"name":"DO YOU WANNA DANCE?","song_type":"cover","performances":1,"type":"song","_id":"515","_type":"vertex"},{"name":"Bobby_Freeman","type":"artist","_id":"516","_type":"vertex"},{"name":"DONT MESS UP A GOOD THING","song_type":"cover","performances":1,"type":"song","_id":"517","_type":"vertex"},{"name":"Oliver_Sain","type":"artist","_id":"518","_type":"vertex"},{"name":"DONT THINK TWICE ITS ALL RIGHT","song_type":"cover","performances":1,"type":"song","_id":"519","_type":"vertex"},{"name":"WAVE THAT FLAG","song_type":"original","performances":15,"type":"song","_id":"52","_type":"vertex"},{"name":"Willie_Dixon","type":"artist","_id":"520","_type":"vertex"},{"name":"DRINK UP AND GO HOME","song_type":"cover","performances":1,"type":"song","_id":"521","_type":"vertex"},{"name":"EARLY MORNING RAIN","song_type":"cover","performances":2,"type":"song","_id":"522","_type":"vertex"},{"name":"Gordon_Lightfoot","type":"artist","_id":"523","_type":"vertex"},{"name":"EASY RIDER","song_type":"cover","performances":1,"type":"song","_id":"524","_type":"vertex"},{"name":"Spencer_Davis","type":"artist","_id":"525","_type":"vertex"},{"name":"SAY BOSS MAN (EIGHTEEN CHILDREN)","song_type":"cover","performances":1,"type":"song","_id":"526","_type":"vertex"},{"name":"Bo_Diddley","type":"artist","_id":"527","_type":"vertex"},{"name":"Marty_Robbins","type":"artist","_id":"528","_type":"vertex"},{"name":"EMPTY HEART","song_type":"cover","performances":1,"type":"song","_id":"529","_type":"vertex"},{"name":"BIG RAILROAD BLUES","song_type":"cover","performances":175,"type":"song","_id":"53","_type":"vertex"},{"name":"Jagger_Richard","type":"artist","_id":"530","_type":"vertex"},{"name":"EVERY TIME YOU GO AWAY","song_type":"cover","performances":1,"type":"song","_id":"531","_type":"vertex"},{"name":"Daryl_Hall","type":"artist","_id":"532","_type":"vertex"},{"name":"Hall_and_Oates","type":"artist","_id":"533","_type":"vertex"},{"name":"Davenport_Cooley","type":"artist","_id":"534","_type":"vertex"},{"name":"FIRE IN THE CITY","song_type":"cover","performances":1,"type":"song","_id":"535","_type":"vertex"},{"name":"Peter_Krug","type":"artist","_id":"536","_type":"vertex"},{"name":"Jon_Hendricks","type":"artist","_id":"537","_type":"vertex"},{"name":"THE FLOOD","song_type":"cover","performances":1,"type":"song","_id":"538","_type":"vertex"},{"name":"Neil_Young","type":"artist","_id":"539","_type":"vertex"},{"name":"TENNESSE JED","type":"song","_id":"54","_type":"vertex"},{"name":"Stevens","type":"artist","_id":"540","_type":"vertex"},{"name":"GAMES PEOPLE PLAY","song_type":"cover","performances":1,"type":"song","_id":"541","_type":"vertex"},{"name":"Joe_South","type":"artist","_id":"542","_type":"vertex"},{"name":"GANSTER OF LOVE","song_type":"cover","performances":1,"type":"song","_id":"543","_type":"vertex"},{"name":"Johnny_Guitar_Watson","type":"artist","_id":"544","_type":"vertex"},{"name":"GATHERING FLOWERS FOR THE MASTERS BOUQUET","song_type":"cover","performances":1,"type":"song","_id":"545","_type":"vertex"},{"name":"Marvin_Baumgardner","type":"artist","_id":"546","_type":"vertex"},{"name":"GIMME SOME LOVING","song_type":"cover","performances":87,"type":"song","_id":"547","_type":"vertex"},{"name":"Winwood_Davis","type":"artist","_id":"548","_type":"vertex"},{"name":"Van_Morrison","type":"artist","_id":"549","_type":"vertex"},{"name":"YOU AINT WOMAN ENOUGH","song_type":"cover","performances":15,"type":"song","_id":"55","_type":"vertex"},{"name":"GOOD DAY SUNSHINE","song_type":"cover","performances":1,"type":"song","_id":"550","_type":"vertex"},{"name":"Blackwell_Marascalco","type":"artist","_id":"551","_type":"vertex"},{"name":"Resnick_Clark","type":"artist","_id":"552","_type":"vertex"},{"name":"Pigpen_Weir_Mydland","type":"artist","_id":"553","_type":"vertex"},{"name":"Williamson","type":"artist","_id":"554","_type":"vertex"},{"name":"GOOD TIMES","song_type":"cover","performances":47,"type":"song","_id":"555","_type":"vertex"},{"name":"Sam_Cooke","type":"artist","_id":"556","_type":"vertex"},{"name":"Leadbelly","type":"artist","_id":"557","_type":"vertex"},{"name":"GOT MY MOJO WORKING","song_type":"cover","performances":2,"type":"song","_id":"558","_type":"vertex"},{"name":"Preston_Foster","type":"artist","_id":"559","_type":"vertex"},{"name":"LOSER","song_type":"original","performances":345,"type":"song","_id":"56","_type":"vertex"},{"name":"GREEN GREEN GRASS OF HOME","song_type":"cover","performances":9,"type":"song","_id":"560","_type":"vertex"},{"name":"Curly_Putnam","type":"artist","_id":"561","_type":"vertex"},{"name":"Redding","type":"artist","_id":"562","_type":"vertex"},{"name":"HE WAS A FRIEND OF MINE","song_type":"cover","performances":17,"type":"song","_id":"563","_type":"vertex"},{"name":"Mark_Spoelstra","type":"artist","_id":"564","_type":"vertex"},{"name":"HELP ME RHONDA","song_type":"cover","performances":1,"type":"song","_id":"565","_type":"vertex"},{"name":"Brian_Wilson","type":"artist","_id":"566","_type":"vertex"},{"name":"Beach_Boys","type":"artist","_id":"567","_type":"vertex"},{"name":"HEY LITTLE ONE","song_type":"cover","performances":3,"type":"song","_id":"568","_type":"vertex"},{"name":"Bernette_Vorzon","type":"artist","_id":"569","_type":"vertex"},{"name":"DEAL","song_type":"original","performances":423,"type":"song","_id":"57","_type":"vertex"},{"name":"Meters_(Traditional)","type":"artist","_id":"570","_type":"vertex"},{"name":"HI-HEEL SNEAKERS","song_type":"cover","performances":5,"type":"song","_id":"571","_type":"vertex"},{"name":"Higgenbotham","type":"artist","_id":"572","_type":"vertex"},{"name":"Freddie_King","type":"artist","_id":"573","_type":"vertex"},{"name":"None","type":"artist","_id":"574","_type":"vertex"},{"name":"HIGHWAY 61 REVISITED","song_type":"cover","performances":3,"type":"song","_id":"575","_type":"vertex"},{"name":"HOOCHIE COOCHIE MAN","song_type":"cover","performances":1,"type":"song","_id":"576","_type":"vertex"},{"name":"Leroy_Carr_Frank_Stokes","type":"artist","_id":"577","_type":"vertex"},{"name":"HOW SWEET IT IS (TO BE LOVED BY YOU)","song_type":"cover","performances":1,"type":"song","_id":"578","_type":"vertex"},{"name":"Holland_et_al","type":"artist","_id":"579","_type":"vertex"},{"name":"BIRD SONG","type":"song","_id":"58","_type":"vertex"},{"name":"(BABY) HULLY GULLY","song_type":"cover","performances":1,"type":"song","_id":"580","_type":"vertex"},{"name":"Smith_Goldsmith","type":"artist","_id":"581","_type":"vertex"},{"name":"I AINT SUPERSTITIOUS","song_type":"cover","performances":8,"type":"song","_id":"582","_type":"vertex"},{"name":"Sonny_Curtis","type":"artist","_id":"583","_type":"vertex"},{"name":"I GOT A MIND TO GIVE UP LIVING","song_type":"cover","performances":1,"type":"song","_id":"584","_type":"vertex"},{"name":"Boz_Scaggs","type":"artist","_id":"585","_type":"vertex"},{"name":"I HEARD IT THROUGH THE GRAPEVINE","song_type":"cover","performances":1,"type":"song","_id":"586","_type":"vertex"},{"name":"Strong_Whitfield","type":"artist","_id":"587","_type":"vertex"},{"name":"I JUST WANT TO MAKE LOVE TO YOU","song_type":"cover","performances":4,"type":"song","_id":"588","_type":"vertex"},{"name":"I KNOW ITS A SIN","song_type":"cover","performances":11,"type":"song","_id":"589","_type":"vertex"},{"name":"SUGAREE","song_type":"original","performances":357,"type":"song","_id":"59","_type":"vertex"},{"name":"I SECOND THAT EMOTION","song_type":"cover","performances":6,"type":"song","_id":"590","_type":"vertex"},{"name":"Robinson_Cleveland","type":"artist","_id":"591","_type":"vertex"},{"name":"George_Harrison","type":"artist","_id":"592","_type":"vertex"},{"name":"I WASHED MY HANDS IN MUDDY WATER","song_type":"cover","performances":1,"type":"song","_id":"593","_type":"vertex"},{"name":"J_Babcock","type":"artist","_id":"594","_type":"vertex"},{"name":"ILL GO CRAZY","song_type":"cover","performances":1,"type":"song","_id":"595","_type":"vertex"},{"name":"James_Brown","type":"artist","_id":"596","_type":"vertex"},{"name":"IM A HOG FOR YOU BABY","song_type":"cover","performances":4,"type":"song","_id":"597","_type":"vertex"},{"name":"Leiber_Stoller","type":"artist","_id":"598","_type":"vertex"},{"name":"IM A KING BEE","song_type":"cover","performances":38,"type":"song","_id":"599","_type":"vertex"},{"name":"MONA","song_type":"cover","performances":1,"type":"song","_id":"6","_type":"vertex"},{"name":"CRAZY FINGERS","song_type":"original","performances":144,"type":"song","_id":"60","_type":"vertex"},{"name":"James_Moore","type":"artist","_id":"600","_type":"vertex"},{"name":"IM A LOVING MAN","song_type":"cover","performances":0,"type":"song","_id":"601","_type":"vertex"},{"name":"Clancy_Carlile","type":"artist","_id":"602","_type":"vertex"},{"name":"IVE BEEN ALL AROUND THIS WORLD","song_type":"cover","performances":18,"type":"song","_id":"603","_type":"vertex"},{"name":"IVE GOT A TIGER BY THE TAIL","song_type":"cover","performances":1,"type":"song","_id":"604","_type":"vertex"},{"name":"Owens_Howard","type":"artist","_id":"605","_type":"vertex"},{"name":"IVE JUST SEEN A FACE","song_type":"cover","performances":1,"type":"song","_id":"606","_type":"vertex"},{"name":"IN THE PINES","song_type":"cover","performances":1,"type":"song","_id":"607","_type":"vertex"},{"name":"IN THE MIDNIGHT HOUR","song_type":"cover","performances":46,"type":"song","_id":"608","_type":"vertex"},{"name":"Pickett_Cropper","type":"artist","_id":"609","_type":"vertex"},{"name":"MIDNIGHT HOUR","type":"song","_id":"61","_type":"vertex"},{"name":"IT HURTS ME TOO","song_type":"cover","performances":47,"type":"song","_id":"610","_type":"vertex"},{"name":"Tampa_Red","type":"artist","_id":"611","_type":"vertex"},{"name":"IT TAKES ... A TRAIN TO CRY","song_type":"cover","performances":7,"type":"song","_id":"612","_type":"vertex"},{"name":"ITS A MANS MANS MANS WORLD","song_type":"cover","performances":11,"type":"song","_id":"613","_type":"vertex"},{"name":"Brown_et_al","type":"artist","_id":"614","_type":"vertex"},{"name":"B_and_S_Womack","type":"artist","_id":"615","_type":"vertex"},{"name":"ITS ALL OVER NOW BABY BLUE","song_type":"cover","performances":145,"type":"song","_id":"616","_type":"vertex"},{"name":"ITS MY OWN FAULT","song_type":"cover","performances":1,"type":"song","_id":"617","_type":"vertex"},{"name":"John_Lee_Hooker","type":"artist","_id":"618","_type":"vertex"},{"name":"IVE SEEN THEM ALL","song_type":"cover","performances":1,"type":"song","_id":"619","_type":"vertex"},{"name":"IKO IKO","song_type":"cover","performances":185,"type":"song","_id":"62","_type":"vertex"},{"name":"JACK-A-ROE","song_type":"cover","performances":115,"type":"song","_id":"620","_type":"vertex"},{"name":"JOHNS OTHER","song_type":"cover","performances":1,"type":"song","_id":"621","_type":"vertex"},{"name":"Papa_John_Creach","type":"artist","_id":"622","_type":"vertex"},{"name":"Jorma_Kaukonen","type":"artist","_id":"623","_type":"vertex"},{"name":"JORDAN","song_type":"cover","performances":12,"type":"song","_id":"624","_type":"vertex"},{"name":"JUST LIKE TOM THUMBS BLUES","song_type":"cover","performances":58,"type":"song","_id":"625","_type":"vertex"},{"name":"KATIE MAE","song_type":"cover","performances":11,"type":"song","_id":"626","_type":"vertex"},{"name":"Clapton_Whitlock","type":"artist","_id":"627","_type":"vertex"},{"name":"Lesh_Mydland","type":"artist","_id":"628","_type":"vertex"},{"name":"Traditional_(arr_Valens)","type":"artist","_id":"629","_type":"vertex"},{"name":"HIGH TIME","song_type":"original","performances":133,"type":"song","_id":"63","_type":"vertex"},{"name":"LADY DI AND I","song_type":"cover","performances":2,"type":"song","_id":"630","_type":"vertex"},{"name":"THE LAST TIME","song_type":"cover","performances":70,"type":"song","_id":"631","_type":"vertex"},{"name":"Jagger_Richards","type":"artist","_id":"632","_type":"vertex"},{"name":"LEAVE YOUR LOVE AT HOME","song_type":"cover","performances":1,"type":"song","_id":"633","_type":"vertex"},{"name":"LET IT BE ME","song_type":"cover","performances":1,"type":"song","_id":"634","_type":"vertex"},{"name":"Curtis_et_al","type":"artist","_id":"635","_type":"vertex"},{"name":"LET ME IN","song_type":"cover","performances":1,"type":"song","_id":"636","_type":"vertex"},{"name":"Gene_Crysler","type":"artist","_id":"637","_type":"vertex"},{"name":"LITTLE BUNNY FOO FOO","song_type":"cover","performances":1,"type":"song","_id":"638","_type":"vertex"},{"name":"LONG BLACK LIMOUSINE","song_type":"cover","performances":6,"type":"song","_id":"639","_type":"vertex"},{"name":"HELL IN A BUCKET","song_type":"original","performances":216,"type":"song","_id":"64","_type":"vertex"},{"name":"Stovall_George","type":"artist","_id":"640","_type":"vertex"},{"name":"LONG TALL SALLY","song_type":"cover","performances":1,"type":"song","_id":"641","_type":"vertex"},{"name":"Johnson_et_al","type":"artist","_id":"642","_type":"vertex"},{"name":"LOOK ON YONDERS WALL","song_type":"cover","performances":1,"type":"song","_id":"643","_type":"vertex"},{"name":"Arthur_Cruddup","type":"artist","_id":"644","_type":"vertex"},{"name":"Pigpen?","type":"artist","_id":"645","_type":"vertex"},{"name":"Richard_Berry","type":"artist","_id":"646","_type":"vertex"},{"name":"LUCY IN THE SKY WITH DIAMONDS","song_type":"cover","performances":19,"type":"song","_id":"647","_type":"vertex"},{"name":"LUCKY MAN","song_type":"cover","performances":0,"type":"song","_id":"648","_type":"vertex"},{"name":"Brecht_Wiell","type":"artist","_id":"649","_type":"vertex"},{"name":"ALABAMA GETAWAY","song_type":"original","performances":141,"type":"song","_id":"65","_type":"vertex"},{"name":"Merle_Haggard","type":"artist","_id":"650","_type":"vertex"},{"name":"MAN SMART (WOMAN SMARTER)","song_type":"cover","performances":199,"type":"song","_id":"651","_type":"vertex"},{"name":"Norman_Span","type":"artist","_id":"652","_type":"vertex"},{"name":"MANNISH BOY (IM A MAN)","song_type":"cover","performances":1,"type":"song","_id":"653","_type":"vertex"},{"name":"Morganfield_McDaniel","type":"artist","_id":"654","_type":"vertex"},{"name":"MARRIOTT USA","song_type":"cover","performances":1,"type":"song","_id":"655","_type":"vertex"},{"name":"MATILDA MATILDA","song_type":"cover","performances":6,"type":"song","_id":"656","_type":"vertex"},{"name":"Harry_Belafonte","type":"artist","_id":"657","_type":"vertex"},{"name":"Kristofferson_Foster","type":"artist","_id":"658","_type":"vertex"},{"name":"John_Phillips","type":"artist","_id":"659","_type":"vertex"},{"name":"VISIONS OF JOHANNA","song_type":"cover","performances":8,"type":"song","_id":"66","_type":"vertex"},{"name":"MEMPHIS BLUES","song_type":"cover","performances":76,"type":"song","_id":"660","_type":"vertex"},{"name":"THE MIGHTY QUINN (QUINN THE ESKIMO)","song_type":"cover","performances":59,"type":"song","_id":"661","_type":"vertex"},{"name":"Bonnie_Dobson","type":"artist","_id":"662","_type":"vertex"},{"name":"MR TAMBOURINE MAN","song_type":"cover","performances":1,"type":"song","_id":"663","_type":"vertex"},{"name":"MY BABE","song_type":"cover","performances":1,"type":"song","_id":"664","_type":"vertex"},{"name":"NEAL CASSADY RAP","song_type":"cover","performances":1,"type":"song","_id":"665","_type":"vertex"},{"name":"Neal_Cassady","type":"artist","_id":"666","_type":"vertex"},{"name":"NEIGHBOR NEIGHBOR","song_type":"cover","performances":1,"type":"song","_id":"667","_type":"vertex"},{"name":"Valler_Meaux","type":"artist","_id":"668","_type":"vertex"},{"name":"Guida_Royster","type":"artist","_id":"669","_type":"vertex"},{"name":"GIMME SOME LOVIN","type":"song","_id":"67","_type":"vertex"},{"name":"Forest_Harvey","type":"artist","_id":"670","_type":"vertex"},{"name":"Hardin_Petty","type":"artist","_id":"671","_type":"vertex"},{"name":"ODE FOR BILLIE DEAN","song_type":"cover","performances":1,"type":"song","_id":"672","_type":"vertex"},{"name":"Elizabeth_Cotten","type":"artist","_id":"673","_type":"vertex"},{"name":"West_Tilghman_Holly","type":"artist","_id":"674","_type":"vertex"},{"name":"OKIE FROM MUSKOGEE","song_type":"cover","performances":1,"type":"song","_id":"675","_type":"vertex"},{"name":"OL SLEWFOOT","song_type":"cover","performances":9,"type":"song","_id":"676","_type":"vertex"},{"name":"Hausey_Manney","type":"artist","_id":"677","_type":"vertex"},{"name":"OLD OLD HOUSE","song_type":"cover","performances":2,"type":"song","_id":"678","_type":"vertex"},{"name":"Jones_Bynum","type":"artist","_id":"679","_type":"vertex"},{"name":"CASSIDY","song_type":"original","performances":334,"type":"song","_id":"68","_type":"vertex"},{"name":"ONE KIND FAVOR","song_type":"cover","performances":4,"type":"song","_id":"680","_type":"vertex"},{"name":"Blind_Lemon_Jefferson","type":"artist","_id":"681","_type":"vertex"},{"name":"ONE WAY OUT","song_type":"cover","performances":1,"type":"song","_id":"682","_type":"vertex"},{"name":"James_Sehorn_Williamson","type":"artist","_id":"683","_type":"vertex"},{"name":"ONE YOU LOVE THE","song_type":"cover","performances":1,"type":"song","_id":"684","_type":"vertex"},{"name":"OVERSEAS STOMP (LINDBERGH HOP)","song_type":"cover","performances":3,"type":"song","_id":"685","_type":"vertex"},{"name":"Jones_Shade","type":"artist","_id":"686","_type":"vertex"},{"name":"PAIN IN MY HEART","song_type":"cover","performances":2,"type":"song","_id":"687","_type":"vertex"},{"name":"Naomi_Neville","type":"artist","_id":"688","_type":"vertex"},{"name":"PAPERBACK WRITER","song_type":"cover","performances":1,"type":"song","_id":"689","_type":"vertex"},{"name":"SHIP OF FOOLS","song_type":"original","performances":225,"type":"song","_id":"69","_type":"vertex"},{"name":"PARCHMAN FARM","song_type":"cover","performances":1,"type":"song","_id":"690","_type":"vertex"},{"name":"Mose_Allison","type":"artist","_id":"691","_type":"vertex"},{"name":"PEGGYO","song_type":"cover","performances":265,"type":"song","_id":"692","_type":"vertex"},{"name":"PEGGY SUE","song_type":"cover","performances":1,"type":"song","_id":"693","_type":"vertex"},{"name":"Holly_Allison_Petty","type":"artist","_id":"694","_type":"vertex"},{"name":"PLEASE PLEASE PLEASE","song_type":"cover","performances":1,"type":"song","_id":"695","_type":"vertex"},{"name":"POLLUTION","song_type":"cover","performances":1,"type":"song","_id":"696","_type":"vertex"},{"name":"PRISONER BLUES","song_type":"cover","performances":1,"type":"song","_id":"697","_type":"vertex"},{"name":"QUEEN JANE APPROXIMATELY","song_type":"cover","performances":129,"type":"song","_id":"698","_type":"vertex"},{"name":"Don_Rollins","type":"artist","_id":"699","_type":"vertex"},{"name":"WHERE HAVE THE HEROES GONE","type":"song","_id":"7","_type":"vertex"},{"name":"I NEED A MIRACLE","song_type":"original","performances":271,"type":"song","_id":"70","_type":"vertex"},{"name":"RAILROADING ON THE GREAT DIVIDE","song_type":"cover","performances":1,"type":"song","_id":"700","_type":"vertex"},{"name":"Sara_Carter","type":"artist","_id":"701","_type":"vertex"},{"name":"RAINY DAY WOMEN","song_type":"cover","performances":2,"type":"song","_id":"702","_type":"vertex"},{"name":"RIOT IN CELL BLOCK","song_type":"cover","performances":1,"type":"song","_id":"703","_type":"vertex"},{"name":"Lieber_Stoller","type":"artist","_id":"704","_type":"vertex"},{"name":"RIP IT UP","song_type":"cover","performances":1,"type":"song","_id":"705","_type":"vertex"},{"name":"Blackwell_Marascaico","type":"artist","_id":"706","_type":"vertex"},{"name":"RIVER DEEP MOUNTAIN HIGH","song_type":"cover","performances":1,"type":"song","_id":"707","_type":"vertex"},{"name":"Greenwich_Barry_Spector","type":"artist","_id":"708","_type":"vertex"},{"name":"(IM A) ROAD RUNNER","song_type":"cover","performances":2,"type":"song","_id":"709","_type":"vertex"},{"name":"DESOLATION ROW","song_type":"cover","performances":58,"type":"song","_id":"71","_type":"vertex"},{"name":"ROBERTA","song_type":"cover","performances":2,"type":"song","_id":"710","_type":"vertex"},{"name":"ROCKING PNEUMONIA","song_type":"cover","performances":5,"type":"song","_id":"711","_type":"vertex"},{"name":"Vincent_Smith","type":"artist","_id":"712","_type":"vertex"},{"name":"ROLLING AND TUMBLING","song_type":"cover","performances":2,"type":"song","_id":"713","_type":"vertex"},{"name":"Willie_Newbern","type":"artist","_id":"714","_type":"vertex"},{"name":"ROSA LEE MCFALL","song_type":"cover","performances":16,"type":"song","_id":"715","_type":"vertex"},{"name":"Charlie_Monroe","type":"artist","_id":"716","_type":"vertex"},{"name":"RUN RUDOLPH RUN","song_type":"cover","performances":6,"type":"song","_id":"717","_type":"vertex"},{"name":"Brodie_Marks","type":"artist","_id":"718","_type":"vertex"},{"name":"(I CANT GET NO) SATISFACTION","song_type":"cover","performances":31,"type":"song","_id":"719","_type":"vertex"},{"name":"DONT EASE ME IN","song_type":"cover","performances":316,"type":"song","_id":"72","_type":"vertex"},{"name":"SAWMILL","song_type":"cover","performances":3,"type":"song","_id":"720","_type":"vertex"},{"name":"Tillis_Whatley","type":"artist","_id":"721","_type":"vertex"},{"name":"SEARCHING","song_type":"cover","performances":3,"type":"song","_id":"722","_type":"vertex"},{"name":"SEASONS OF MY HEART","song_type":"cover","performances":5,"type":"song","_id":"723","_type":"vertex"},{"name":"Jones_Edwards","type":"artist","_id":"724","_type":"vertex"},{"name":"SGT PEPPERS BAND","song_type":"cover","performances":1,"type":"song","_id":"725","_type":"vertex"},{"name":"Weir_Garcia","type":"artist","_id":"726","_type":"vertex"},{"name":"SHES MINE","song_type":"cover","performances":3,"type":"song","_id":"727","_type":"vertex"},{"name":"SICK AND TIRED","song_type":"cover","performances":2,"type":"song","_id":"728","_type":"vertex"},{"name":"Bartholomew_Kenner","type":"artist","_id":"729","_type":"vertex"},{"name":"ALTHEA","song_type":"original","performances":272,"type":"song","_id":"73","_type":"vertex"},{"name":"Lawlor_Blake","type":"artist","_id":"730","_type":"vertex"},{"name":"SILVER THREADS AND GOLDEN NEEDLES","song_type":"cover","performances":17,"type":"song","_id":"731","_type":"vertex"},{"name":"Reynolds_Rhodes","type":"artist","_id":"732","_type":"vertex"},{"name":"SITTING ON TOP OF THE WORLD","song_type":"cover","performances":44,"type":"song","_id":"733","_type":"vertex"},{"name":"Jacobs_Carter","type":"artist","_id":"734","_type":"vertex"},{"name":"SLOW BLUES","song_type":"cover","performances":1,"type":"song","_id":"735","_type":"vertex"},{"name":"SLOW TRAIN","song_type":"cover","performances":3,"type":"song","_id":"736","_type":"vertex"},{"name":"Chester_Burnette","type":"artist","_id":"737","_type":"vertex"},{"name":"SO SAD (TO WATCH GOOD LOVE GO BAD)","song_type":"cover","performances":1,"type":"song","_id":"738","_type":"vertex"},{"name":"Don_Everley","type":"artist","_id":"739","_type":"vertex"},{"name":"UNCLE JOHNS BAND","song_type":"original","performances":332,"type":"song","_id":"74","_type":"vertex"},{"name":"SO WHAT","song_type":"cover","performances":1,"type":"song","_id":"740","_type":"vertex"},{"name":"Miles_Davis","type":"artist","_id":"741","_type":"vertex"},{"name":"SONS AND DAUGHTERS","song_type":"cover","performances":1,"type":"song","_id":"742","_type":"vertex"},{"name":"Bruce_Hornsby","type":"artist","_id":"743","_type":"vertex"},{"name":"STARS AND STRIPES FOREVER","song_type":"cover","performances":4,"type":"song","_id":"744","_type":"vertex"},{"name":"John_Philip_Sousa","type":"artist","_id":"745","_type":"vertex"},{"name":"START ME UP","song_type":"cover","performances":1,"type":"song","_id":"746","_type":"vertex"},{"name":"STEALING","song_type":"cover","performances":4,"type":"song","_id":"747","_type":"vertex"},{"name":"Gus_Cannon","type":"artist","_id":"748","_type":"vertex"},{"name":"Bob_Marley","type":"artist","_id":"749","_type":"vertex"},{"name":"WHEN PUSH COMES TO SHOVE","song_type":"original","performances":58,"type":"song","_id":"75","_type":"vertex"},{"name":"SWEET GEORGIA BROWN","song_type":"cover","performances":1,"type":"song","_id":"750","_type":"vertex"},{"name":"Bernie_Casey_Pinkard","type":"artist","_id":"751","_type":"vertex"},{"name":"SWING LOW SWEET CHARIOT","song_type":"cover","performances":8,"type":"song","_id":"752","_type":"vertex"},{"name":"Al_Green","type":"artist","_id":"753","_type":"vertex"},{"name":"TAKE IT ALL OFF","song_type":"cover","performances":1,"type":"song","_id":"754","_type":"vertex"},{"name":"Eva_Darby","type":"artist","_id":"755","_type":"vertex"},{"name":"TELL IT TO ME","song_type":"cover","performances":3,"type":"song","_id":"756","_type":"vertex"},{"name":"Etta_James","type":"artist","_id":"757","_type":"vertex"},{"name":"Paul_McCartney","type":"artist","_id":"758","_type":"vertex"},{"name":"THATLL BE THE DAY","song_type":"cover","performances":1,"type":"song","_id":"759","_type":"vertex"},{"name":"SAMSON AND DELILAH","song_type":"cover","performances":364,"type":"song","_id":"76","_type":"vertex"},{"name":"Buddy_Holly","type":"artist","_id":"760","_type":"vertex"},{"name":"THATS ALL RIGHT MAMA","song_type":"cover","performances":2,"type":"song","_id":"761","_type":"vertex"},{"name":"THERES SOMETHING ON YOUR MIND","song_type":"cover","performances":2,"type":"song","_id":"762","_type":"vertex"},{"name":"Big_Jay_McNeely?","type":"artist","_id":"763","_type":"vertex"},{"name":"THINGS I USED TO DO","song_type":"cover","performances":1,"type":"song","_id":"764","_type":"vertex"},{"name":"Eddie_Jones","type":"artist","_id":"765","_type":"vertex"},{"name":"THIRTY DAYS","song_type":"cover","performances":1,"type":"song","_id":"766","_type":"vertex"},{"name":"TIMES THEY ARE A CHANGING THE","song_type":"cover","performances":3,"type":"song","_id":"767","_type":"vertex"},{"name":"TOM DOOLEY","song_type":"cover","performances":1,"type":"song","_id":"768","_type":"vertex"},{"name":"Dolly_Parton","type":"artist","_id":"769","_type":"vertex"},{"name":"STUCK INSIDE OF MOBILE","type":"song","_id":"77","_type":"vertex"},{"name":"TOUGH MAMA","song_type":"cover","performances":1,"type":"song","_id":"770","_type":"vertex"},{"name":"Scott_Malone","type":"artist","_id":"771","_type":"vertex"},{"name":"TWENTY SIX MILES (SANTA CATALINA)","song_type":"cover","performances":1,"type":"song","_id":"772","_type":"vertex"},{"name":"Belland_Larson","type":"artist","_id":"773","_type":"vertex"},{"name":"TWIST AND SHOUT","song_type":"cover","performances":1,"type":"song","_id":"774","_type":"vertex"},{"name":"Medley_Russell","type":"artist","_id":"775","_type":"vertex"},{"name":"TWO TRAINS","song_type":"cover","performances":1,"type":"song","_id":"776","_type":"vertex"},{"name":"UNCLE SAMS BLUES","song_type":"cover","performances":1,"type":"song","_id":"777","_type":"vertex"},{"name":"VALLEY ROAD THE","song_type":"cover","performances":6,"type":"song","_id":"778","_type":"vertex"},{"name":"VIOLA LEE BLUES","song_type":"cover","performances":32,"type":"song","_id":"779","_type":"vertex"},{"name":"COLD RAIN AND SNOW","song_type":"cover","performances":241,"type":"song","_id":"78","_type":"vertex"},{"name":"WABASH CANNONBALL","song_type":"cover","performances":1,"type":"song","_id":"780","_type":"vertex"},{"name":"A.P.Carter","type":"artist","_id":"781","_type":"vertex"},{"name":"WAKE UP LITTLE SUSIE","song_type":"cover","performances":14,"type":"song","_id":"782","_type":"vertex"},{"name":"F_&_B_Bryant","type":"artist","_id":"783","_type":"vertex"},{"name":"WALK DOWN THE STREET","song_type":"cover","performances":1,"type":"song","_id":"784","_type":"vertex"},{"name":"Robert_Johnson","type":"artist","_id":"785","_type":"vertex"},{"name":"WALKING THE DOG","song_type":"cover","performances":6,"type":"song","_id":"786","_type":"vertex"},{"name":"Rufus_Thomas","type":"artist","_id":"787","_type":"vertex"},{"name":"WATCHING THE WHEELS","song_type":"cover","performances":1,"type":"song","_id":"788","_type":"vertex"},{"name":"John_Lennon","type":"artist","_id":"789","_type":"vertex"},{"name":"PICASSO MOON","song_type":"original","performances":77,"type":"song","_id":"79","_type":"vertex"},{"name":"Warren_Zevon","type":"artist","_id":"790","_type":"vertex"},{"name":"Cleveland_Gaye","type":"artist","_id":"791","_type":"vertex"},{"name":"WHEN A MAN LOVES A WOMAN","song_type":"cover","performances":1,"type":"song","_id":"792","_type":"vertex"},{"name":"Lewis_Wright","type":"artist","_id":"793","_type":"vertex"},{"name":"WHISKEY IN THE JAR","song_type":"cover","performances":0,"type":"song","_id":"794","_type":"vertex"},{"name":"WHOS LOVING YOU TONIGHT","song_type":"cover","performances":1,"type":"song","_id":"795","_type":"vertex"},{"name":"Jimmy_Rodgers","type":"artist","_id":"796","_type":"vertex"},{"name":"WILL THE CIRCLE BE UNBROKEN","song_type":"cover","performances":1,"type":"song","_id":"797","_type":"vertex"},{"name":"Allman_Brothers","type":"artist","_id":"798","_type":"vertex"},{"name":"Johnny_Otis","type":"artist","_id":"799","_type":"vertex"},{"name":"OH BOY","song_type":"cover","performances":2,"type":"song","_id":"8","_type":"vertex"},{"name":"DIRE WOLF","song_type":"original","performances":226,"type":"song","_id":"80","_type":"vertex"},{"name":"WINING BOY BLUES","song_type":"cover","performances":1,"type":"song","_id":"800","_type":"vertex"},{"name":"WO WOW HEY HEY","song_type":"cover","performances":1,"type":"song","_id":"801","_type":"vertex"},{"name":"WORKING MAN BLUES","song_type":"cover","performances":1,"type":"song","_id":"802","_type":"vertex"},{"name":"Merl_Haggard","type":"artist","_id":"803","_type":"vertex"},{"name":"Loretta_Lynn","type":"artist","_id":"804","_type":"vertex"},{"name":"YOU DONT LOVE ME","song_type":"cover","performances":1,"type":"song","_id":"805","_type":"vertex"},{"name":"Willie_Cobb","type":"artist","_id":"806","_type":"vertex"},{"name":"Hank_Williams","type":"artist","_id":"807","_type":"vertex"},{"name":"YOUNG BLOOD","song_type":"cover","performances":1,"type":"song","_id":"808","_type":"vertex"},{"name":"FOOLISH HEART","song_type":"original","performances":87,"type":"song","_id":"81","_type":"vertex"},{"name":"SCARLET BEGONIAS","song_type":"original","performances":316,"type":"song","_id":"82","_type":"vertex"},{"name":"EYES OF THE WORLD","song_type":"original","performances":381,"type":"song","_id":"83","_type":"vertex"},{"name":"SHAKEDOWN STREET","song_type":"original","performances":163,"type":"song","_id":"84","_type":"vertex"},{"name":"ESTIMATED PROPHET","song_type":"original","performances":390,"type":"song","_id":"85","_type":"vertex"},{"name":"THE WEIGHT","song_type":"cover","performances":41,"type":"song","_id":"86","_type":"vertex"},{"name":"TOUCH OF GREY","song_type":"original","performances":213,"type":"song","_id":"87","_type":"vertex"},{"name":"LITTLE RED ROOSTER","song_type":"cover","performances":272,"type":"song","_id":"88","_type":"vertex"},{"name":"DARK STAR","song_type":"original","performances":219,"type":"song","_id":"89","_type":"vertex"},{"name":"HERE COMES SUNSHINE","song_type":"original","performances":65,"type":"song","_id":"9","_type":"vertex"},{"name":"LET THE GOOD TIMES ROLL","type":"song","_id":"90","_type":"vertex"},{"name":"TERRAPIN STATION","song_type":"original","performances":302,"type":"song","_id":"91","_type":"vertex"},{"name":"STANDING ON THE MOON","song_type":"original","performances":75,"type":"song","_id":"92","_type":"vertex"},{"name":"RAIN","song_type":"cover","performances":12,"type":"song","_id":"93","_type":"vertex"},{"name":"STELLA BLUE","song_type":"original","performances":328,"type":"song","_id":"94","_type":"vertex"},{"name":"WHATS GOING ON","song_type":"cover","performances":1,"type":"song","_id":"95","_type":"vertex"},{"name":"DRUMS","song_type":"original","performances":1386,"type":"song","_id":"96","_type":"vertex"},{"name":"MY BROTHER ESAU","song_type":"original","performances":104,"type":"song","_id":"97","_type":"vertex"},{"name":"IT MUST HAVE BEEN THE ROSES","song_type":"original","performances":159,"type":"song","_id":"98","_type":"vertex"},{"name":"MIGHT AS WELL","song_type":"original","performances":111,"type":"song","_id":"99","_type":"vertex"}],"edges":[{"weight":1,"_id":"0","_type":"edge","_outV":"1","_inV":"2","_label":"followed_by"},{"weight":2,"_id":"1","_type":"edge","_outV":"1","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"10","_type":"edge","_outV":"9","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"100","_type":"edge","_outV":"46","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1000","_type":"edge","_outV":"11","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1001","_type":"edge","_outV":"176","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1002","_type":"edge","_outV":"176","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1003","_type":"edge","_outV":"176","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1004","_type":"edge","_outV":"176","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"1005","_type":"edge","_outV":"176","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1006","_type":"edge","_outV":"176","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1007","_type":"edge","_outV":"176","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1008","_type":"edge","_outV":"237","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"1009","_type":"edge","_outV":"73","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"101","_type":"edge","_outV":"46","_inV":"88","_label":"followed_by"},{"weight":26,"_id":"1010","_type":"edge","_outV":"73","_inV":"181","_label":"followed_by"},{"weight":9,"_id":"1011","_type":"edge","_outV":"73","_inV":"189","_label":"followed_by"},{"weight":10,"_id":"1012","_type":"edge","_outV":"73","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"1013","_type":"edge","_outV":"73","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"1014","_type":"edge","_outV":"73","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"1015","_type":"edge","_outV":"73","_inV":"50","_label":"followed_by"},{"weight":23,"_id":"1016","_type":"edge","_outV":"73","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1017","_type":"edge","_outV":"73","_inV":"85","_label":"followed_by"},{"weight":16,"_id":"1018","_type":"edge","_outV":"73","_inV":"68","_label":"followed_by"},{"weight":23,"_id":"1019","_type":"edge","_outV":"73","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"102","_type":"edge","_outV":"46","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"1020","_type":"edge","_outV":"73","_inV":"38","_label":"followed_by"},{"weight":20,"_id":"1021","_type":"edge","_outV":"73","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"1022","_type":"edge","_outV":"73","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"1023","_type":"edge","_outV":"73","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"1024","_type":"edge","_outV":"73","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1025","_type":"edge","_outV":"73","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1026","_type":"edge","_outV":"73","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"1027","_type":"edge","_outV":"73","_inV":"10","_label":"followed_by"},{"weight":12,"_id":"1028","_type":"edge","_outV":"73","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"1029","_type":"edge","_outV":"73","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"103","_type":"edge","_outV":"46","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1030","_type":"edge","_outV":"73","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1031","_type":"edge","_outV":"73","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1032","_type":"edge","_outV":"73","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"1033","_type":"edge","_outV":"73","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1034","_type":"edge","_outV":"73","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"1035","_type":"edge","_outV":"73","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"1036","_type":"edge","_outV":"73","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"1037","_type":"edge","_outV":"73","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1038","_type":"edge","_outV":"73","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"1039","_type":"edge","_outV":"73","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"104","_type":"edge","_outV":"46","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1040","_type":"edge","_outV":"73","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"1041","_type":"edge","_outV":"73","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"1042","_type":"edge","_outV":"73","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"1043","_type":"edge","_outV":"73","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1044","_type":"edge","_outV":"73","_inV":"238","_label":"followed_by"},{"weight":15,"_id":"1045","_type":"edge","_outV":"73","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1046","_type":"edge","_outV":"73","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1047","_type":"edge","_outV":"73","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"1048","_type":"edge","_outV":"73","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1049","_type":"edge","_outV":"73","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"105","_type":"edge","_outV":"46","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1050","_type":"edge","_outV":"73","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1051","_type":"edge","_outV":"73","_inV":"169","_label":"followed_by"},{"weight":3,"_id":"1052","_type":"edge","_outV":"73","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1053","_type":"edge","_outV":"73","_inV":"136","_label":"followed_by"},{"weight":2,"_id":"1054","_type":"edge","_outV":"73","_inV":"115","_label":"followed_by"},{"weight":6,"_id":"1055","_type":"edge","_outV":"73","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"1056","_type":"edge","_outV":"73","_inV":"239","_label":"followed_by"},{"weight":2,"_id":"1057","_type":"edge","_outV":"73","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"1058","_type":"edge","_outV":"73","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1059","_type":"edge","_outV":"73","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"106","_type":"edge","_outV":"46","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"1060","_type":"edge","_outV":"73","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"1061","_type":"edge","_outV":"73","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"1062","_type":"edge","_outV":"73","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1063","_type":"edge","_outV":"73","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1064","_type":"edge","_outV":"73","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"1065","_type":"edge","_outV":"73","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1066","_type":"edge","_outV":"73","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1067","_type":"edge","_outV":"240","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1068","_type":"edge","_outV":"227","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1069","_type":"edge","_outV":"227","_inV":"241","_label":"followed_by"},{"weight":2,"_id":"107","_type":"edge","_outV":"46","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1070","_type":"edge","_outV":"227","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"1071","_type":"edge","_outV":"227","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"1072","_type":"edge","_outV":"227","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"1073","_type":"edge","_outV":"227","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1074","_type":"edge","_outV":"227","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"1075","_type":"edge","_outV":"227","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"1076","_type":"edge","_outV":"227","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1077","_type":"edge","_outV":"227","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"1078","_type":"edge","_outV":"227","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1079","_type":"edge","_outV":"227","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"108","_type":"edge","_outV":"46","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1080","_type":"edge","_outV":"243","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1081","_type":"edge","_outV":"243","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1082","_type":"edge","_outV":"243","_inV":"160","_label":"followed_by"},{"weight":10,"_id":"1083","_type":"edge","_outV":"59","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1084","_type":"edge","_outV":"59","_inV":"54","_label":"followed_by"},{"weight":26,"_id":"1085","_type":"edge","_outV":"59","_inV":"24","_label":"followed_by"},{"weight":21,"_id":"1086","_type":"edge","_outV":"59","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"1087","_type":"edge","_outV":"59","_inV":"13","_label":"followed_by"},{"weight":14,"_id":"1088","_type":"edge","_outV":"59","_inV":"11","_label":"followed_by"},{"weight":4,"_id":"1089","_type":"edge","_outV":"59","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"109","_type":"edge","_outV":"46","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"1090","_type":"edge","_outV":"59","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1091","_type":"edge","_outV":"59","_inV":"218","_label":"followed_by"},{"weight":3,"_id":"1092","_type":"edge","_outV":"59","_inV":"23","_label":"followed_by"},{"weight":13,"_id":"1093","_type":"edge","_outV":"59","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1094","_type":"edge","_outV":"59","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"1095","_type":"edge","_outV":"59","_inV":"57","_label":"followed_by"},{"weight":26,"_id":"1096","_type":"edge","_outV":"59","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"1097","_type":"edge","_outV":"59","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"1098","_type":"edge","_outV":"59","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1099","_type":"edge","_outV":"59","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"11","_type":"edge","_outV":"9","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"110","_type":"edge","_outV":"46","_inV":"92","_label":"followed_by"},{"weight":5,"_id":"1100","_type":"edge","_outV":"59","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"1101","_type":"edge","_outV":"59","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1102","_type":"edge","_outV":"59","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"1103","_type":"edge","_outV":"59","_inV":"26","_label":"followed_by"},{"weight":32,"_id":"1104","_type":"edge","_outV":"59","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1105","_type":"edge","_outV":"59","_inV":"3","_label":"followed_by"},{"weight":11,"_id":"1106","_type":"edge","_outV":"59","_inV":"68","_label":"followed_by"},{"weight":16,"_id":"1107","_type":"edge","_outV":"59","_inV":"112","_label":"followed_by"},{"weight":6,"_id":"1108","_type":"edge","_outV":"59","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1109","_type":"edge","_outV":"59","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"111","_type":"edge","_outV":"46","_inV":"93","_label":"followed_by"},{"weight":4,"_id":"1110","_type":"edge","_outV":"59","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1111","_type":"edge","_outV":"59","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1112","_type":"edge","_outV":"59","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"1113","_type":"edge","_outV":"59","_inV":"155","_label":"followed_by"},{"weight":4,"_id":"1114","_type":"edge","_outV":"59","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1115","_type":"edge","_outV":"59","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"1116","_type":"edge","_outV":"59","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1117","_type":"edge","_outV":"59","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1118","_type":"edge","_outV":"59","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"1119","_type":"edge","_outV":"59","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"112","_type":"edge","_outV":"46","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"1120","_type":"edge","_outV":"59","_inV":"111","_label":"followed_by"},{"weight":3,"_id":"1121","_type":"edge","_outV":"59","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1122","_type":"edge","_outV":"59","_inV":"82","_label":"followed_by"},{"weight":7,"_id":"1123","_type":"edge","_outV":"59","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1124","_type":"edge","_outV":"59","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"1125","_type":"edge","_outV":"59","_inV":"245","_label":"followed_by"},{"weight":24,"_id":"1126","_type":"edge","_outV":"59","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"1127","_type":"edge","_outV":"59","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"1128","_type":"edge","_outV":"59","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1129","_type":"edge","_outV":"59","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"113","_type":"edge","_outV":"95","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1130","_type":"edge","_outV":"59","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"1131","_type":"edge","_outV":"59","_inV":"228","_label":"followed_by"},{"weight":1,"_id":"1132","_type":"edge","_outV":"59","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1133","_type":"edge","_outV":"59","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1134","_type":"edge","_outV":"59","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"1135","_type":"edge","_outV":"59","_inV":"169","_label":"followed_by"},{"weight":7,"_id":"1136","_type":"edge","_outV":"59","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1137","_type":"edge","_outV":"59","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"1138","_type":"edge","_outV":"59","_inV":"189","_label":"followed_by"},{"weight":3,"_id":"1139","_type":"edge","_outV":"59","_inV":"40","_label":"followed_by"},{"weight":5,"_id":"114","_type":"edge","_outV":"97","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"1140","_type":"edge","_outV":"59","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1141","_type":"edge","_outV":"246","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"1142","_type":"edge","_outV":"26","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"1143","_type":"edge","_outV":"26","_inV":"160","_label":"followed_by"},{"weight":9,"_id":"1144","_type":"edge","_outV":"26","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"1145","_type":"edge","_outV":"26","_inV":"49","_label":"followed_by"},{"weight":13,"_id":"1146","_type":"edge","_outV":"26","_inV":"100","_label":"followed_by"},{"weight":15,"_id":"1147","_type":"edge","_outV":"26","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"1148","_type":"edge","_outV":"26","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"1149","_type":"edge","_outV":"26","_inV":"27","_label":"followed_by"},{"weight":10,"_id":"115","_type":"edge","_outV":"97","_inV":"58","_label":"followed_by"},{"weight":41,"_id":"1150","_type":"edge","_outV":"26","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1151","_type":"edge","_outV":"26","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1152","_type":"edge","_outV":"26","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"1153","_type":"edge","_outV":"26","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1154","_type":"edge","_outV":"26","_inV":"206","_label":"followed_by"},{"weight":2,"_id":"1155","_type":"edge","_outV":"26","_inV":"24","_label":"followed_by"},{"weight":16,"_id":"1156","_type":"edge","_outV":"26","_inV":"4","_label":"followed_by"},{"weight":18,"_id":"1157","_type":"edge","_outV":"26","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"1158","_type":"edge","_outV":"26","_inV":"74","_label":"followed_by"},{"weight":21,"_id":"1159","_type":"edge","_outV":"26","_inV":"19","_label":"followed_by"},{"weight":13,"_id":"116","_type":"edge","_outV":"97","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"1160","_type":"edge","_outV":"26","_inV":"51","_label":"followed_by"},{"weight":8,"_id":"1161","_type":"edge","_outV":"26","_inV":"9","_label":"followed_by"},{"weight":14,"_id":"1162","_type":"edge","_outV":"26","_inV":"83","_label":"followed_by"},{"weight":34,"_id":"1163","_type":"edge","_outV":"26","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"1164","_type":"edge","_outV":"26","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"1165","_type":"edge","_outV":"26","_inV":"202","_label":"followed_by"},{"weight":4,"_id":"1166","_type":"edge","_outV":"26","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1167","_type":"edge","_outV":"26","_inV":"89","_label":"followed_by"},{"weight":5,"_id":"1168","_type":"edge","_outV":"26","_inV":"69","_label":"followed_by"},{"weight":4,"_id":"1169","_type":"edge","_outV":"26","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"117","_type":"edge","_outV":"97","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1170","_type":"edge","_outV":"26","_inV":"5","_label":"followed_by"},{"weight":5,"_id":"1171","_type":"edge","_outV":"26","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"1172","_type":"edge","_outV":"26","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1173","_type":"edge","_outV":"26","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"1174","_type":"edge","_outV":"26","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1175","_type":"edge","_outV":"26","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"1176","_type":"edge","_outV":"26","_inV":"134","_label":"followed_by"},{"weight":4,"_id":"1177","_type":"edge","_outV":"26","_inV":"215","_label":"followed_by"},{"weight":4,"_id":"1178","_type":"edge","_outV":"26","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1179","_type":"edge","_outV":"26","_inV":"13","_label":"followed_by"},{"weight":8,"_id":"118","_type":"edge","_outV":"97","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"1180","_type":"edge","_outV":"26","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1181","_type":"edge","_outV":"26","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1182","_type":"edge","_outV":"26","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"1183","_type":"edge","_outV":"26","_inV":"14","_label":"followed_by"},{"weight":27,"_id":"1184","_type":"edge","_outV":"26","_inV":"82","_label":"followed_by"},{"weight":11,"_id":"1185","_type":"edge","_outV":"26","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"1186","_type":"edge","_outV":"26","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1187","_type":"edge","_outV":"26","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"1188","_type":"edge","_outV":"26","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"1189","_type":"edge","_outV":"26","_inV":"105","_label":"followed_by"},{"weight":7,"_id":"119","_type":"edge","_outV":"97","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"1190","_type":"edge","_outV":"26","_inV":"153","_label":"followed_by"},{"weight":16,"_id":"1191","_type":"edge","_outV":"26","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1192","_type":"edge","_outV":"26","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1193","_type":"edge","_outV":"26","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1194","_type":"edge","_outV":"26","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1195","_type":"edge","_outV":"26","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1196","_type":"edge","_outV":"26","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"1197","_type":"edge","_outV":"26","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1198","_type":"edge","_outV":"26","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"1199","_type":"edge","_outV":"26","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"12","_type":"edge","_outV":"9","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"120","_type":"edge","_outV":"97","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"1200","_type":"edge","_outV":"26","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1201","_type":"edge","_outV":"26","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"1202","_type":"edge","_outV":"26","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1203","_type":"edge","_outV":"26","_inV":"223","_label":"followed_by"},{"weight":6,"_id":"1204","_type":"edge","_outV":"26","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"1205","_type":"edge","_outV":"26","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1206","_type":"edge","_outV":"26","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1207","_type":"edge","_outV":"26","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"1208","_type":"edge","_outV":"26","_inV":"64","_label":"followed_by"},{"weight":5,"_id":"1209","_type":"edge","_outV":"26","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"121","_type":"edge","_outV":"97","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1210","_type":"edge","_outV":"26","_inV":"23","_label":"followed_by"},{"weight":6,"_id":"1211","_type":"edge","_outV":"26","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1212","_type":"edge","_outV":"26","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"1213","_type":"edge","_outV":"26","_inV":"156","_label":"followed_by"},{"weight":1,"_id":"1214","_type":"edge","_outV":"26","_inV":"247","_label":"followed_by"},{"weight":2,"_id":"1215","_type":"edge","_outV":"26","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1216","_type":"edge","_outV":"26","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"1217","_type":"edge","_outV":"26","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1218","_type":"edge","_outV":"26","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"1219","_type":"edge","_outV":"26","_inV":"36","_label":"followed_by"},{"weight":8,"_id":"122","_type":"edge","_outV":"97","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1220","_type":"edge","_outV":"26","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"1221","_type":"edge","_outV":"26","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1222","_type":"edge","_outV":"26","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"1223","_type":"edge","_outV":"26","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1224","_type":"edge","_outV":"26","_inV":"177","_label":"followed_by"},{"weight":1,"_id":"1225","_type":"edge","_outV":"26","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"1226","_type":"edge","_outV":"26","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"1227","_type":"edge","_outV":"26","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1228","_type":"edge","_outV":"26","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"1229","_type":"edge","_outV":"248","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"123","_type":"edge","_outV":"97","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1230","_type":"edge","_outV":"248","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1231","_type":"edge","_outV":"248","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1232","_type":"edge","_outV":"248","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1233","_type":"edge","_outV":"248","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1234","_type":"edge","_outV":"248","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1235","_type":"edge","_outV":"249","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"1236","_type":"edge","_outV":"249","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"1237","_type":"edge","_outV":"249","_inV":"251","_label":"followed_by"},{"weight":1,"_id":"1238","_type":"edge","_outV":"183","_inV":"74","_label":"followed_by"},{"weight":14,"_id":"1239","_type":"edge","_outV":"183","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"124","_type":"edge","_outV":"97","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1240","_type":"edge","_outV":"183","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"1241","_type":"edge","_outV":"27","_inV":"153","_label":"followed_by"},{"weight":5,"_id":"1242","_type":"edge","_outV":"27","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"1243","_type":"edge","_outV":"27","_inV":"22","_label":"followed_by"},{"weight":16,"_id":"1244","_type":"edge","_outV":"27","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"1245","_type":"edge","_outV":"27","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1246","_type":"edge","_outV":"27","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"1247","_type":"edge","_outV":"27","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"1248","_type":"edge","_outV":"27","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"1249","_type":"edge","_outV":"27","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"125","_type":"edge","_outV":"97","_inV":"102","_label":"followed_by"},{"weight":10,"_id":"1250","_type":"edge","_outV":"27","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"1251","_type":"edge","_outV":"27","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1252","_type":"edge","_outV":"27","_inV":"252","_label":"followed_by"},{"weight":6,"_id":"1253","_type":"edge","_outV":"27","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1254","_type":"edge","_outV":"27","_inV":"226","_label":"followed_by"},{"weight":2,"_id":"1255","_type":"edge","_outV":"27","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1256","_type":"edge","_outV":"27","_inV":"39","_label":"followed_by"},{"weight":19,"_id":"1257","_type":"edge","_outV":"27","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"1258","_type":"edge","_outV":"27","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"1259","_type":"edge","_outV":"27","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"126","_type":"edge","_outV":"97","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1260","_type":"edge","_outV":"27","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"1261","_type":"edge","_outV":"27","_inV":"46","_label":"followed_by"},{"weight":17,"_id":"1262","_type":"edge","_outV":"27","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1263","_type":"edge","_outV":"27","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"1264","_type":"edge","_outV":"27","_inV":"23","_label":"followed_by"},{"weight":15,"_id":"1265","_type":"edge","_outV":"27","_inV":"68","_label":"followed_by"},{"weight":9,"_id":"1266","_type":"edge","_outV":"27","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"1267","_type":"edge","_outV":"27","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"1268","_type":"edge","_outV":"27","_inV":"121","_label":"followed_by"},{"weight":20,"_id":"1269","_type":"edge","_outV":"27","_inV":"101","_label":"followed_by"},{"weight":3,"_id":"127","_type":"edge","_outV":"97","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"1270","_type":"edge","_outV":"27","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"1271","_type":"edge","_outV":"27","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1272","_type":"edge","_outV":"27","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1273","_type":"edge","_outV":"27","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1274","_type":"edge","_outV":"27","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"1275","_type":"edge","_outV":"27","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1276","_type":"edge","_outV":"27","_inV":"155","_label":"followed_by"},{"weight":3,"_id":"1277","_type":"edge","_outV":"27","_inV":"26","_label":"followed_by"},{"weight":8,"_id":"1278","_type":"edge","_outV":"27","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"1279","_type":"edge","_outV":"27","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"128","_type":"edge","_outV":"97","_inV":"4","_label":"followed_by"},{"weight":5,"_id":"1280","_type":"edge","_outV":"27","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"1281","_type":"edge","_outV":"27","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"1282","_type":"edge","_outV":"27","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"1283","_type":"edge","_outV":"27","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1284","_type":"edge","_outV":"27","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"1285","_type":"edge","_outV":"27","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1286","_type":"edge","_outV":"27","_inV":"73","_label":"followed_by"},{"weight":6,"_id":"1287","_type":"edge","_outV":"27","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1288","_type":"edge","_outV":"27","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"1289","_type":"edge","_outV":"27","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"129","_type":"edge","_outV":"97","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"1290","_type":"edge","_outV":"27","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"1291","_type":"edge","_outV":"27","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"1292","_type":"edge","_outV":"27","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1293","_type":"edge","_outV":"27","_inV":"223","_label":"followed_by"},{"weight":11,"_id":"1294","_type":"edge","_outV":"27","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1295","_type":"edge","_outV":"27","_inV":"253","_label":"followed_by"},{"weight":5,"_id":"1296","_type":"edge","_outV":"27","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1297","_type":"edge","_outV":"27","_inV":"221","_label":"followed_by"},{"weight":1,"_id":"1298","_type":"edge","_outV":"27","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1299","_type":"edge","_outV":"27","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"13","_type":"edge","_outV":"9","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"130","_type":"edge","_outV":"97","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"1300","_type":"edge","_outV":"27","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"1301","_type":"edge","_outV":"27","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"1302","_type":"edge","_outV":"27","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1303","_type":"edge","_outV":"27","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1304","_type":"edge","_outV":"27","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1305","_type":"edge","_outV":"27","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1306","_type":"edge","_outV":"27","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"1307","_type":"edge","_outV":"27","_inV":"254","_label":"followed_by"},{"weight":4,"_id":"1308","_type":"edge","_outV":"27","_inV":"43","_label":"followed_by"},{"weight":5,"_id":"1309","_type":"edge","_outV":"27","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"131","_type":"edge","_outV":"97","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"1310","_type":"edge","_outV":"27","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"1311","_type":"edge","_outV":"27","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"1312","_type":"edge","_outV":"27","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1313","_type":"edge","_outV":"27","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1314","_type":"edge","_outV":"161","_inV":"255","_label":"followed_by"},{"weight":1,"_id":"1315","_type":"edge","_outV":"161","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"1316","_type":"edge","_outV":"31","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1317","_type":"edge","_outV":"31","_inV":"53","_label":"followed_by"},{"weight":4,"_id":"1318","_type":"edge","_outV":"31","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1319","_type":"edge","_outV":"31","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"132","_type":"edge","_outV":"97","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"1320","_type":"edge","_outV":"31","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1321","_type":"edge","_outV":"31","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"1322","_type":"edge","_outV":"31","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"1323","_type":"edge","_outV":"31","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1324","_type":"edge","_outV":"31","_inV":"117","_label":"followed_by"},{"weight":6,"_id":"1325","_type":"edge","_outV":"31","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"1326","_type":"edge","_outV":"31","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1327","_type":"edge","_outV":"31","_inV":"167","_label":"followed_by"},{"weight":2,"_id":"1328","_type":"edge","_outV":"31","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"1329","_type":"edge","_outV":"31","_inV":"60","_label":"followed_by"},{"weight":6,"_id":"133","_type":"edge","_outV":"97","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1330","_type":"edge","_outV":"31","_inV":"81","_label":"followed_by"},{"weight":5,"_id":"1331","_type":"edge","_outV":"31","_inV":"104","_label":"followed_by"},{"weight":8,"_id":"1332","_type":"edge","_outV":"31","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1333","_type":"edge","_outV":"31","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1334","_type":"edge","_outV":"31","_inV":"125","_label":"followed_by"},{"weight":5,"_id":"1335","_type":"edge","_outV":"31","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1336","_type":"edge","_outV":"31","_inV":"256","_label":"followed_by"},{"weight":1,"_id":"1337","_type":"edge","_outV":"31","_inV":"10","_label":"followed_by"},{"weight":8,"_id":"1338","_type":"edge","_outV":"31","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"1339","_type":"edge","_outV":"31","_inV":"15","_label":"followed_by"},{"weight":7,"_id":"134","_type":"edge","_outV":"97","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1340","_type":"edge","_outV":"31","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"1341","_type":"edge","_outV":"31","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"1342","_type":"edge","_outV":"31","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"1343","_type":"edge","_outV":"31","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"1344","_type":"edge","_outV":"31","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"1345","_type":"edge","_outV":"31","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1346","_type":"edge","_outV":"31","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1347","_type":"edge","_outV":"31","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1348","_type":"edge","_outV":"31","_inV":"192","_label":"followed_by"},{"weight":5,"_id":"1349","_type":"edge","_outV":"31","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"135","_type":"edge","_outV":"97","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"1350","_type":"edge","_outV":"31","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1351","_type":"edge","_outV":"31","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1352","_type":"edge","_outV":"31","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1353","_type":"edge","_outV":"31","_inV":"254","_label":"followed_by"},{"weight":3,"_id":"1354","_type":"edge","_outV":"31","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1355","_type":"edge","_outV":"31","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1356","_type":"edge","_outV":"31","_inV":"18","_label":"followed_by"},{"weight":81,"_id":"1357","_type":"edge","_outV":"130","_inV":"153","_label":"followed_by"},{"weight":18,"_id":"1358","_type":"edge","_outV":"130","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1359","_type":"edge","_outV":"130","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"136","_type":"edge","_outV":"97","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"1360","_type":"edge","_outV":"130","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1361","_type":"edge","_outV":"130","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1362","_type":"edge","_outV":"130","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1363","_type":"edge","_outV":"130","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"1364","_type":"edge","_outV":"130","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"1365","_type":"edge","_outV":"130","_inV":"12","_label":"followed_by"},{"weight":12,"_id":"1366","_type":"edge","_outV":"130","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"1367","_type":"edge","_outV":"130","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"1368","_type":"edge","_outV":"130","_inV":"21","_label":"followed_by"},{"weight":77,"_id":"1369","_type":"edge","_outV":"130","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"137","_type":"edge","_outV":"97","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1370","_type":"edge","_outV":"130","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1371","_type":"edge","_outV":"130","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1372","_type":"edge","_outV":"130","_inV":"15","_label":"followed_by"},{"weight":11,"_id":"1373","_type":"edge","_outV":"130","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1374","_type":"edge","_outV":"130","_inV":"149","_label":"followed_by"},{"weight":6,"_id":"1375","_type":"edge","_outV":"130","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1376","_type":"edge","_outV":"130","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"1377","_type":"edge","_outV":"130","_inV":"110","_label":"followed_by"},{"weight":5,"_id":"1378","_type":"edge","_outV":"130","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1379","_type":"edge","_outV":"130","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"138","_type":"edge","_outV":"97","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1380","_type":"edge","_outV":"130","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1381","_type":"edge","_outV":"130","_inV":"101","_label":"followed_by"},{"weight":4,"_id":"1382","_type":"edge","_outV":"130","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"1383","_type":"edge","_outV":"130","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"1384","_type":"edge","_outV":"130","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1385","_type":"edge","_outV":"130","_inV":"26","_label":"followed_by"},{"weight":23,"_id":"1386","_type":"edge","_outV":"130","_inV":"120","_label":"followed_by"},{"weight":9,"_id":"1387","_type":"edge","_outV":"130","_inV":"70","_label":"followed_by"},{"weight":54,"_id":"1388","_type":"edge","_outV":"130","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"1389","_type":"edge","_outV":"130","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"139","_type":"edge","_outV":"97","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1390","_type":"edge","_outV":"130","_inV":"160","_label":"followed_by"},{"weight":18,"_id":"1391","_type":"edge","_outV":"130","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"1392","_type":"edge","_outV":"130","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"1393","_type":"edge","_outV":"130","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"1394","_type":"edge","_outV":"130","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"1395","_type":"edge","_outV":"130","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1396","_type":"edge","_outV":"190","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"1397","_type":"edge","_outV":"190","_inV":"43","_label":"followed_by"},{"weight":4,"_id":"1398","_type":"edge","_outV":"190","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"1399","_type":"edge","_outV":"190","_inV":"117","_label":"followed_by"},{"weight":5,"_id":"14","_type":"edge","_outV":"9","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"140","_type":"edge","_outV":"97","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1400","_type":"edge","_outV":"190","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1401","_type":"edge","_outV":"190","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1402","_type":"edge","_outV":"190","_inV":"88","_label":"followed_by"},{"weight":12,"_id":"1403","_type":"edge","_outV":"83","_inV":"94","_label":"followed_by"},{"weight":24,"_id":"1404","_type":"edge","_outV":"83","_inV":"129","_label":"followed_by"},{"weight":5,"_id":"1405","_type":"edge","_outV":"83","_inV":"16","_label":"followed_by"},{"weight":3,"_id":"1406","_type":"edge","_outV":"83","_inV":"148","_label":"followed_by"},{"weight":9,"_id":"1407","_type":"edge","_outV":"83","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1408","_type":"edge","_outV":"83","_inV":"127","_label":"followed_by"},{"weight":9,"_id":"1409","_type":"edge","_outV":"83","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"141","_type":"edge","_outV":"97","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"1410","_type":"edge","_outV":"83","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"1411","_type":"edge","_outV":"83","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"1412","_type":"edge","_outV":"83","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1413","_type":"edge","_outV":"83","_inV":"195","_label":"followed_by"},{"weight":2,"_id":"1414","_type":"edge","_outV":"83","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1415","_type":"edge","_outV":"83","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1416","_type":"edge","_outV":"83","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1417","_type":"edge","_outV":"83","_inV":"26","_label":"followed_by"},{"weight":211,"_id":"1418","_type":"edge","_outV":"83","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1419","_type":"edge","_outV":"83","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"142","_type":"edge","_outV":"97","_inV":"106","_label":"followed_by"},{"weight":5,"_id":"1420","_type":"edge","_outV":"83","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1421","_type":"edge","_outV":"83","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"1422","_type":"edge","_outV":"83","_inV":"76","_label":"followed_by"},{"weight":14,"_id":"1423","_type":"edge","_outV":"83","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"1424","_type":"edge","_outV":"83","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"1425","_type":"edge","_outV":"83","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1426","_type":"edge","_outV":"83","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"1427","_type":"edge","_outV":"83","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1428","_type":"edge","_outV":"83","_inV":"242","_label":"followed_by"},{"weight":3,"_id":"1429","_type":"edge","_outV":"83","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"143","_type":"edge","_outV":"97","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1430","_type":"edge","_outV":"83","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"1431","_type":"edge","_outV":"83","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"1432","_type":"edge","_outV":"83","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"1433","_type":"edge","_outV":"83","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1434","_type":"edge","_outV":"83","_inV":"89","_label":"followed_by"},{"weight":4,"_id":"1435","_type":"edge","_outV":"83","_inV":"36","_label":"followed_by"},{"weight":7,"_id":"1436","_type":"edge","_outV":"83","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1437","_type":"edge","_outV":"83","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"1438","_type":"edge","_outV":"83","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1439","_type":"edge","_outV":"83","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"144","_type":"edge","_outV":"107","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1440","_type":"edge","_outV":"83","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1441","_type":"edge","_outV":"83","_inV":"79","_label":"followed_by"},{"weight":4,"_id":"1442","_type":"edge","_outV":"83","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"1443","_type":"edge","_outV":"83","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"1444","_type":"edge","_outV":"83","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1445","_type":"edge","_outV":"83","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1446","_type":"edge","_outV":"83","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1447","_type":"edge","_outV":"83","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1448","_type":"edge","_outV":"83","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"1449","_type":"edge","_outV":"83","_inV":"171","_label":"followed_by"},{"weight":6,"_id":"145","_type":"edge","_outV":"108","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1450","_type":"edge","_outV":"83","_inV":"176","_label":"followed_by"},{"weight":12,"_id":"1451","_type":"edge","_outV":"81","_inV":"14","_label":"followed_by"},{"weight":10,"_id":"1452","_type":"edge","_outV":"81","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1453","_type":"edge","_outV":"81","_inV":"164","_label":"followed_by"},{"weight":10,"_id":"1454","_type":"edge","_outV":"81","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"1455","_type":"edge","_outV":"81","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"1456","_type":"edge","_outV":"81","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1457","_type":"edge","_outV":"81","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"1458","_type":"edge","_outV":"81","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"1459","_type":"edge","_outV":"81","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"146","_type":"edge","_outV":"108","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"1460","_type":"edge","_outV":"81","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1461","_type":"edge","_outV":"81","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1462","_type":"edge","_outV":"81","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1463","_type":"edge","_outV":"81","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1464","_type":"edge","_outV":"81","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1465","_type":"edge","_outV":"81","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"1466","_type":"edge","_outV":"81","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"1467","_type":"edge","_outV":"81","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1468","_type":"edge","_outV":"81","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"1469","_type":"edge","_outV":"81","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"147","_type":"edge","_outV":"108","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1470","_type":"edge","_outV":"81","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1471","_type":"edge","_outV":"81","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1472","_type":"edge","_outV":"81","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1473","_type":"edge","_outV":"81","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1474","_type":"edge","_outV":"81","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"1475","_type":"edge","_outV":"81","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1476","_type":"edge","_outV":"81","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1477","_type":"edge","_outV":"81","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"1478","_type":"edge","_outV":"81","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"1479","_type":"edge","_outV":"81","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"148","_type":"edge","_outV":"108","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1480","_type":"edge","_outV":"81","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"1481","_type":"edge","_outV":"81","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1482","_type":"edge","_outV":"81","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1483","_type":"edge","_outV":"81","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1484","_type":"edge","_outV":"81","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"1485","_type":"edge","_outV":"81","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"1486","_type":"edge","_outV":"81","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1487","_type":"edge","_outV":"81","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"1488","_type":"edge","_outV":"81","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"1489","_type":"edge","_outV":"81","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"149","_type":"edge","_outV":"108","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1490","_type":"edge","_outV":"164","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"1491","_type":"edge","_outV":"164","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"1492","_type":"edge","_outV":"164","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1493","_type":"edge","_outV":"164","_inV":"255","_label":"followed_by"},{"weight":3,"_id":"1494","_type":"edge","_outV":"164","_inV":"4","_label":"followed_by"},{"weight":9,"_id":"1495","_type":"edge","_outV":"164","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1496","_type":"edge","_outV":"164","_inV":"211","_label":"followed_by"},{"weight":19,"_id":"1497","_type":"edge","_outV":"164","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"1498","_type":"edge","_outV":"164","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"1499","_type":"edge","_outV":"164","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"15","_type":"edge","_outV":"9","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"150","_type":"edge","_outV":"108","_inV":"56","_label":"followed_by"},{"weight":15,"_id":"1500","_type":"edge","_outV":"164","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"1501","_type":"edge","_outV":"164","_inV":"38","_label":"followed_by"},{"weight":6,"_id":"1502","_type":"edge","_outV":"164","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1503","_type":"edge","_outV":"164","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1504","_type":"edge","_outV":"164","_inV":"212","_label":"followed_by"},{"weight":8,"_id":"1505","_type":"edge","_outV":"164","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"1506","_type":"edge","_outV":"164","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"1507","_type":"edge","_outV":"164","_inV":"115","_label":"followed_by"},{"weight":21,"_id":"1508","_type":"edge","_outV":"164","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"1509","_type":"edge","_outV":"164","_inV":"131","_label":"followed_by"},{"weight":3,"_id":"151","_type":"edge","_outV":"108","_inV":"10","_label":"followed_by"},{"weight":18,"_id":"1510","_type":"edge","_outV":"164","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"1511","_type":"edge","_outV":"164","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1512","_type":"edge","_outV":"164","_inV":"243","_label":"followed_by"},{"weight":1,"_id":"1513","_type":"edge","_outV":"164","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1514","_type":"edge","_outV":"164","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1515","_type":"edge","_outV":"164","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"1516","_type":"edge","_outV":"164","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"1517","_type":"edge","_outV":"164","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1518","_type":"edge","_outV":"164","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1519","_type":"edge","_outV":"164","_inV":"157","_label":"followed_by"},{"weight":3,"_id":"152","_type":"edge","_outV":"108","_inV":"42","_label":"followed_by"},{"weight":7,"_id":"1520","_type":"edge","_outV":"164","_inV":"86","_label":"followed_by"},{"weight":2,"_id":"1521","_type":"edge","_outV":"164","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"1522","_type":"edge","_outV":"164","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"1523","_type":"edge","_outV":"164","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1524","_type":"edge","_outV":"164","_inV":"93","_label":"followed_by"},{"weight":2,"_id":"1525","_type":"edge","_outV":"164","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"1526","_type":"edge","_outV":"164","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"1527","_type":"edge","_outV":"164","_inV":"185","_label":"followed_by"},{"weight":2,"_id":"1528","_type":"edge","_outV":"164","_inV":"236","_label":"followed_by"},{"weight":5,"_id":"1529","_type":"edge","_outV":"164","_inV":"216","_label":"followed_by"},{"weight":4,"_id":"153","_type":"edge","_outV":"108","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"1530","_type":"edge","_outV":"164","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1531","_type":"edge","_outV":"164","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"1532","_type":"edge","_outV":"164","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"1533","_type":"edge","_outV":"164","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"1534","_type":"edge","_outV":"164","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"1535","_type":"edge","_outV":"18","_inV":"235","_label":"followed_by"},{"weight":5,"_id":"1536","_type":"edge","_outV":"18","_inV":"59","_label":"followed_by"},{"weight":17,"_id":"1537","_type":"edge","_outV":"18","_inV":"19","_label":"followed_by"},{"weight":16,"_id":"1538","_type":"edge","_outV":"18","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"1539","_type":"edge","_outV":"18","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"154","_type":"edge","_outV":"108","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"1540","_type":"edge","_outV":"18","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1541","_type":"edge","_outV":"18","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"1542","_type":"edge","_outV":"18","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"1543","_type":"edge","_outV":"18","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"1544","_type":"edge","_outV":"18","_inV":"94","_label":"followed_by"},{"weight":13,"_id":"1545","_type":"edge","_outV":"18","_inV":"58","_label":"followed_by"},{"weight":10,"_id":"1546","_type":"edge","_outV":"18","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1547","_type":"edge","_outV":"18","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"1548","_type":"edge","_outV":"18","_inV":"39","_label":"followed_by"},{"weight":29,"_id":"1549","_type":"edge","_outV":"18","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"155","_type":"edge","_outV":"108","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1550","_type":"edge","_outV":"18","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"1551","_type":"edge","_outV":"18","_inV":"152","_label":"followed_by"},{"weight":3,"_id":"1552","_type":"edge","_outV":"18","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1553","_type":"edge","_outV":"18","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"1554","_type":"edge","_outV":"18","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"1555","_type":"edge","_outV":"18","_inV":"225","_label":"followed_by"},{"weight":2,"_id":"1556","_type":"edge","_outV":"18","_inV":"80","_label":"followed_by"},{"weight":11,"_id":"1557","_type":"edge","_outV":"18","_inV":"56","_label":"followed_by"},{"weight":16,"_id":"1558","_type":"edge","_outV":"18","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1559","_type":"edge","_outV":"18","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"156","_type":"edge","_outV":"108","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"1560","_type":"edge","_outV":"18","_inV":"206","_label":"followed_by"},{"weight":5,"_id":"1561","_type":"edge","_outV":"18","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"1562","_type":"edge","_outV":"18","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"1563","_type":"edge","_outV":"18","_inV":"49","_label":"followed_by"},{"weight":26,"_id":"1564","_type":"edge","_outV":"18","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1565","_type":"edge","_outV":"18","_inV":"55","_label":"followed_by"},{"weight":6,"_id":"1566","_type":"edge","_outV":"18","_inV":"202","_label":"followed_by"},{"weight":3,"_id":"1567","_type":"edge","_outV":"18","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"1568","_type":"edge","_outV":"18","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1569","_type":"edge","_outV":"18","_inV":"160","_label":"followed_by"},{"weight":5,"_id":"157","_type":"edge","_outV":"108","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"1570","_type":"edge","_outV":"18","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"1571","_type":"edge","_outV":"18","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"1572","_type":"edge","_outV":"18","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"1573","_type":"edge","_outV":"18","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"1574","_type":"edge","_outV":"18","_inV":"98","_label":"followed_by"},{"weight":5,"_id":"1575","_type":"edge","_outV":"18","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1576","_type":"edge","_outV":"18","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1577","_type":"edge","_outV":"18","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"1578","_type":"edge","_outV":"18","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1579","_type":"edge","_outV":"18","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"158","_type":"edge","_outV":"108","_inV":"97","_label":"followed_by"},{"weight":9,"_id":"1580","_type":"edge","_outV":"18","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"1581","_type":"edge","_outV":"18","_inV":"108","_label":"followed_by"},{"weight":4,"_id":"1582","_type":"edge","_outV":"18","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"1583","_type":"edge","_outV":"18","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1584","_type":"edge","_outV":"18","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"1585","_type":"edge","_outV":"18","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1586","_type":"edge","_outV":"18","_inV":"101","_label":"followed_by"},{"weight":5,"_id":"1587","_type":"edge","_outV":"18","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1588","_type":"edge","_outV":"18","_inV":"208","_label":"followed_by"},{"weight":2,"_id":"1589","_type":"edge","_outV":"18","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"159","_type":"edge","_outV":"108","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1590","_type":"edge","_outV":"18","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1591","_type":"edge","_outV":"18","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"1592","_type":"edge","_outV":"18","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"1593","_type":"edge","_outV":"18","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"1594","_type":"edge","_outV":"18","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"1595","_type":"edge","_outV":"18","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"1596","_type":"edge","_outV":"18","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"1597","_type":"edge","_outV":"18","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"1598","_type":"edge","_outV":"18","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1599","_type":"edge","_outV":"18","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"16","_type":"edge","_outV":"9","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"160","_type":"edge","_outV":"108","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"1600","_type":"edge","_outV":"18","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"1601","_type":"edge","_outV":"18","_inV":"199","_label":"followed_by"},{"weight":2,"_id":"1602","_type":"edge","_outV":"18","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1603","_type":"edge","_outV":"18","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"1604","_type":"edge","_outV":"18","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1605","_type":"edge","_outV":"18","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1606","_type":"edge","_outV":"18","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1607","_type":"edge","_outV":"18","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"1608","_type":"edge","_outV":"18","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"1609","_type":"edge","_outV":"18","_inV":"254","_label":"followed_by"},{"weight":2,"_id":"161","_type":"edge","_outV":"108","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"1610","_type":"edge","_outV":"18","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"1611","_type":"edge","_outV":"18","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"1612","_type":"edge","_outV":"18","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"1613","_type":"edge","_outV":"210","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1614","_type":"edge","_outV":"210","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1615","_type":"edge","_outV":"210","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"1616","_type":"edge","_outV":"210","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1617","_type":"edge","_outV":"210","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"1618","_type":"edge","_outV":"210","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"1619","_type":"edge","_outV":"210","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"162","_type":"edge","_outV":"108","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"1620","_type":"edge","_outV":"210","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1621","_type":"edge","_outV":"210","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1622","_type":"edge","_outV":"210","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"1623","_type":"edge","_outV":"210","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"1624","_type":"edge","_outV":"210","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1625","_type":"edge","_outV":"210","_inV":"78","_label":"followed_by"},{"weight":7,"_id":"1626","_type":"edge","_outV":"210","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"1627","_type":"edge","_outV":"210","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"1628","_type":"edge","_outV":"210","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1629","_type":"edge","_outV":"210","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"163","_type":"edge","_outV":"108","_inV":"105","_label":"followed_by"},{"weight":3,"_id":"1630","_type":"edge","_outV":"210","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1631","_type":"edge","_outV":"210","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1632","_type":"edge","_outV":"210","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"1633","_type":"edge","_outV":"210","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"1634","_type":"edge","_outV":"210","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1635","_type":"edge","_outV":"210","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1636","_type":"edge","_outV":"260","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1637","_type":"edge","_outV":"213","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1638","_type":"edge","_outV":"213","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"1639","_type":"edge","_outV":"213","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"164","_type":"edge","_outV":"108","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1640","_type":"edge","_outV":"213","_inV":"261","_label":"followed_by"},{"weight":5,"_id":"1641","_type":"edge","_outV":"213","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1642","_type":"edge","_outV":"213","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1643","_type":"edge","_outV":"213","_inV":"67","_label":"followed_by"},{"weight":3,"_id":"1644","_type":"edge","_outV":"213","_inV":"65","_label":"followed_by"},{"weight":8,"_id":"1645","_type":"edge","_outV":"213","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1646","_type":"edge","_outV":"213","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1647","_type":"edge","_outV":"213","_inV":"23","_label":"followed_by"},{"weight":7,"_id":"1648","_type":"edge","_outV":"213","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1649","_type":"edge","_outV":"213","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"165","_type":"edge","_outV":"108","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1650","_type":"edge","_outV":"213","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"1651","_type":"edge","_outV":"213","_inV":"90","_label":"followed_by"},{"weight":3,"_id":"1652","_type":"edge","_outV":"213","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1653","_type":"edge","_outV":"213","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"1654","_type":"edge","_outV":"213","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1655","_type":"edge","_outV":"213","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"1656","_type":"edge","_outV":"213","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1657","_type":"edge","_outV":"213","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1658","_type":"edge","_outV":"262","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1659","_type":"edge","_outV":"263","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"166","_type":"edge","_outV":"108","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1660","_type":"edge","_outV":"263","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1661","_type":"edge","_outV":"264","_inV":"265","_label":"followed_by"},{"weight":1,"_id":"1662","_type":"edge","_outV":"264","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1663","_type":"edge","_outV":"264","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"1664","_type":"edge","_outV":"267","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1665","_type":"edge","_outV":"124","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1666","_type":"edge","_outV":"124","_inV":"111","_label":"followed_by"},{"weight":15,"_id":"1667","_type":"edge","_outV":"124","_inV":"4","_label":"followed_by"},{"weight":10,"_id":"1668","_type":"edge","_outV":"124","_inV":"50","_label":"followed_by"},{"weight":9,"_id":"1669","_type":"edge","_outV":"124","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"167","_type":"edge","_outV":"108","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"1670","_type":"edge","_outV":"124","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1671","_type":"edge","_outV":"124","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"1672","_type":"edge","_outV":"124","_inV":"154","_label":"followed_by"},{"weight":8,"_id":"1673","_type":"edge","_outV":"124","_inV":"38","_label":"followed_by"},{"weight":5,"_id":"1674","_type":"edge","_outV":"124","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1675","_type":"edge","_outV":"124","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"1676","_type":"edge","_outV":"124","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1677","_type":"edge","_outV":"124","_inV":"31","_label":"followed_by"},{"weight":3,"_id":"1678","_type":"edge","_outV":"124","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1679","_type":"edge","_outV":"124","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"168","_type":"edge","_outV":"108","_inV":"113","_label":"followed_by"},{"weight":8,"_id":"1680","_type":"edge","_outV":"124","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1681","_type":"edge","_outV":"124","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"1682","_type":"edge","_outV":"124","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"1683","_type":"edge","_outV":"124","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"1684","_type":"edge","_outV":"124","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1685","_type":"edge","_outV":"124","_inV":"242","_label":"followed_by"},{"weight":8,"_id":"1686","_type":"edge","_outV":"124","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"1687","_type":"edge","_outV":"124","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1688","_type":"edge","_outV":"124","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1689","_type":"edge","_outV":"124","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"169","_type":"edge","_outV":"108","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1690","_type":"edge","_outV":"124","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"1691","_type":"edge","_outV":"124","_inV":"270","_label":"followed_by"},{"weight":1,"_id":"1692","_type":"edge","_outV":"124","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1693","_type":"edge","_outV":"124","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"1694","_type":"edge","_outV":"124","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1695","_type":"edge","_outV":"124","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1696","_type":"edge","_outV":"124","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1697","_type":"edge","_outV":"124","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"1698","_type":"edge","_outV":"124","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1699","_type":"edge","_outV":"124","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"17","_type":"edge","_outV":"9","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"170","_type":"edge","_outV":"108","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"1700","_type":"edge","_outV":"124","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1701","_type":"edge","_outV":"124","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"1702","_type":"edge","_outV":"124","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1703","_type":"edge","_outV":"124","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"1704","_type":"edge","_outV":"124","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1705","_type":"edge","_outV":"124","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1706","_type":"edge","_outV":"124","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1707","_type":"edge","_outV":"124","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1708","_type":"edge","_outV":"124","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1709","_type":"edge","_outV":"124","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"171","_type":"edge","_outV":"108","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1710","_type":"edge","_outV":"124","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"1711","_type":"edge","_outV":"82","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"1712","_type":"edge","_outV":"82","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1713","_type":"edge","_outV":"82","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1714","_type":"edge","_outV":"82","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1715","_type":"edge","_outV":"82","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"1716","_type":"edge","_outV":"82","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1717","_type":"edge","_outV":"82","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"1718","_type":"edge","_outV":"82","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1719","_type":"edge","_outV":"82","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"172","_type":"edge","_outV":"108","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"1720","_type":"edge","_outV":"82","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"1721","_type":"edge","_outV":"82","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"1722","_type":"edge","_outV":"82","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1723","_type":"edge","_outV":"82","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"1724","_type":"edge","_outV":"82","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"1725","_type":"edge","_outV":"82","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"1726","_type":"edge","_outV":"82","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1727","_type":"edge","_outV":"82","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1728","_type":"edge","_outV":"82","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1729","_type":"edge","_outV":"82","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"173","_type":"edge","_outV":"108","_inV":"116","_label":"followed_by"},{"weight":4,"_id":"1730","_type":"edge","_outV":"82","_inV":"121","_label":"followed_by"},{"weight":4,"_id":"1731","_type":"edge","_outV":"82","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1732","_type":"edge","_outV":"82","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"1733","_type":"edge","_outV":"82","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1734","_type":"edge","_outV":"82","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1735","_type":"edge","_outV":"82","_inV":"3","_label":"followed_by"},{"weight":239,"_id":"1736","_type":"edge","_outV":"82","_inV":"171","_label":"followed_by"},{"weight":3,"_id":"1737","_type":"edge","_outV":"82","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1738","_type":"edge","_outV":"82","_inV":"5","_label":"followed_by"},{"weight":8,"_id":"1739","_type":"edge","_outV":"82","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"174","_type":"edge","_outV":"108","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1740","_type":"edge","_outV":"82","_inV":"183","_label":"followed_by"},{"weight":3,"_id":"1741","_type":"edge","_outV":"82","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1742","_type":"edge","_outV":"82","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1743","_type":"edge","_outV":"82","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1744","_type":"edge","_outV":"82","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1745","_type":"edge","_outV":"82","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"1746","_type":"edge","_outV":"82","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1747","_type":"edge","_outV":"82","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1748","_type":"edge","_outV":"82","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1749","_type":"edge","_outV":"82","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"175","_type":"edge","_outV":"108","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1750","_type":"edge","_outV":"28","_inV":"34","_label":"followed_by"},{"weight":10,"_id":"1751","_type":"edge","_outV":"28","_inV":"41","_label":"followed_by"},{"weight":8,"_id":"1752","_type":"edge","_outV":"28","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1753","_type":"edge","_outV":"28","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1754","_type":"edge","_outV":"28","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"1755","_type":"edge","_outV":"28","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1756","_type":"edge","_outV":"28","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"1757","_type":"edge","_outV":"28","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1758","_type":"edge","_outV":"28","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1759","_type":"edge","_outV":"28","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"176","_type":"edge","_outV":"108","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"1760","_type":"edge","_outV":"28","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"1761","_type":"edge","_outV":"28","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1762","_type":"edge","_outV":"28","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1763","_type":"edge","_outV":"28","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"1764","_type":"edge","_outV":"28","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1765","_type":"edge","_outV":"28","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"1766","_type":"edge","_outV":"28","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"1767","_type":"edge","_outV":"28","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"1768","_type":"edge","_outV":"28","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"1769","_type":"edge","_outV":"28","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"177","_type":"edge","_outV":"108","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"1770","_type":"edge","_outV":"28","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"1771","_type":"edge","_outV":"28","_inV":"138","_label":"followed_by"},{"weight":2,"_id":"1772","_type":"edge","_outV":"28","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1773","_type":"edge","_outV":"234","_inV":"237","_label":"followed_by"},{"weight":2,"_id":"1774","_type":"edge","_outV":"234","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"1775","_type":"edge","_outV":"234","_inV":"11","_label":"followed_by"},{"weight":7,"_id":"1776","_type":"edge","_outV":"234","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"1777","_type":"edge","_outV":"234","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1778","_type":"edge","_outV":"234","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1779","_type":"edge","_outV":"234","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"178","_type":"edge","_outV":"70","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"1780","_type":"edge","_outV":"234","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1781","_type":"edge","_outV":"234","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"1782","_type":"edge","_outV":"234","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"1783","_type":"edge","_outV":"234","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1784","_type":"edge","_outV":"259","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"1785","_type":"edge","_outV":"259","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1786","_type":"edge","_outV":"259","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"1787","_type":"edge","_outV":"259","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1788","_type":"edge","_outV":"259","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1789","_type":"edge","_outV":"259","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"179","_type":"edge","_outV":"70","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1790","_type":"edge","_outV":"259","_inV":"272","_label":"followed_by"},{"weight":4,"_id":"1791","_type":"edge","_outV":"196","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"1792","_type":"edge","_outV":"196","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1793","_type":"edge","_outV":"196","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"1794","_type":"edge","_outV":"196","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"1795","_type":"edge","_outV":"196","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"1796","_type":"edge","_outV":"196","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"1797","_type":"edge","_outV":"196","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1798","_type":"edge","_outV":"196","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1799","_type":"edge","_outV":"196","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"18","_type":"edge","_outV":"9","_inV":"22","_label":"followed_by"},{"weight":46,"_id":"180","_type":"edge","_outV":"70","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1800","_type":"edge","_outV":"196","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1801","_type":"edge","_outV":"196","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1802","_type":"edge","_outV":"196","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1803","_type":"edge","_outV":"196","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1804","_type":"edge","_outV":"196","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1805","_type":"edge","_outV":"196","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1806","_type":"edge","_outV":"196","_inV":"84","_label":"followed_by"},{"weight":10,"_id":"1807","_type":"edge","_outV":"199","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"1808","_type":"edge","_outV":"199","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1809","_type":"edge","_outV":"199","_inV":"20","_label":"followed_by"},{"weight":4,"_id":"181","_type":"edge","_outV":"70","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1810","_type":"edge","_outV":"199","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"1811","_type":"edge","_outV":"199","_inV":"64","_label":"followed_by"},{"weight":4,"_id":"1812","_type":"edge","_outV":"273","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"1813","_type":"edge","_outV":"273","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"1814","_type":"edge","_outV":"273","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"1815","_type":"edge","_outV":"273","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"1816","_type":"edge","_outV":"273","_inV":"111","_label":"followed_by"},{"weight":2,"_id":"1817","_type":"edge","_outV":"273","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1818","_type":"edge","_outV":"273","_inV":"20","_label":"followed_by"},{"weight":38,"_id":"1819","_type":"edge","_outV":"41","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"182","_type":"edge","_outV":"70","_inV":"120","_label":"followed_by"},{"weight":7,"_id":"1820","_type":"edge","_outV":"41","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"1821","_type":"edge","_outV":"41","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1822","_type":"edge","_outV":"41","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"1823","_type":"edge","_outV":"41","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1824","_type":"edge","_outV":"41","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1825","_type":"edge","_outV":"41","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1826","_type":"edge","_outV":"41","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1827","_type":"edge","_outV":"41","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1828","_type":"edge","_outV":"41","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1829","_type":"edge","_outV":"41","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"183","_type":"edge","_outV":"70","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1830","_type":"edge","_outV":"41","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"1831","_type":"edge","_outV":"41","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1832","_type":"edge","_outV":"41","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"1833","_type":"edge","_outV":"41","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"1834","_type":"edge","_outV":"41","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"1835","_type":"edge","_outV":"41","_inV":"274","_label":"followed_by"},{"weight":1,"_id":"1836","_type":"edge","_outV":"41","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"1837","_type":"edge","_outV":"275","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"1838","_type":"edge","_outV":"275","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1839","_type":"edge","_outV":"275","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"184","_type":"edge","_outV":"70","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1840","_type":"edge","_outV":"275","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"1841","_type":"edge","_outV":"275","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1842","_type":"edge","_outV":"275","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1843","_type":"edge","_outV":"275","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"1844","_type":"edge","_outV":"275","_inV":"96","_label":"followed_by"},{"weight":8,"_id":"1845","_type":"edge","_outV":"94","_inV":"21","_label":"followed_by"},{"weight":5,"_id":"1846","_type":"edge","_outV":"94","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"1847","_type":"edge","_outV":"94","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1848","_type":"edge","_outV":"94","_inV":"19","_label":"followed_by"},{"weight":6,"_id":"1849","_type":"edge","_outV":"94","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"185","_type":"edge","_outV":"70","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1850","_type":"edge","_outV":"94","_inV":"39","_label":"followed_by"},{"weight":80,"_id":"1851","_type":"edge","_outV":"94","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1852","_type":"edge","_outV":"94","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1853","_type":"edge","_outV":"94","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"1854","_type":"edge","_outV":"94","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"1855","_type":"edge","_outV":"94","_inV":"83","_label":"followed_by"},{"weight":54,"_id":"1856","_type":"edge","_outV":"94","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"1857","_type":"edge","_outV":"94","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"1858","_type":"edge","_outV":"94","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1859","_type":"edge","_outV":"94","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"186","_type":"edge","_outV":"70","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1860","_type":"edge","_outV":"94","_inV":"10","_label":"followed_by"},{"weight":13,"_id":"1861","_type":"edge","_outV":"94","_inV":"114","_label":"followed_by"},{"weight":10,"_id":"1862","_type":"edge","_outV":"94","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"1863","_type":"edge","_outV":"94","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"1864","_type":"edge","_outV":"94","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"1865","_type":"edge","_outV":"94","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1866","_type":"edge","_outV":"94","_inV":"110","_label":"followed_by"},{"weight":15,"_id":"1867","_type":"edge","_outV":"94","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1868","_type":"edge","_outV":"94","_inV":"154","_label":"followed_by"},{"weight":19,"_id":"1869","_type":"edge","_outV":"94","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"187","_type":"edge","_outV":"70","_inV":"42","_label":"followed_by"},{"weight":9,"_id":"1870","_type":"edge","_outV":"94","_inV":"70","_label":"followed_by"},{"weight":43,"_id":"1871","_type":"edge","_outV":"94","_inV":"29","_label":"followed_by"},{"weight":24,"_id":"1872","_type":"edge","_outV":"94","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"1873","_type":"edge","_outV":"94","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1874","_type":"edge","_outV":"94","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"1875","_type":"edge","_outV":"94","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"1876","_type":"edge","_outV":"103","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1877","_type":"edge","_outV":"103","_inV":"17","_label":"followed_by"},{"weight":31,"_id":"1878","_type":"edge","_outV":"103","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"1879","_type":"edge","_outV":"103","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"188","_type":"edge","_outV":"70","_inV":"121","_label":"followed_by"},{"weight":15,"_id":"1880","_type":"edge","_outV":"103","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"1881","_type":"edge","_outV":"103","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"1882","_type":"edge","_outV":"103","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"1883","_type":"edge","_outV":"103","_inV":"60","_label":"followed_by"},{"weight":11,"_id":"1884","_type":"edge","_outV":"103","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"1885","_type":"edge","_outV":"103","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"1886","_type":"edge","_outV":"103","_inV":"83","_label":"followed_by"},{"weight":10,"_id":"1887","_type":"edge","_outV":"103","_inV":"99","_label":"followed_by"},{"weight":5,"_id":"1888","_type":"edge","_outV":"103","_inV":"78","_label":"followed_by"},{"weight":7,"_id":"1889","_type":"edge","_outV":"103","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"189","_type":"edge","_outV":"70","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1890","_type":"edge","_outV":"103","_inV":"94","_label":"followed_by"},{"weight":19,"_id":"1891","_type":"edge","_outV":"103","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"1892","_type":"edge","_outV":"103","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1893","_type":"edge","_outV":"103","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1894","_type":"edge","_outV":"103","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1895","_type":"edge","_outV":"103","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"1896","_type":"edge","_outV":"103","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1897","_type":"edge","_outV":"103","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1898","_type":"edge","_outV":"103","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"1899","_type":"edge","_outV":"103","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"19","_type":"edge","_outV":"9","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"190","_type":"edge","_outV":"70","_inV":"82","_label":"followed_by"},{"weight":22,"_id":"1900","_type":"edge","_outV":"103","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1901","_type":"edge","_outV":"103","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"1902","_type":"edge","_outV":"103","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"1903","_type":"edge","_outV":"103","_inV":"26","_label":"followed_by"},{"weight":18,"_id":"1904","_type":"edge","_outV":"103","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1905","_type":"edge","_outV":"103","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1906","_type":"edge","_outV":"103","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"1907","_type":"edge","_outV":"103","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"1908","_type":"edge","_outV":"103","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1909","_type":"edge","_outV":"103","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"191","_type":"edge","_outV":"70","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"1910","_type":"edge","_outV":"103","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1911","_type":"edge","_outV":"103","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1912","_type":"edge","_outV":"103","_inV":"115","_label":"followed_by"},{"weight":6,"_id":"1913","_type":"edge","_outV":"103","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"1914","_type":"edge","_outV":"103","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"1915","_type":"edge","_outV":"103","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1916","_type":"edge","_outV":"103","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1917","_type":"edge","_outV":"103","_inV":"75","_label":"followed_by"},{"weight":4,"_id":"1918","_type":"edge","_outV":"103","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"1919","_type":"edge","_outV":"103","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"192","_type":"edge","_outV":"70","_inV":"123","_label":"followed_by"},{"weight":5,"_id":"1920","_type":"edge","_outV":"103","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"1921","_type":"edge","_outV":"103","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1922","_type":"edge","_outV":"103","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"1923","_type":"edge","_outV":"103","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"1924","_type":"edge","_outV":"103","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"1925","_type":"edge","_outV":"103","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1926","_type":"edge","_outV":"103","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"1927","_type":"edge","_outV":"148","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1928","_type":"edge","_outV":"148","_inV":"23","_label":"followed_by"},{"weight":24,"_id":"1929","_type":"edge","_outV":"148","_inV":"127","_label":"followed_by"},{"weight":4,"_id":"193","_type":"edge","_outV":"70","_inV":"74","_label":"followed_by"},{"weight":143,"_id":"1930","_type":"edge","_outV":"148","_inV":"130","_label":"followed_by"},{"weight":7,"_id":"1931","_type":"edge","_outV":"148","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"1932","_type":"edge","_outV":"148","_inV":"160","_label":"followed_by"},{"weight":84,"_id":"1933","_type":"edge","_outV":"148","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1934","_type":"edge","_outV":"148","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"1935","_type":"edge","_outV":"148","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1936","_type":"edge","_outV":"148","_inV":"89","_label":"followed_by"},{"weight":28,"_id":"1937","_type":"edge","_outV":"148","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1938","_type":"edge","_outV":"148","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1939","_type":"edge","_outV":"148","_inV":"252","_label":"followed_by"},{"weight":8,"_id":"194","_type":"edge","_outV":"70","_inV":"5","_label":"followed_by"},{"weight":9,"_id":"1940","_type":"edge","_outV":"148","_inV":"141","_label":"followed_by"},{"weight":4,"_id":"1941","_type":"edge","_outV":"148","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1942","_type":"edge","_outV":"148","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1943","_type":"edge","_outV":"148","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"1944","_type":"edge","_outV":"148","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"1945","_type":"edge","_outV":"148","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1946","_type":"edge","_outV":"148","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1947","_type":"edge","_outV":"148","_inV":"14","_label":"followed_by"},{"weight":35,"_id":"1948","_type":"edge","_outV":"148","_inV":"125","_label":"followed_by"},{"weight":6,"_id":"1949","_type":"edge","_outV":"148","_inV":"21","_label":"followed_by"},{"weight":30,"_id":"195","_type":"edge","_outV":"70","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1950","_type":"edge","_outV":"148","_inV":"16","_label":"followed_by"},{"weight":14,"_id":"1951","_type":"edge","_outV":"148","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1952","_type":"edge","_outV":"148","_inV":"149","_label":"followed_by"},{"weight":10,"_id":"1953","_type":"edge","_outV":"148","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1954","_type":"edge","_outV":"148","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"1955","_type":"edge","_outV":"148","_inV":"276","_label":"followed_by"},{"weight":1,"_id":"1956","_type":"edge","_outV":"148","_inV":"219","_label":"followed_by"},{"weight":1,"_id":"1957","_type":"edge","_outV":"148","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1958","_type":"edge","_outV":"148","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1959","_type":"edge","_outV":"148","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"196","_type":"edge","_outV":"70","_inV":"124","_label":"followed_by"},{"weight":6,"_id":"1960","_type":"edge","_outV":"148","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"1961","_type":"edge","_outV":"148","_inV":"277","_label":"followed_by"},{"weight":4,"_id":"1962","_type":"edge","_outV":"148","_inV":"129","_label":"followed_by"},{"weight":3,"_id":"1963","_type":"edge","_outV":"148","_inV":"29","_label":"followed_by"},{"weight":4,"_id":"1964","_type":"edge","_outV":"148","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1965","_type":"edge","_outV":"148","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"1966","_type":"edge","_outV":"148","_inV":"25","_label":"followed_by"},{"weight":4,"_id":"1967","_type":"edge","_outV":"148","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"1968","_type":"edge","_outV":"148","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"1969","_type":"edge","_outV":"148","_inV":"135","_label":"followed_by"},{"weight":27,"_id":"197","_type":"edge","_outV":"70","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"1970","_type":"edge","_outV":"148","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"1971","_type":"edge","_outV":"148","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"1972","_type":"edge","_outV":"148","_inV":"137","_label":"followed_by"},{"weight":5,"_id":"1973","_type":"edge","_outV":"148","_inV":"138","_label":"followed_by"},{"weight":2,"_id":"1974","_type":"edge","_outV":"148","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"1975","_type":"edge","_outV":"148","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"1976","_type":"edge","_outV":"148","_inV":"179","_label":"followed_by"},{"weight":1,"_id":"1977","_type":"edge","_outV":"148","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"1978","_type":"edge","_outV":"279","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"1979","_type":"edge","_outV":"280","_inV":"95","_label":"followed_by"},{"weight":1,"_id":"198","_type":"edge","_outV":"70","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1980","_type":"edge","_outV":"281","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1981","_type":"edge","_outV":"281","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1982","_type":"edge","_outV":"253","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1983","_type":"edge","_outV":"253","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1984","_type":"edge","_outV":"152","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1985","_type":"edge","_outV":"152","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1986","_type":"edge","_outV":"152","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"1987","_type":"edge","_outV":"152","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"1988","_type":"edge","_outV":"152","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1989","_type":"edge","_outV":"152","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"199","_type":"edge","_outV":"70","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"1990","_type":"edge","_outV":"152","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1991","_type":"edge","_outV":"152","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"1992","_type":"edge","_outV":"152","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"1993","_type":"edge","_outV":"152","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1994","_type":"edge","_outV":"152","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1995","_type":"edge","_outV":"152","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1996","_type":"edge","_outV":"152","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"1997","_type":"edge","_outV":"152","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1998","_type":"edge","_outV":"152","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1999","_type":"edge","_outV":"152","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2","_type":"edge","_outV":"1","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"20","_type":"edge","_outV":"9","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"200","_type":"edge","_outV":"70","_inV":"126","_label":"followed_by"},{"weight":1,"_id":"2000","_type":"edge","_outV":"152","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2001","_type":"edge","_outV":"152","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2002","_type":"edge","_outV":"152","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2003","_type":"edge","_outV":"152","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2004","_type":"edge","_outV":"251","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2005","_type":"edge","_outV":"251","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2006","_type":"edge","_outV":"149","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2007","_type":"edge","_outV":"149","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"2008","_type":"edge","_outV":"149","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"2009","_type":"edge","_outV":"149","_inV":"74","_label":"followed_by"},{"weight":18,"_id":"201","_type":"edge","_outV":"70","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"2010","_type":"edge","_outV":"149","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2011","_type":"edge","_outV":"149","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2012","_type":"edge","_outV":"149","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"2013","_type":"edge","_outV":"149","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2014","_type":"edge","_outV":"149","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"2015","_type":"edge","_outV":"149","_inV":"134","_label":"followed_by"},{"weight":8,"_id":"2016","_type":"edge","_outV":"149","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2017","_type":"edge","_outV":"149","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2018","_type":"edge","_outV":"149","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2019","_type":"edge","_outV":"149","_inV":"29","_label":"followed_by"},{"weight":4,"_id":"202","_type":"edge","_outV":"70","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"2020","_type":"edge","_outV":"149","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2021","_type":"edge","_outV":"149","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2022","_type":"edge","_outV":"149","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"2023","_type":"edge","_outV":"282","_inV":"6","_label":"followed_by"},{"weight":1,"_id":"2024","_type":"edge","_outV":"283","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"2025","_type":"edge","_outV":"180","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"2026","_type":"edge","_outV":"180","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"2027","_type":"edge","_outV":"180","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"2028","_type":"edge","_outV":"180","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"2029","_type":"edge","_outV":"180","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"203","_type":"edge","_outV":"70","_inV":"128","_label":"followed_by"},{"weight":2,"_id":"2030","_type":"edge","_outV":"180","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"2031","_type":"edge","_outV":"180","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2032","_type":"edge","_outV":"180","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"2033","_type":"edge","_outV":"180","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"2034","_type":"edge","_outV":"180","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2035","_type":"edge","_outV":"180","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2036","_type":"edge","_outV":"180","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2037","_type":"edge","_outV":"180","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"2038","_type":"edge","_outV":"92","_inV":"76","_label":"followed_by"},{"weight":11,"_id":"2039","_type":"edge","_outV":"92","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"204","_type":"edge","_outV":"70","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"2040","_type":"edge","_outV":"92","_inV":"21","_label":"followed_by"},{"weight":7,"_id":"2041","_type":"edge","_outV":"92","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2042","_type":"edge","_outV":"92","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2043","_type":"edge","_outV":"92","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"2044","_type":"edge","_outV":"92","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2045","_type":"edge","_outV":"92","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2046","_type":"edge","_outV":"92","_inV":"151","_label":"followed_by"},{"weight":7,"_id":"2047","_type":"edge","_outV":"92","_inV":"29","_label":"followed_by"},{"weight":11,"_id":"2048","_type":"edge","_outV":"92","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"2049","_type":"edge","_outV":"92","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"205","_type":"edge","_outV":"70","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2050","_type":"edge","_outV":"92","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"2051","_type":"edge","_outV":"92","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2052","_type":"edge","_outV":"92","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2053","_type":"edge","_outV":"92","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2054","_type":"edge","_outV":"92","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2055","_type":"edge","_outV":"92","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2056","_type":"edge","_outV":"92","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"2057","_type":"edge","_outV":"92","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2058","_type":"edge","_outV":"92","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"2059","_type":"edge","_outV":"92","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"206","_type":"edge","_outV":"70","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2060","_type":"edge","_outV":"92","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"2061","_type":"edge","_outV":"92","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"2062","_type":"edge","_outV":"92","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2063","_type":"edge","_outV":"92","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2064","_type":"edge","_outV":"188","_inV":"284","_label":"followed_by"},{"weight":2,"_id":"2065","_type":"edge","_outV":"188","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"2066","_type":"edge","_outV":"188","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2067","_type":"edge","_outV":"188","_inV":"77","_label":"followed_by"},{"weight":14,"_id":"2068","_type":"edge","_outV":"188","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"2069","_type":"edge","_outV":"188","_inV":"51","_label":"followed_by"},{"weight":21,"_id":"207","_type":"edge","_outV":"70","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"2070","_type":"edge","_outV":"188","_inV":"105","_label":"followed_by"},{"weight":15,"_id":"2071","_type":"edge","_outV":"188","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"2072","_type":"edge","_outV":"188","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2073","_type":"edge","_outV":"188","_inV":"152","_label":"followed_by"},{"weight":9,"_id":"2074","_type":"edge","_outV":"188","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2075","_type":"edge","_outV":"188","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"2076","_type":"edge","_outV":"188","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"2077","_type":"edge","_outV":"188","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"2078","_type":"edge","_outV":"188","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"2079","_type":"edge","_outV":"188","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"208","_type":"edge","_outV":"70","_inV":"13","_label":"followed_by"},{"weight":12,"_id":"2080","_type":"edge","_outV":"188","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2081","_type":"edge","_outV":"188","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"2082","_type":"edge","_outV":"188","_inV":"169","_label":"followed_by"},{"weight":4,"_id":"2083","_type":"edge","_outV":"188","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2084","_type":"edge","_outV":"188","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2085","_type":"edge","_outV":"188","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"2086","_type":"edge","_outV":"188","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2087","_type":"edge","_outV":"188","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"2088","_type":"edge","_outV":"188","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"2089","_type":"edge","_outV":"188","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"209","_type":"edge","_outV":"70","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"2090","_type":"edge","_outV":"188","_inV":"57","_label":"followed_by"},{"weight":8,"_id":"2091","_type":"edge","_outV":"188","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"2092","_type":"edge","_outV":"188","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"2093","_type":"edge","_outV":"188","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"2094","_type":"edge","_outV":"188","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"2095","_type":"edge","_outV":"188","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"2096","_type":"edge","_outV":"188","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2097","_type":"edge","_outV":"188","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2098","_type":"edge","_outV":"188","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"2099","_type":"edge","_outV":"188","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"21","_type":"edge","_outV":"9","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"210","_type":"edge","_outV":"70","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"2100","_type":"edge","_outV":"188","_inV":"254","_label":"followed_by"},{"weight":6,"_id":"2101","_type":"edge","_outV":"188","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"2102","_type":"edge","_outV":"188","_inV":"190","_label":"followed_by"},{"weight":17,"_id":"2103","_type":"edge","_outV":"17","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2104","_type":"edge","_outV":"17","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"2105","_type":"edge","_outV":"17","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"2106","_type":"edge","_outV":"17","_inV":"50","_label":"followed_by"},{"weight":19,"_id":"2107","_type":"edge","_outV":"17","_inV":"14","_label":"followed_by"},{"weight":8,"_id":"2108","_type":"edge","_outV":"17","_inV":"15","_label":"followed_by"},{"weight":24,"_id":"2109","_type":"edge","_outV":"17","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"211","_type":"edge","_outV":"70","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"2110","_type":"edge","_outV":"17","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"2111","_type":"edge","_outV":"17","_inV":"13","_label":"followed_by"},{"weight":9,"_id":"2112","_type":"edge","_outV":"17","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"2113","_type":"edge","_outV":"17","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2114","_type":"edge","_outV":"17","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2115","_type":"edge","_outV":"17","_inV":"20","_label":"followed_by"},{"weight":7,"_id":"2116","_type":"edge","_outV":"17","_inV":"10","_label":"followed_by"},{"weight":25,"_id":"2117","_type":"edge","_outV":"17","_inV":"68","_label":"followed_by"},{"weight":19,"_id":"2118","_type":"edge","_outV":"17","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"2119","_type":"edge","_outV":"17","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"212","_type":"edge","_outV":"70","_inV":"131","_label":"followed_by"},{"weight":3,"_id":"2120","_type":"edge","_outV":"17","_inV":"121","_label":"followed_by"},{"weight":31,"_id":"2121","_type":"edge","_outV":"17","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"2122","_type":"edge","_outV":"17","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2123","_type":"edge","_outV":"17","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2124","_type":"edge","_outV":"17","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"2125","_type":"edge","_outV":"17","_inV":"73","_label":"followed_by"},{"weight":8,"_id":"2126","_type":"edge","_outV":"17","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"2127","_type":"edge","_outV":"17","_inV":"111","_label":"followed_by"},{"weight":2,"_id":"2128","_type":"edge","_outV":"17","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"2129","_type":"edge","_outV":"17","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"213","_type":"edge","_outV":"70","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2130","_type":"edge","_outV":"17","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2131","_type":"edge","_outV":"17","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"2132","_type":"edge","_outV":"17","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2133","_type":"edge","_outV":"17","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"2134","_type":"edge","_outV":"17","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2135","_type":"edge","_outV":"17","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2136","_type":"edge","_outV":"17","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2137","_type":"edge","_outV":"17","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"2138","_type":"edge","_outV":"17","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2139","_type":"edge","_outV":"17","_inV":"31","_label":"followed_by"},{"weight":13,"_id":"214","_type":"edge","_outV":"70","_inV":"132","_label":"followed_by"},{"weight":2,"_id":"2140","_type":"edge","_outV":"17","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2141","_type":"edge","_outV":"17","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"2142","_type":"edge","_outV":"17","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"2143","_type":"edge","_outV":"286","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2144","_type":"edge","_outV":"286","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2145","_type":"edge","_outV":"286","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"2146","_type":"edge","_outV":"228","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2147","_type":"edge","_outV":"228","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2148","_type":"edge","_outV":"151","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2149","_type":"edge","_outV":"151","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"215","_type":"edge","_outV":"70","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"2150","_type":"edge","_outV":"151","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2151","_type":"edge","_outV":"151","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2152","_type":"edge","_outV":"151","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2153","_type":"edge","_outV":"151","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"2154","_type":"edge","_outV":"151","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"2155","_type":"edge","_outV":"151","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2156","_type":"edge","_outV":"151","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"2157","_type":"edge","_outV":"151","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2158","_type":"edge","_outV":"151","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"2159","_type":"edge","_outV":"151","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"216","_type":"edge","_outV":"70","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2160","_type":"edge","_outV":"151","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"2161","_type":"edge","_outV":"151","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2162","_type":"edge","_outV":"151","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2163","_type":"edge","_outV":"151","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2164","_type":"edge","_outV":"151","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2165","_type":"edge","_outV":"151","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2166","_type":"edge","_outV":"151","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2167","_type":"edge","_outV":"151","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2168","_type":"edge","_outV":"151","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2169","_type":"edge","_outV":"16","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"217","_type":"edge","_outV":"70","_inV":"29","_label":"followed_by"},{"weight":46,"_id":"2170","_type":"edge","_outV":"16","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"2171","_type":"edge","_outV":"16","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2172","_type":"edge","_outV":"16","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2173","_type":"edge","_outV":"16","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"2174","_type":"edge","_outV":"208","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"2175","_type":"edge","_outV":"208","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"2176","_type":"edge","_outV":"208","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2177","_type":"edge","_outV":"208","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"2178","_type":"edge","_outV":"208","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"2179","_type":"edge","_outV":"208","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"218","_type":"edge","_outV":"70","_inV":"134","_label":"followed_by"},{"weight":5,"_id":"2180","_type":"edge","_outV":"208","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"2181","_type":"edge","_outV":"208","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2182","_type":"edge","_outV":"208","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2183","_type":"edge","_outV":"208","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2184","_type":"edge","_outV":"208","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2185","_type":"edge","_outV":"208","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2186","_type":"edge","_outV":"208","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2187","_type":"edge","_outV":"235","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"2188","_type":"edge","_outV":"235","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2189","_type":"edge","_outV":"235","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"219","_type":"edge","_outV":"70","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2190","_type":"edge","_outV":"235","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2191","_type":"edge","_outV":"235","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2192","_type":"edge","_outV":"235","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2193","_type":"edge","_outV":"235","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"2194","_type":"edge","_outV":"235","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2195","_type":"edge","_outV":"235","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"2196","_type":"edge","_outV":"75","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2197","_type":"edge","_outV":"75","_inV":"59","_label":"followed_by"},{"weight":6,"_id":"2198","_type":"edge","_outV":"75","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2199","_type":"edge","_outV":"75","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"22","_type":"edge","_outV":"9","_inV":"26","_label":"followed_by"},{"weight":20,"_id":"220","_type":"edge","_outV":"70","_inV":"92","_label":"followed_by"},{"weight":2,"_id":"2200","_type":"edge","_outV":"75","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2201","_type":"edge","_outV":"75","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"2202","_type":"edge","_outV":"75","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2203","_type":"edge","_outV":"75","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"2204","_type":"edge","_outV":"75","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2205","_type":"edge","_outV":"75","_inV":"42","_label":"followed_by"},{"weight":7,"_id":"2206","_type":"edge","_outV":"75","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"2207","_type":"edge","_outV":"75","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"2208","_type":"edge","_outV":"75","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2209","_type":"edge","_outV":"75","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"221","_type":"edge","_outV":"70","_inV":"135","_label":"followed_by"},{"weight":1,"_id":"2210","_type":"edge","_outV":"75","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2211","_type":"edge","_outV":"75","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"2212","_type":"edge","_outV":"75","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"2213","_type":"edge","_outV":"75","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2214","_type":"edge","_outV":"75","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2215","_type":"edge","_outV":"75","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2216","_type":"edge","_outV":"75","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2217","_type":"edge","_outV":"75","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"2218","_type":"edge","_outV":"75","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"2219","_type":"edge","_outV":"75","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"222","_type":"edge","_outV":"70","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2220","_type":"edge","_outV":"75","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2221","_type":"edge","_outV":"75","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2222","_type":"edge","_outV":"75","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2223","_type":"edge","_outV":"226","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"2224","_type":"edge","_outV":"226","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"2225","_type":"edge","_outV":"226","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2226","_type":"edge","_outV":"250","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2227","_type":"edge","_outV":"250","_inV":"265","_label":"followed_by"},{"weight":1,"_id":"2228","_type":"edge","_outV":"250","_inV":"287","_label":"followed_by"},{"weight":97,"_id":"2229","_type":"edge","_outV":"215","_inV":"154","_label":"followed_by"},{"weight":6,"_id":"223","_type":"edge","_outV":"70","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"2230","_type":"edge","_outV":"215","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2231","_type":"edge","_outV":"215","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2232","_type":"edge","_outV":"215","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2233","_type":"edge","_outV":"215","_inV":"171","_label":"followed_by"},{"weight":8,"_id":"2234","_type":"edge","_outV":"215","_inV":"288","_label":"followed_by"},{"weight":163,"_id":"2235","_type":"edge","_outV":"29","_inV":"3","_label":"followed_by"},{"weight":5,"_id":"2236","_type":"edge","_outV":"29","_inV":"5","_label":"followed_by"},{"weight":6,"_id":"2237","_type":"edge","_outV":"29","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"2238","_type":"edge","_outV":"29","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2239","_type":"edge","_outV":"29","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"224","_type":"edge","_outV":"70","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"2240","_type":"edge","_outV":"29","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"2241","_type":"edge","_outV":"29","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2242","_type":"edge","_outV":"29","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"2243","_type":"edge","_outV":"29","_inV":"96","_label":"followed_by"},{"weight":11,"_id":"2244","_type":"edge","_outV":"29","_inV":"114","_label":"followed_by"},{"weight":7,"_id":"2245","_type":"edge","_outV":"29","_inV":"125","_label":"followed_by"},{"weight":5,"_id":"2246","_type":"edge","_outV":"29","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2247","_type":"edge","_outV":"29","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2248","_type":"edge","_outV":"29","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2249","_type":"edge","_outV":"29","_inV":"94","_label":"followed_by"},{"weight":9,"_id":"225","_type":"edge","_outV":"70","_inV":"138","_label":"followed_by"},{"weight":46,"_id":"2250","_type":"edge","_outV":"29","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2251","_type":"edge","_outV":"29","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"2252","_type":"edge","_outV":"29","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"2253","_type":"edge","_outV":"29","_inV":"264","_label":"followed_by"},{"weight":1,"_id":"2254","_type":"edge","_outV":"29","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2255","_type":"edge","_outV":"29","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2256","_type":"edge","_outV":"29","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2257","_type":"edge","_outV":"29","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2258","_type":"edge","_outV":"29","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"2259","_type":"edge","_outV":"29","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"226","_type":"edge","_outV":"70","_inV":"139","_label":"followed_by"},{"weight":2,"_id":"2260","_type":"edge","_outV":"29","_inV":"38","_label":"followed_by"},{"weight":16,"_id":"2261","_type":"edge","_outV":"25","_inV":"122","_label":"followed_by"},{"weight":16,"_id":"2262","_type":"edge","_outV":"25","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"2263","_type":"edge","_outV":"25","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2264","_type":"edge","_outV":"25","_inV":"53","_label":"followed_by"},{"weight":31,"_id":"2265","_type":"edge","_outV":"25","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"2266","_type":"edge","_outV":"25","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2267","_type":"edge","_outV":"25","_inV":"104","_label":"followed_by"},{"weight":8,"_id":"2268","_type":"edge","_outV":"25","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2269","_type":"edge","_outV":"25","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"227","_type":"edge","_outV":"70","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"2270","_type":"edge","_outV":"25","_inV":"278","_label":"followed_by"},{"weight":4,"_id":"2271","_type":"edge","_outV":"25","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"2272","_type":"edge","_outV":"25","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"2273","_type":"edge","_outV":"25","_inV":"51","_label":"followed_by"},{"weight":8,"_id":"2274","_type":"edge","_outV":"25","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2275","_type":"edge","_outV":"25","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"2276","_type":"edge","_outV":"25","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2277","_type":"edge","_outV":"25","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"2278","_type":"edge","_outV":"25","_inV":"3","_label":"followed_by"},{"weight":4,"_id":"2279","_type":"edge","_outV":"25","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"228","_type":"edge","_outV":"70","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"2280","_type":"edge","_outV":"25","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"2281","_type":"edge","_outV":"25","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"2282","_type":"edge","_outV":"25","_inV":"89","_label":"followed_by"},{"weight":9,"_id":"2283","_type":"edge","_outV":"25","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"2284","_type":"edge","_outV":"25","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2285","_type":"edge","_outV":"25","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2286","_type":"edge","_outV":"25","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2287","_type":"edge","_outV":"25","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"2288","_type":"edge","_outV":"25","_inV":"82","_label":"followed_by"},{"weight":21,"_id":"2289","_type":"edge","_outV":"25","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"229","_type":"edge","_outV":"70","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"2290","_type":"edge","_outV":"25","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2291","_type":"edge","_outV":"25","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"2292","_type":"edge","_outV":"25","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2293","_type":"edge","_outV":"25","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"2294","_type":"edge","_outV":"25","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"2295","_type":"edge","_outV":"25","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"2296","_type":"edge","_outV":"25","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2297","_type":"edge","_outV":"25","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2298","_type":"edge","_outV":"25","_inV":"78","_label":"followed_by"},{"weight":10,"_id":"2299","_type":"edge","_outV":"25","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"23","_type":"edge","_outV":"9","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"230","_type":"edge","_outV":"142","_inV":"143","_label":"followed_by"},{"weight":7,"_id":"2300","_type":"edge","_outV":"25","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"2301","_type":"edge","_outV":"25","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2302","_type":"edge","_outV":"25","_inV":"76","_label":"followed_by"},{"weight":7,"_id":"2303","_type":"edge","_outV":"25","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"2304","_type":"edge","_outV":"25","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2305","_type":"edge","_outV":"25","_inV":"109","_label":"followed_by"},{"weight":10,"_id":"2306","_type":"edge","_outV":"25","_inV":"84","_label":"followed_by"},{"weight":16,"_id":"2307","_type":"edge","_outV":"25","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"2308","_type":"edge","_outV":"25","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"2309","_type":"edge","_outV":"25","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"231","_type":"edge","_outV":"142","_inV":"107","_label":"followed_by"},{"weight":1,"_id":"2310","_type":"edge","_outV":"25","_inV":"289","_label":"followed_by"},{"weight":71,"_id":"2311","_type":"edge","_outV":"25","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2312","_type":"edge","_outV":"25","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"2313","_type":"edge","_outV":"25","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2314","_type":"edge","_outV":"25","_inV":"166","_label":"followed_by"},{"weight":6,"_id":"2315","_type":"edge","_outV":"25","_inV":"133","_label":"followed_by"},{"weight":4,"_id":"2316","_type":"edge","_outV":"25","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"2317","_type":"edge","_outV":"25","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2318","_type":"edge","_outV":"25","_inV":"211","_label":"followed_by"},{"weight":5,"_id":"2319","_type":"edge","_outV":"25","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"232","_type":"edge","_outV":"144","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"2320","_type":"edge","_outV":"25","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"2321","_type":"edge","_outV":"25","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"2322","_type":"edge","_outV":"25","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2323","_type":"edge","_outV":"25","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"2324","_type":"edge","_outV":"25","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"2325","_type":"edge","_outV":"25","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"2326","_type":"edge","_outV":"25","_inV":"150","_label":"followed_by"},{"weight":9,"_id":"2327","_type":"edge","_outV":"25","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"2328","_type":"edge","_outV":"25","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"2329","_type":"edge","_outV":"25","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"233","_type":"edge","_outV":"145","_inV":"146","_label":"followed_by"},{"weight":1,"_id":"2330","_type":"edge","_outV":"25","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2331","_type":"edge","_outV":"25","_inV":"216","_label":"followed_by"},{"weight":4,"_id":"2332","_type":"edge","_outV":"25","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"2333","_type":"edge","_outV":"25","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"2334","_type":"edge","_outV":"25","_inV":"93","_label":"followed_by"},{"weight":2,"_id":"2335","_type":"edge","_outV":"290","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2336","_type":"edge","_outV":"290","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"2337","_type":"edge","_outV":"278","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2338","_type":"edge","_outV":"278","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2339","_type":"edge","_outV":"278","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"234","_type":"edge","_outV":"145","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2340","_type":"edge","_outV":"87","_inV":"96","_label":"followed_by"},{"weight":11,"_id":"2341","_type":"edge","_outV":"87","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2342","_type":"edge","_outV":"87","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2343","_type":"edge","_outV":"87","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2344","_type":"edge","_outV":"87","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"2345","_type":"edge","_outV":"87","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2346","_type":"edge","_outV":"87","_inV":"63","_label":"followed_by"},{"weight":8,"_id":"2347","_type":"edge","_outV":"87","_inV":"13","_label":"followed_by"},{"weight":13,"_id":"2348","_type":"edge","_outV":"87","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2349","_type":"edge","_outV":"87","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"235","_type":"edge","_outV":"145","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"2350","_type":"edge","_outV":"87","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"2351","_type":"edge","_outV":"87","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2352","_type":"edge","_outV":"87","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"2353","_type":"edge","_outV":"87","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"2354","_type":"edge","_outV":"87","_inV":"19","_label":"followed_by"},{"weight":15,"_id":"2355","_type":"edge","_outV":"87","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"2356","_type":"edge","_outV":"87","_inV":"26","_label":"followed_by"},{"weight":15,"_id":"2357","_type":"edge","_outV":"87","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2358","_type":"edge","_outV":"87","_inV":"72","_label":"followed_by"},{"weight":6,"_id":"2359","_type":"edge","_outV":"87","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"236","_type":"edge","_outV":"145","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2360","_type":"edge","_outV":"87","_inV":"114","_label":"followed_by"},{"weight":5,"_id":"2361","_type":"edge","_outV":"87","_inV":"69","_label":"followed_by"},{"weight":28,"_id":"2362","_type":"edge","_outV":"87","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"2363","_type":"edge","_outV":"87","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"2364","_type":"edge","_outV":"87","_inV":"210","_label":"followed_by"},{"weight":7,"_id":"2365","_type":"edge","_outV":"87","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"2366","_type":"edge","_outV":"87","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"2367","_type":"edge","_outV":"87","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"2368","_type":"edge","_outV":"87","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"2369","_type":"edge","_outV":"87","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"237","_type":"edge","_outV":"145","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2370","_type":"edge","_outV":"87","_inV":"223","_label":"followed_by"},{"weight":2,"_id":"2371","_type":"edge","_outV":"87","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2372","_type":"edge","_outV":"87","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"2373","_type":"edge","_outV":"87","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2374","_type":"edge","_outV":"87","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"2375","_type":"edge","_outV":"87","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"2376","_type":"edge","_outV":"87","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2377","_type":"edge","_outV":"87","_inV":"50","_label":"followed_by"},{"weight":11,"_id":"2378","_type":"edge","_outV":"87","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2379","_type":"edge","_outV":"87","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"238","_type":"edge","_outV":"145","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2380","_type":"edge","_outV":"87","_inV":"165","_label":"followed_by"},{"weight":2,"_id":"2381","_type":"edge","_outV":"87","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2382","_type":"edge","_outV":"87","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2383","_type":"edge","_outV":"87","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2384","_type":"edge","_outV":"87","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2385","_type":"edge","_outV":"87","_inV":"213","_label":"followed_by"},{"weight":10,"_id":"2386","_type":"edge","_outV":"87","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2387","_type":"edge","_outV":"87","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"2388","_type":"edge","_outV":"87","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"2389","_type":"edge","_outV":"87","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"239","_type":"edge","_outV":"145","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2390","_type":"edge","_outV":"87","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2391","_type":"edge","_outV":"87","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2392","_type":"edge","_outV":"87","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2393","_type":"edge","_outV":"87","_inV":"291","_label":"followed_by"},{"weight":1,"_id":"2394","_type":"edge","_outV":"87","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"2395","_type":"edge","_outV":"179","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2396","_type":"edge","_outV":"179","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2397","_type":"edge","_outV":"179","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2398","_type":"edge","_outV":"179","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2399","_type":"edge","_outV":"179","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"24","_type":"edge","_outV":"9","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"240","_type":"edge","_outV":"145","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2400","_type":"edge","_outV":"179","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2401","_type":"edge","_outV":"179","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"2402","_type":"edge","_outV":"45","_inV":"44","_label":"followed_by"},{"weight":1,"_id":"2403","_type":"edge","_outV":"45","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2404","_type":"edge","_outV":"45","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2405","_type":"edge","_outV":"45","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2406","_type":"edge","_outV":"6","_inV":"293","_label":"followed_by"},{"weight":1,"_id":"2407","_type":"edge","_outV":"6","_inV":"96","_label":"followed_by"},{"weight":5,"_id":"2408","_type":"edge","_outV":"68","_inV":"19","_label":"followed_by"},{"weight":8,"_id":"2409","_type":"edge","_outV":"68","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"241","_type":"edge","_outV":"145","_inV":"147","_label":"followed_by"},{"weight":34,"_id":"2410","_type":"edge","_outV":"68","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"2411","_type":"edge","_outV":"68","_inV":"15","_label":"followed_by"},{"weight":28,"_id":"2412","_type":"edge","_outV":"68","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"2413","_type":"edge","_outV":"68","_inV":"17","_label":"followed_by"},{"weight":10,"_id":"2414","_type":"edge","_outV":"68","_inV":"48","_label":"followed_by"},{"weight":13,"_id":"2415","_type":"edge","_outV":"68","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2416","_type":"edge","_outV":"68","_inV":"294","_label":"followed_by"},{"weight":12,"_id":"2417","_type":"edge","_outV":"68","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"2418","_type":"edge","_outV":"68","_inV":"69","_label":"followed_by"},{"weight":9,"_id":"2419","_type":"edge","_outV":"68","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"242","_type":"edge","_outV":"145","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"2420","_type":"edge","_outV":"68","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2421","_type":"edge","_outV":"68","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2422","_type":"edge","_outV":"68","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2423","_type":"edge","_outV":"68","_inV":"59","_label":"followed_by"},{"weight":20,"_id":"2424","_type":"edge","_outV":"68","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"2425","_type":"edge","_outV":"68","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"2426","_type":"edge","_outV":"68","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"2427","_type":"edge","_outV":"68","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"2428","_type":"edge","_outV":"68","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"2429","_type":"edge","_outV":"68","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"243","_type":"edge","_outV":"145","_inV":"149","_label":"followed_by"},{"weight":3,"_id":"2430","_type":"edge","_outV":"68","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"2431","_type":"edge","_outV":"68","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2432","_type":"edge","_outV":"68","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2433","_type":"edge","_outV":"68","_inV":"12","_label":"followed_by"},{"weight":8,"_id":"2434","_type":"edge","_outV":"68","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2435","_type":"edge","_outV":"68","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"2436","_type":"edge","_outV":"68","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"2437","_type":"edge","_outV":"68","_inV":"180","_label":"followed_by"},{"weight":3,"_id":"2438","_type":"edge","_outV":"68","_inV":"273","_label":"followed_by"},{"weight":3,"_id":"2439","_type":"edge","_outV":"68","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"244","_type":"edge","_outV":"150","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"2440","_type":"edge","_outV":"68","_inV":"111","_label":"followed_by"},{"weight":5,"_id":"2441","_type":"edge","_outV":"68","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"2442","_type":"edge","_outV":"68","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"2443","_type":"edge","_outV":"68","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"2444","_type":"edge","_outV":"68","_inV":"106","_label":"followed_by"},{"weight":11,"_id":"2445","_type":"edge","_outV":"68","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"2446","_type":"edge","_outV":"68","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2447","_type":"edge","_outV":"68","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"2448","_type":"edge","_outV":"68","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2449","_type":"edge","_outV":"68","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"245","_type":"edge","_outV":"150","_inV":"76","_label":"followed_by"},{"weight":9,"_id":"2450","_type":"edge","_outV":"68","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"2451","_type":"edge","_outV":"68","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2452","_type":"edge","_outV":"68","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"2453","_type":"edge","_outV":"68","_inV":"97","_label":"followed_by"},{"weight":35,"_id":"2454","_type":"edge","_outV":"68","_inV":"72","_label":"followed_by"},{"weight":8,"_id":"2455","_type":"edge","_outV":"68","_inV":"99","_label":"followed_by"},{"weight":6,"_id":"2456","_type":"edge","_outV":"68","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"2457","_type":"edge","_outV":"68","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2458","_type":"edge","_outV":"68","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"2459","_type":"edge","_outV":"68","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"246","_type":"edge","_outV":"150","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2460","_type":"edge","_outV":"68","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2461","_type":"edge","_outV":"68","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2462","_type":"edge","_outV":"68","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2463","_type":"edge","_outV":"68","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"2464","_type":"edge","_outV":"68","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2465","_type":"edge","_outV":"68","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"2466","_type":"edge","_outV":"68","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"2467","_type":"edge","_outV":"68","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"2468","_type":"edge","_outV":"68","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"2469","_type":"edge","_outV":"68","_inV":"136","_label":"followed_by"},{"weight":5,"_id":"247","_type":"edge","_outV":"150","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2470","_type":"edge","_outV":"68","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2471","_type":"edge","_outV":"68","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2472","_type":"edge","_outV":"68","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"2473","_type":"edge","_outV":"68","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"2474","_type":"edge","_outV":"68","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"2475","_type":"edge","_outV":"68","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"2476","_type":"edge","_outV":"68","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2477","_type":"edge","_outV":"68","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2478","_type":"edge","_outV":"68","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2479","_type":"edge","_outV":"68","_inV":"119","_label":"followed_by"},{"weight":3,"_id":"248","_type":"edge","_outV":"150","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2480","_type":"edge","_outV":"68","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2481","_type":"edge","_outV":"68","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"2482","_type":"edge","_outV":"68","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2483","_type":"edge","_outV":"68","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"2484","_type":"edge","_outV":"68","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"2485","_type":"edge","_outV":"68","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2486","_type":"edge","_outV":"68","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"2487","_type":"edge","_outV":"68","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2488","_type":"edge","_outV":"68","_inV":"9","_label":"followed_by"},{"weight":19,"_id":"2489","_type":"edge","_outV":"90","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"249","_type":"edge","_outV":"150","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2490","_type":"edge","_outV":"90","_inV":"154","_label":"followed_by"},{"weight":4,"_id":"2491","_type":"edge","_outV":"90","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2492","_type":"edge","_outV":"90","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2493","_type":"edge","_outV":"90","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"2494","_type":"edge","_outV":"90","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2495","_type":"edge","_outV":"90","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2496","_type":"edge","_outV":"90","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2497","_type":"edge","_outV":"90","_inV":"151","_label":"followed_by"},{"weight":4,"_id":"2498","_type":"edge","_outV":"90","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"2499","_type":"edge","_outV":"90","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"25","_type":"edge","_outV":"9","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"250","_type":"edge","_outV":"150","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2500","_type":"edge","_outV":"90","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2501","_type":"edge","_outV":"90","_inV":"291","_label":"followed_by"},{"weight":1,"_id":"2502","_type":"edge","_outV":"90","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"2503","_type":"edge","_outV":"90","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2504","_type":"edge","_outV":"57","_inV":"39","_label":"followed_by"},{"weight":12,"_id":"2505","_type":"edge","_outV":"57","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"2506","_type":"edge","_outV":"57","_inV":"153","_label":"followed_by"},{"weight":14,"_id":"2507","_type":"edge","_outV":"57","_inV":"24","_label":"followed_by"},{"weight":9,"_id":"2508","_type":"edge","_outV":"57","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2509","_type":"edge","_outV":"57","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"251","_type":"edge","_outV":"150","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2510","_type":"edge","_outV":"57","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"2511","_type":"edge","_outV":"57","_inV":"205","_label":"followed_by"},{"weight":3,"_id":"2512","_type":"edge","_outV":"57","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"2513","_type":"edge","_outV":"57","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2514","_type":"edge","_outV":"57","_inV":"234","_label":"followed_by"},{"weight":3,"_id":"2515","_type":"edge","_outV":"57","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"2516","_type":"edge","_outV":"57","_inV":"26","_label":"followed_by"},{"weight":11,"_id":"2517","_type":"edge","_outV":"57","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"2518","_type":"edge","_outV":"57","_inV":"15","_label":"followed_by"},{"weight":10,"_id":"2519","_type":"edge","_outV":"57","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"252","_type":"edge","_outV":"150","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"2520","_type":"edge","_outV":"57","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"2521","_type":"edge","_outV":"57","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"2522","_type":"edge","_outV":"57","_inV":"17","_label":"followed_by"},{"weight":9,"_id":"2523","_type":"edge","_outV":"57","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"2524","_type":"edge","_outV":"57","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2525","_type":"edge","_outV":"57","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"2526","_type":"edge","_outV":"57","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"2527","_type":"edge","_outV":"57","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"2528","_type":"edge","_outV":"57","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"2529","_type":"edge","_outV":"57","_inV":"32","_label":"followed_by"},{"weight":14,"_id":"253","_type":"edge","_outV":"150","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"2530","_type":"edge","_outV":"57","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"2531","_type":"edge","_outV":"57","_inV":"101","_label":"followed_by"},{"weight":30,"_id":"2532","_type":"edge","_outV":"57","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"2533","_type":"edge","_outV":"57","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2534","_type":"edge","_outV":"57","_inV":"120","_label":"followed_by"},{"weight":6,"_id":"2535","_type":"edge","_outV":"57","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"2536","_type":"edge","_outV":"57","_inV":"103","_label":"followed_by"},{"weight":31,"_id":"2537","_type":"edge","_outV":"57","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"2538","_type":"edge","_outV":"57","_inV":"4","_label":"followed_by"},{"weight":15,"_id":"2539","_type":"edge","_outV":"57","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"254","_type":"edge","_outV":"150","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"2540","_type":"edge","_outV":"57","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"2541","_type":"edge","_outV":"57","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2542","_type":"edge","_outV":"57","_inV":"289","_label":"followed_by"},{"weight":12,"_id":"2543","_type":"edge","_outV":"57","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2544","_type":"edge","_outV":"57","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"2545","_type":"edge","_outV":"57","_inV":"65","_label":"followed_by"},{"weight":28,"_id":"2546","_type":"edge","_outV":"57","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"2547","_type":"edge","_outV":"57","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"2548","_type":"edge","_outV":"57","_inV":"72","_label":"followed_by"},{"weight":6,"_id":"2549","_type":"edge","_outV":"57","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"255","_type":"edge","_outV":"150","_inV":"155","_label":"followed_by"},{"weight":15,"_id":"2550","_type":"edge","_outV":"57","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"2551","_type":"edge","_outV":"57","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2552","_type":"edge","_outV":"57","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2553","_type":"edge","_outV":"57","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2554","_type":"edge","_outV":"57","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"2555","_type":"edge","_outV":"57","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"2556","_type":"edge","_outV":"57","_inV":"133","_label":"followed_by"},{"weight":10,"_id":"2557","_type":"edge","_outV":"57","_inV":"87","_label":"followed_by"},{"weight":11,"_id":"2558","_type":"edge","_outV":"57","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2559","_type":"edge","_outV":"57","_inV":"210","_label":"followed_by"},{"weight":5,"_id":"256","_type":"edge","_outV":"150","_inV":"62","_label":"followed_by"},{"weight":5,"_id":"2560","_type":"edge","_outV":"57","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2561","_type":"edge","_outV":"57","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2562","_type":"edge","_outV":"57","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2563","_type":"edge","_outV":"57","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2564","_type":"edge","_outV":"57","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"2565","_type":"edge","_outV":"57","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"2566","_type":"edge","_outV":"57","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2567","_type":"edge","_outV":"57","_inV":"243","_label":"followed_by"},{"weight":1,"_id":"2568","_type":"edge","_outV":"57","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"2569","_type":"edge","_outV":"57","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"257","_type":"edge","_outV":"150","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2570","_type":"edge","_outV":"57","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2571","_type":"edge","_outV":"57","_inV":"89","_label":"followed_by"},{"weight":5,"_id":"2572","_type":"edge","_outV":"57","_inV":"46","_label":"followed_by"},{"weight":5,"_id":"2573","_type":"edge","_outV":"57","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"2574","_type":"edge","_outV":"57","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2575","_type":"edge","_outV":"57","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2576","_type":"edge","_outV":"57","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2577","_type":"edge","_outV":"57","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"2578","_type":"edge","_outV":"57","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"2579","_type":"edge","_outV":"57","_inV":"61","_label":"followed_by"},{"weight":4,"_id":"258","_type":"edge","_outV":"150","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2580","_type":"edge","_outV":"57","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2581","_type":"edge","_outV":"57","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2582","_type":"edge","_outV":"57","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2583","_type":"edge","_outV":"57","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"2584","_type":"edge","_outV":"112","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"2585","_type":"edge","_outV":"112","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"2586","_type":"edge","_outV":"112","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"2587","_type":"edge","_outV":"112","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"2588","_type":"edge","_outV":"112","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"2589","_type":"edge","_outV":"112","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"259","_type":"edge","_outV":"150","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2590","_type":"edge","_outV":"112","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2591","_type":"edge","_outV":"112","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2592","_type":"edge","_outV":"112","_inV":"294","_label":"followed_by"},{"weight":1,"_id":"2593","_type":"edge","_outV":"112","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2594","_type":"edge","_outV":"112","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2595","_type":"edge","_outV":"112","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2596","_type":"edge","_outV":"112","_inV":"42","_label":"followed_by"},{"weight":35,"_id":"2597","_type":"edge","_outV":"112","_inV":"15","_label":"followed_by"},{"weight":7,"_id":"2598","_type":"edge","_outV":"112","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"2599","_type":"edge","_outV":"112","_inV":"56","_label":"followed_by"},{"weight":5,"_id":"26","_type":"edge","_outV":"9","_inV":"30","_label":"followed_by"},{"weight":4,"_id":"260","_type":"edge","_outV":"150","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"2600","_type":"edge","_outV":"112","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"2601","_type":"edge","_outV":"112","_inV":"18","_label":"followed_by"},{"weight":130,"_id":"2602","_type":"edge","_outV":"112","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"2603","_type":"edge","_outV":"112","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2604","_type":"edge","_outV":"112","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2605","_type":"edge","_outV":"112","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2606","_type":"edge","_outV":"112","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2607","_type":"edge","_outV":"295","_inV":"7","_label":"followed_by"},{"weight":1,"_id":"2608","_type":"edge","_outV":"158","_inV":"259","_label":"followed_by"},{"weight":7,"_id":"2609","_type":"edge","_outV":"158","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"261","_type":"edge","_outV":"150","_inV":"82","_label":"followed_by"},{"weight":10,"_id":"2610","_type":"edge","_outV":"158","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2611","_type":"edge","_outV":"158","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2612","_type":"edge","_outV":"158","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2613","_type":"edge","_outV":"158","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"2614","_type":"edge","_outV":"158","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"2615","_type":"edge","_outV":"158","_inV":"138","_label":"followed_by"},{"weight":3,"_id":"2616","_type":"edge","_outV":"158","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"2617","_type":"edge","_outV":"158","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2618","_type":"edge","_outV":"158","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2619","_type":"edge","_outV":"158","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"262","_type":"edge","_outV":"150","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"2620","_type":"edge","_outV":"158","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2621","_type":"edge","_outV":"158","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2622","_type":"edge","_outV":"158","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2623","_type":"edge","_outV":"158","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2624","_type":"edge","_outV":"158","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"2625","_type":"edge","_outV":"158","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2626","_type":"edge","_outV":"158","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"2627","_type":"edge","_outV":"158","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2628","_type":"edge","_outV":"158","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2629","_type":"edge","_outV":"158","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"263","_type":"edge","_outV":"150","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"2630","_type":"edge","_outV":"137","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2631","_type":"edge","_outV":"137","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2632","_type":"edge","_outV":"137","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2633","_type":"edge","_outV":"137","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"2634","_type":"edge","_outV":"137","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2635","_type":"edge","_outV":"137","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2636","_type":"edge","_outV":"137","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2637","_type":"edge","_outV":"137","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"2638","_type":"edge","_outV":"137","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2639","_type":"edge","_outV":"137","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"264","_type":"edge","_outV":"150","_inV":"156","_label":"followed_by"},{"weight":2,"_id":"2640","_type":"edge","_outV":"137","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2641","_type":"edge","_outV":"137","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2642","_type":"edge","_outV":"137","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"2643","_type":"edge","_outV":"137","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"2644","_type":"edge","_outV":"137","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"2645","_type":"edge","_outV":"137","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2646","_type":"edge","_outV":"137","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2647","_type":"edge","_outV":"137","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2648","_type":"edge","_outV":"137","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"2649","_type":"edge","_outV":"137","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"265","_type":"edge","_outV":"150","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"2650","_type":"edge","_outV":"137","_inV":"43","_label":"followed_by"},{"weight":7,"_id":"2651","_type":"edge","_outV":"137","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2652","_type":"edge","_outV":"137","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"2653","_type":"edge","_outV":"137","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"2654","_type":"edge","_outV":"137","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2655","_type":"edge","_outV":"137","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2656","_type":"edge","_outV":"137","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2657","_type":"edge","_outV":"137","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2658","_type":"edge","_outV":"137","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"2659","_type":"edge","_outV":"137","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"266","_type":"edge","_outV":"150","_inV":"157","_label":"followed_by"},{"weight":3,"_id":"2660","_type":"edge","_outV":"13","_inV":"207","_label":"followed_by"},{"weight":17,"_id":"2661","_type":"edge","_outV":"13","_inV":"122","_label":"followed_by"},{"weight":157,"_id":"2662","_type":"edge","_outV":"13","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2663","_type":"edge","_outV":"13","_inV":"104","_label":"followed_by"},{"weight":14,"_id":"2664","_type":"edge","_outV":"13","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"2665","_type":"edge","_outV":"13","_inV":"123","_label":"followed_by"},{"weight":12,"_id":"2666","_type":"edge","_outV":"13","_inV":"19","_label":"followed_by"},{"weight":5,"_id":"2667","_type":"edge","_outV":"13","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2668","_type":"edge","_outV":"13","_inV":"12","_label":"followed_by"},{"weight":12,"_id":"2669","_type":"edge","_outV":"13","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"267","_type":"edge","_outV":"150","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"2670","_type":"edge","_outV":"13","_inV":"21","_label":"followed_by"},{"weight":9,"_id":"2671","_type":"edge","_outV":"13","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2672","_type":"edge","_outV":"13","_inV":"23","_label":"followed_by"},{"weight":6,"_id":"2673","_type":"edge","_outV":"13","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"2674","_type":"edge","_outV":"13","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2675","_type":"edge","_outV":"13","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2676","_type":"edge","_outV":"13","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"2677","_type":"edge","_outV":"13","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2678","_type":"edge","_outV":"13","_inV":"225","_label":"followed_by"},{"weight":2,"_id":"2679","_type":"edge","_outV":"13","_inV":"235","_label":"followed_by"},{"weight":2,"_id":"268","_type":"edge","_outV":"150","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"2680","_type":"edge","_outV":"13","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2681","_type":"edge","_outV":"13","_inV":"56","_label":"followed_by"},{"weight":6,"_id":"2682","_type":"edge","_outV":"13","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"2683","_type":"edge","_outV":"13","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"2684","_type":"edge","_outV":"13","_inV":"4","_label":"followed_by"},{"weight":7,"_id":"2685","_type":"edge","_outV":"13","_inV":"15","_label":"followed_by"},{"weight":86,"_id":"2686","_type":"edge","_outV":"13","_inV":"74","_label":"followed_by"},{"weight":12,"_id":"2687","_type":"edge","_outV":"13","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"2688","_type":"edge","_outV":"13","_inV":"94","_label":"followed_by"},{"weight":11,"_id":"2689","_type":"edge","_outV":"13","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"269","_type":"edge","_outV":"150","_inV":"83","_label":"followed_by"},{"weight":13,"_id":"2690","_type":"edge","_outV":"13","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2691","_type":"edge","_outV":"13","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"2692","_type":"edge","_outV":"13","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"2693","_type":"edge","_outV":"13","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"2694","_type":"edge","_outV":"13","_inV":"296","_label":"followed_by"},{"weight":1,"_id":"2695","_type":"edge","_outV":"13","_inV":"52","_label":"followed_by"},{"weight":2,"_id":"2696","_type":"edge","_outV":"13","_inV":"17","_label":"followed_by"},{"weight":3,"_id":"2697","_type":"edge","_outV":"13","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"2698","_type":"edge","_outV":"13","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2699","_type":"edge","_outV":"13","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"27","_type":"edge","_outV":"9","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"270","_type":"edge","_outV":"150","_inV":"79","_label":"followed_by"},{"weight":12,"_id":"2700","_type":"edge","_outV":"13","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2701","_type":"edge","_outV":"13","_inV":"195","_label":"followed_by"},{"weight":1,"_id":"2702","_type":"edge","_outV":"13","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"2703","_type":"edge","_outV":"13","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"2704","_type":"edge","_outV":"13","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2705","_type":"edge","_outV":"13","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"2706","_type":"edge","_outV":"13","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2707","_type":"edge","_outV":"13","_inV":"57","_label":"followed_by"},{"weight":9,"_id":"2708","_type":"edge","_outV":"13","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2709","_type":"edge","_outV":"13","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"271","_type":"edge","_outV":"150","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"2710","_type":"edge","_outV":"13","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"2711","_type":"edge","_outV":"13","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"2712","_type":"edge","_outV":"13","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2713","_type":"edge","_outV":"13","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"2714","_type":"edge","_outV":"13","_inV":"184","_label":"followed_by"},{"weight":21,"_id":"2715","_type":"edge","_outV":"13","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2716","_type":"edge","_outV":"13","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2717","_type":"edge","_outV":"13","_inV":"32","_label":"followed_by"},{"weight":42,"_id":"2718","_type":"edge","_outV":"13","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2719","_type":"edge","_outV":"13","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"272","_type":"edge","_outV":"150","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"2720","_type":"edge","_outV":"13","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"2721","_type":"edge","_outV":"13","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"2722","_type":"edge","_outV":"13","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"2723","_type":"edge","_outV":"13","_inV":"109","_label":"followed_by"},{"weight":9,"_id":"2724","_type":"edge","_outV":"13","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"2725","_type":"edge","_outV":"13","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"2726","_type":"edge","_outV":"13","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2727","_type":"edge","_outV":"13","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2728","_type":"edge","_outV":"13","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"2729","_type":"edge","_outV":"13","_inV":"72","_label":"followed_by"},{"weight":40,"_id":"273","_type":"edge","_outV":"5","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2730","_type":"edge","_outV":"13","_inV":"246","_label":"followed_by"},{"weight":29,"_id":"2731","_type":"edge","_outV":"13","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"2732","_type":"edge","_outV":"13","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2733","_type":"edge","_outV":"13","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2734","_type":"edge","_outV":"13","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"2735","_type":"edge","_outV":"13","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"2736","_type":"edge","_outV":"13","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"2737","_type":"edge","_outV":"13","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"2738","_type":"edge","_outV":"13","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"2739","_type":"edge","_outV":"13","_inV":"128","_label":"followed_by"},{"weight":3,"_id":"274","_type":"edge","_outV":"5","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2740","_type":"edge","_outV":"13","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"2741","_type":"edge","_outV":"13","_inV":"212","_label":"followed_by"},{"weight":2,"_id":"2742","_type":"edge","_outV":"13","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2743","_type":"edge","_outV":"13","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2744","_type":"edge","_outV":"13","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"2745","_type":"edge","_outV":"13","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"2746","_type":"edge","_outV":"13","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"2747","_type":"edge","_outV":"13","_inV":"92","_label":"followed_by"},{"weight":5,"_id":"2748","_type":"edge","_outV":"13","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2749","_type":"edge","_outV":"13","_inV":"81","_label":"followed_by"},{"weight":40,"_id":"275","_type":"edge","_outV":"5","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2750","_type":"edge","_outV":"13","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"2751","_type":"edge","_outV":"13","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2752","_type":"edge","_outV":"13","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"2753","_type":"edge","_outV":"13","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2754","_type":"edge","_outV":"297","_inV":"188","_label":"followed_by"},{"weight":8,"_id":"2755","_type":"edge","_outV":"15","_inV":"19","_label":"followed_by"},{"weight":22,"_id":"2756","_type":"edge","_outV":"15","_inV":"56","_label":"followed_by"},{"weight":17,"_id":"2757","_type":"edge","_outV":"15","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"2758","_type":"edge","_outV":"15","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"2759","_type":"edge","_outV":"15","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"276","_type":"edge","_outV":"5","_inV":"1","_label":"followed_by"},{"weight":2,"_id":"2760","_type":"edge","_outV":"15","_inV":"23","_label":"followed_by"},{"weight":23,"_id":"2761","_type":"edge","_outV":"15","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"2762","_type":"edge","_outV":"15","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2763","_type":"edge","_outV":"15","_inV":"46","_label":"followed_by"},{"weight":7,"_id":"2764","_type":"edge","_outV":"15","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"2765","_type":"edge","_outV":"15","_inV":"59","_label":"followed_by"},{"weight":18,"_id":"2766","_type":"edge","_outV":"15","_inV":"58","_label":"followed_by"},{"weight":25,"_id":"2767","_type":"edge","_outV":"15","_inV":"54","_label":"followed_by"},{"weight":24,"_id":"2768","_type":"edge","_outV":"15","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2769","_type":"edge","_outV":"15","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"277","_type":"edge","_outV":"5","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"2770","_type":"edge","_outV":"15","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2771","_type":"edge","_outV":"15","_inV":"13","_label":"followed_by"},{"weight":14,"_id":"2772","_type":"edge","_outV":"15","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"2773","_type":"edge","_outV":"15","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"2774","_type":"edge","_outV":"15","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"2775","_type":"edge","_outV":"15","_inV":"9","_label":"followed_by"},{"weight":17,"_id":"2776","_type":"edge","_outV":"15","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2777","_type":"edge","_outV":"15","_inV":"55","_label":"followed_by"},{"weight":3,"_id":"2778","_type":"edge","_outV":"15","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2779","_type":"edge","_outV":"15","_inV":"52","_label":"followed_by"},{"weight":3,"_id":"278","_type":"edge","_outV":"5","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"2780","_type":"edge","_outV":"15","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"2781","_type":"edge","_outV":"15","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"2782","_type":"edge","_outV":"15","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"2783","_type":"edge","_outV":"15","_inV":"202","_label":"followed_by"},{"weight":3,"_id":"2784","_type":"edge","_outV":"15","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2785","_type":"edge","_outV":"15","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"2786","_type":"edge","_outV":"15","_inV":"69","_label":"followed_by"},{"weight":10,"_id":"2787","_type":"edge","_outV":"15","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2788","_type":"edge","_outV":"15","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2789","_type":"edge","_outV":"15","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"279","_type":"edge","_outV":"5","_inV":"133","_label":"followed_by"},{"weight":3,"_id":"2790","_type":"edge","_outV":"15","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2791","_type":"edge","_outV":"15","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2792","_type":"edge","_outV":"15","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"2793","_type":"edge","_outV":"15","_inV":"294","_label":"followed_by"},{"weight":3,"_id":"2794","_type":"edge","_outV":"15","_inV":"99","_label":"followed_by"},{"weight":10,"_id":"2795","_type":"edge","_outV":"15","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"2796","_type":"edge","_outV":"15","_inV":"63","_label":"followed_by"},{"weight":3,"_id":"2797","_type":"edge","_outV":"15","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"2798","_type":"edge","_outV":"15","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"2799","_type":"edge","_outV":"15","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"28","_type":"edge","_outV":"9","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"280","_type":"edge","_outV":"5","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"2800","_type":"edge","_outV":"15","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"2801","_type":"edge","_outV":"15","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2802","_type":"edge","_outV":"15","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"2803","_type":"edge","_outV":"15","_inV":"14","_label":"followed_by"},{"weight":8,"_id":"2804","_type":"edge","_outV":"15","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"2805","_type":"edge","_outV":"15","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"2806","_type":"edge","_outV":"15","_inV":"10","_label":"followed_by"},{"weight":26,"_id":"2807","_type":"edge","_outV":"15","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"2808","_type":"edge","_outV":"15","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"2809","_type":"edge","_outV":"15","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"281","_type":"edge","_outV":"5","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"2810","_type":"edge","_outV":"15","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"2811","_type":"edge","_outV":"15","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"2812","_type":"edge","_outV":"15","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2813","_type":"edge","_outV":"15","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"2814","_type":"edge","_outV":"15","_inV":"53","_label":"followed_by"},{"weight":4,"_id":"2815","_type":"edge","_outV":"15","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"2816","_type":"edge","_outV":"15","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2817","_type":"edge","_outV":"15","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2818","_type":"edge","_outV":"15","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"2819","_type":"edge","_outV":"15","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"282","_type":"edge","_outV":"5","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"2820","_type":"edge","_outV":"15","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2821","_type":"edge","_outV":"15","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2822","_type":"edge","_outV":"15","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"2823","_type":"edge","_outV":"15","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"2824","_type":"edge","_outV":"15","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2825","_type":"edge","_outV":"15","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2826","_type":"edge","_outV":"15","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2827","_type":"edge","_outV":"15","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"2828","_type":"edge","_outV":"15","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"2829","_type":"edge","_outV":"298","_inV":"108","_label":"followed_by"},{"weight":3,"_id":"283","_type":"edge","_outV":"5","_inV":"13","_label":"followed_by"},{"weight":8,"_id":"2830","_type":"edge","_outV":"101","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"2831","_type":"edge","_outV":"101","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2832","_type":"edge","_outV":"101","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2833","_type":"edge","_outV":"101","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"2834","_type":"edge","_outV":"101","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"2835","_type":"edge","_outV":"101","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"2836","_type":"edge","_outV":"101","_inV":"89","_label":"followed_by"},{"weight":6,"_id":"2837","_type":"edge","_outV":"101","_inV":"83","_label":"followed_by"},{"weight":8,"_id":"2838","_type":"edge","_outV":"101","_inV":"130","_label":"followed_by"},{"weight":8,"_id":"2839","_type":"edge","_outV":"101","_inV":"49","_label":"followed_by"},{"weight":19,"_id":"284","_type":"edge","_outV":"5","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2840","_type":"edge","_outV":"101","_inV":"9","_label":"followed_by"},{"weight":18,"_id":"2841","_type":"edge","_outV":"101","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"2842","_type":"edge","_outV":"101","_inV":"51","_label":"followed_by"},{"weight":6,"_id":"2843","_type":"edge","_outV":"101","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"2844","_type":"edge","_outV":"101","_inV":"14","_label":"followed_by"},{"weight":21,"_id":"2845","_type":"edge","_outV":"101","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"2846","_type":"edge","_outV":"101","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"2847","_type":"edge","_outV":"101","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2848","_type":"edge","_outV":"101","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2849","_type":"edge","_outV":"101","_inV":"209","_label":"followed_by"},{"weight":10,"_id":"285","_type":"edge","_outV":"5","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2850","_type":"edge","_outV":"101","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"2851","_type":"edge","_outV":"101","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2852","_type":"edge","_outV":"101","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2853","_type":"edge","_outV":"101","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"2854","_type":"edge","_outV":"101","_inV":"99","_label":"followed_by"},{"weight":18,"_id":"2855","_type":"edge","_outV":"101","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"2856","_type":"edge","_outV":"101","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"2857","_type":"edge","_outV":"101","_inV":"179","_label":"followed_by"},{"weight":1,"_id":"2858","_type":"edge","_outV":"101","_inV":"59","_label":"followed_by"},{"weight":17,"_id":"2859","_type":"edge","_outV":"101","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"286","_type":"edge","_outV":"5","_inV":"160","_label":"followed_by"},{"weight":24,"_id":"2860","_type":"edge","_outV":"101","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"2861","_type":"edge","_outV":"101","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"2862","_type":"edge","_outV":"101","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2863","_type":"edge","_outV":"101","_inV":"134","_label":"followed_by"},{"weight":16,"_id":"2864","_type":"edge","_outV":"101","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"2865","_type":"edge","_outV":"101","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"2866","_type":"edge","_outV":"101","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"2867","_type":"edge","_outV":"101","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2868","_type":"edge","_outV":"101","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2869","_type":"edge","_outV":"101","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"287","_type":"edge","_outV":"5","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"2870","_type":"edge","_outV":"101","_inV":"210","_label":"followed_by"},{"weight":9,"_id":"2871","_type":"edge","_outV":"101","_inV":"87","_label":"followed_by"},{"weight":6,"_id":"2872","_type":"edge","_outV":"101","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2873","_type":"edge","_outV":"101","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"2874","_type":"edge","_outV":"101","_inV":"127","_label":"followed_by"},{"weight":8,"_id":"2875","_type":"edge","_outV":"101","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2876","_type":"edge","_outV":"101","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"2877","_type":"edge","_outV":"101","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"2878","_type":"edge","_outV":"101","_inV":"299","_label":"followed_by"},{"weight":3,"_id":"2879","_type":"edge","_outV":"101","_inV":"74","_label":"followed_by"},{"weight":16,"_id":"288","_type":"edge","_outV":"5","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2880","_type":"edge","_outV":"101","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2881","_type":"edge","_outV":"101","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"2882","_type":"edge","_outV":"101","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"2883","_type":"edge","_outV":"101","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2884","_type":"edge","_outV":"101","_inV":"114","_label":"followed_by"},{"weight":7,"_id":"2885","_type":"edge","_outV":"101","_inV":"81","_label":"followed_by"},{"weight":4,"_id":"2886","_type":"edge","_outV":"101","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"2887","_type":"edge","_outV":"101","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2888","_type":"edge","_outV":"101","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"2889","_type":"edge","_outV":"101","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"289","_type":"edge","_outV":"5","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2890","_type":"edge","_outV":"101","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2891","_type":"edge","_outV":"101","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"2892","_type":"edge","_outV":"101","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2893","_type":"edge","_outV":"101","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"2894","_type":"edge","_outV":"101","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"2895","_type":"edge","_outV":"101","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"2896","_type":"edge","_outV":"101","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2897","_type":"edge","_outV":"118","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2898","_type":"edge","_outV":"118","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2899","_type":"edge","_outV":"118","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"29","_type":"edge","_outV":"9","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"290","_type":"edge","_outV":"5","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2900","_type":"edge","_outV":"118","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2901","_type":"edge","_outV":"118","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"2902","_type":"edge","_outV":"118","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2903","_type":"edge","_outV":"118","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2904","_type":"edge","_outV":"118","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2905","_type":"edge","_outV":"118","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2906","_type":"edge","_outV":"118","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2907","_type":"edge","_outV":"118","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2908","_type":"edge","_outV":"118","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2909","_type":"edge","_outV":"118","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"291","_type":"edge","_outV":"5","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2910","_type":"edge","_outV":"118","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2911","_type":"edge","_outV":"118","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2912","_type":"edge","_outV":"118","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2913","_type":"edge","_outV":"118","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2914","_type":"edge","_outV":"118","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2915","_type":"edge","_outV":"118","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"2916","_type":"edge","_outV":"78","_inV":"24","_label":"followed_by"},{"weight":10,"_id":"2917","_type":"edge","_outV":"78","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2918","_type":"edge","_outV":"78","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"2919","_type":"edge","_outV":"78","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"292","_type":"edge","_outV":"5","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2920","_type":"edge","_outV":"78","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2921","_type":"edge","_outV":"78","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2922","_type":"edge","_outV":"78","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"2923","_type":"edge","_outV":"78","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"2924","_type":"edge","_outV":"78","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"2925","_type":"edge","_outV":"78","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"2926","_type":"edge","_outV":"78","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2927","_type":"edge","_outV":"78","_inV":"121","_label":"followed_by"},{"weight":17,"_id":"2928","_type":"edge","_outV":"78","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"2929","_type":"edge","_outV":"78","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"293","_type":"edge","_outV":"5","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2930","_type":"edge","_outV":"78","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2931","_type":"edge","_outV":"78","_inV":"189","_label":"followed_by"},{"weight":11,"_id":"2932","_type":"edge","_outV":"78","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"2933","_type":"edge","_outV":"78","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"2934","_type":"edge","_outV":"78","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2935","_type":"edge","_outV":"78","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"2936","_type":"edge","_outV":"78","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2937","_type":"edge","_outV":"78","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2938","_type":"edge","_outV":"78","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2939","_type":"edge","_outV":"78","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"294","_type":"edge","_outV":"5","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"2940","_type":"edge","_outV":"78","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2941","_type":"edge","_outV":"78","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2942","_type":"edge","_outV":"78","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"2943","_type":"edge","_outV":"78","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"2944","_type":"edge","_outV":"78","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2945","_type":"edge","_outV":"78","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2946","_type":"edge","_outV":"78","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2947","_type":"edge","_outV":"78","_inV":"106","_label":"followed_by"},{"weight":16,"_id":"2948","_type":"edge","_outV":"78","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2949","_type":"edge","_outV":"78","_inV":"212","_label":"followed_by"},{"weight":13,"_id":"295","_type":"edge","_outV":"5","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2950","_type":"edge","_outV":"78","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"2951","_type":"edge","_outV":"78","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"2952","_type":"edge","_outV":"78","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2953","_type":"edge","_outV":"78","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2954","_type":"edge","_outV":"78","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2955","_type":"edge","_outV":"78","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"2956","_type":"edge","_outV":"78","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"2957","_type":"edge","_outV":"78","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"2958","_type":"edge","_outV":"78","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2959","_type":"edge","_outV":"78","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"296","_type":"edge","_outV":"5","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2960","_type":"edge","_outV":"78","_inV":"83","_label":"followed_by"},{"weight":8,"_id":"2961","_type":"edge","_outV":"78","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2962","_type":"edge","_outV":"78","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2963","_type":"edge","_outV":"78","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2964","_type":"edge","_outV":"78","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"2965","_type":"edge","_outV":"78","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"2966","_type":"edge","_outV":"78","_inV":"71","_label":"followed_by"},{"weight":10,"_id":"2967","_type":"edge","_outV":"78","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2968","_type":"edge","_outV":"78","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2969","_type":"edge","_outV":"78","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"297","_type":"edge","_outV":"5","_inV":"161","_label":"followed_by"},{"weight":1,"_id":"2970","_type":"edge","_outV":"78","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2971","_type":"edge","_outV":"78","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2972","_type":"edge","_outV":"255","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2973","_type":"edge","_outV":"255","_inV":"163","_label":"followed_by"},{"weight":1,"_id":"2974","_type":"edge","_outV":"300","_inV":"301","_label":"followed_by"},{"weight":1,"_id":"2975","_type":"edge","_outV":"200","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2976","_type":"edge","_outV":"8","_inV":"302","_label":"followed_by"},{"weight":1,"_id":"2977","_type":"edge","_outV":"8","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2978","_type":"edge","_outV":"8","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2979","_type":"edge","_outV":"265","_inV":"249","_label":"followed_by"},{"weight":1,"_id":"298","_type":"edge","_outV":"5","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"2980","_type":"edge","_outV":"265","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"2981","_type":"edge","_outV":"14","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"2982","_type":"edge","_outV":"14","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"2983","_type":"edge","_outV":"14","_inV":"53","_label":"followed_by"},{"weight":55,"_id":"2984","_type":"edge","_outV":"14","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"2985","_type":"edge","_outV":"14","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2986","_type":"edge","_outV":"14","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"2987","_type":"edge","_outV":"14","_inV":"153","_label":"followed_by"},{"weight":26,"_id":"2988","_type":"edge","_outV":"14","_inV":"72","_label":"followed_by"},{"weight":17,"_id":"2989","_type":"edge","_outV":"14","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"299","_type":"edge","_outV":"5","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"2990","_type":"edge","_outV":"14","_inV":"9","_label":"followed_by"},{"weight":13,"_id":"2991","_type":"edge","_outV":"14","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"2992","_type":"edge","_outV":"14","_inV":"46","_label":"followed_by"},{"weight":15,"_id":"2993","_type":"edge","_outV":"14","_inV":"51","_label":"followed_by"},{"weight":28,"_id":"2994","_type":"edge","_outV":"14","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"2995","_type":"edge","_outV":"14","_inV":"202","_label":"followed_by"},{"weight":6,"_id":"2996","_type":"edge","_outV":"14","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2997","_type":"edge","_outV":"14","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"2998","_type":"edge","_outV":"14","_inV":"58","_label":"followed_by"},{"weight":8,"_id":"2999","_type":"edge","_outV":"14","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3","_type":"edge","_outV":"1","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"30","_type":"edge","_outV":"9","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"300","_type":"edge","_outV":"5","_inV":"38","_label":"followed_by"},{"weight":12,"_id":"3000","_type":"edge","_outV":"14","_inV":"100","_label":"followed_by"},{"weight":26,"_id":"3001","_type":"edge","_outV":"14","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"3002","_type":"edge","_outV":"14","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"3003","_type":"edge","_outV":"14","_inV":"104","_label":"followed_by"},{"weight":6,"_id":"3004","_type":"edge","_outV":"14","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3005","_type":"edge","_outV":"14","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3006","_type":"edge","_outV":"14","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3007","_type":"edge","_outV":"14","_inV":"103","_label":"followed_by"},{"weight":8,"_id":"3008","_type":"edge","_outV":"14","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3009","_type":"edge","_outV":"14","_inV":"101","_label":"followed_by"},{"weight":11,"_id":"301","_type":"edge","_outV":"5","_inV":"29","_label":"followed_by"},{"weight":8,"_id":"3010","_type":"edge","_outV":"14","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"3011","_type":"edge","_outV":"14","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3012","_type":"edge","_outV":"14","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3013","_type":"edge","_outV":"14","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3014","_type":"edge","_outV":"14","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3015","_type":"edge","_outV":"14","_inV":"155","_label":"followed_by"},{"weight":2,"_id":"3016","_type":"edge","_outV":"14","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3017","_type":"edge","_outV":"14","_inV":"18","_label":"followed_by"},{"weight":11,"_id":"3018","_type":"edge","_outV":"14","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3019","_type":"edge","_outV":"14","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"302","_type":"edge","_outV":"5","_inV":"163","_label":"followed_by"},{"weight":27,"_id":"3020","_type":"edge","_outV":"14","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"3021","_type":"edge","_outV":"14","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"3022","_type":"edge","_outV":"14","_inV":"85","_label":"followed_by"},{"weight":8,"_id":"3023","_type":"edge","_outV":"14","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"3024","_type":"edge","_outV":"14","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"3025","_type":"edge","_outV":"14","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3026","_type":"edge","_outV":"14","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"3027","_type":"edge","_outV":"14","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"3028","_type":"edge","_outV":"14","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3029","_type":"edge","_outV":"14","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"303","_type":"edge","_outV":"5","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"3030","_type":"edge","_outV":"14","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3031","_type":"edge","_outV":"14","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"3032","_type":"edge","_outV":"14","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"3033","_type":"edge","_outV":"14","_inV":"5","_label":"followed_by"},{"weight":29,"_id":"3034","_type":"edge","_outV":"14","_inV":"91","_label":"followed_by"},{"weight":6,"_id":"3035","_type":"edge","_outV":"14","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"3036","_type":"edge","_outV":"14","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"3037","_type":"edge","_outV":"14","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3038","_type":"edge","_outV":"14","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3039","_type":"edge","_outV":"14","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"304","_type":"edge","_outV":"5","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3040","_type":"edge","_outV":"14","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"3041","_type":"edge","_outV":"14","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3042","_type":"edge","_outV":"14","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3043","_type":"edge","_outV":"14","_inV":"172","_label":"followed_by"},{"weight":5,"_id":"3044","_type":"edge","_outV":"14","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3045","_type":"edge","_outV":"14","_inV":"173","_label":"followed_by"},{"weight":5,"_id":"3046","_type":"edge","_outV":"14","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"3047","_type":"edge","_outV":"14","_inV":"35","_label":"followed_by"},{"weight":13,"_id":"3048","_type":"edge","_outV":"153","_inV":"3","_label":"followed_by"},{"weight":14,"_id":"3049","_type":"edge","_outV":"153","_inV":"74","_label":"followed_by"},{"weight":6,"_id":"305","_type":"edge","_outV":"5","_inV":"164","_label":"followed_by"},{"weight":13,"_id":"3050","_type":"edge","_outV":"153","_inV":"4","_label":"followed_by"},{"weight":31,"_id":"3051","_type":"edge","_outV":"153","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"3052","_type":"edge","_outV":"153","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3053","_type":"edge","_outV":"153","_inV":"48","_label":"followed_by"},{"weight":40,"_id":"3054","_type":"edge","_outV":"153","_inV":"114","_label":"followed_by"},{"weight":9,"_id":"3055","_type":"edge","_outV":"153","_inV":"5","_label":"followed_by"},{"weight":24,"_id":"3056","_type":"edge","_outV":"153","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"3057","_type":"edge","_outV":"153","_inV":"27","_label":"followed_by"},{"weight":6,"_id":"3058","_type":"edge","_outV":"153","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"3059","_type":"edge","_outV":"153","_inV":"1","_label":"followed_by"},{"weight":1,"_id":"306","_type":"edge","_outV":"5","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3060","_type":"edge","_outV":"153","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3061","_type":"edge","_outV":"153","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"3062","_type":"edge","_outV":"153","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"3063","_type":"edge","_outV":"153","_inV":"145","_label":"followed_by"},{"weight":2,"_id":"3064","_type":"edge","_outV":"153","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"3065","_type":"edge","_outV":"153","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"3066","_type":"edge","_outV":"153","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"3067","_type":"edge","_outV":"153","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"3068","_type":"edge","_outV":"153","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"3069","_type":"edge","_outV":"153","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"307","_type":"edge","_outV":"5","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"3070","_type":"edge","_outV":"153","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"3071","_type":"edge","_outV":"153","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"3072","_type":"edge","_outV":"153","_inV":"12","_label":"followed_by"},{"weight":18,"_id":"3073","_type":"edge","_outV":"153","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3074","_type":"edge","_outV":"153","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3075","_type":"edge","_outV":"153","_inV":"263","_label":"followed_by"},{"weight":1,"_id":"3076","_type":"edge","_outV":"153","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"3077","_type":"edge","_outV":"153","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"3078","_type":"edge","_outV":"153","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"3079","_type":"edge","_outV":"153","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"308","_type":"edge","_outV":"5","_inV":"165","_label":"followed_by"},{"weight":13,"_id":"3080","_type":"edge","_outV":"153","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"3081","_type":"edge","_outV":"153","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3082","_type":"edge","_outV":"153","_inV":"42","_label":"followed_by"},{"weight":6,"_id":"3083","_type":"edge","_outV":"153","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"3084","_type":"edge","_outV":"153","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"3085","_type":"edge","_outV":"153","_inV":"94","_label":"followed_by"},{"weight":4,"_id":"3086","_type":"edge","_outV":"153","_inV":"32","_label":"followed_by"},{"weight":18,"_id":"3087","_type":"edge","_outV":"153","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3088","_type":"edge","_outV":"153","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3089","_type":"edge","_outV":"153","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"309","_type":"edge","_outV":"5","_inV":"92","_label":"followed_by"},{"weight":2,"_id":"3090","_type":"edge","_outV":"153","_inV":"289","_label":"followed_by"},{"weight":8,"_id":"3091","_type":"edge","_outV":"153","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"3092","_type":"edge","_outV":"153","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"3093","_type":"edge","_outV":"153","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3094","_type":"edge","_outV":"153","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3095","_type":"edge","_outV":"153","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"3096","_type":"edge","_outV":"153","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"3097","_type":"edge","_outV":"153","_inV":"19","_label":"followed_by"},{"weight":15,"_id":"3098","_type":"edge","_outV":"153","_inV":"65","_label":"followed_by"},{"weight":14,"_id":"3099","_type":"edge","_outV":"153","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"31","_type":"edge","_outV":"9","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"310","_type":"edge","_outV":"5","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"3100","_type":"edge","_outV":"153","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"3101","_type":"edge","_outV":"153","_inV":"80","_label":"followed_by"},{"weight":5,"_id":"3102","_type":"edge","_outV":"153","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"3103","_type":"edge","_outV":"153","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"3104","_type":"edge","_outV":"153","_inV":"99","_label":"followed_by"},{"weight":30,"_id":"3105","_type":"edge","_outV":"153","_inV":"124","_label":"followed_by"},{"weight":12,"_id":"3106","_type":"edge","_outV":"153","_inV":"162","_label":"followed_by"},{"weight":9,"_id":"3107","_type":"edge","_outV":"153","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3108","_type":"edge","_outV":"153","_inV":"13","_label":"followed_by"},{"weight":17,"_id":"3109","_type":"edge","_outV":"153","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"311","_type":"edge","_outV":"5","_inV":"166","_label":"followed_by"},{"weight":12,"_id":"3110","_type":"edge","_outV":"153","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"3111","_type":"edge","_outV":"153","_inV":"212","_label":"followed_by"},{"weight":1,"_id":"3112","_type":"edge","_outV":"153","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3113","_type":"edge","_outV":"153","_inV":"303","_label":"followed_by"},{"weight":7,"_id":"3114","_type":"edge","_outV":"153","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3115","_type":"edge","_outV":"153","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"3116","_type":"edge","_outV":"153","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3117","_type":"edge","_outV":"153","_inV":"61","_label":"followed_by"},{"weight":5,"_id":"3118","_type":"edge","_outV":"153","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"3119","_type":"edge","_outV":"153","_inV":"213","_label":"followed_by"},{"weight":7,"_id":"312","_type":"edge","_outV":"34","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3120","_type":"edge","_outV":"153","_inV":"155","_label":"followed_by"},{"weight":11,"_id":"3121","_type":"edge","_outV":"153","_inV":"204","_label":"followed_by"},{"weight":11,"_id":"3122","_type":"edge","_outV":"153","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"3123","_type":"edge","_outV":"153","_inV":"264","_label":"followed_by"},{"weight":2,"_id":"3124","_type":"edge","_outV":"153","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3125","_type":"edge","_outV":"153","_inV":"69","_label":"followed_by"},{"weight":12,"_id":"3126","_type":"edge","_outV":"153","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"3127","_type":"edge","_outV":"153","_inV":"201","_label":"followed_by"},{"weight":2,"_id":"3128","_type":"edge","_outV":"153","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3129","_type":"edge","_outV":"153","_inV":"185","_label":"followed_by"},{"weight":22,"_id":"313","_type":"edge","_outV":"34","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3130","_type":"edge","_outV":"153","_inV":"140","_label":"followed_by"},{"weight":4,"_id":"3131","_type":"edge","_outV":"153","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"3132","_type":"edge","_outV":"153","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"3133","_type":"edge","_outV":"153","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"3134","_type":"edge","_outV":"153","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"3135","_type":"edge","_outV":"153","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3136","_type":"edge","_outV":"153","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3137","_type":"edge","_outV":"153","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"3138","_type":"edge","_outV":"304","_inV":"186","_label":"followed_by"},{"weight":402,"_id":"3139","_type":"edge","_outV":"19","_inV":"187","_label":"followed_by"},{"weight":2,"_id":"314","_type":"edge","_outV":"34","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3140","_type":"edge","_outV":"19","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3141","_type":"edge","_outV":"19","_inV":"60","_label":"followed_by"},{"weight":4,"_id":"3142","_type":"edge","_outV":"104","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"3143","_type":"edge","_outV":"104","_inV":"26","_label":"followed_by"},{"weight":24,"_id":"3144","_type":"edge","_outV":"104","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"3145","_type":"edge","_outV":"104","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"3146","_type":"edge","_outV":"104","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"3147","_type":"edge","_outV":"104","_inV":"15","_label":"followed_by"},{"weight":19,"_id":"3148","_type":"edge","_outV":"104","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3149","_type":"edge","_outV":"104","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"315","_type":"edge","_outV":"34","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"3150","_type":"edge","_outV":"104","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3151","_type":"edge","_outV":"104","_inV":"82","_label":"followed_by"},{"weight":5,"_id":"3152","_type":"edge","_outV":"104","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"3153","_type":"edge","_outV":"104","_inV":"121","_label":"followed_by"},{"weight":6,"_id":"3154","_type":"edge","_outV":"104","_inV":"101","_label":"followed_by"},{"weight":17,"_id":"3155","_type":"edge","_outV":"104","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"3156","_type":"edge","_outV":"104","_inV":"14","_label":"followed_by"},{"weight":17,"_id":"3157","_type":"edge","_outV":"104","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3158","_type":"edge","_outV":"104","_inV":"196","_label":"followed_by"},{"weight":9,"_id":"3159","_type":"edge","_outV":"104","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"316","_type":"edge","_outV":"34","_inV":"167","_label":"followed_by"},{"weight":14,"_id":"3160","_type":"edge","_outV":"104","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"3161","_type":"edge","_outV":"104","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3162","_type":"edge","_outV":"104","_inV":"83","_label":"followed_by"},{"weight":11,"_id":"3163","_type":"edge","_outV":"104","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3164","_type":"edge","_outV":"104","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3165","_type":"edge","_outV":"104","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3166","_type":"edge","_outV":"104","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3167","_type":"edge","_outV":"104","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3168","_type":"edge","_outV":"104","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"3169","_type":"edge","_outV":"104","_inV":"111","_label":"followed_by"},{"weight":12,"_id":"317","_type":"edge","_outV":"34","_inV":"60","_label":"followed_by"},{"weight":4,"_id":"3170","_type":"edge","_outV":"104","_inV":"106","_label":"followed_by"},{"weight":12,"_id":"3171","_type":"edge","_outV":"104","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3172","_type":"edge","_outV":"104","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3173","_type":"edge","_outV":"104","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3174","_type":"edge","_outV":"104","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"3175","_type":"edge","_outV":"104","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3176","_type":"edge","_outV":"104","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"3177","_type":"edge","_outV":"104","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"3178","_type":"edge","_outV":"104","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"3179","_type":"edge","_outV":"104","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"318","_type":"edge","_outV":"34","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"3180","_type":"edge","_outV":"104","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"3181","_type":"edge","_outV":"104","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3182","_type":"edge","_outV":"104","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3183","_type":"edge","_outV":"104","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3184","_type":"edge","_outV":"104","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3185","_type":"edge","_outV":"104","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3186","_type":"edge","_outV":"104","_inV":"223","_label":"followed_by"},{"weight":9,"_id":"3187","_type":"edge","_outV":"104","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"3188","_type":"edge","_outV":"104","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3189","_type":"edge","_outV":"104","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"319","_type":"edge","_outV":"34","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"3190","_type":"edge","_outV":"104","_inV":"21","_label":"followed_by"},{"weight":7,"_id":"3191","_type":"edge","_outV":"104","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3192","_type":"edge","_outV":"104","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3193","_type":"edge","_outV":"104","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"3194","_type":"edge","_outV":"104","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3195","_type":"edge","_outV":"104","_inV":"54","_label":"followed_by"},{"weight":4,"_id":"3196","_type":"edge","_outV":"104","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"3197","_type":"edge","_outV":"104","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"3198","_type":"edge","_outV":"104","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"3199","_type":"edge","_outV":"104","_inV":"33","_label":"followed_by"},{"weight":2,"_id":"32","_type":"edge","_outV":"9","_inV":"36","_label":"followed_by"},{"weight":4,"_id":"320","_type":"edge","_outV":"34","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"3200","_type":"edge","_outV":"104","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"3201","_type":"edge","_outV":"104","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3202","_type":"edge","_outV":"104","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"3203","_type":"edge","_outV":"229","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"3204","_type":"edge","_outV":"229","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3205","_type":"edge","_outV":"229","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3206","_type":"edge","_outV":"229","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"3207","_type":"edge","_outV":"229","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"3208","_type":"edge","_outV":"229","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3209","_type":"edge","_outV":"229","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"321","_type":"edge","_outV":"34","_inV":"168","_label":"followed_by"},{"weight":2,"_id":"3210","_type":"edge","_outV":"229","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"3211","_type":"edge","_outV":"229","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3212","_type":"edge","_outV":"229","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"3213","_type":"edge","_outV":"229","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3214","_type":"edge","_outV":"229","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"3215","_type":"edge","_outV":"229","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"3216","_type":"edge","_outV":"63","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"3217","_type":"edge","_outV":"63","_inV":"103","_label":"followed_by"},{"weight":6,"_id":"3218","_type":"edge","_outV":"63","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3219","_type":"edge","_outV":"63","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"322","_type":"edge","_outV":"34","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3220","_type":"edge","_outV":"63","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3221","_type":"edge","_outV":"63","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3222","_type":"edge","_outV":"63","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3223","_type":"edge","_outV":"63","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3224","_type":"edge","_outV":"63","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"3225","_type":"edge","_outV":"63","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3226","_type":"edge","_outV":"63","_inV":"32","_label":"followed_by"},{"weight":7,"_id":"3227","_type":"edge","_outV":"63","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3228","_type":"edge","_outV":"63","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3229","_type":"edge","_outV":"63","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"323","_type":"edge","_outV":"34","_inV":"2","_label":"followed_by"},{"weight":4,"_id":"3230","_type":"edge","_outV":"63","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3231","_type":"edge","_outV":"63","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3232","_type":"edge","_outV":"63","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3233","_type":"edge","_outV":"63","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3234","_type":"edge","_outV":"63","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3235","_type":"edge","_outV":"63","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3236","_type":"edge","_outV":"63","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"3237","_type":"edge","_outV":"63","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3238","_type":"edge","_outV":"63","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3239","_type":"edge","_outV":"63","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"324","_type":"edge","_outV":"34","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3240","_type":"edge","_outV":"63","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3241","_type":"edge","_outV":"63","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3242","_type":"edge","_outV":"63","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3243","_type":"edge","_outV":"63","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"3244","_type":"edge","_outV":"63","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3245","_type":"edge","_outV":"63","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3246","_type":"edge","_outV":"63","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"3247","_type":"edge","_outV":"63","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3248","_type":"edge","_outV":"63","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3249","_type":"edge","_outV":"63","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"325","_type":"edge","_outV":"34","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"3250","_type":"edge","_outV":"63","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"3251","_type":"edge","_outV":"63","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3252","_type":"edge","_outV":"63","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"3253","_type":"edge","_outV":"293","_inV":"305","_label":"followed_by"},{"weight":2,"_id":"3254","_type":"edge","_outV":"285","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3255","_type":"edge","_outV":"285","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3256","_type":"edge","_outV":"285","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3257","_type":"edge","_outV":"306","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"3258","_type":"edge","_outV":"146","_inV":"145","_label":"followed_by"},{"weight":1,"_id":"3259","_type":"edge","_outV":"146","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"326","_type":"edge","_outV":"34","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3260","_type":"edge","_outV":"287","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"3261","_type":"edge","_outV":"287","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3262","_type":"edge","_outV":"160","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"3263","_type":"edge","_outV":"160","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"3264","_type":"edge","_outV":"160","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"3265","_type":"edge","_outV":"160","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"3266","_type":"edge","_outV":"160","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3267","_type":"edge","_outV":"160","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"3268","_type":"edge","_outV":"160","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3269","_type":"edge","_outV":"160","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"327","_type":"edge","_outV":"34","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3270","_type":"edge","_outV":"160","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3271","_type":"edge","_outV":"160","_inV":"12","_label":"followed_by"},{"weight":18,"_id":"3272","_type":"edge","_outV":"160","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"3273","_type":"edge","_outV":"160","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"3274","_type":"edge","_outV":"160","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"3275","_type":"edge","_outV":"160","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3276","_type":"edge","_outV":"160","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"3277","_type":"edge","_outV":"160","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3278","_type":"edge","_outV":"160","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3279","_type":"edge","_outV":"160","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"328","_type":"edge","_outV":"34","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3280","_type":"edge","_outV":"160","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3281","_type":"edge","_outV":"160","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"3282","_type":"edge","_outV":"160","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"3283","_type":"edge","_outV":"160","_inV":"180","_label":"followed_by"},{"weight":15,"_id":"3284","_type":"edge","_outV":"160","_inV":"65","_label":"followed_by"},{"weight":7,"_id":"3285","_type":"edge","_outV":"160","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"3286","_type":"edge","_outV":"160","_inV":"154","_label":"followed_by"},{"weight":14,"_id":"3287","_type":"edge","_outV":"160","_inV":"38","_label":"followed_by"},{"weight":10,"_id":"3288","_type":"edge","_outV":"160","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3289","_type":"edge","_outV":"160","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"329","_type":"edge","_outV":"34","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3290","_type":"edge","_outV":"160","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3291","_type":"edge","_outV":"160","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3292","_type":"edge","_outV":"160","_inV":"155","_label":"followed_by"},{"weight":8,"_id":"3293","_type":"edge","_outV":"160","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"3294","_type":"edge","_outV":"160","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3295","_type":"edge","_outV":"160","_inV":"214","_label":"followed_by"},{"weight":8,"_id":"3296","_type":"edge","_outV":"160","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3297","_type":"edge","_outV":"160","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"3298","_type":"edge","_outV":"160","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"3299","_type":"edge","_outV":"160","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"33","_type":"edge","_outV":"9","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"330","_type":"edge","_outV":"34","_inV":"58","_label":"followed_by"},{"weight":8,"_id":"3300","_type":"edge","_outV":"160","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3301","_type":"edge","_outV":"160","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"3302","_type":"edge","_outV":"160","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"3303","_type":"edge","_outV":"160","_inV":"151","_label":"followed_by"},{"weight":6,"_id":"3304","_type":"edge","_outV":"160","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3305","_type":"edge","_outV":"160","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3306","_type":"edge","_outV":"160","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"3307","_type":"edge","_outV":"160","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3308","_type":"edge","_outV":"160","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3309","_type":"edge","_outV":"160","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"331","_type":"edge","_outV":"34","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"3310","_type":"edge","_outV":"160","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"3311","_type":"edge","_outV":"252","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3312","_type":"edge","_outV":"252","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3313","_type":"edge","_outV":"252","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3314","_type":"edge","_outV":"252","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3315","_type":"edge","_outV":"252","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3316","_type":"edge","_outV":"252","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3317","_type":"edge","_outV":"252","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3318","_type":"edge","_outV":"252","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3319","_type":"edge","_outV":"252","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"332","_type":"edge","_outV":"34","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"3320","_type":"edge","_outV":"252","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"3321","_type":"edge","_outV":"252","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3322","_type":"edge","_outV":"252","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3323","_type":"edge","_outV":"252","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3324","_type":"edge","_outV":"230","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3325","_type":"edge","_outV":"268","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3326","_type":"edge","_outV":"268","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3327","_type":"edge","_outV":"268","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3328","_type":"edge","_outV":"268","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3329","_type":"edge","_outV":"268","_inV":"307","_label":"followed_by"},{"weight":1,"_id":"333","_type":"edge","_outV":"34","_inV":"171","_label":"followed_by"},{"weight":2,"_id":"3330","_type":"edge","_outV":"155","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3331","_type":"edge","_outV":"155","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3332","_type":"edge","_outV":"155","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3333","_type":"edge","_outV":"155","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3334","_type":"edge","_outV":"155","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3335","_type":"edge","_outV":"155","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3336","_type":"edge","_outV":"155","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3337","_type":"edge","_outV":"155","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3338","_type":"edge","_outV":"155","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3339","_type":"edge","_outV":"155","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"334","_type":"edge","_outV":"34","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3340","_type":"edge","_outV":"155","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3341","_type":"edge","_outV":"155","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3342","_type":"edge","_outV":"155","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3343","_type":"edge","_outV":"155","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3344","_type":"edge","_outV":"301","_inV":"308","_label":"followed_by"},{"weight":1,"_id":"3345","_type":"edge","_outV":"301","_inV":"143","_label":"followed_by"},{"weight":4,"_id":"3346","_type":"edge","_outV":"184","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3347","_type":"edge","_outV":"184","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"3348","_type":"edge","_outV":"184","_inV":"100","_label":"followed_by"},{"weight":5,"_id":"3349","_type":"edge","_outV":"184","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"335","_type":"edge","_outV":"34","_inV":"172","_label":"followed_by"},{"weight":2,"_id":"3350","_type":"edge","_outV":"184","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"3351","_type":"edge","_outV":"184","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"3352","_type":"edge","_outV":"184","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3353","_type":"edge","_outV":"184","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3354","_type":"edge","_outV":"184","_inV":"294","_label":"followed_by"},{"weight":21,"_id":"3355","_type":"edge","_outV":"184","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"3356","_type":"edge","_outV":"184","_inV":"101","_label":"followed_by"},{"weight":11,"_id":"3357","_type":"edge","_outV":"184","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"3358","_type":"edge","_outV":"184","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"3359","_type":"edge","_outV":"184","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"336","_type":"edge","_outV":"34","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"3360","_type":"edge","_outV":"184","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"3361","_type":"edge","_outV":"184","_inV":"98","_label":"followed_by"},{"weight":6,"_id":"3362","_type":"edge","_outV":"184","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3363","_type":"edge","_outV":"184","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3364","_type":"edge","_outV":"184","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3365","_type":"edge","_outV":"184","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"3366","_type":"edge","_outV":"184","_inV":"27","_label":"followed_by"},{"weight":6,"_id":"3367","_type":"edge","_outV":"184","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3368","_type":"edge","_outV":"184","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"3369","_type":"edge","_outV":"184","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"337","_type":"edge","_outV":"34","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3370","_type":"edge","_outV":"184","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"3371","_type":"edge","_outV":"184","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"3372","_type":"edge","_outV":"184","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3373","_type":"edge","_outV":"184","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"3374","_type":"edge","_outV":"184","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"3375","_type":"edge","_outV":"184","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3376","_type":"edge","_outV":"184","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"3377","_type":"edge","_outV":"184","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"3378","_type":"edge","_outV":"184","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"3379","_type":"edge","_outV":"184","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"338","_type":"edge","_outV":"34","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3380","_type":"edge","_outV":"184","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3381","_type":"edge","_outV":"184","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3382","_type":"edge","_outV":"184","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3383","_type":"edge","_outV":"184","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3384","_type":"edge","_outV":"184","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3385","_type":"edge","_outV":"184","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"3386","_type":"edge","_outV":"177","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3387","_type":"edge","_outV":"177","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"3388","_type":"edge","_outV":"177","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"3389","_type":"edge","_outV":"177","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"339","_type":"edge","_outV":"34","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"3390","_type":"edge","_outV":"177","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"3391","_type":"edge","_outV":"309","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3392","_type":"edge","_outV":"309","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"3393","_type":"edge","_outV":"309","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"3394","_type":"edge","_outV":"77","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"3395","_type":"edge","_outV":"77","_inV":"311","_label":"followed_by"},{"weight":1,"_id":"3396","_type":"edge","_outV":"77","_inV":"260","_label":"followed_by"},{"weight":2,"_id":"3397","_type":"edge","_outV":"77","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"3398","_type":"edge","_outV":"77","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"3399","_type":"edge","_outV":"77","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"34","_type":"edge","_outV":"9","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"340","_type":"edge","_outV":"34","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"3400","_type":"edge","_outV":"77","_inV":"108","_label":"followed_by"},{"weight":7,"_id":"3401","_type":"edge","_outV":"77","_inV":"54","_label":"followed_by"},{"weight":8,"_id":"3402","_type":"edge","_outV":"77","_inV":"58","_label":"followed_by"},{"weight":7,"_id":"3403","_type":"edge","_outV":"77","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3404","_type":"edge","_outV":"77","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"3405","_type":"edge","_outV":"77","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"3406","_type":"edge","_outV":"77","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3407","_type":"edge","_outV":"77","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"3408","_type":"edge","_outV":"77","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"3409","_type":"edge","_outV":"77","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"341","_type":"edge","_outV":"34","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3410","_type":"edge","_outV":"77","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3411","_type":"edge","_outV":"77","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3412","_type":"edge","_outV":"77","_inV":"81","_label":"followed_by"},{"weight":4,"_id":"3413","_type":"edge","_outV":"77","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3414","_type":"edge","_outV":"77","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3415","_type":"edge","_outV":"77","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3416","_type":"edge","_outV":"77","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3417","_type":"edge","_outV":"77","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"3418","_type":"edge","_outV":"77","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3419","_type":"edge","_outV":"77","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"342","_type":"edge","_outV":"34","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3420","_type":"edge","_outV":"77","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"3421","_type":"edge","_outV":"77","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3422","_type":"edge","_outV":"77","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"3423","_type":"edge","_outV":"77","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3424","_type":"edge","_outV":"77","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"3425","_type":"edge","_outV":"77","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3426","_type":"edge","_outV":"77","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3427","_type":"edge","_outV":"77","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3428","_type":"edge","_outV":"77","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"3429","_type":"edge","_outV":"77","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"343","_type":"edge","_outV":"34","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"3430","_type":"edge","_outV":"312","_inV":"30","_label":"followed_by"},{"weight":8,"_id":"3431","_type":"edge","_outV":"58","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"3432","_type":"edge","_outV":"58","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"3433","_type":"edge","_outV":"58","_inV":"21","_label":"followed_by"},{"weight":5,"_id":"3434","_type":"edge","_outV":"58","_inV":"11","_label":"followed_by"},{"weight":8,"_id":"3435","_type":"edge","_outV":"58","_inV":"13","_label":"followed_by"},{"weight":10,"_id":"3436","_type":"edge","_outV":"58","_inV":"10","_label":"followed_by"},{"weight":6,"_id":"3437","_type":"edge","_outV":"58","_inV":"24","_label":"followed_by"},{"weight":42,"_id":"3438","_type":"edge","_outV":"58","_inV":"26","_label":"followed_by"},{"weight":8,"_id":"3439","_type":"edge","_outV":"58","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"344","_type":"edge","_outV":"34","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3440","_type":"edge","_outV":"58","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"3441","_type":"edge","_outV":"58","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3442","_type":"edge","_outV":"58","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"3443","_type":"edge","_outV":"58","_inV":"39","_label":"followed_by"},{"weight":10,"_id":"3444","_type":"edge","_outV":"58","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"3445","_type":"edge","_outV":"58","_inV":"209","_label":"followed_by"},{"weight":4,"_id":"3446","_type":"edge","_outV":"58","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3447","_type":"edge","_outV":"58","_inV":"109","_label":"followed_by"},{"weight":8,"_id":"3448","_type":"edge","_outV":"58","_inV":"88","_label":"followed_by"},{"weight":6,"_id":"3449","_type":"edge","_outV":"58","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"345","_type":"edge","_outV":"34","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3450","_type":"edge","_outV":"58","_inV":"273","_label":"followed_by"},{"weight":1,"_id":"3451","_type":"edge","_outV":"58","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"3452","_type":"edge","_outV":"58","_inV":"198","_label":"followed_by"},{"weight":6,"_id":"3453","_type":"edge","_outV":"58","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3454","_type":"edge","_outV":"58","_inV":"199","_label":"followed_by"},{"weight":12,"_id":"3455","_type":"edge","_outV":"58","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3456","_type":"edge","_outV":"58","_inV":"116","_label":"followed_by"},{"weight":5,"_id":"3457","_type":"edge","_outV":"58","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3458","_type":"edge","_outV":"58","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3459","_type":"edge","_outV":"58","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"346","_type":"edge","_outV":"34","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"3460","_type":"edge","_outV":"58","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"3461","_type":"edge","_outV":"58","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3462","_type":"edge","_outV":"58","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"3463","_type":"edge","_outV":"58","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"3464","_type":"edge","_outV":"58","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"3465","_type":"edge","_outV":"58","_inV":"121","_label":"followed_by"},{"weight":14,"_id":"3466","_type":"edge","_outV":"58","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"3467","_type":"edge","_outV":"58","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3468","_type":"edge","_outV":"58","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"3469","_type":"edge","_outV":"58","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"347","_type":"edge","_outV":"34","_inV":"177","_label":"followed_by"},{"weight":3,"_id":"3470","_type":"edge","_outV":"58","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3471","_type":"edge","_outV":"58","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3472","_type":"edge","_outV":"58","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3473","_type":"edge","_outV":"58","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3474","_type":"edge","_outV":"58","_inV":"141","_label":"followed_by"},{"weight":11,"_id":"3475","_type":"edge","_outV":"58","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3476","_type":"edge","_outV":"58","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"3477","_type":"edge","_outV":"58","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3478","_type":"edge","_outV":"58","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"3479","_type":"edge","_outV":"58","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"348","_type":"edge","_outV":"178","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3480","_type":"edge","_outV":"58","_inV":"292","_label":"followed_by"},{"weight":8,"_id":"3481","_type":"edge","_outV":"58","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3482","_type":"edge","_outV":"58","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3483","_type":"edge","_outV":"58","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"3484","_type":"edge","_outV":"58","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"3485","_type":"edge","_outV":"58","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"3486","_type":"edge","_outV":"58","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3487","_type":"edge","_outV":"58","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"3488","_type":"edge","_outV":"58","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"3489","_type":"edge","_outV":"58","_inV":"248","_label":"followed_by"},{"weight":2,"_id":"349","_type":"edge","_outV":"178","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"3490","_type":"edge","_outV":"58","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"3491","_type":"edge","_outV":"58","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"3492","_type":"edge","_outV":"58","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"3493","_type":"edge","_outV":"58","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"3494","_type":"edge","_outV":"58","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"3495","_type":"edge","_outV":"58","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3496","_type":"edge","_outV":"58","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3497","_type":"edge","_outV":"58","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"3498","_type":"edge","_outV":"58","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3499","_type":"edge","_outV":"58","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"35","_type":"edge","_outV":"9","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"350","_type":"edge","_outV":"178","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"3500","_type":"edge","_outV":"58","_inV":"119","_label":"followed_by"},{"weight":3,"_id":"3501","_type":"edge","_outV":"192","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"3502","_type":"edge","_outV":"192","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"3503","_type":"edge","_outV":"192","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3504","_type":"edge","_outV":"192","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"3505","_type":"edge","_outV":"192","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3506","_type":"edge","_outV":"192","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3507","_type":"edge","_outV":"223","_inV":"245","_label":"followed_by"},{"weight":2,"_id":"3508","_type":"edge","_outV":"223","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3509","_type":"edge","_outV":"223","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"351","_type":"edge","_outV":"178","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3510","_type":"edge","_outV":"223","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3511","_type":"edge","_outV":"223","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"3512","_type":"edge","_outV":"223","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"3513","_type":"edge","_outV":"223","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3514","_type":"edge","_outV":"223","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3515","_type":"edge","_outV":"223","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"3516","_type":"edge","_outV":"223","_inV":"313","_label":"followed_by"},{"weight":1,"_id":"3517","_type":"edge","_outV":"223","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3518","_type":"edge","_outV":"223","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"3519","_type":"edge","_outV":"223","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"352","_type":"edge","_outV":"178","_inV":"179","_label":"followed_by"},{"weight":3,"_id":"3520","_type":"edge","_outV":"223","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"3521","_type":"edge","_outV":"223","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3522","_type":"edge","_outV":"223","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"3523","_type":"edge","_outV":"223","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3524","_type":"edge","_outV":"223","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3525","_type":"edge","_outV":"223","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"3526","_type":"edge","_outV":"223","_inV":"314","_label":"followed_by"},{"weight":1,"_id":"3527","_type":"edge","_outV":"223","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3528","_type":"edge","_outV":"223","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3529","_type":"edge","_outV":"223","_inV":"63","_label":"followed_by"},{"weight":6,"_id":"353","_type":"edge","_outV":"74","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3530","_type":"edge","_outV":"223","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3531","_type":"edge","_outV":"201","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"3532","_type":"edge","_outV":"201","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3533","_type":"edge","_outV":"201","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3534","_type":"edge","_outV":"201","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3535","_type":"edge","_outV":"201","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3536","_type":"edge","_outV":"201","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3537","_type":"edge","_outV":"201","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3538","_type":"edge","_outV":"201","_inV":"136","_label":"followed_by"},{"weight":15,"_id":"3539","_type":"edge","_outV":"201","_inV":"94","_label":"followed_by"},{"weight":9,"_id":"354","_type":"edge","_outV":"74","_inV":"127","_label":"followed_by"},{"weight":11,"_id":"3540","_type":"edge","_outV":"201","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"3541","_type":"edge","_outV":"201","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"3542","_type":"edge","_outV":"201","_inV":"9","_label":"followed_by"},{"weight":3,"_id":"3543","_type":"edge","_outV":"201","_inV":"129","_label":"followed_by"},{"weight":4,"_id":"3544","_type":"edge","_outV":"201","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"3545","_type":"edge","_outV":"201","_inV":"92","_label":"followed_by"},{"weight":6,"_id":"3546","_type":"edge","_outV":"201","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"3547","_type":"edge","_outV":"201","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"3548","_type":"edge","_outV":"201","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"3549","_type":"edge","_outV":"201","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"355","_type":"edge","_outV":"74","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3550","_type":"edge","_outV":"201","_inV":"66","_label":"followed_by"},{"weight":14,"_id":"3551","_type":"edge","_outV":"56","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"3552","_type":"edge","_outV":"56","_inV":"13","_label":"followed_by"},{"weight":16,"_id":"3553","_type":"edge","_outV":"56","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"3554","_type":"edge","_outV":"56","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"3555","_type":"edge","_outV":"56","_inV":"22","_label":"followed_by"},{"weight":21,"_id":"3556","_type":"edge","_outV":"56","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3557","_type":"edge","_outV":"56","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"3558","_type":"edge","_outV":"56","_inV":"207","_label":"followed_by"},{"weight":16,"_id":"3559","_type":"edge","_outV":"56","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"356","_type":"edge","_outV":"74","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3560","_type":"edge","_outV":"56","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"3561","_type":"edge","_outV":"56","_inV":"315","_label":"followed_by"},{"weight":6,"_id":"3562","_type":"edge","_outV":"56","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3563","_type":"edge","_outV":"56","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"3564","_type":"edge","_outV":"56","_inV":"19","_label":"followed_by"},{"weight":9,"_id":"3565","_type":"edge","_outV":"56","_inV":"12","_label":"followed_by"},{"weight":9,"_id":"3566","_type":"edge","_outV":"56","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3567","_type":"edge","_outV":"56","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"3568","_type":"edge","_outV":"56","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3569","_type":"edge","_outV":"56","_inV":"23","_label":"followed_by"},{"weight":9,"_id":"357","_type":"edge","_outV":"74","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3570","_type":"edge","_outV":"56","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"3571","_type":"edge","_outV":"56","_inV":"26","_label":"followed_by"},{"weight":24,"_id":"3572","_type":"edge","_outV":"56","_inV":"32","_label":"followed_by"},{"weight":10,"_id":"3573","_type":"edge","_outV":"56","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"3574","_type":"edge","_outV":"56","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"3575","_type":"edge","_outV":"56","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3576","_type":"edge","_outV":"56","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3577","_type":"edge","_outV":"56","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3578","_type":"edge","_outV":"56","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3579","_type":"edge","_outV":"56","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"358","_type":"edge","_outV":"74","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"3580","_type":"edge","_outV":"56","_inV":"189","_label":"followed_by"},{"weight":20,"_id":"3581","_type":"edge","_outV":"56","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"3582","_type":"edge","_outV":"56","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"3583","_type":"edge","_outV":"56","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3584","_type":"edge","_outV":"56","_inV":"38","_label":"followed_by"},{"weight":13,"_id":"3585","_type":"edge","_outV":"56","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3586","_type":"edge","_outV":"56","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"3587","_type":"edge","_outV":"56","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"3588","_type":"edge","_outV":"56","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"3589","_type":"edge","_outV":"56","_inV":"39","_label":"followed_by"},{"weight":11,"_id":"359","_type":"edge","_outV":"74","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"3590","_type":"edge","_outV":"56","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3591","_type":"edge","_outV":"56","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"3592","_type":"edge","_outV":"56","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3593","_type":"edge","_outV":"56","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3594","_type":"edge","_outV":"56","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3595","_type":"edge","_outV":"56","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3596","_type":"edge","_outV":"56","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"3597","_type":"edge","_outV":"56","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"3598","_type":"edge","_outV":"56","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3599","_type":"edge","_outV":"56","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"36","_type":"edge","_outV":"9","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"360","_type":"edge","_outV":"74","_inV":"148","_label":"followed_by"},{"weight":6,"_id":"3600","_type":"edge","_outV":"56","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"3601","_type":"edge","_outV":"56","_inV":"117","_label":"followed_by"},{"weight":3,"_id":"3602","_type":"edge","_outV":"56","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3603","_type":"edge","_outV":"56","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"3604","_type":"edge","_outV":"56","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3605","_type":"edge","_outV":"56","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"3606","_type":"edge","_outV":"56","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"3607","_type":"edge","_outV":"56","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3608","_type":"edge","_outV":"56","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3609","_type":"edge","_outV":"56","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"361","_type":"edge","_outV":"74","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"3610","_type":"edge","_outV":"56","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"3611","_type":"edge","_outV":"56","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3612","_type":"edge","_outV":"56","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3613","_type":"edge","_outV":"56","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3614","_type":"edge","_outV":"56","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"3615","_type":"edge","_outV":"56","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"3616","_type":"edge","_outV":"56","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"3617","_type":"edge","_outV":"24","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3618","_type":"edge","_outV":"24","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"3619","_type":"edge","_outV":"24","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"362","_type":"edge","_outV":"74","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"3620","_type":"edge","_outV":"24","_inV":"4","_label":"followed_by"},{"weight":28,"_id":"3621","_type":"edge","_outV":"24","_inV":"54","_label":"followed_by"},{"weight":24,"_id":"3622","_type":"edge","_outV":"24","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"3623","_type":"edge","_outV":"24","_inV":"59","_label":"followed_by"},{"weight":7,"_id":"3624","_type":"edge","_outV":"24","_inV":"46","_label":"followed_by"},{"weight":17,"_id":"3625","_type":"edge","_outV":"24","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"3626","_type":"edge","_outV":"24","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3627","_type":"edge","_outV":"24","_inV":"235","_label":"followed_by"},{"weight":9,"_id":"3628","_type":"edge","_outV":"24","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"3629","_type":"edge","_outV":"24","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"363","_type":"edge","_outV":"74","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"3630","_type":"edge","_outV":"24","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"3631","_type":"edge","_outV":"24","_inV":"94","_label":"followed_by"},{"weight":7,"_id":"3632","_type":"edge","_outV":"24","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3633","_type":"edge","_outV":"24","_inV":"21","_label":"followed_by"},{"weight":11,"_id":"3634","_type":"edge","_outV":"24","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3635","_type":"edge","_outV":"24","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"3636","_type":"edge","_outV":"24","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"3637","_type":"edge","_outV":"24","_inV":"11","_label":"followed_by"},{"weight":18,"_id":"3638","_type":"edge","_outV":"24","_inV":"58","_label":"followed_by"},{"weight":13,"_id":"3639","_type":"edge","_outV":"24","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"364","_type":"edge","_outV":"74","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"3640","_type":"edge","_outV":"24","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"3641","_type":"edge","_outV":"24","_inV":"9","_label":"followed_by"},{"weight":5,"_id":"3642","_type":"edge","_outV":"24","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3643","_type":"edge","_outV":"24","_inV":"316","_label":"followed_by"},{"weight":1,"_id":"3644","_type":"edge","_outV":"24","_inV":"52","_label":"followed_by"},{"weight":21,"_id":"3645","_type":"edge","_outV":"24","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3646","_type":"edge","_outV":"24","_inV":"55","_label":"followed_by"},{"weight":4,"_id":"3647","_type":"edge","_outV":"24","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3648","_type":"edge","_outV":"24","_inV":"49","_label":"followed_by"},{"weight":10,"_id":"3649","_type":"edge","_outV":"24","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"365","_type":"edge","_outV":"74","_inV":"122","_label":"followed_by"},{"weight":5,"_id":"3650","_type":"edge","_outV":"24","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3651","_type":"edge","_outV":"24","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3652","_type":"edge","_outV":"24","_inV":"82","_label":"followed_by"},{"weight":14,"_id":"3653","_type":"edge","_outV":"24","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"3654","_type":"edge","_outV":"24","_inV":"12","_label":"followed_by"},{"weight":11,"_id":"3655","_type":"edge","_outV":"24","_inV":"104","_label":"followed_by"},{"weight":7,"_id":"3656","_type":"edge","_outV":"24","_inV":"68","_label":"followed_by"},{"weight":14,"_id":"3657","_type":"edge","_outV":"24","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3658","_type":"edge","_outV":"24","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3659","_type":"edge","_outV":"24","_inV":"154","_label":"followed_by"},{"weight":38,"_id":"366","_type":"edge","_outV":"74","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3660","_type":"edge","_outV":"24","_inV":"155","_label":"followed_by"},{"weight":6,"_id":"3661","_type":"edge","_outV":"24","_inV":"112","_label":"followed_by"},{"weight":6,"_id":"3662","_type":"edge","_outV":"24","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"3663","_type":"edge","_outV":"24","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3664","_type":"edge","_outV":"24","_inV":"208","_label":"followed_by"},{"weight":34,"_id":"3665","_type":"edge","_outV":"24","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3666","_type":"edge","_outV":"24","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"3667","_type":"edge","_outV":"24","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3668","_type":"edge","_outV":"24","_inV":"121","_label":"followed_by"},{"weight":3,"_id":"3669","_type":"edge","_outV":"24","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"367","_type":"edge","_outV":"74","_inV":"157","_label":"followed_by"},{"weight":4,"_id":"3670","_type":"edge","_outV":"24","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"3671","_type":"edge","_outV":"24","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"3672","_type":"edge","_outV":"24","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"3673","_type":"edge","_outV":"24","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3674","_type":"edge","_outV":"24","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"3675","_type":"edge","_outV":"24","_inV":"170","_label":"followed_by"},{"weight":4,"_id":"3676","_type":"edge","_outV":"24","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3677","_type":"edge","_outV":"24","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"3678","_type":"edge","_outV":"24","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3679","_type":"edge","_outV":"24","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"368","_type":"edge","_outV":"74","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"3680","_type":"edge","_outV":"24","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3681","_type":"edge","_outV":"24","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"3682","_type":"edge","_outV":"24","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3683","_type":"edge","_outV":"24","_inV":"91","_label":"followed_by"},{"weight":5,"_id":"3684","_type":"edge","_outV":"24","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"3685","_type":"edge","_outV":"24","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3686","_type":"edge","_outV":"24","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3687","_type":"edge","_outV":"24","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3688","_type":"edge","_outV":"24","_inV":"168","_label":"followed_by"},{"weight":9,"_id":"3689","_type":"edge","_outV":"24","_inV":"131","_label":"followed_by"},{"weight":4,"_id":"369","_type":"edge","_outV":"74","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"3690","_type":"edge","_outV":"24","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3691","_type":"edge","_outV":"24","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3692","_type":"edge","_outV":"24","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"3693","_type":"edge","_outV":"24","_inV":"254","_label":"followed_by"},{"weight":57,"_id":"3694","_type":"edge","_outV":"3","_inV":"5","_label":"followed_by"},{"weight":30,"_id":"3695","_type":"edge","_outV":"3","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"3696","_type":"edge","_outV":"3","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"3697","_type":"edge","_outV":"3","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3698","_type":"edge","_outV":"3","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"3699","_type":"edge","_outV":"3","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"37","_type":"edge","_outV":"9","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"370","_type":"edge","_outV":"74","_inV":"53","_label":"followed_by"},{"weight":7,"_id":"3700","_type":"edge","_outV":"3","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"3701","_type":"edge","_outV":"3","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3702","_type":"edge","_outV":"3","_inV":"317","_label":"followed_by"},{"weight":5,"_id":"3703","_type":"edge","_outV":"3","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3704","_type":"edge","_outV":"3","_inV":"1","_label":"followed_by"},{"weight":2,"_id":"3705","_type":"edge","_outV":"3","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"3706","_type":"edge","_outV":"3","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"3707","_type":"edge","_outV":"3","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"3708","_type":"edge","_outV":"3","_inV":"318","_label":"followed_by"},{"weight":26,"_id":"3709","_type":"edge","_outV":"3","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"371","_type":"edge","_outV":"74","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"3710","_type":"edge","_outV":"3","_inV":"96","_label":"followed_by"},{"weight":15,"_id":"3711","_type":"edge","_outV":"3","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3712","_type":"edge","_outV":"3","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"3713","_type":"edge","_outV":"3","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"3714","_type":"edge","_outV":"3","_inV":"215","_label":"followed_by"},{"weight":10,"_id":"3715","_type":"edge","_outV":"3","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"3716","_type":"edge","_outV":"3","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"3717","_type":"edge","_outV":"3","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3718","_type":"edge","_outV":"3","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3719","_type":"edge","_outV":"3","_inV":"134","_label":"followed_by"},{"weight":3,"_id":"372","_type":"edge","_outV":"74","_inV":"50","_label":"followed_by"},{"weight":10,"_id":"3720","_type":"edge","_outV":"3","_inV":"25","_label":"followed_by"},{"weight":54,"_id":"3721","_type":"edge","_outV":"3","_inV":"125","_label":"followed_by"},{"weight":26,"_id":"3722","_type":"edge","_outV":"3","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"3723","_type":"edge","_outV":"3","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"3724","_type":"edge","_outV":"3","_inV":"145","_label":"followed_by"},{"weight":3,"_id":"3725","_type":"edge","_outV":"3","_inV":"319","_label":"followed_by"},{"weight":1,"_id":"3726","_type":"edge","_outV":"3","_inV":"12","_label":"followed_by"},{"weight":37,"_id":"3727","_type":"edge","_outV":"3","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"3728","_type":"edge","_outV":"3","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3729","_type":"edge","_outV":"3","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"373","_type":"edge","_outV":"74","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3730","_type":"edge","_outV":"3","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"3731","_type":"edge","_outV":"3","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3732","_type":"edge","_outV":"3","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"3733","_type":"edge","_outV":"3","_inV":"211","_label":"followed_by"},{"weight":13,"_id":"3734","_type":"edge","_outV":"3","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"3735","_type":"edge","_outV":"3","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"3736","_type":"edge","_outV":"3","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3737","_type":"edge","_outV":"3","_inV":"320","_label":"followed_by"},{"weight":3,"_id":"3738","_type":"edge","_outV":"3","_inV":"61","_label":"followed_by"},{"weight":3,"_id":"3739","_type":"edge","_outV":"3","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"374","_type":"edge","_outV":"74","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"3740","_type":"edge","_outV":"3","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"3741","_type":"edge","_outV":"3","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"3742","_type":"edge","_outV":"3","_inV":"315","_label":"followed_by"},{"weight":1,"_id":"3743","_type":"edge","_outV":"3","_inV":"261","_label":"followed_by"},{"weight":13,"_id":"3744","_type":"edge","_outV":"3","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"3745","_type":"edge","_outV":"3","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"3746","_type":"edge","_outV":"3","_inV":"38","_label":"followed_by"},{"weight":14,"_id":"3747","_type":"edge","_outV":"3","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"3748","_type":"edge","_outV":"3","_inV":"62","_label":"followed_by"},{"weight":8,"_id":"3749","_type":"edge","_outV":"3","_inV":"150","_label":"followed_by"},{"weight":88,"_id":"375","_type":"edge","_outV":"74","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3750","_type":"edge","_outV":"3","_inV":"309","_label":"followed_by"},{"weight":1,"_id":"3751","_type":"edge","_outV":"3","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"3752","_type":"edge","_outV":"3","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"3753","_type":"edge","_outV":"3","_inV":"321","_label":"followed_by"},{"weight":2,"_id":"3754","_type":"edge","_outV":"3","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3755","_type":"edge","_outV":"3","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3756","_type":"edge","_outV":"3","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"3757","_type":"edge","_outV":"3","_inV":"46","_label":"followed_by"},{"weight":5,"_id":"3758","_type":"edge","_outV":"3","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3759","_type":"edge","_outV":"3","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"376","_type":"edge","_outV":"74","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3760","_type":"edge","_outV":"3","_inV":"81","_label":"followed_by"},{"weight":5,"_id":"3761","_type":"edge","_outV":"3","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"3762","_type":"edge","_outV":"3","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"3763","_type":"edge","_outV":"3","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"3764","_type":"edge","_outV":"3","_inV":"214","_label":"followed_by"},{"weight":2,"_id":"3765","_type":"edge","_outV":"3","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"3766","_type":"edge","_outV":"3","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"3767","_type":"edge","_outV":"3","_inV":"217","_label":"followed_by"},{"weight":5,"_id":"3768","_type":"edge","_outV":"3","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"3769","_type":"edge","_outV":"3","_inV":"193","_label":"followed_by"},{"weight":6,"_id":"377","_type":"edge","_outV":"74","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"3770","_type":"edge","_outV":"3","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3771","_type":"edge","_outV":"3","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"3772","_type":"edge","_outV":"3","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"3773","_type":"edge","_outV":"3","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3774","_type":"edge","_outV":"3","_inV":"240","_label":"followed_by"},{"weight":1,"_id":"3775","_type":"edge","_outV":"3","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"3776","_type":"edge","_outV":"3","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3777","_type":"edge","_outV":"3","_inV":"259","_label":"followed_by"},{"weight":2,"_id":"3778","_type":"edge","_outV":"168","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3779","_type":"edge","_outV":"168","_inV":"117","_label":"followed_by"},{"weight":6,"_id":"378","_type":"edge","_outV":"74","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3780","_type":"edge","_outV":"168","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3781","_type":"edge","_outV":"168","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"3782","_type":"edge","_outV":"168","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"3783","_type":"edge","_outV":"168","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"3784","_type":"edge","_outV":"168","_inV":"169","_label":"followed_by"},{"weight":4,"_id":"3785","_type":"edge","_outV":"168","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"3786","_type":"edge","_outV":"168","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3787","_type":"edge","_outV":"168","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3788","_type":"edge","_outV":"168","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3789","_type":"edge","_outV":"168","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"379","_type":"edge","_outV":"74","_inV":"180","_label":"followed_by"},{"weight":21,"_id":"3790","_type":"edge","_outV":"88","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"3791","_type":"edge","_outV":"88","_inV":"53","_label":"followed_by"},{"weight":32,"_id":"3792","_type":"edge","_outV":"88","_inV":"100","_label":"followed_by"},{"weight":16,"_id":"3793","_type":"edge","_outV":"88","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"3794","_type":"edge","_outV":"88","_inV":"72","_label":"followed_by"},{"weight":16,"_id":"3795","_type":"edge","_outV":"88","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3796","_type":"edge","_outV":"88","_inV":"14","_label":"followed_by"},{"weight":13,"_id":"3797","_type":"edge","_outV":"88","_inV":"56","_label":"followed_by"},{"weight":22,"_id":"3798","_type":"edge","_outV":"88","_inV":"73","_label":"followed_by"},{"weight":7,"_id":"3799","_type":"edge","_outV":"88","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"38","_type":"edge","_outV":"9","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"380","_type":"edge","_outV":"74","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"3800","_type":"edge","_outV":"88","_inV":"106","_label":"followed_by"},{"weight":9,"_id":"3801","_type":"edge","_outV":"88","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"3802","_type":"edge","_outV":"88","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"3803","_type":"edge","_outV":"88","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"3804","_type":"edge","_outV":"88","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"3805","_type":"edge","_outV":"88","_inV":"152","_label":"followed_by"},{"weight":3,"_id":"3806","_type":"edge","_outV":"88","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3807","_type":"edge","_outV":"88","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"3808","_type":"edge","_outV":"88","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"3809","_type":"edge","_outV":"88","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"381","_type":"edge","_outV":"74","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"3810","_type":"edge","_outV":"88","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3811","_type":"edge","_outV":"88","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"3812","_type":"edge","_outV":"88","_inV":"108","_label":"followed_by"},{"weight":8,"_id":"3813","_type":"edge","_outV":"88","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3814","_type":"edge","_outV":"88","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"3815","_type":"edge","_outV":"88","_inV":"62","_label":"followed_by"},{"weight":21,"_id":"3816","_type":"edge","_outV":"88","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3817","_type":"edge","_outV":"88","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3818","_type":"edge","_outV":"88","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3819","_type":"edge","_outV":"88","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"382","_type":"edge","_outV":"74","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3820","_type":"edge","_outV":"88","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3821","_type":"edge","_outV":"88","_inV":"322","_label":"followed_by"},{"weight":4,"_id":"3822","_type":"edge","_outV":"88","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"3823","_type":"edge","_outV":"88","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"3824","_type":"edge","_outV":"88","_inV":"223","_label":"followed_by"},{"weight":2,"_id":"3825","_type":"edge","_outV":"88","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3826","_type":"edge","_outV":"88","_inV":"77","_label":"followed_by"},{"weight":4,"_id":"3827","_type":"edge","_outV":"88","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3828","_type":"edge","_outV":"88","_inV":"151","_label":"followed_by"},{"weight":6,"_id":"3829","_type":"edge","_outV":"88","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"383","_type":"edge","_outV":"74","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3830","_type":"edge","_outV":"88","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"3831","_type":"edge","_outV":"88","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3832","_type":"edge","_outV":"88","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"3833","_type":"edge","_outV":"88","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3834","_type":"edge","_outV":"88","_inV":"137","_label":"followed_by"},{"weight":6,"_id":"3835","_type":"edge","_outV":"88","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"3836","_type":"edge","_outV":"88","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3837","_type":"edge","_outV":"88","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3838","_type":"edge","_outV":"88","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"3839","_type":"edge","_outV":"261","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"384","_type":"edge","_outV":"74","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3840","_type":"edge","_outV":"261","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3841","_type":"edge","_outV":"60","_inV":"10","_label":"followed_by"},{"weight":10,"_id":"3842","_type":"edge","_outV":"60","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3843","_type":"edge","_outV":"60","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3844","_type":"edge","_outV":"60","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3845","_type":"edge","_outV":"60","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"3846","_type":"edge","_outV":"60","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"3847","_type":"edge","_outV":"60","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"3848","_type":"edge","_outV":"60","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3849","_type":"edge","_outV":"60","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"385","_type":"edge","_outV":"74","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3850","_type":"edge","_outV":"60","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"3851","_type":"edge","_outV":"60","_inV":"181","_label":"followed_by"},{"weight":16,"_id":"3852","_type":"edge","_outV":"60","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"3853","_type":"edge","_outV":"60","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3854","_type":"edge","_outV":"60","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3855","_type":"edge","_outV":"60","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3856","_type":"edge","_outV":"60","_inV":"29","_label":"followed_by"},{"weight":35,"_id":"3857","_type":"edge","_outV":"60","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3858","_type":"edge","_outV":"60","_inV":"123","_label":"followed_by"},{"weight":12,"_id":"3859","_type":"edge","_outV":"60","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"386","_type":"edge","_outV":"74","_inV":"29","_label":"followed_by"},{"weight":8,"_id":"3860","_type":"edge","_outV":"60","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3861","_type":"edge","_outV":"60","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3862","_type":"edge","_outV":"60","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"3863","_type":"edge","_outV":"60","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"3864","_type":"edge","_outV":"60","_inV":"36","_label":"followed_by"},{"weight":11,"_id":"3865","_type":"edge","_outV":"60","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3866","_type":"edge","_outV":"60","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3867","_type":"edge","_outV":"60","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"3868","_type":"edge","_outV":"60","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"3869","_type":"edge","_outV":"60","_inV":"280","_label":"followed_by"},{"weight":3,"_id":"387","_type":"edge","_outV":"74","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"3870","_type":"edge","_outV":"60","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3871","_type":"edge","_outV":"60","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"3872","_type":"edge","_outV":"60","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3873","_type":"edge","_outV":"60","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3874","_type":"edge","_outV":"60","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3875","_type":"edge","_outV":"60","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"3876","_type":"edge","_outV":"60","_inV":"172","_label":"followed_by"},{"weight":11,"_id":"3877","_type":"edge","_outV":"60","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"3878","_type":"edge","_outV":"51","_inV":"13","_label":"followed_by"},{"weight":12,"_id":"3879","_type":"edge","_outV":"51","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"388","_type":"edge","_outV":"74","_inV":"182","_label":"followed_by"},{"weight":12,"_id":"3880","_type":"edge","_outV":"51","_inV":"18","_label":"followed_by"},{"weight":16,"_id":"3881","_type":"edge","_outV":"51","_inV":"50","_label":"followed_by"},{"weight":12,"_id":"3882","_type":"edge","_outV":"51","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"3883","_type":"edge","_outV":"51","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"3884","_type":"edge","_outV":"51","_inV":"23","_label":"followed_by"},{"weight":14,"_id":"3885","_type":"edge","_outV":"51","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3886","_type":"edge","_outV":"51","_inV":"55","_label":"followed_by"},{"weight":7,"_id":"3887","_type":"edge","_outV":"51","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3888","_type":"edge","_outV":"51","_inV":"11","_label":"followed_by"},{"weight":4,"_id":"3889","_type":"edge","_outV":"51","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"389","_type":"edge","_outV":"74","_inV":"183","_label":"followed_by"},{"weight":9,"_id":"3890","_type":"edge","_outV":"51","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3891","_type":"edge","_outV":"51","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"3892","_type":"edge","_outV":"51","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3893","_type":"edge","_outV":"51","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3894","_type":"edge","_outV":"51","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3895","_type":"edge","_outV":"51","_inV":"195","_label":"followed_by"},{"weight":1,"_id":"3896","_type":"edge","_outV":"51","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3897","_type":"edge","_outV":"51","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"3898","_type":"edge","_outV":"51","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3899","_type":"edge","_outV":"51","_inV":"290","_label":"followed_by"},{"weight":1,"_id":"39","_type":"edge","_outV":"9","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"390","_type":"edge","_outV":"74","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"3900","_type":"edge","_outV":"51","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"3901","_type":"edge","_outV":"51","_inV":"153","_label":"followed_by"},{"weight":9,"_id":"3902","_type":"edge","_outV":"51","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"3903","_type":"edge","_outV":"51","_inV":"103","_label":"followed_by"},{"weight":8,"_id":"3904","_type":"edge","_outV":"51","_inV":"68","_label":"followed_by"},{"weight":8,"_id":"3905","_type":"edge","_outV":"51","_inV":"112","_label":"followed_by"},{"weight":4,"_id":"3906","_type":"edge","_outV":"51","_inV":"121","_label":"followed_by"},{"weight":18,"_id":"3907","_type":"edge","_outV":"51","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"3908","_type":"edge","_outV":"51","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3909","_type":"edge","_outV":"51","_inV":"82","_label":"followed_by"},{"weight":9,"_id":"391","_type":"edge","_outV":"74","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3910","_type":"edge","_outV":"51","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3911","_type":"edge","_outV":"51","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"3912","_type":"edge","_outV":"51","_inV":"88","_label":"followed_by"},{"weight":15,"_id":"3913","_type":"edge","_outV":"51","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3914","_type":"edge","_outV":"51","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"3915","_type":"edge","_outV":"51","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3916","_type":"edge","_outV":"51","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3917","_type":"edge","_outV":"51","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3918","_type":"edge","_outV":"51","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3919","_type":"edge","_outV":"51","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"392","_type":"edge","_outV":"74","_inV":"92","_label":"followed_by"},{"weight":7,"_id":"3920","_type":"edge","_outV":"51","_inV":"117","_label":"followed_by"},{"weight":4,"_id":"3921","_type":"edge","_outV":"51","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"3922","_type":"edge","_outV":"51","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3923","_type":"edge","_outV":"51","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"3924","_type":"edge","_outV":"51","_inV":"223","_label":"followed_by"},{"weight":3,"_id":"3925","_type":"edge","_outV":"51","_inV":"188","_label":"followed_by"},{"weight":7,"_id":"3926","_type":"edge","_outV":"51","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"3927","_type":"edge","_outV":"51","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3928","_type":"edge","_outV":"51","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"3929","_type":"edge","_outV":"51","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"393","_type":"edge","_outV":"74","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"3930","_type":"edge","_outV":"51","_inV":"71","_label":"followed_by"},{"weight":7,"_id":"3931","_type":"edge","_outV":"51","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3932","_type":"edge","_outV":"51","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"3933","_type":"edge","_outV":"51","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3934","_type":"edge","_outV":"51","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3935","_type":"edge","_outV":"51","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3936","_type":"edge","_outV":"51","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"3937","_type":"edge","_outV":"51","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3938","_type":"edge","_outV":"51","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"3939","_type":"edge","_outV":"51","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"394","_type":"edge","_outV":"74","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3940","_type":"edge","_outV":"51","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3941","_type":"edge","_outV":"51","_inV":"100","_label":"followed_by"},{"weight":12,"_id":"3942","_type":"edge","_outV":"138","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"3943","_type":"edge","_outV":"138","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"3944","_type":"edge","_outV":"138","_inV":"25","_label":"followed_by"},{"weight":4,"_id":"3945","_type":"edge","_outV":"138","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"3946","_type":"edge","_outV":"138","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"3947","_type":"edge","_outV":"138","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"3948","_type":"edge","_outV":"138","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"3949","_type":"edge","_outV":"138","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"395","_type":"edge","_outV":"74","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3950","_type":"edge","_outV":"138","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3951","_type":"edge","_outV":"138","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"3952","_type":"edge","_outV":"266","_inV":"264","_label":"followed_by"},{"weight":1,"_id":"3953","_type":"edge","_outV":"266","_inV":"251","_label":"followed_by"},{"weight":1,"_id":"3954","_type":"edge","_outV":"266","_inV":"249","_label":"followed_by"},{"weight":1,"_id":"3955","_type":"edge","_outV":"322","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"3956","_type":"edge","_outV":"106","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3957","_type":"edge","_outV":"106","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"3958","_type":"edge","_outV":"106","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"3959","_type":"edge","_outV":"106","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"396","_type":"edge","_outV":"74","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"3960","_type":"edge","_outV":"106","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"3961","_type":"edge","_outV":"106","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"3962","_type":"edge","_outV":"106","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"3963","_type":"edge","_outV":"106","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3964","_type":"edge","_outV":"106","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3965","_type":"edge","_outV":"106","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3966","_type":"edge","_outV":"106","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3967","_type":"edge","_outV":"106","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"3968","_type":"edge","_outV":"106","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3969","_type":"edge","_outV":"106","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"397","_type":"edge","_outV":"74","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"3970","_type":"edge","_outV":"106","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3971","_type":"edge","_outV":"106","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"3972","_type":"edge","_outV":"106","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"3973","_type":"edge","_outV":"106","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3974","_type":"edge","_outV":"106","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3975","_type":"edge","_outV":"106","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3976","_type":"edge","_outV":"106","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3977","_type":"edge","_outV":"106","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"3978","_type":"edge","_outV":"106","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"3979","_type":"edge","_outV":"106","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"398","_type":"edge","_outV":"74","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3980","_type":"edge","_outV":"106","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3981","_type":"edge","_outV":"106","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"3982","_type":"edge","_outV":"106","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"3983","_type":"edge","_outV":"106","_inV":"58","_label":"followed_by"},{"weight":4,"_id":"3984","_type":"edge","_outV":"106","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3985","_type":"edge","_outV":"106","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3986","_type":"edge","_outV":"106","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3987","_type":"edge","_outV":"106","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3988","_type":"edge","_outV":"106","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"3989","_type":"edge","_outV":"106","_inV":"39","_label":"followed_by"},{"weight":7,"_id":"399","_type":"edge","_outV":"74","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"3990","_type":"edge","_outV":"106","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3991","_type":"edge","_outV":"106","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3992","_type":"edge","_outV":"106","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"3993","_type":"edge","_outV":"106","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3994","_type":"edge","_outV":"106","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"3995","_type":"edge","_outV":"106","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3996","_type":"edge","_outV":"106","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"3997","_type":"edge","_outV":"247","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"3998","_type":"edge","_outV":"66","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3999","_type":"edge","_outV":"66","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4","_type":"edge","_outV":"1","_inV":"6","_label":"followed_by"},{"weight":3,"_id":"40","_type":"edge","_outV":"44","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"400","_type":"edge","_outV":"74","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"4000","_type":"edge","_outV":"66","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4001","_type":"edge","_outV":"66","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"4002","_type":"edge","_outV":"66","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4003","_type":"edge","_outV":"66","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"4004","_type":"edge","_outV":"66","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4005","_type":"edge","_outV":"323","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"4006","_type":"edge","_outV":"225","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"4007","_type":"edge","_outV":"225","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4008","_type":"edge","_outV":"225","_inV":"226","_label":"followed_by"},{"weight":1,"_id":"4009","_type":"edge","_outV":"225","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"401","_type":"edge","_outV":"74","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"4010","_type":"edge","_outV":"320","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4011","_type":"edge","_outV":"292","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4012","_type":"edge","_outV":"292","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4013","_type":"edge","_outV":"292","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"4014","_type":"edge","_outV":"292","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4015","_type":"edge","_outV":"292","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4016","_type":"edge","_outV":"292","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4017","_type":"edge","_outV":"292","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4018","_type":"edge","_outV":"191","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4019","_type":"edge","_outV":"191","_inV":"31","_label":"followed_by"},{"weight":12,"_id":"402","_type":"edge","_outV":"38","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4020","_type":"edge","_outV":"191","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4021","_type":"edge","_outV":"191","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4022","_type":"edge","_outV":"191","_inV":"88","_label":"followed_by"},{"weight":12,"_id":"4023","_type":"edge","_outV":"185","_inV":"275","_label":"followed_by"},{"weight":1,"_id":"4024","_type":"edge","_outV":"173","_inV":"103","_label":"followed_by"},{"weight":5,"_id":"4025","_type":"edge","_outV":"173","_inV":"117","_label":"followed_by"},{"weight":7,"_id":"4026","_type":"edge","_outV":"173","_inV":"43","_label":"followed_by"},{"weight":3,"_id":"4027","_type":"edge","_outV":"173","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4028","_type":"edge","_outV":"173","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4029","_type":"edge","_outV":"173","_inV":"71","_label":"followed_by"},{"weight":9,"_id":"403","_type":"edge","_outV":"38","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"4030","_type":"edge","_outV":"173","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4031","_type":"edge","_outV":"173","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"4032","_type":"edge","_outV":"173","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4033","_type":"edge","_outV":"173","_inV":"166","_label":"followed_by"},{"weight":3,"_id":"4034","_type":"edge","_outV":"173","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"4035","_type":"edge","_outV":"173","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"4036","_type":"edge","_outV":"173","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4037","_type":"edge","_outV":"173","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4038","_type":"edge","_outV":"173","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4039","_type":"edge","_outV":"173","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"404","_type":"edge","_outV":"38","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4040","_type":"edge","_outV":"173","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4041","_type":"edge","_outV":"173","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4042","_type":"edge","_outV":"173","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4043","_type":"edge","_outV":"173","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"4044","_type":"edge","_outV":"173","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4045","_type":"edge","_outV":"173","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4046","_type":"edge","_outV":"173","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4047","_type":"edge","_outV":"173","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4048","_type":"edge","_outV":"173","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"4049","_type":"edge","_outV":"173","_inV":"37","_label":"followed_by"},{"weight":34,"_id":"405","_type":"edge","_outV":"38","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4050","_type":"edge","_outV":"173","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4051","_type":"edge","_outV":"173","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4052","_type":"edge","_outV":"173","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4053","_type":"edge","_outV":"173","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4054","_type":"edge","_outV":"173","_inV":"298","_label":"followed_by"},{"weight":2,"_id":"4055","_type":"edge","_outV":"173","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4056","_type":"edge","_outV":"173","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"4057","_type":"edge","_outV":"173","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"4058","_type":"edge","_outV":"109","_inV":"54","_label":"followed_by"},{"weight":10,"_id":"4059","_type":"edge","_outV":"109","_inV":"100","_label":"followed_by"},{"weight":19,"_id":"406","_type":"edge","_outV":"38","_inV":"104","_label":"followed_by"},{"weight":5,"_id":"4060","_type":"edge","_outV":"109","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4061","_type":"edge","_outV":"109","_inV":"49","_label":"followed_by"},{"weight":7,"_id":"4062","_type":"edge","_outV":"109","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4063","_type":"edge","_outV":"109","_inV":"91","_label":"followed_by"},{"weight":6,"_id":"4064","_type":"edge","_outV":"109","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4065","_type":"edge","_outV":"109","_inV":"80","_label":"followed_by"},{"weight":6,"_id":"4066","_type":"edge","_outV":"109","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4067","_type":"edge","_outV":"109","_inV":"155","_label":"followed_by"},{"weight":3,"_id":"4068","_type":"edge","_outV":"109","_inV":"63","_label":"followed_by"},{"weight":3,"_id":"4069","_type":"edge","_outV":"109","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"407","_type":"edge","_outV":"38","_inV":"170","_label":"followed_by"},{"weight":4,"_id":"4070","_type":"edge","_outV":"109","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"4071","_type":"edge","_outV":"109","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4072","_type":"edge","_outV":"109","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"4073","_type":"edge","_outV":"109","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4074","_type":"edge","_outV":"109","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"4075","_type":"edge","_outV":"109","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4076","_type":"edge","_outV":"109","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4077","_type":"edge","_outV":"109","_inV":"17","_label":"followed_by"},{"weight":7,"_id":"4078","_type":"edge","_outV":"109","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4079","_type":"edge","_outV":"109","_inV":"98","_label":"followed_by"},{"weight":6,"_id":"408","_type":"edge","_outV":"38","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4080","_type":"edge","_outV":"109","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"4081","_type":"edge","_outV":"109","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4082","_type":"edge","_outV":"109","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"4083","_type":"edge","_outV":"109","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4084","_type":"edge","_outV":"109","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4085","_type":"edge","_outV":"109","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4086","_type":"edge","_outV":"109","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"4087","_type":"edge","_outV":"109","_inV":"72","_label":"followed_by"},{"weight":5,"_id":"4088","_type":"edge","_outV":"109","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4089","_type":"edge","_outV":"109","_inV":"180","_label":"followed_by"},{"weight":10,"_id":"409","_type":"edge","_outV":"38","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"4090","_type":"edge","_outV":"109","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4091","_type":"edge","_outV":"109","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"4092","_type":"edge","_outV":"109","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4093","_type":"edge","_outV":"109","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4094","_type":"edge","_outV":"109","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4095","_type":"edge","_outV":"109","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4096","_type":"edge","_outV":"109","_inV":"39","_label":"followed_by"},{"weight":13,"_id":"4097","_type":"edge","_outV":"48","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4098","_type":"edge","_outV":"48","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4099","_type":"edge","_outV":"48","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"41","_type":"edge","_outV":"46","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"410","_type":"edge","_outV":"38","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"4100","_type":"edge","_outV":"48","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4101","_type":"edge","_outV":"48","_inV":"16","_label":"followed_by"},{"weight":33,"_id":"4102","_type":"edge","_outV":"48","_inV":"12","_label":"followed_by"},{"weight":5,"_id":"4103","_type":"edge","_outV":"48","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4104","_type":"edge","_outV":"48","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"4105","_type":"edge","_outV":"48","_inV":"15","_label":"followed_by"},{"weight":8,"_id":"4106","_type":"edge","_outV":"48","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4107","_type":"edge","_outV":"48","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"4108","_type":"edge","_outV":"48","_inV":"13","_label":"followed_by"},{"weight":10,"_id":"4109","_type":"edge","_outV":"48","_inV":"14","_label":"followed_by"},{"weight":6,"_id":"411","_type":"edge","_outV":"38","_inV":"19","_label":"followed_by"},{"weight":6,"_id":"4110","_type":"edge","_outV":"48","_inV":"121","_label":"followed_by"},{"weight":8,"_id":"4111","_type":"edge","_outV":"48","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"4112","_type":"edge","_outV":"48","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"4113","_type":"edge","_outV":"48","_inV":"196","_label":"followed_by"},{"weight":16,"_id":"4114","_type":"edge","_outV":"48","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4115","_type":"edge","_outV":"48","_inV":"85","_label":"followed_by"},{"weight":9,"_id":"4116","_type":"edge","_outV":"48","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4117","_type":"edge","_outV":"48","_inV":"208","_label":"followed_by"},{"weight":6,"_id":"4118","_type":"edge","_outV":"48","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"4119","_type":"edge","_outV":"48","_inV":"189","_label":"followed_by"},{"weight":4,"_id":"412","_type":"edge","_outV":"38","_inV":"57","_label":"followed_by"},{"weight":16,"_id":"4120","_type":"edge","_outV":"48","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"4121","_type":"edge","_outV":"48","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4122","_type":"edge","_outV":"48","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"4123","_type":"edge","_outV":"48","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4124","_type":"edge","_outV":"48","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"4125","_type":"edge","_outV":"48","_inV":"181","_label":"followed_by"},{"weight":6,"_id":"4126","_type":"edge","_outV":"48","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4127","_type":"edge","_outV":"48","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"4128","_type":"edge","_outV":"48","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4129","_type":"edge","_outV":"48","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"413","_type":"edge","_outV":"38","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"4130","_type":"edge","_outV":"48","_inV":"71","_label":"followed_by"},{"weight":5,"_id":"4131","_type":"edge","_outV":"48","_inV":"117","_label":"followed_by"},{"weight":9,"_id":"4132","_type":"edge","_outV":"48","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4133","_type":"edge","_outV":"48","_inV":"257","_label":"followed_by"},{"weight":4,"_id":"4134","_type":"edge","_outV":"48","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4135","_type":"edge","_outV":"48","_inV":"79","_label":"followed_by"},{"weight":7,"_id":"4136","_type":"edge","_outV":"48","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4137","_type":"edge","_outV":"48","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"4138","_type":"edge","_outV":"48","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4139","_type":"edge","_outV":"48","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"414","_type":"edge","_outV":"38","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"4140","_type":"edge","_outV":"48","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4141","_type":"edge","_outV":"48","_inV":"31","_label":"followed_by"},{"weight":4,"_id":"4142","_type":"edge","_outV":"48","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4143","_type":"edge","_outV":"48","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4144","_type":"edge","_outV":"48","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"4145","_type":"edge","_outV":"48","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"4146","_type":"edge","_outV":"218","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4147","_type":"edge","_outV":"218","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4148","_type":"edge","_outV":"218","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"4149","_type":"edge","_outV":"218","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"415","_type":"edge","_outV":"38","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4150","_type":"edge","_outV":"218","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4151","_type":"edge","_outV":"218","_inV":"13","_label":"followed_by"},{"weight":18,"_id":"4152","_type":"edge","_outV":"54","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"4153","_type":"edge","_outV":"54","_inV":"15","_label":"followed_by"},{"weight":17,"_id":"4154","_type":"edge","_outV":"54","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"4155","_type":"edge","_outV":"54","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"4156","_type":"edge","_outV":"54","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"4157","_type":"edge","_outV":"54","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"4158","_type":"edge","_outV":"54","_inV":"46","_label":"followed_by"},{"weight":16,"_id":"4159","_type":"edge","_outV":"54","_inV":"13","_label":"followed_by"},{"weight":11,"_id":"416","_type":"edge","_outV":"38","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4160","_type":"edge","_outV":"54","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"4161","_type":"edge","_outV":"54","_inV":"234","_label":"followed_by"},{"weight":3,"_id":"4162","_type":"edge","_outV":"54","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"4163","_type":"edge","_outV":"54","_inV":"207","_label":"followed_by"},{"weight":1,"_id":"4164","_type":"edge","_outV":"54","_inV":"120","_label":"followed_by"},{"weight":17,"_id":"4165","_type":"edge","_outV":"54","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"4166","_type":"edge","_outV":"54","_inV":"21","_label":"followed_by"},{"weight":8,"_id":"4167","_type":"edge","_outV":"54","_inV":"24","_label":"followed_by"},{"weight":17,"_id":"4168","_type":"edge","_outV":"54","_inV":"26","_label":"followed_by"},{"weight":36,"_id":"4169","_type":"edge","_outV":"54","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"417","_type":"edge","_outV":"38","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4170","_type":"edge","_outV":"54","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"4171","_type":"edge","_outV":"54","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4172","_type":"edge","_outV":"54","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"4173","_type":"edge","_outV":"54","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4174","_type":"edge","_outV":"54","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4175","_type":"edge","_outV":"54","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"4176","_type":"edge","_outV":"54","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4177","_type":"edge","_outV":"54","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4178","_type":"edge","_outV":"54","_inV":"25","_label":"followed_by"},{"weight":27,"_id":"4179","_type":"edge","_outV":"54","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"418","_type":"edge","_outV":"38","_inV":"49","_label":"followed_by"},{"weight":18,"_id":"4180","_type":"edge","_outV":"54","_inV":"68","_label":"followed_by"},{"weight":22,"_id":"4181","_type":"edge","_outV":"54","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4182","_type":"edge","_outV":"54","_inV":"3","_label":"followed_by"},{"weight":21,"_id":"4183","_type":"edge","_outV":"54","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4184","_type":"edge","_outV":"54","_inV":"85","_label":"followed_by"},{"weight":11,"_id":"4185","_type":"edge","_outV":"54","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4186","_type":"edge","_outV":"54","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"4187","_type":"edge","_outV":"54","_inV":"196","_label":"followed_by"},{"weight":11,"_id":"4188","_type":"edge","_outV":"54","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4189","_type":"edge","_outV":"54","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"419","_type":"edge","_outV":"38","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"4190","_type":"edge","_outV":"54","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"4191","_type":"edge","_outV":"54","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"4192","_type":"edge","_outV":"54","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"4193","_type":"edge","_outV":"54","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"4194","_type":"edge","_outV":"54","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"4195","_type":"edge","_outV":"54","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"4196","_type":"edge","_outV":"54","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4197","_type":"edge","_outV":"54","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"4198","_type":"edge","_outV":"54","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"4199","_type":"edge","_outV":"54","_inV":"88","_label":"followed_by"},{"weight":5,"_id":"42","_type":"edge","_outV":"46","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"420","_type":"edge","_outV":"38","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4200","_type":"edge","_outV":"54","_inV":"104","_label":"followed_by"},{"weight":7,"_id":"4201","_type":"edge","_outV":"54","_inV":"64","_label":"followed_by"},{"weight":9,"_id":"4202","_type":"edge","_outV":"54","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4203","_type":"edge","_outV":"54","_inV":"126","_label":"followed_by"},{"weight":2,"_id":"4204","_type":"edge","_outV":"54","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4205","_type":"edge","_outV":"54","_inV":"223","_label":"followed_by"},{"weight":5,"_id":"4206","_type":"edge","_outV":"54","_inV":"117","_label":"followed_by"},{"weight":4,"_id":"4207","_type":"edge","_outV":"54","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4208","_type":"edge","_outV":"54","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4209","_type":"edge","_outV":"54","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"421","_type":"edge","_outV":"38","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"4210","_type":"edge","_outV":"54","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4211","_type":"edge","_outV":"54","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"4212","_type":"edge","_outV":"54","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"4213","_type":"edge","_outV":"54","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"4214","_type":"edge","_outV":"54","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4215","_type":"edge","_outV":"54","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"4216","_type":"edge","_outV":"54","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"4217","_type":"edge","_outV":"54","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4218","_type":"edge","_outV":"54","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"4219","_type":"edge","_outV":"54","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"422","_type":"edge","_outV":"38","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4220","_type":"edge","_outV":"54","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"4221","_type":"edge","_outV":"54","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4222","_type":"edge","_outV":"54","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4223","_type":"edge","_outV":"324","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4224","_type":"edge","_outV":"325","_inV":"326","_label":"followed_by"},{"weight":1,"_id":"4225","_type":"edge","_outV":"317","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4226","_type":"edge","_outV":"52","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"4227","_type":"edge","_outV":"52","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4228","_type":"edge","_outV":"52","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"4229","_type":"edge","_outV":"52","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"423","_type":"edge","_outV":"38","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"4230","_type":"edge","_outV":"52","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4231","_type":"edge","_outV":"52","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4232","_type":"edge","_outV":"52","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4233","_type":"edge","_outV":"52","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4234","_type":"edge","_outV":"52","_inV":"23","_label":"followed_by"},{"weight":13,"_id":"4235","_type":"edge","_outV":"10","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"4236","_type":"edge","_outV":"10","_inV":"27","_label":"followed_by"},{"weight":11,"_id":"4237","_type":"edge","_outV":"10","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"4238","_type":"edge","_outV":"10","_inV":"80","_label":"followed_by"},{"weight":9,"_id":"4239","_type":"edge","_outV":"10","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"424","_type":"edge","_outV":"38","_inV":"12","_label":"followed_by"},{"weight":21,"_id":"4240","_type":"edge","_outV":"10","_inV":"100","_label":"followed_by"},{"weight":5,"_id":"4241","_type":"edge","_outV":"10","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"4242","_type":"edge","_outV":"10","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"4243","_type":"edge","_outV":"10","_inV":"48","_label":"followed_by"},{"weight":13,"_id":"4244","_type":"edge","_outV":"10","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"4245","_type":"edge","_outV":"10","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"4246","_type":"edge","_outV":"10","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4247","_type":"edge","_outV":"10","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4248","_type":"edge","_outV":"10","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"4249","_type":"edge","_outV":"10","_inV":"235","_label":"followed_by"},{"weight":2,"_id":"425","_type":"edge","_outV":"38","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4250","_type":"edge","_outV":"10","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"4251","_type":"edge","_outV":"10","_inV":"252","_label":"followed_by"},{"weight":3,"_id":"4252","_type":"edge","_outV":"10","_inV":"89","_label":"followed_by"},{"weight":12,"_id":"4253","_type":"edge","_outV":"10","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"4254","_type":"edge","_outV":"10","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4255","_type":"edge","_outV":"10","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4256","_type":"edge","_outV":"10","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4257","_type":"edge","_outV":"10","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4258","_type":"edge","_outV":"10","_inV":"160","_label":"followed_by"},{"weight":10,"_id":"4259","_type":"edge","_outV":"10","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"426","_type":"edge","_outV":"38","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"4260","_type":"edge","_outV":"10","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"4261","_type":"edge","_outV":"10","_inV":"202","_label":"followed_by"},{"weight":5,"_id":"4262","_type":"edge","_outV":"10","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4263","_type":"edge","_outV":"10","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4264","_type":"edge","_outV":"10","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"4265","_type":"edge","_outV":"10","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4266","_type":"edge","_outV":"10","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"4267","_type":"edge","_outV":"10","_inV":"69","_label":"followed_by"},{"weight":8,"_id":"4268","_type":"edge","_outV":"10","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"4269","_type":"edge","_outV":"10","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"427","_type":"edge","_outV":"38","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4270","_type":"edge","_outV":"10","_inV":"154","_label":"followed_by"},{"weight":7,"_id":"4271","_type":"edge","_outV":"10","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"4272","_type":"edge","_outV":"10","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4273","_type":"edge","_outV":"10","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"4274","_type":"edge","_outV":"10","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"4275","_type":"edge","_outV":"10","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"4276","_type":"edge","_outV":"10","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4277","_type":"edge","_outV":"10","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4278","_type":"edge","_outV":"10","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4279","_type":"edge","_outV":"10","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"428","_type":"edge","_outV":"38","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"4280","_type":"edge","_outV":"10","_inV":"152","_label":"followed_by"},{"weight":6,"_id":"4281","_type":"edge","_outV":"10","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"4282","_type":"edge","_outV":"10","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"4283","_type":"edge","_outV":"10","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4284","_type":"edge","_outV":"10","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4285","_type":"edge","_outV":"10","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"4286","_type":"edge","_outV":"10","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"4287","_type":"edge","_outV":"10","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"4288","_type":"edge","_outV":"10","_inV":"108","_label":"followed_by"},{"weight":4,"_id":"4289","_type":"edge","_outV":"10","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"429","_type":"edge","_outV":"38","_inV":"112","_label":"followed_by"},{"weight":5,"_id":"4290","_type":"edge","_outV":"10","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"4291","_type":"edge","_outV":"10","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4292","_type":"edge","_outV":"10","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"4293","_type":"edge","_outV":"10","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4294","_type":"edge","_outV":"10","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4295","_type":"edge","_outV":"135","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"4296","_type":"edge","_outV":"135","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"4297","_type":"edge","_outV":"135","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4298","_type":"edge","_outV":"135","_inV":"25","_label":"followed_by"},{"weight":15,"_id":"4299","_type":"edge","_outV":"110","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"43","_type":"edge","_outV":"46","_inV":"47","_label":"followed_by"},{"weight":4,"_id":"430","_type":"edge","_outV":"38","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4300","_type":"edge","_outV":"110","_inV":"5","_label":"followed_by"},{"weight":7,"_id":"4301","_type":"edge","_outV":"110","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"4302","_type":"edge","_outV":"110","_inV":"76","_label":"followed_by"},{"weight":5,"_id":"4303","_type":"edge","_outV":"110","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4304","_type":"edge","_outV":"110","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4305","_type":"edge","_outV":"110","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"4306","_type":"edge","_outV":"110","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"4307","_type":"edge","_outV":"110","_inV":"179","_label":"followed_by"},{"weight":5,"_id":"4308","_type":"edge","_outV":"110","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"4309","_type":"edge","_outV":"110","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"431","_type":"edge","_outV":"38","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"4310","_type":"edge","_outV":"110","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4311","_type":"edge","_outV":"110","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4312","_type":"edge","_outV":"110","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4313","_type":"edge","_outV":"110","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4314","_type":"edge","_outV":"110","_inV":"147","_label":"followed_by"},{"weight":1,"_id":"4315","_type":"edge","_outV":"110","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4316","_type":"edge","_outV":"110","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"4317","_type":"edge","_outV":"110","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4318","_type":"edge","_outV":"110","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"4319","_type":"edge","_outV":"110","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"432","_type":"edge","_outV":"38","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"4320","_type":"edge","_outV":"110","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4321","_type":"edge","_outV":"110","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"4322","_type":"edge","_outV":"110","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4323","_type":"edge","_outV":"110","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4324","_type":"edge","_outV":"110","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4325","_type":"edge","_outV":"110","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4326","_type":"edge","_outV":"110","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"4327","_type":"edge","_outV":"110","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4328","_type":"edge","_outV":"110","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4329","_type":"edge","_outV":"110","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"433","_type":"edge","_outV":"38","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4330","_type":"edge","_outV":"110","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"4331","_type":"edge","_outV":"110","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"4332","_type":"edge","_outV":"62","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4333","_type":"edge","_outV":"62","_inV":"134","_label":"followed_by"},{"weight":3,"_id":"4334","_type":"edge","_outV":"62","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4335","_type":"edge","_outV":"62","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"4336","_type":"edge","_outV":"62","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"4337","_type":"edge","_outV":"62","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4338","_type":"edge","_outV":"62","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4339","_type":"edge","_outV":"62","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"434","_type":"edge","_outV":"38","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"4340","_type":"edge","_outV":"62","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"4341","_type":"edge","_outV":"62","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"4342","_type":"edge","_outV":"62","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4343","_type":"edge","_outV":"62","_inV":"127","_label":"followed_by"},{"weight":12,"_id":"4344","_type":"edge","_outV":"62","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4345","_type":"edge","_outV":"62","_inV":"181","_label":"followed_by"},{"weight":8,"_id":"4346","_type":"edge","_outV":"62","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"4347","_type":"edge","_outV":"62","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4348","_type":"edge","_outV":"62","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4349","_type":"edge","_outV":"62","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"435","_type":"edge","_outV":"38","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4350","_type":"edge","_outV":"62","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"4351","_type":"edge","_outV":"62","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"4352","_type":"edge","_outV":"62","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"4353","_type":"edge","_outV":"62","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"4354","_type":"edge","_outV":"62","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"4355","_type":"edge","_outV":"62","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4356","_type":"edge","_outV":"62","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"4357","_type":"edge","_outV":"62","_inV":"64","_label":"followed_by"},{"weight":11,"_id":"4358","_type":"edge","_outV":"62","_inV":"88","_label":"followed_by"},{"weight":5,"_id":"4359","_type":"edge","_outV":"62","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"436","_type":"edge","_outV":"38","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4360","_type":"edge","_outV":"62","_inV":"18","_label":"followed_by"},{"weight":6,"_id":"4361","_type":"edge","_outV":"62","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4362","_type":"edge","_outV":"62","_inV":"80","_label":"followed_by"},{"weight":5,"_id":"4363","_type":"edge","_outV":"62","_inV":"76","_label":"followed_by"},{"weight":16,"_id":"4364","_type":"edge","_outV":"62","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4365","_type":"edge","_outV":"62","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4366","_type":"edge","_outV":"62","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4367","_type":"edge","_outV":"62","_inV":"69","_label":"followed_by"},{"weight":8,"_id":"4368","_type":"edge","_outV":"62","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"4369","_type":"edge","_outV":"62","_inV":"203","_label":"followed_by"},{"weight":1,"_id":"437","_type":"edge","_outV":"38","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"4370","_type":"edge","_outV":"62","_inV":"223","_label":"followed_by"},{"weight":8,"_id":"4371","_type":"edge","_outV":"62","_inV":"36","_label":"followed_by"},{"weight":4,"_id":"4372","_type":"edge","_outV":"62","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4373","_type":"edge","_outV":"62","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"4374","_type":"edge","_outV":"62","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"4375","_type":"edge","_outV":"62","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"4376","_type":"edge","_outV":"62","_inV":"257","_label":"followed_by"},{"weight":3,"_id":"4377","_type":"edge","_outV":"62","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4378","_type":"edge","_outV":"62","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"4379","_type":"edge","_outV":"62","_inV":"77","_label":"followed_by"},{"weight":7,"_id":"438","_type":"edge","_outV":"38","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4380","_type":"edge","_outV":"62","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4381","_type":"edge","_outV":"62","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"4382","_type":"edge","_outV":"62","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4383","_type":"edge","_outV":"62","_inV":"1","_label":"followed_by"},{"weight":5,"_id":"4384","_type":"edge","_outV":"62","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4385","_type":"edge","_outV":"62","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4386","_type":"edge","_outV":"62","_inV":"292","_label":"followed_by"},{"weight":2,"_id":"4387","_type":"edge","_outV":"62","_inV":"28","_label":"followed_by"},{"weight":3,"_id":"4388","_type":"edge","_outV":"62","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4389","_type":"edge","_outV":"62","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"439","_type":"edge","_outV":"38","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"4390","_type":"edge","_outV":"40","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4391","_type":"edge","_outV":"40","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"4392","_type":"edge","_outV":"40","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"4393","_type":"edge","_outV":"40","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"4394","_type":"edge","_outV":"40","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"4395","_type":"edge","_outV":"40","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"4396","_type":"edge","_outV":"40","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4397","_type":"edge","_outV":"40","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"4398","_type":"edge","_outV":"40","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"4399","_type":"edge","_outV":"40","_inV":"192","_label":"followed_by"},{"weight":2,"_id":"44","_type":"edge","_outV":"46","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"440","_type":"edge","_outV":"38","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"4400","_type":"edge","_outV":"40","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"4401","_type":"edge","_outV":"40","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4402","_type":"edge","_outV":"40","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"4403","_type":"edge","_outV":"40","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4404","_type":"edge","_outV":"40","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4405","_type":"edge","_outV":"40","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4406","_type":"edge","_outV":"40","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"4407","_type":"edge","_outV":"271","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4408","_type":"edge","_outV":"271","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"4409","_type":"edge","_outV":"271","_inV":"309","_label":"followed_by"},{"weight":3,"_id":"441","_type":"edge","_outV":"38","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"4410","_type":"edge","_outV":"327","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4411","_type":"edge","_outV":"327","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4412","_type":"edge","_outV":"327","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"4413","_type":"edge","_outV":"198","_inV":"170","_label":"followed_by"},{"weight":6,"_id":"4414","_type":"edge","_outV":"198","_inV":"224","_label":"followed_by"},{"weight":2,"_id":"4415","_type":"edge","_outV":"198","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4416","_type":"edge","_outV":"198","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4417","_type":"edge","_outV":"198","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4418","_type":"edge","_outV":"198","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"4419","_type":"edge","_outV":"198","_inV":"273","_label":"followed_by"},{"weight":2,"_id":"442","_type":"edge","_outV":"38","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"4420","_type":"edge","_outV":"198","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4421","_type":"edge","_outV":"198","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"4422","_type":"edge","_outV":"198","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"4423","_type":"edge","_outV":"212","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4424","_type":"edge","_outV":"212","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4425","_type":"edge","_outV":"212","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4426","_type":"edge","_outV":"212","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4427","_type":"edge","_outV":"212","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4428","_type":"edge","_outV":"299","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"4429","_type":"edge","_outV":"299","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"443","_type":"edge","_outV":"38","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4430","_type":"edge","_outV":"299","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4431","_type":"edge","_outV":"308","_inV":"295","_label":"followed_by"},{"weight":1,"_id":"4432","_type":"edge","_outV":"308","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4433","_type":"edge","_outV":"302","_inV":"328","_label":"followed_by"},{"weight":1,"_id":"4434","_type":"edge","_outV":"302","_inV":"308","_label":"followed_by"},{"weight":1,"_id":"4435","_type":"edge","_outV":"113","_inV":"225","_label":"followed_by"},{"weight":19,"_id":"4436","_type":"edge","_outV":"113","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"4437","_type":"edge","_outV":"113","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4438","_type":"edge","_outV":"113","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"4439","_type":"edge","_outV":"113","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"444","_type":"edge","_outV":"38","_inV":"189","_label":"followed_by"},{"weight":3,"_id":"4440","_type":"edge","_outV":"113","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"4441","_type":"edge","_outV":"113","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4442","_type":"edge","_outV":"113","_inV":"127","_label":"followed_by"},{"weight":4,"_id":"4443","_type":"edge","_outV":"113","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4444","_type":"edge","_outV":"113","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"4445","_type":"edge","_outV":"113","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"4446","_type":"edge","_outV":"113","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4447","_type":"edge","_outV":"113","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"4448","_type":"edge","_outV":"113","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4449","_type":"edge","_outV":"113","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"445","_type":"edge","_outV":"38","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"4450","_type":"edge","_outV":"113","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4451","_type":"edge","_outV":"113","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4452","_type":"edge","_outV":"163","_inV":"161","_label":"followed_by"},{"weight":1,"_id":"4453","_type":"edge","_outV":"163","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4454","_type":"edge","_outV":"163","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4455","_type":"edge","_outV":"163","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"4456","_type":"edge","_outV":"329","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"4457","_type":"edge","_outV":"272","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4458","_type":"edge","_outV":"272","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4459","_type":"edge","_outV":"272","_inV":"48","_label":"followed_by"},{"weight":7,"_id":"446","_type":"edge","_outV":"38","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4460","_type":"edge","_outV":"272","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4461","_type":"edge","_outV":"311","_inV":"249","_label":"followed_by"},{"weight":2,"_id":"4462","_type":"edge","_outV":"202","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"4463","_type":"edge","_outV":"202","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4464","_type":"edge","_outV":"202","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"4465","_type":"edge","_outV":"202","_inV":"22","_label":"followed_by"},{"weight":5,"_id":"4466","_type":"edge","_outV":"202","_inV":"24","_label":"followed_by"},{"weight":6,"_id":"4467","_type":"edge","_outV":"202","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"4468","_type":"edge","_outV":"202","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4469","_type":"edge","_outV":"202","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"447","_type":"edge","_outV":"38","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"4470","_type":"edge","_outV":"202","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4471","_type":"edge","_outV":"202","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4472","_type":"edge","_outV":"202","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4473","_type":"edge","_outV":"202","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4474","_type":"edge","_outV":"202","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4475","_type":"edge","_outV":"202","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"4476","_type":"edge","_outV":"202","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4477","_type":"edge","_outV":"202","_inV":"290","_label":"followed_by"},{"weight":1,"_id":"4478","_type":"edge","_outV":"202","_inV":"56","_label":"followed_by"},{"weight":10,"_id":"4479","_type":"edge","_outV":"202","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"448","_type":"edge","_outV":"38","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"4480","_type":"edge","_outV":"202","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4481","_type":"edge","_outV":"202","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4482","_type":"edge","_outV":"202","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4483","_type":"edge","_outV":"202","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"4484","_type":"edge","_outV":"202","_inV":"42","_label":"followed_by"},{"weight":4,"_id":"4485","_type":"edge","_outV":"202","_inV":"79","_label":"followed_by"},{"weight":4,"_id":"4486","_type":"edge","_outV":"202","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4487","_type":"edge","_outV":"202","_inV":"64","_label":"followed_by"},{"weight":4,"_id":"4488","_type":"edge","_outV":"202","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4489","_type":"edge","_outV":"202","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"449","_type":"edge","_outV":"38","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4490","_type":"edge","_outV":"202","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"4491","_type":"edge","_outV":"202","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4492","_type":"edge","_outV":"202","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"4493","_type":"edge","_outV":"202","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4494","_type":"edge","_outV":"202","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"4495","_type":"edge","_outV":"202","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4496","_type":"edge","_outV":"202","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"4497","_type":"edge","_outV":"202","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4498","_type":"edge","_outV":"202","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"4499","_type":"edge","_outV":"202","_inV":"254","_label":"followed_by"},{"weight":3,"_id":"45","_type":"edge","_outV":"46","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"450","_type":"edge","_outV":"38","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"4500","_type":"edge","_outV":"202","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4501","_type":"edge","_outV":"202","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4502","_type":"edge","_outV":"202","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4503","_type":"edge","_outV":"202","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"4504","_type":"edge","_outV":"202","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4505","_type":"edge","_outV":"202","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4506","_type":"edge","_outV":"202","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4507","_type":"edge","_outV":"244","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4508","_type":"edge","_outV":"244","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4509","_type":"edge","_outV":"244","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"451","_type":"edge","_outV":"38","_inV":"191","_label":"followed_by"},{"weight":5,"_id":"4510","_type":"edge","_outV":"105","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"4511","_type":"edge","_outV":"105","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4512","_type":"edge","_outV":"105","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4513","_type":"edge","_outV":"105","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"4514","_type":"edge","_outV":"105","_inV":"42","_label":"followed_by"},{"weight":10,"_id":"4515","_type":"edge","_outV":"105","_inV":"109","_label":"followed_by"},{"weight":3,"_id":"4516","_type":"edge","_outV":"105","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"4517","_type":"edge","_outV":"105","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"4518","_type":"edge","_outV":"105","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4519","_type":"edge","_outV":"105","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"452","_type":"edge","_outV":"38","_inV":"192","_label":"followed_by"},{"weight":6,"_id":"4520","_type":"edge","_outV":"105","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"4521","_type":"edge","_outV":"105","_inV":"10","_label":"followed_by"},{"weight":12,"_id":"4522","_type":"edge","_outV":"105","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"4523","_type":"edge","_outV":"105","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"4524","_type":"edge","_outV":"105","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4525","_type":"edge","_outV":"105","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"4526","_type":"edge","_outV":"105","_inV":"189","_label":"followed_by"},{"weight":10,"_id":"4527","_type":"edge","_outV":"105","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4528","_type":"edge","_outV":"105","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"4529","_type":"edge","_outV":"105","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"453","_type":"edge","_outV":"38","_inV":"40","_label":"followed_by"},{"weight":2,"_id":"4530","_type":"edge","_outV":"105","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"4531","_type":"edge","_outV":"105","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4532","_type":"edge","_outV":"105","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4533","_type":"edge","_outV":"105","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4534","_type":"edge","_outV":"105","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4535","_type":"edge","_outV":"105","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4536","_type":"edge","_outV":"105","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"4537","_type":"edge","_outV":"105","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4538","_type":"edge","_outV":"105","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4539","_type":"edge","_outV":"105","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"454","_type":"edge","_outV":"38","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"4540","_type":"edge","_outV":"105","_inV":"71","_label":"followed_by"},{"weight":6,"_id":"4541","_type":"edge","_outV":"105","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4542","_type":"edge","_outV":"105","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4543","_type":"edge","_outV":"105","_inV":"269","_label":"followed_by"},{"weight":10,"_id":"4544","_type":"edge","_outV":"105","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4545","_type":"edge","_outV":"105","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"4546","_type":"edge","_outV":"105","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4547","_type":"edge","_outV":"105","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"4548","_type":"edge","_outV":"105","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4549","_type":"edge","_outV":"105","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"455","_type":"edge","_outV":"139","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"4550","_type":"edge","_outV":"105","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4551","_type":"edge","_outV":"105","_inV":"43","_label":"followed_by"},{"weight":3,"_id":"4552","_type":"edge","_outV":"105","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4553","_type":"edge","_outV":"105","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4554","_type":"edge","_outV":"105","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4555","_type":"edge","_outV":"105","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4556","_type":"edge","_outV":"105","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4557","_type":"edge","_outV":"105","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4558","_type":"edge","_outV":"105","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4559","_type":"edge","_outV":"305","_inV":"207","_label":"followed_by"},{"weight":8,"_id":"456","_type":"edge","_outV":"139","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"4560","_type":"edge","_outV":"254","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4561","_type":"edge","_outV":"254","_inV":"173","_label":"followed_by"},{"weight":4,"_id":"4562","_type":"edge","_outV":"254","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4563","_type":"edge","_outV":"254","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4564","_type":"edge","_outV":"254","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"4565","_type":"edge","_outV":"254","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4566","_type":"edge","_outV":"254","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4567","_type":"edge","_outV":"254","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4568","_type":"edge","_outV":"254","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"4569","_type":"edge","_outV":"254","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"457","_type":"edge","_outV":"139","_inV":"28","_label":"followed_by"},{"weight":4,"_id":"4570","_type":"edge","_outV":"254","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4571","_type":"edge","_outV":"254","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"4572","_type":"edge","_outV":"254","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4573","_type":"edge","_outV":"254","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4574","_type":"edge","_outV":"254","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"4575","_type":"edge","_outV":"254","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4576","_type":"edge","_outV":"254","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4577","_type":"edge","_outV":"254","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"4578","_type":"edge","_outV":"254","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4579","_type":"edge","_outV":"254","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"458","_type":"edge","_outV":"139","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"4580","_type":"edge","_outV":"254","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4581","_type":"edge","_outV":"254","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"4582","_type":"edge","_outV":"254","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4583","_type":"edge","_outV":"254","_inV":"26","_label":"followed_by"},{"weight":177,"_id":"4584","_type":"edge","_outV":"85","_inV":"83","_label":"followed_by"},{"weight":66,"_id":"4585","_type":"edge","_outV":"85","_inV":"49","_label":"followed_by"},{"weight":36,"_id":"4586","_type":"edge","_outV":"85","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"4587","_type":"edge","_outV":"85","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"4588","_type":"edge","_outV":"85","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"4589","_type":"edge","_outV":"85","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"459","_type":"edge","_outV":"139","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"4590","_type":"edge","_outV":"85","_inV":"120","_label":"followed_by"},{"weight":33,"_id":"4591","_type":"edge","_outV":"85","_inV":"91","_label":"followed_by"},{"weight":8,"_id":"4592","_type":"edge","_outV":"85","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"4593","_type":"edge","_outV":"85","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4594","_type":"edge","_outV":"85","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4595","_type":"edge","_outV":"85","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"4596","_type":"edge","_outV":"85","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4597","_type":"edge","_outV":"85","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4598","_type":"edge","_outV":"85","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4599","_type":"edge","_outV":"85","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"46","_type":"edge","_outV":"46","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"460","_type":"edge","_outV":"139","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4600","_type":"edge","_outV":"85","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"4601","_type":"edge","_outV":"85","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4602","_type":"edge","_outV":"85","_inV":"134","_label":"followed_by"},{"weight":10,"_id":"4603","_type":"edge","_outV":"85","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"4604","_type":"edge","_outV":"85","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"4605","_type":"edge","_outV":"85","_inV":"33","_label":"followed_by"},{"weight":5,"_id":"4606","_type":"edge","_outV":"85","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4607","_type":"edge","_outV":"85","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"4608","_type":"edge","_outV":"85","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"4609","_type":"edge","_outV":"85","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"461","_type":"edge","_outV":"139","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"4610","_type":"edge","_outV":"85","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4611","_type":"edge","_outV":"85","_inV":"69","_label":"followed_by"},{"weight":4,"_id":"4612","_type":"edge","_outV":"85","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"4613","_type":"edge","_outV":"85","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4614","_type":"edge","_outV":"85","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"4615","_type":"edge","_outV":"85","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4616","_type":"edge","_outV":"85","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4617","_type":"edge","_outV":"85","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4618","_type":"edge","_outV":"85","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4619","_type":"edge","_outV":"85","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"462","_type":"edge","_outV":"139","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"4620","_type":"edge","_outV":"154","_inV":"159","_label":"followed_by"},{"weight":5,"_id":"4621","_type":"edge","_outV":"154","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4622","_type":"edge","_outV":"154","_inV":"15","_label":"followed_by"},{"weight":6,"_id":"4623","_type":"edge","_outV":"154","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"4624","_type":"edge","_outV":"154","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4625","_type":"edge","_outV":"154","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"4626","_type":"edge","_outV":"154","_inV":"101","_label":"followed_by"},{"weight":5,"_id":"4627","_type":"edge","_outV":"154","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4628","_type":"edge","_outV":"154","_inV":"98","_label":"followed_by"},{"weight":11,"_id":"4629","_type":"edge","_outV":"154","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"463","_type":"edge","_outV":"193","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"4630","_type":"edge","_outV":"154","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"4631","_type":"edge","_outV":"154","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4632","_type":"edge","_outV":"154","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4633","_type":"edge","_outV":"154","_inV":"26","_label":"followed_by"},{"weight":26,"_id":"4634","_type":"edge","_outV":"154","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"4635","_type":"edge","_outV":"154","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4636","_type":"edge","_outV":"154","_inV":"129","_label":"followed_by"},{"weight":19,"_id":"4637","_type":"edge","_outV":"154","_inV":"85","_label":"followed_by"},{"weight":11,"_id":"4638","_type":"edge","_outV":"154","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4639","_type":"edge","_outV":"154","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"464","_type":"edge","_outV":"193","_inV":"84","_label":"followed_by"},{"weight":10,"_id":"4640","_type":"edge","_outV":"154","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"4641","_type":"edge","_outV":"154","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4642","_type":"edge","_outV":"154","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"4643","_type":"edge","_outV":"154","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4644","_type":"edge","_outV":"154","_inV":"38","_label":"followed_by"},{"weight":8,"_id":"4645","_type":"edge","_outV":"154","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"4646","_type":"edge","_outV":"154","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4647","_type":"edge","_outV":"154","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4648","_type":"edge","_outV":"154","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4649","_type":"edge","_outV":"154","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"465","_type":"edge","_outV":"193","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"4650","_type":"edge","_outV":"154","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4651","_type":"edge","_outV":"154","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"4652","_type":"edge","_outV":"154","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4653","_type":"edge","_outV":"154","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4654","_type":"edge","_outV":"154","_inV":"27","_label":"followed_by"},{"weight":16,"_id":"4655","_type":"edge","_outV":"154","_inV":"88","_label":"followed_by"},{"weight":13,"_id":"4656","_type":"edge","_outV":"154","_inV":"30","_label":"followed_by"},{"weight":7,"_id":"4657","_type":"edge","_outV":"154","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4658","_type":"edge","_outV":"154","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4659","_type":"edge","_outV":"154","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"466","_type":"edge","_outV":"193","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4660","_type":"edge","_outV":"154","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"4661","_type":"edge","_outV":"154","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4662","_type":"edge","_outV":"154","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"4663","_type":"edge","_outV":"154","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"4664","_type":"edge","_outV":"154","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4665","_type":"edge","_outV":"154","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4666","_type":"edge","_outV":"154","_inV":"239","_label":"followed_by"},{"weight":5,"_id":"4667","_type":"edge","_outV":"154","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4668","_type":"edge","_outV":"154","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4669","_type":"edge","_outV":"154","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"467","_type":"edge","_outV":"194","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4670","_type":"edge","_outV":"154","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4671","_type":"edge","_outV":"154","_inV":"37","_label":"followed_by"},{"weight":17,"_id":"4672","_type":"edge","_outV":"33","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4673","_type":"edge","_outV":"33","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"4674","_type":"edge","_outV":"33","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"4675","_type":"edge","_outV":"33","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"4676","_type":"edge","_outV":"33","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"4677","_type":"edge","_outV":"33","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4678","_type":"edge","_outV":"33","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4679","_type":"edge","_outV":"33","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"468","_type":"edge","_outV":"195","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"4680","_type":"edge","_outV":"33","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"4681","_type":"edge","_outV":"33","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"4682","_type":"edge","_outV":"33","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4683","_type":"edge","_outV":"33","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4684","_type":"edge","_outV":"33","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"4685","_type":"edge","_outV":"33","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"4686","_type":"edge","_outV":"33","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4687","_type":"edge","_outV":"33","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4688","_type":"edge","_outV":"33","_inV":"191","_label":"followed_by"},{"weight":2,"_id":"4689","_type":"edge","_outV":"33","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"469","_type":"edge","_outV":"195","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4690","_type":"edge","_outV":"33","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4691","_type":"edge","_outV":"33","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4692","_type":"edge","_outV":"33","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4693","_type":"edge","_outV":"33","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"4694","_type":"edge","_outV":"33","_inV":"117","_label":"followed_by"},{"weight":5,"_id":"4695","_type":"edge","_outV":"111","_inV":"98","_label":"followed_by"},{"weight":10,"_id":"4696","_type":"edge","_outV":"111","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4697","_type":"edge","_outV":"111","_inV":"198","_label":"followed_by"},{"weight":3,"_id":"4698","_type":"edge","_outV":"111","_inV":"273","_label":"followed_by"},{"weight":2,"_id":"4699","_type":"edge","_outV":"111","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"47","_type":"edge","_outV":"46","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"470","_type":"edge","_outV":"195","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"4700","_type":"edge","_outV":"111","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"4701","_type":"edge","_outV":"111","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"4702","_type":"edge","_outV":"111","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"4703","_type":"edge","_outV":"111","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"4704","_type":"edge","_outV":"111","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4705","_type":"edge","_outV":"111","_inV":"8","_label":"followed_by"},{"weight":3,"_id":"4706","_type":"edge","_outV":"111","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4707","_type":"edge","_outV":"111","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4708","_type":"edge","_outV":"111","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4709","_type":"edge","_outV":"111","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"471","_type":"edge","_outV":"98","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4710","_type":"edge","_outV":"111","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4711","_type":"edge","_outV":"111","_inV":"42","_label":"followed_by"},{"weight":45,"_id":"4712","_type":"edge","_outV":"186","_inV":"134","_label":"followed_by"},{"weight":31,"_id":"4713","_type":"edge","_outV":"186","_inV":"165","_label":"followed_by"},{"weight":55,"_id":"4714","_type":"edge","_outV":"186","_inV":"148","_label":"followed_by"},{"weight":6,"_id":"4715","_type":"edge","_outV":"186","_inV":"89","_label":"followed_by"},{"weight":58,"_id":"4716","_type":"edge","_outV":"186","_inV":"70","_label":"followed_by"},{"weight":58,"_id":"4717","_type":"edge","_outV":"186","_inV":"201","_label":"followed_by"},{"weight":6,"_id":"4718","_type":"edge","_outV":"186","_inV":"5","_label":"followed_by"},{"weight":6,"_id":"4719","_type":"edge","_outV":"186","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"472","_type":"edge","_outV":"98","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"4720","_type":"edge","_outV":"186","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"4721","_type":"edge","_outV":"186","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4722","_type":"edge","_outV":"186","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4723","_type":"edge","_outV":"186","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4724","_type":"edge","_outV":"186","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"4725","_type":"edge","_outV":"186","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4726","_type":"edge","_outV":"186","_inV":"139","_label":"followed_by"},{"weight":2,"_id":"4727","_type":"edge","_outV":"186","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4728","_type":"edge","_outV":"186","_inV":"29","_label":"followed_by"},{"weight":6,"_id":"4729","_type":"edge","_outV":"186","_inV":"149","_label":"followed_by"},{"weight":6,"_id":"473","_type":"edge","_outV":"98","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"4730","_type":"edge","_outV":"186","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"4731","_type":"edge","_outV":"186","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4732","_type":"edge","_outV":"186","_inV":"122","_label":"followed_by"},{"weight":8,"_id":"4733","_type":"edge","_outV":"186","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"4734","_type":"edge","_outV":"186","_inV":"41","_label":"followed_by"},{"weight":4,"_id":"4735","_type":"edge","_outV":"186","_inV":"28","_label":"followed_by"},{"weight":8,"_id":"4736","_type":"edge","_outV":"186","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"4737","_type":"edge","_outV":"186","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"4738","_type":"edge","_outV":"186","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"4739","_type":"edge","_outV":"186","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"474","_type":"edge","_outV":"98","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4740","_type":"edge","_outV":"186","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"4741","_type":"edge","_outV":"186","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"4742","_type":"edge","_outV":"186","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"4743","_type":"edge","_outV":"186","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"4744","_type":"edge","_outV":"186","_inV":"176","_label":"followed_by"},{"weight":4,"_id":"4745","_type":"edge","_outV":"294","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4746","_type":"edge","_outV":"294","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4747","_type":"edge","_outV":"241","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"4748","_type":"edge","_outV":"37","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4749","_type":"edge","_outV":"37","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"475","_type":"edge","_outV":"98","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4750","_type":"edge","_outV":"37","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4751","_type":"edge","_outV":"37","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"4752","_type":"edge","_outV":"37","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4753","_type":"edge","_outV":"37","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"4754","_type":"edge","_outV":"37","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4755","_type":"edge","_outV":"37","_inV":"36","_label":"followed_by"},{"weight":5,"_id":"4756","_type":"edge","_outV":"37","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4757","_type":"edge","_outV":"37","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"4758","_type":"edge","_outV":"37","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4759","_type":"edge","_outV":"37","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"476","_type":"edge","_outV":"98","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4760","_type":"edge","_outV":"37","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"4761","_type":"edge","_outV":"37","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"4762","_type":"edge","_outV":"37","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"4763","_type":"edge","_outV":"37","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"4764","_type":"edge","_outV":"37","_inV":"91","_label":"followed_by"},{"weight":30,"_id":"4765","_type":"edge","_outV":"114","_inV":"26","_label":"followed_by"},{"weight":9,"_id":"4766","_type":"edge","_outV":"114","_inV":"122","_label":"followed_by"},{"weight":13,"_id":"4767","_type":"edge","_outV":"114","_inV":"74","_label":"followed_by"},{"weight":6,"_id":"4768","_type":"edge","_outV":"114","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4769","_type":"edge","_outV":"114","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"477","_type":"edge","_outV":"98","_inV":"22","_label":"followed_by"},{"weight":4,"_id":"4770","_type":"edge","_outV":"114","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"4771","_type":"edge","_outV":"114","_inV":"13","_label":"followed_by"},{"weight":25,"_id":"4772","_type":"edge","_outV":"114","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"4773","_type":"edge","_outV":"114","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"4774","_type":"edge","_outV":"114","_inV":"252","_label":"followed_by"},{"weight":5,"_id":"4775","_type":"edge","_outV":"114","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4776","_type":"edge","_outV":"114","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4777","_type":"edge","_outV":"114","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4778","_type":"edge","_outV":"114","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"4779","_type":"edge","_outV":"114","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"478","_type":"edge","_outV":"98","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4780","_type":"edge","_outV":"114","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"4781","_type":"edge","_outV":"114","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4782","_type":"edge","_outV":"114","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4783","_type":"edge","_outV":"114","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"4784","_type":"edge","_outV":"114","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4785","_type":"edge","_outV":"114","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4786","_type":"edge","_outV":"114","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4787","_type":"edge","_outV":"114","_inV":"159","_label":"followed_by"},{"weight":2,"_id":"4788","_type":"edge","_outV":"114","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"4789","_type":"edge","_outV":"114","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"479","_type":"edge","_outV":"98","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"4790","_type":"edge","_outV":"114","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4791","_type":"edge","_outV":"114","_inV":"134","_label":"followed_by"},{"weight":5,"_id":"4792","_type":"edge","_outV":"114","_inV":"32","_label":"followed_by"},{"weight":17,"_id":"4793","_type":"edge","_outV":"114","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4794","_type":"edge","_outV":"114","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"4795","_type":"edge","_outV":"114","_inV":"215","_label":"followed_by"},{"weight":8,"_id":"4796","_type":"edge","_outV":"114","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"4797","_type":"edge","_outV":"114","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4798","_type":"edge","_outV":"114","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4799","_type":"edge","_outV":"114","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"48","_type":"edge","_outV":"46","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"480","_type":"edge","_outV":"98","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"4800","_type":"edge","_outV":"114","_inV":"59","_label":"followed_by"},{"weight":10,"_id":"4801","_type":"edge","_outV":"114","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"4802","_type":"edge","_outV":"114","_inV":"72","_label":"followed_by"},{"weight":8,"_id":"4803","_type":"edge","_outV":"114","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"4804","_type":"edge","_outV":"114","_inV":"111","_label":"followed_by"},{"weight":4,"_id":"4805","_type":"edge","_outV":"114","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"4806","_type":"edge","_outV":"114","_inV":"80","_label":"followed_by"},{"weight":14,"_id":"4807","_type":"edge","_outV":"114","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"4808","_type":"edge","_outV":"114","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"4809","_type":"edge","_outV":"114","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"481","_type":"edge","_outV":"98","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4810","_type":"edge","_outV":"114","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"4811","_type":"edge","_outV":"114","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"4812","_type":"edge","_outV":"114","_inV":"211","_label":"followed_by"},{"weight":11,"_id":"4813","_type":"edge","_outV":"114","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"4814","_type":"edge","_outV":"114","_inV":"162","_label":"followed_by"},{"weight":7,"_id":"4815","_type":"edge","_outV":"114","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"4816","_type":"edge","_outV":"114","_inV":"104","_label":"followed_by"},{"weight":9,"_id":"4817","_type":"edge","_outV":"114","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"4818","_type":"edge","_outV":"114","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4819","_type":"edge","_outV":"114","_inV":"242","_label":"followed_by"},{"weight":8,"_id":"482","_type":"edge","_outV":"98","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4820","_type":"edge","_outV":"114","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"4821","_type":"edge","_outV":"114","_inV":"171","_label":"followed_by"},{"weight":2,"_id":"4822","_type":"edge","_outV":"114","_inV":"213","_label":"followed_by"},{"weight":2,"_id":"4823","_type":"edge","_outV":"114","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4824","_type":"edge","_outV":"114","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4825","_type":"edge","_outV":"114","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"4826","_type":"edge","_outV":"114","_inV":"330","_label":"followed_by"},{"weight":3,"_id":"4827","_type":"edge","_outV":"114","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"4828","_type":"edge","_outV":"114","_inV":"90","_label":"followed_by"},{"weight":6,"_id":"4829","_type":"edge","_outV":"114","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"483","_type":"edge","_outV":"98","_inV":"39","_label":"followed_by"},{"weight":5,"_id":"4830","_type":"edge","_outV":"114","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4831","_type":"edge","_outV":"114","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"4832","_type":"edge","_outV":"114","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4833","_type":"edge","_outV":"114","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4834","_type":"edge","_outV":"114","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"4835","_type":"edge","_outV":"114","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"4836","_type":"edge","_outV":"114","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"4837","_type":"edge","_outV":"114","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4838","_type":"edge","_outV":"114","_inV":"185","_label":"followed_by"},{"weight":2,"_id":"4839","_type":"edge","_outV":"114","_inV":"236","_label":"followed_by"},{"weight":2,"_id":"484","_type":"edge","_outV":"98","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"4840","_type":"edge","_outV":"114","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"4841","_type":"edge","_outV":"114","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"4842","_type":"edge","_outV":"114","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"4843","_type":"edge","_outV":"114","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4844","_type":"edge","_outV":"119","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4845","_type":"edge","_outV":"119","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4846","_type":"edge","_outV":"119","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4847","_type":"edge","_outV":"119","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4848","_type":"edge","_outV":"119","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"4849","_type":"edge","_outV":"119","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"485","_type":"edge","_outV":"98","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4850","_type":"edge","_outV":"119","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4851","_type":"edge","_outV":"119","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4852","_type":"edge","_outV":"119","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"4853","_type":"edge","_outV":"35","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"4854","_type":"edge","_outV":"35","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"4855","_type":"edge","_outV":"35","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4856","_type":"edge","_outV":"35","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"4857","_type":"edge","_outV":"35","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4858","_type":"edge","_outV":"35","_inV":"41","_label":"followed_by"},{"weight":4,"_id":"4859","_type":"edge","_outV":"35","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"486","_type":"edge","_outV":"98","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4860","_type":"edge","_outV":"35","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4861","_type":"edge","_outV":"35","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4862","_type":"edge","_outV":"35","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4863","_type":"edge","_outV":"35","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"4864","_type":"edge","_outV":"35","_inV":"92","_label":"followed_by"},{"weight":4,"_id":"4865","_type":"edge","_outV":"35","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4866","_type":"edge","_outV":"35","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4867","_type":"edge","_outV":"35","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"4868","_type":"edge","_outV":"35","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"4869","_type":"edge","_outV":"35","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"487","_type":"edge","_outV":"98","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"4870","_type":"edge","_outV":"100","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"4871","_type":"edge","_outV":"100","_inV":"39","_label":"followed_by"},{"weight":9,"_id":"4872","_type":"edge","_outV":"100","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"4873","_type":"edge","_outV":"100","_inV":"46","_label":"followed_by"},{"weight":6,"_id":"4874","_type":"edge","_outV":"100","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4875","_type":"edge","_outV":"100","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4876","_type":"edge","_outV":"100","_inV":"11","_label":"followed_by"},{"weight":8,"_id":"4877","_type":"edge","_outV":"100","_inV":"50","_label":"followed_by"},{"weight":19,"_id":"4878","_type":"edge","_outV":"100","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4879","_type":"edge","_outV":"100","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"488","_type":"edge","_outV":"98","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4880","_type":"edge","_outV":"100","_inV":"19","_label":"followed_by"},{"weight":20,"_id":"4881","_type":"edge","_outV":"100","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4882","_type":"edge","_outV":"100","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4883","_type":"edge","_outV":"100","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"4884","_type":"edge","_outV":"100","_inV":"54","_label":"followed_by"},{"weight":11,"_id":"4885","_type":"edge","_outV":"100","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4886","_type":"edge","_outV":"100","_inV":"22","_label":"followed_by"},{"weight":15,"_id":"4887","_type":"edge","_outV":"100","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4888","_type":"edge","_outV":"100","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"4889","_type":"edge","_outV":"100","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"489","_type":"edge","_outV":"98","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4890","_type":"edge","_outV":"100","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4891","_type":"edge","_outV":"100","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"4892","_type":"edge","_outV":"100","_inV":"26","_label":"followed_by"},{"weight":7,"_id":"4893","_type":"edge","_outV":"100","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4894","_type":"edge","_outV":"100","_inV":"20","_label":"followed_by"},{"weight":14,"_id":"4895","_type":"edge","_outV":"100","_inV":"42","_label":"followed_by"},{"weight":15,"_id":"4896","_type":"edge","_outV":"100","_inV":"101","_label":"followed_by"},{"weight":13,"_id":"4897","_type":"edge","_outV":"100","_inV":"121","_label":"followed_by"},{"weight":21,"_id":"4898","_type":"edge","_outV":"100","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4899","_type":"edge","_outV":"100","_inV":"76","_label":"followed_by"},{"weight":10,"_id":"49","_type":"edge","_outV":"46","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"490","_type":"edge","_outV":"98","_inV":"110","_label":"followed_by"},{"weight":11,"_id":"4900","_type":"edge","_outV":"100","_inV":"32","_label":"followed_by"},{"weight":10,"_id":"4901","_type":"edge","_outV":"100","_inV":"112","_label":"followed_by"},{"weight":12,"_id":"4902","_type":"edge","_outV":"100","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"4903","_type":"edge","_outV":"100","_inV":"120","_label":"followed_by"},{"weight":8,"_id":"4904","_type":"edge","_outV":"100","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4905","_type":"edge","_outV":"100","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"4906","_type":"edge","_outV":"100","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4907","_type":"edge","_outV":"100","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"4908","_type":"edge","_outV":"100","_inV":"189","_label":"followed_by"},{"weight":4,"_id":"4909","_type":"edge","_outV":"100","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"491","_type":"edge","_outV":"98","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4910","_type":"edge","_outV":"100","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4911","_type":"edge","_outV":"100","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4912","_type":"edge","_outV":"100","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"4913","_type":"edge","_outV":"100","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4914","_type":"edge","_outV":"100","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4915","_type":"edge","_outV":"100","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"4916","_type":"edge","_outV":"100","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4917","_type":"edge","_outV":"100","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4918","_type":"edge","_outV":"100","_inV":"163","_label":"followed_by"},{"weight":2,"_id":"4919","_type":"edge","_outV":"100","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"492","_type":"edge","_outV":"98","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4920","_type":"edge","_outV":"100","_inV":"114","_label":"followed_by"},{"weight":5,"_id":"4921","_type":"edge","_outV":"100","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4922","_type":"edge","_outV":"100","_inV":"283","_label":"followed_by"},{"weight":8,"_id":"4923","_type":"edge","_outV":"100","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4924","_type":"edge","_outV":"100","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4925","_type":"edge","_outV":"100","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"4926","_type":"edge","_outV":"100","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4927","_type":"edge","_outV":"100","_inV":"167","_label":"followed_by"},{"weight":2,"_id":"4928","_type":"edge","_outV":"100","_inV":"124","_label":"followed_by"},{"weight":3,"_id":"4929","_type":"edge","_outV":"100","_inV":"79","_label":"followed_by"},{"weight":5,"_id":"493","_type":"edge","_outV":"98","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4930","_type":"edge","_outV":"100","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4931","_type":"edge","_outV":"100","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"4932","_type":"edge","_outV":"100","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4933","_type":"edge","_outV":"100","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4934","_type":"edge","_outV":"100","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4935","_type":"edge","_outV":"100","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4936","_type":"edge","_outV":"100","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4937","_type":"edge","_outV":"277","_inV":"3","_label":"followed_by"},{"weight":6,"_id":"4938","_type":"edge","_outV":"86","_inV":"38","_label":"followed_by"},{"weight":5,"_id":"4939","_type":"edge","_outV":"86","_inV":"215","_label":"followed_by"},{"weight":18,"_id":"494","_type":"edge","_outV":"98","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"4940","_type":"edge","_outV":"86","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"4941","_type":"edge","_outV":"86","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4942","_type":"edge","_outV":"86","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"4943","_type":"edge","_outV":"86","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4944","_type":"edge","_outV":"86","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"4945","_type":"edge","_outV":"86","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"4946","_type":"edge","_outV":"86","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4947","_type":"edge","_outV":"86","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4948","_type":"edge","_outV":"86","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"4949","_type":"edge","_outV":"86","_inV":"64","_label":"followed_by"},{"weight":7,"_id":"495","_type":"edge","_outV":"98","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4950","_type":"edge","_outV":"86","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4951","_type":"edge","_outV":"86","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"4952","_type":"edge","_outV":"86","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"4953","_type":"edge","_outV":"86","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"4954","_type":"edge","_outV":"86","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4955","_type":"edge","_outV":"307","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"4956","_type":"edge","_outV":"331","_inV":"309","_label":"followed_by"},{"weight":1,"_id":"4957","_type":"edge","_outV":"332","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"4958","_type":"edge","_outV":"207","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"4959","_type":"edge","_outV":"207","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"496","_type":"edge","_outV":"98","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4960","_type":"edge","_outV":"207","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4961","_type":"edge","_outV":"207","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"4962","_type":"edge","_outV":"207","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"4963","_type":"edge","_outV":"207","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4964","_type":"edge","_outV":"207","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4965","_type":"edge","_outV":"207","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4966","_type":"edge","_outV":"207","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4967","_type":"edge","_outV":"207","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4968","_type":"edge","_outV":"207","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"4969","_type":"edge","_outV":"236","_inV":"9","_label":"followed_by"},{"weight":8,"_id":"497","_type":"edge","_outV":"98","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4970","_type":"edge","_outV":"236","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4971","_type":"edge","_outV":"236","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"4972","_type":"edge","_outV":"236","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"4973","_type":"edge","_outV":"236","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4974","_type":"edge","_outV":"236","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4975","_type":"edge","_outV":"236","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"4976","_type":"edge","_outV":"236","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4977","_type":"edge","_outV":"236","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"4978","_type":"edge","_outV":"236","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4979","_type":"edge","_outV":"236","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"498","_type":"edge","_outV":"98","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4980","_type":"edge","_outV":"236","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"4981","_type":"edge","_outV":"236","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"4982","_type":"edge","_outV":"236","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4983","_type":"edge","_outV":"236","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4984","_type":"edge","_outV":"236","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"4985","_type":"edge","_outV":"30","_inV":"333","_label":"followed_by"},{"weight":2,"_id":"4986","_type":"edge","_outV":"30","_inV":"54","_label":"followed_by"},{"weight":18,"_id":"4987","_type":"edge","_outV":"30","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"4988","_type":"edge","_outV":"30","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4989","_type":"edge","_outV":"30","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"499","_type":"edge","_outV":"98","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"4990","_type":"edge","_outV":"30","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"4991","_type":"edge","_outV":"30","_inV":"63","_label":"followed_by"},{"weight":10,"_id":"4992","_type":"edge","_outV":"30","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"4993","_type":"edge","_outV":"30","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"4994","_type":"edge","_outV":"30","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"4995","_type":"edge","_outV":"30","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"4996","_type":"edge","_outV":"30","_inV":"62","_label":"followed_by"},{"weight":11,"_id":"4997","_type":"edge","_outV":"30","_inV":"104","_label":"followed_by"},{"weight":6,"_id":"4998","_type":"edge","_outV":"30","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"4999","_type":"edge","_outV":"30","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"5","_type":"edge","_outV":"7","_inV":"8","_label":"followed_by"},{"weight":4,"_id":"50","_type":"edge","_outV":"46","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"500","_type":"edge","_outV":"98","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5000","_type":"edge","_outV":"30","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5001","_type":"edge","_outV":"30","_inV":"151","_label":"followed_by"},{"weight":7,"_id":"5002","_type":"edge","_outV":"30","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"5003","_type":"edge","_outV":"30","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5004","_type":"edge","_outV":"30","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"5005","_type":"edge","_outV":"30","_inV":"168","_label":"followed_by"},{"weight":2,"_id":"5006","_type":"edge","_outV":"30","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"5007","_type":"edge","_outV":"30","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"5008","_type":"edge","_outV":"30","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"5009","_type":"edge","_outV":"30","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"501","_type":"edge","_outV":"98","_inV":"197","_label":"followed_by"},{"weight":2,"_id":"5010","_type":"edge","_outV":"30","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"5011","_type":"edge","_outV":"30","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"5012","_type":"edge","_outV":"30","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5013","_type":"edge","_outV":"30","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"5014","_type":"edge","_outV":"30","_inV":"202","_label":"followed_by"},{"weight":6,"_id":"5015","_type":"edge","_outV":"30","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5016","_type":"edge","_outV":"30","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"5017","_type":"edge","_outV":"30","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5018","_type":"edge","_outV":"30","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5019","_type":"edge","_outV":"30","_inV":"191","_label":"followed_by"},{"weight":5,"_id":"502","_type":"edge","_outV":"98","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"5020","_type":"edge","_outV":"30","_inV":"254","_label":"followed_by"},{"weight":4,"_id":"5021","_type":"edge","_outV":"30","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"5022","_type":"edge","_outV":"30","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5023","_type":"edge","_outV":"30","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5024","_type":"edge","_outV":"30","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5025","_type":"edge","_outV":"30","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"5026","_type":"edge","_outV":"30","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"5027","_type":"edge","_outV":"30","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"5028","_type":"edge","_outV":"303","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5029","_type":"edge","_outV":"47","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"503","_type":"edge","_outV":"98","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"5030","_type":"edge","_outV":"47","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5031","_type":"edge","_outV":"47","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5032","_type":"edge","_outV":"47","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5033","_type":"edge","_outV":"47","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5034","_type":"edge","_outV":"47","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5035","_type":"edge","_outV":"47","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5036","_type":"edge","_outV":"47","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"5037","_type":"edge","_outV":"276","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5038","_type":"edge","_outV":"291","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5039","_type":"edge","_outV":"291","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"504","_type":"edge","_outV":"98","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"5040","_type":"edge","_outV":"209","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5041","_type":"edge","_outV":"209","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5042","_type":"edge","_outV":"209","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5043","_type":"edge","_outV":"209","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5044","_type":"edge","_outV":"209","_inV":"149","_label":"followed_by"},{"weight":3,"_id":"5045","_type":"edge","_outV":"209","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5046","_type":"edge","_outV":"209","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5047","_type":"edge","_outV":"209","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"5048","_type":"edge","_outV":"209","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5049","_type":"edge","_outV":"209","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"505","_type":"edge","_outV":"98","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5050","_type":"edge","_outV":"209","_inV":"224","_label":"followed_by"},{"weight":3,"_id":"5051","_type":"edge","_outV":"209","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5052","_type":"edge","_outV":"209","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"5053","_type":"edge","_outV":"209","_inV":"219","_label":"followed_by"},{"weight":1,"_id":"5054","_type":"edge","_outV":"209","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5055","_type":"edge","_outV":"209","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5056","_type":"edge","_outV":"209","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5057","_type":"edge","_outV":"257","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5058","_type":"edge","_outV":"257","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5059","_type":"edge","_outV":"257","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"506","_type":"edge","_outV":"98","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5060","_type":"edge","_outV":"257","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5061","_type":"edge","_outV":"257","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5062","_type":"edge","_outV":"257","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5063","_type":"edge","_outV":"128","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"5064","_type":"edge","_outV":"128","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5065","_type":"edge","_outV":"128","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5066","_type":"edge","_outV":"128","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5067","_type":"edge","_outV":"128","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5068","_type":"edge","_outV":"128","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"5069","_type":"edge","_outV":"128","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"507","_type":"edge","_outV":"98","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5070","_type":"edge","_outV":"128","_inV":"21","_label":"followed_by"},{"weight":9,"_id":"5071","_type":"edge","_outV":"4","_inV":"50","_label":"followed_by"},{"weight":26,"_id":"5072","_type":"edge","_outV":"4","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"5073","_type":"edge","_outV":"4","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"5074","_type":"edge","_outV":"4","_inV":"24","_label":"followed_by"},{"weight":63,"_id":"5075","_type":"edge","_outV":"4","_inV":"23","_label":"followed_by"},{"weight":12,"_id":"5076","_type":"edge","_outV":"4","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"5077","_type":"edge","_outV":"4","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"5078","_type":"edge","_outV":"4","_inV":"11","_label":"followed_by"},{"weight":18,"_id":"5079","_type":"edge","_outV":"4","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"508","_type":"edge","_outV":"98","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5080","_type":"edge","_outV":"4","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"5081","_type":"edge","_outV":"4","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"5082","_type":"edge","_outV":"4","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5083","_type":"edge","_outV":"4","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5084","_type":"edge","_outV":"4","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5085","_type":"edge","_outV":"4","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"5086","_type":"edge","_outV":"4","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5087","_type":"edge","_outV":"4","_inV":"121","_label":"followed_by"},{"weight":7,"_id":"5088","_type":"edge","_outV":"4","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5089","_type":"edge","_outV":"4","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"509","_type":"edge","_outV":"98","_inV":"49","_label":"followed_by"},{"weight":77,"_id":"5090","_type":"edge","_outV":"4","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5091","_type":"edge","_outV":"4","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"5092","_type":"edge","_outV":"4","_inV":"42","_label":"followed_by"},{"weight":4,"_id":"5093","_type":"edge","_outV":"4","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"5094","_type":"edge","_outV":"4","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"5095","_type":"edge","_outV":"4","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"5096","_type":"edge","_outV":"4","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5097","_type":"edge","_outV":"4","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"5098","_type":"edge","_outV":"4","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5099","_type":"edge","_outV":"4","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"51","_type":"edge","_outV":"46","_inV":"52","_label":"followed_by"},{"weight":3,"_id":"510","_type":"edge","_outV":"98","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"5100","_type":"edge","_outV":"4","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5101","_type":"edge","_outV":"4","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"5102","_type":"edge","_outV":"4","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5103","_type":"edge","_outV":"4","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5104","_type":"edge","_outV":"4","_inV":"84","_label":"followed_by"},{"weight":9,"_id":"5105","_type":"edge","_outV":"4","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5106","_type":"edge","_outV":"4","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"5107","_type":"edge","_outV":"4","_inV":"114","_label":"followed_by"},{"weight":8,"_id":"5108","_type":"edge","_outV":"4","_inV":"30","_label":"followed_by"},{"weight":8,"_id":"5109","_type":"edge","_outV":"4","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"511","_type":"edge","_outV":"98","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"5110","_type":"edge","_outV":"4","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"5111","_type":"edge","_outV":"4","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5112","_type":"edge","_outV":"4","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"5113","_type":"edge","_outV":"4","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5114","_type":"edge","_outV":"4","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5115","_type":"edge","_outV":"4","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5116","_type":"edge","_outV":"4","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5117","_type":"edge","_outV":"4","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"5118","_type":"edge","_outV":"4","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"5119","_type":"edge","_outV":"4","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"512","_type":"edge","_outV":"98","_inV":"200","_label":"followed_by"},{"weight":5,"_id":"5120","_type":"edge","_outV":"4","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"5121","_type":"edge","_outV":"4","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"5122","_type":"edge","_outV":"4","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5123","_type":"edge","_outV":"4","_inV":"292","_label":"followed_by"},{"weight":3,"_id":"5124","_type":"edge","_outV":"222","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"5125","_type":"edge","_outV":"222","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5126","_type":"edge","_outV":"222","_inV":"59","_label":"followed_by"},{"weight":10,"_id":"5127","_type":"edge","_outV":"222","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"5128","_type":"edge","_outV":"222","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5129","_type":"edge","_outV":"222","_inV":"4","_label":"followed_by"},{"weight":4,"_id":"513","_type":"edge","_outV":"98","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5130","_type":"edge","_outV":"222","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5131","_type":"edge","_outV":"222","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5132","_type":"edge","_outV":"222","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5133","_type":"edge","_outV":"222","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5134","_type":"edge","_outV":"222","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5135","_type":"edge","_outV":"334","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5136","_type":"edge","_outV":"125","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"5137","_type":"edge","_outV":"125","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5138","_type":"edge","_outV":"125","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5139","_type":"edge","_outV":"125","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"514","_type":"edge","_outV":"98","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5140","_type":"edge","_outV":"125","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"5141","_type":"edge","_outV":"125","_inV":"15","_label":"followed_by"},{"weight":11,"_id":"5142","_type":"edge","_outV":"125","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"5143","_type":"edge","_outV":"125","_inV":"133","_label":"followed_by"},{"weight":87,"_id":"5144","_type":"edge","_outV":"125","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5145","_type":"edge","_outV":"125","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5146","_type":"edge","_outV":"125","_inV":"16","_label":"followed_by"},{"weight":69,"_id":"5147","_type":"edge","_outV":"125","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"5148","_type":"edge","_outV":"125","_inV":"3","_label":"followed_by"},{"weight":16,"_id":"5149","_type":"edge","_outV":"125","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"515","_type":"edge","_outV":"98","_inV":"188","_label":"followed_by"},{"weight":7,"_id":"5150","_type":"edge","_outV":"125","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"5151","_type":"edge","_outV":"125","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5152","_type":"edge","_outV":"125","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"5153","_type":"edge","_outV":"125","_inV":"122","_label":"followed_by"},{"weight":10,"_id":"5154","_type":"edge","_outV":"125","_inV":"114","_label":"followed_by"},{"weight":20,"_id":"5155","_type":"edge","_outV":"125","_inV":"164","_label":"followed_by"},{"weight":22,"_id":"5156","_type":"edge","_outV":"125","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5157","_type":"edge","_outV":"125","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"5158","_type":"edge","_outV":"125","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"5159","_type":"edge","_outV":"125","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"516","_type":"edge","_outV":"98","_inV":"201","_label":"followed_by"},{"weight":2,"_id":"5160","_type":"edge","_outV":"71","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5161","_type":"edge","_outV":"71","_inV":"87","_label":"followed_by"},{"weight":9,"_id":"5162","_type":"edge","_outV":"71","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"5163","_type":"edge","_outV":"71","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5164","_type":"edge","_outV":"71","_inV":"184","_label":"followed_by"},{"weight":5,"_id":"5165","_type":"edge","_outV":"71","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"5166","_type":"edge","_outV":"71","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5167","_type":"edge","_outV":"71","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5168","_type":"edge","_outV":"71","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5169","_type":"edge","_outV":"71","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"517","_type":"edge","_outV":"98","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5170","_type":"edge","_outV":"71","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"5171","_type":"edge","_outV":"71","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5172","_type":"edge","_outV":"71","_inV":"53","_label":"followed_by"},{"weight":6,"_id":"5173","_type":"edge","_outV":"71","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"5174","_type":"edge","_outV":"71","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5175","_type":"edge","_outV":"71","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"5176","_type":"edge","_outV":"71","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"5177","_type":"edge","_outV":"71","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5178","_type":"edge","_outV":"71","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"5179","_type":"edge","_outV":"71","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"518","_type":"edge","_outV":"98","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5180","_type":"edge","_outV":"71","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5181","_type":"edge","_outV":"71","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"5182","_type":"edge","_outV":"71","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5183","_type":"edge","_outV":"71","_inV":"39","_label":"followed_by"},{"weight":18,"_id":"5184","_type":"edge","_outV":"99","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5185","_type":"edge","_outV":"99","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"5186","_type":"edge","_outV":"99","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5187","_type":"edge","_outV":"99","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"5188","_type":"edge","_outV":"99","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5189","_type":"edge","_outV":"99","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"519","_type":"edge","_outV":"203","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"5190","_type":"edge","_outV":"99","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"5191","_type":"edge","_outV":"99","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5192","_type":"edge","_outV":"99","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5193","_type":"edge","_outV":"99","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5194","_type":"edge","_outV":"99","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5195","_type":"edge","_outV":"99","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"5196","_type":"edge","_outV":"99","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"5197","_type":"edge","_outV":"99","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5198","_type":"edge","_outV":"99","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"5199","_type":"edge","_outV":"99","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"52","_type":"edge","_outV":"46","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"520","_type":"edge","_outV":"203","_inV":"96","_label":"followed_by"},{"weight":19,"_id":"5200","_type":"edge","_outV":"99","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5201","_type":"edge","_outV":"99","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"5202","_type":"edge","_outV":"99","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5203","_type":"edge","_outV":"99","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5204","_type":"edge","_outV":"99","_inV":"69","_label":"followed_by"},{"weight":6,"_id":"5205","_type":"edge","_outV":"99","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5206","_type":"edge","_outV":"99","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5207","_type":"edge","_outV":"99","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5208","_type":"edge","_outV":"99","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5209","_type":"edge","_outV":"99","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"521","_type":"edge","_outV":"205","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"5210","_type":"edge","_outV":"99","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5211","_type":"edge","_outV":"99","_inV":"211","_label":"followed_by"},{"weight":1,"_id":"5212","_type":"edge","_outV":"99","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5213","_type":"edge","_outV":"99","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5214","_type":"edge","_outV":"99","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5215","_type":"edge","_outV":"99","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"5216","_type":"edge","_outV":"99","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5217","_type":"edge","_outV":"99","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5218","_type":"edge","_outV":"99","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"5219","_type":"edge","_outV":"99","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"522","_type":"edge","_outV":"120","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5220","_type":"edge","_outV":"99","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5221","_type":"edge","_outV":"99","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"5222","_type":"edge","_outV":"216","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"5223","_type":"edge","_outV":"216","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5224","_type":"edge","_outV":"216","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"5225","_type":"edge","_outV":"216","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"5226","_type":"edge","_outV":"216","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"5227","_type":"edge","_outV":"216","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"5228","_type":"edge","_outV":"216","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5229","_type":"edge","_outV":"216","_inV":"64","_label":"followed_by"},{"weight":5,"_id":"523","_type":"edge","_outV":"120","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"5230","_type":"edge","_outV":"216","_inV":"215","_label":"followed_by"},{"weight":4,"_id":"5231","_type":"edge","_outV":"214","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"5232","_type":"edge","_outV":"214","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5233","_type":"edge","_outV":"214","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"5234","_type":"edge","_outV":"214","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"5235","_type":"edge","_outV":"214","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"5236","_type":"edge","_outV":"214","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"5237","_type":"edge","_outV":"32","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5238","_type":"edge","_outV":"32","_inV":"4","_label":"followed_by"},{"weight":28,"_id":"5239","_type":"edge","_outV":"32","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"524","_type":"edge","_outV":"120","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"5240","_type":"edge","_outV":"32","_inV":"82","_label":"followed_by"},{"weight":33,"_id":"5241","_type":"edge","_outV":"32","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"5242","_type":"edge","_outV":"32","_inV":"15","_label":"followed_by"},{"weight":22,"_id":"5243","_type":"edge","_outV":"32","_inV":"56","_label":"followed_by"},{"weight":19,"_id":"5244","_type":"edge","_outV":"32","_inV":"17","_label":"followed_by"},{"weight":27,"_id":"5245","_type":"edge","_outV":"32","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5246","_type":"edge","_outV":"32","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"5247","_type":"edge","_outV":"32","_inV":"103","_label":"followed_by"},{"weight":32,"_id":"5248","_type":"edge","_outV":"32","_inV":"104","_label":"followed_by"},{"weight":12,"_id":"5249","_type":"edge","_outV":"32","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"525","_type":"edge","_outV":"120","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"5250","_type":"edge","_outV":"32","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"5251","_type":"edge","_outV":"32","_inV":"14","_label":"followed_by"},{"weight":17,"_id":"5252","_type":"edge","_outV":"32","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5253","_type":"edge","_outV":"32","_inV":"68","_label":"followed_by"},{"weight":11,"_id":"5254","_type":"edge","_outV":"32","_inV":"57","_label":"followed_by"},{"weight":23,"_id":"5255","_type":"edge","_outV":"32","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5256","_type":"edge","_outV":"32","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"5257","_type":"edge","_outV":"32","_inV":"18","_label":"followed_by"},{"weight":11,"_id":"5258","_type":"edge","_outV":"32","_inV":"100","_label":"followed_by"},{"weight":16,"_id":"5259","_type":"edge","_outV":"32","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"526","_type":"edge","_outV":"120","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5260","_type":"edge","_outV":"32","_inV":"50","_label":"followed_by"},{"weight":16,"_id":"5261","_type":"edge","_outV":"32","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5262","_type":"edge","_outV":"32","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"5263","_type":"edge","_outV":"32","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5264","_type":"edge","_outV":"32","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"5265","_type":"edge","_outV":"32","_inV":"189","_label":"followed_by"},{"weight":16,"_id":"5266","_type":"edge","_outV":"32","_inV":"73","_label":"followed_by"},{"weight":12,"_id":"5267","_type":"edge","_outV":"32","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5268","_type":"edge","_outV":"32","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"5269","_type":"edge","_outV":"32","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"527","_type":"edge","_outV":"120","_inV":"145","_label":"followed_by"},{"weight":2,"_id":"5270","_type":"edge","_outV":"32","_inV":"109","_label":"followed_by"},{"weight":6,"_id":"5271","_type":"edge","_outV":"32","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"5272","_type":"edge","_outV":"32","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"5273","_type":"edge","_outV":"32","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"5274","_type":"edge","_outV":"32","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5275","_type":"edge","_outV":"32","_inV":"78","_label":"followed_by"},{"weight":10,"_id":"5276","_type":"edge","_outV":"32","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5277","_type":"edge","_outV":"32","_inV":"306","_label":"followed_by"},{"weight":2,"_id":"5278","_type":"edge","_outV":"32","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"5279","_type":"edge","_outV":"32","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"528","_type":"edge","_outV":"120","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5280","_type":"edge","_outV":"32","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"5281","_type":"edge","_outV":"32","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5282","_type":"edge","_outV":"32","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"5283","_type":"edge","_outV":"32","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5284","_type":"edge","_outV":"32","_inV":"267","_label":"followed_by"},{"weight":1,"_id":"5285","_type":"edge","_outV":"32","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"5286","_type":"edge","_outV":"32","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"5287","_type":"edge","_outV":"32","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5288","_type":"edge","_outV":"32","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"5289","_type":"edge","_outV":"32","_inV":"253","_label":"followed_by"},{"weight":13,"_id":"529","_type":"edge","_outV":"120","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5290","_type":"edge","_outV":"32","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5291","_type":"edge","_outV":"32","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"5292","_type":"edge","_outV":"32","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5293","_type":"edge","_outV":"32","_inV":"118","_label":"followed_by"},{"weight":3,"_id":"5294","_type":"edge","_outV":"32","_inV":"137","_label":"followed_by"},{"weight":6,"_id":"5295","_type":"edge","_outV":"32","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5296","_type":"edge","_outV":"32","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5297","_type":"edge","_outV":"32","_inV":"174","_label":"followed_by"},{"weight":2,"_id":"5298","_type":"edge","_outV":"321","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"5299","_type":"edge","_outV":"170","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"53","_type":"edge","_outV":"46","_inV":"13","_label":"followed_by"},{"weight":7,"_id":"530","_type":"edge","_outV":"120","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5300","_type":"edge","_outV":"170","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"5301","_type":"edge","_outV":"170","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5302","_type":"edge","_outV":"170","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"5303","_type":"edge","_outV":"170","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"5304","_type":"edge","_outV":"170","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5305","_type":"edge","_outV":"170","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"5306","_type":"edge","_outV":"170","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"5307","_type":"edge","_outV":"170","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5308","_type":"edge","_outV":"170","_inV":"222","_label":"followed_by"},{"weight":5,"_id":"5309","_type":"edge","_outV":"170","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"531","_type":"edge","_outV":"120","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"5310","_type":"edge","_outV":"170","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"5311","_type":"edge","_outV":"170","_inV":"111","_label":"followed_by"},{"weight":7,"_id":"5312","_type":"edge","_outV":"170","_inV":"101","_label":"followed_by"},{"weight":3,"_id":"5313","_type":"edge","_outV":"170","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5314","_type":"edge","_outV":"170","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"5315","_type":"edge","_outV":"170","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"5316","_type":"edge","_outV":"170","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5317","_type":"edge","_outV":"170","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5318","_type":"edge","_outV":"170","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5319","_type":"edge","_outV":"170","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"532","_type":"edge","_outV":"120","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5320","_type":"edge","_outV":"170","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5321","_type":"edge","_outV":"170","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5322","_type":"edge","_outV":"170","_inV":"269","_label":"followed_by"},{"weight":2,"_id":"5323","_type":"edge","_outV":"170","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"5324","_type":"edge","_outV":"170","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5325","_type":"edge","_outV":"170","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5326","_type":"edge","_outV":"170","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5327","_type":"edge","_outV":"238","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5328","_type":"edge","_outV":"238","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5329","_type":"edge","_outV":"238","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"533","_type":"edge","_outV":"120","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5330","_type":"edge","_outV":"238","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5331","_type":"edge","_outV":"238","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5332","_type":"edge","_outV":"238","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5333","_type":"edge","_outV":"165","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"5334","_type":"edge","_outV":"165","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5335","_type":"edge","_outV":"165","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"5336","_type":"edge","_outV":"165","_inV":"134","_label":"followed_by"},{"weight":23,"_id":"5337","_type":"edge","_outV":"165","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"5338","_type":"edge","_outV":"165","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"5339","_type":"edge","_outV":"165","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"534","_type":"edge","_outV":"120","_inV":"206","_label":"followed_by"},{"weight":28,"_id":"5340","_type":"edge","_outV":"165","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5341","_type":"edge","_outV":"165","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5342","_type":"edge","_outV":"165","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"5343","_type":"edge","_outV":"165","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5344","_type":"edge","_outV":"165","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"5345","_type":"edge","_outV":"165","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5346","_type":"edge","_outV":"165","_inV":"268","_label":"followed_by"},{"weight":21,"_id":"5347","_type":"edge","_outV":"165","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5348","_type":"edge","_outV":"165","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5349","_type":"edge","_outV":"165","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"535","_type":"edge","_outV":"120","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"5350","_type":"edge","_outV":"165","_inV":"232","_label":"followed_by"},{"weight":10,"_id":"5351","_type":"edge","_outV":"165","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"5352","_type":"edge","_outV":"165","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5353","_type":"edge","_outV":"165","_inV":"136","_label":"followed_by"},{"weight":4,"_id":"5354","_type":"edge","_outV":"165","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5355","_type":"edge","_outV":"165","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5356","_type":"edge","_outV":"165","_inV":"164","_label":"followed_by"},{"weight":6,"_id":"5357","_type":"edge","_outV":"165","_inV":"138","_label":"followed_by"},{"weight":3,"_id":"5358","_type":"edge","_outV":"165","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"5359","_type":"edge","_outV":"132","_inV":"21","_label":"followed_by"},{"weight":8,"_id":"536","_type":"edge","_outV":"120","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"5360","_type":"edge","_outV":"132","_inV":"150","_label":"followed_by"},{"weight":5,"_id":"5361","_type":"edge","_outV":"132","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"5362","_type":"edge","_outV":"132","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"5363","_type":"edge","_outV":"132","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5364","_type":"edge","_outV":"132","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"5365","_type":"edge","_outV":"132","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5366","_type":"edge","_outV":"132","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"5367","_type":"edge","_outV":"132","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"5368","_type":"edge","_outV":"132","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5369","_type":"edge","_outV":"132","_inV":"135","_label":"followed_by"},{"weight":1,"_id":"537","_type":"edge","_outV":"120","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"5370","_type":"edge","_outV":"132","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5371","_type":"edge","_outV":"132","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5372","_type":"edge","_outV":"132","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5373","_type":"edge","_outV":"132","_inV":"87","_label":"followed_by"},{"weight":34,"_id":"5374","_type":"edge","_outV":"69","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5375","_type":"edge","_outV":"69","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5376","_type":"edge","_outV":"69","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"5377","_type":"edge","_outV":"69","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"5378","_type":"edge","_outV":"69","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"5379","_type":"edge","_outV":"69","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"538","_type":"edge","_outV":"120","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5380","_type":"edge","_outV":"69","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5381","_type":"edge","_outV":"69","_inV":"290","_label":"followed_by"},{"weight":4,"_id":"5382","_type":"edge","_outV":"69","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"5383","_type":"edge","_outV":"69","_inV":"25","_label":"followed_by"},{"weight":20,"_id":"5384","_type":"edge","_outV":"69","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5385","_type":"edge","_outV":"69","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5386","_type":"edge","_outV":"69","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5387","_type":"edge","_outV":"69","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5388","_type":"edge","_outV":"69","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5389","_type":"edge","_outV":"69","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"539","_type":"edge","_outV":"120","_inV":"48","_label":"followed_by"},{"weight":5,"_id":"5390","_type":"edge","_outV":"69","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5391","_type":"edge","_outV":"69","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"5392","_type":"edge","_outV":"69","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"5393","_type":"edge","_outV":"69","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5394","_type":"edge","_outV":"69","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5395","_type":"edge","_outV":"69","_inV":"120","_label":"followed_by"},{"weight":59,"_id":"5396","_type":"edge","_outV":"69","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"5397","_type":"edge","_outV":"69","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5398","_type":"edge","_outV":"69","_inV":"103","_label":"followed_by"},{"weight":5,"_id":"5399","_type":"edge","_outV":"69","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"54","_type":"edge","_outV":"46","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"540","_type":"edge","_outV":"120","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"5400","_type":"edge","_outV":"69","_inV":"91","_label":"followed_by"},{"weight":8,"_id":"5401","_type":"edge","_outV":"69","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5402","_type":"edge","_outV":"69","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5403","_type":"edge","_outV":"69","_inV":"83","_label":"followed_by"},{"weight":11,"_id":"5404","_type":"edge","_outV":"69","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5405","_type":"edge","_outV":"69","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5406","_type":"edge","_outV":"69","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5407","_type":"edge","_outV":"69","_inV":"102","_label":"followed_by"},{"weight":2,"_id":"5408","_type":"edge","_outV":"69","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5409","_type":"edge","_outV":"69","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"541","_type":"edge","_outV":"120","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5410","_type":"edge","_outV":"69","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"5411","_type":"edge","_outV":"69","_inV":"286","_label":"followed_by"},{"weight":1,"_id":"5412","_type":"edge","_outV":"69","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"5413","_type":"edge","_outV":"69","_inV":"238","_label":"followed_by"},{"weight":3,"_id":"5414","_type":"edge","_outV":"69","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"5415","_type":"edge","_outV":"69","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"5416","_type":"edge","_outV":"69","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"5417","_type":"edge","_outV":"69","_inV":"89","_label":"followed_by"},{"weight":6,"_id":"5418","_type":"edge","_outV":"69","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"5419","_type":"edge","_outV":"69","_inV":"28","_label":"followed_by"},{"weight":7,"_id":"542","_type":"edge","_outV":"120","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5420","_type":"edge","_outV":"69","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5421","_type":"edge","_outV":"335","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5422","_type":"edge","_outV":"102","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5423","_type":"edge","_outV":"102","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5424","_type":"edge","_outV":"102","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5425","_type":"edge","_outV":"102","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5426","_type":"edge","_outV":"102","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5427","_type":"edge","_outV":"143","_inV":"300","_label":"followed_by"},{"weight":1,"_id":"5428","_type":"edge","_outV":"143","_inV":"142","_label":"followed_by"},{"weight":1,"_id":"5429","_type":"edge","_outV":"315","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"543","_type":"edge","_outV":"120","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"5430","_type":"edge","_outV":"315","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5431","_type":"edge","_outV":"217","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"5432","_type":"edge","_outV":"217","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"5433","_type":"edge","_outV":"217","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5434","_type":"edge","_outV":"217","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5435","_type":"edge","_outV":"217","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"5436","_type":"edge","_outV":"217","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5437","_type":"edge","_outV":"217","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5438","_type":"edge","_outV":"217","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"5439","_type":"edge","_outV":"239","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"544","_type":"edge","_outV":"120","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"5440","_type":"edge","_outV":"239","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5441","_type":"edge","_outV":"239","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"5442","_type":"edge","_outV":"239","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5443","_type":"edge","_outV":"239","_inV":"27","_label":"followed_by"},{"weight":8,"_id":"5444","_type":"edge","_outV":"288","_inV":"154","_label":"followed_by"},{"weight":11,"_id":"5445","_type":"edge","_outV":"231","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"5446","_type":"edge","_outV":"231","_inV":"5","_label":"followed_by"},{"weight":4,"_id":"5447","_type":"edge","_outV":"231","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"5448","_type":"edge","_outV":"231","_inV":"165","_label":"followed_by"},{"weight":3,"_id":"5449","_type":"edge","_outV":"231","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"545","_type":"edge","_outV":"120","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5450","_type":"edge","_outV":"231","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5451","_type":"edge","_outV":"231","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5452","_type":"edge","_outV":"231","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5453","_type":"edge","_outV":"79","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5454","_type":"edge","_outV":"79","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"5455","_type":"edge","_outV":"79","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"5456","_type":"edge","_outV":"79","_inV":"58","_label":"followed_by"},{"weight":4,"_id":"5457","_type":"edge","_outV":"79","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5458","_type":"edge","_outV":"79","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"5459","_type":"edge","_outV":"79","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"546","_type":"edge","_outV":"120","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5460","_type":"edge","_outV":"79","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"5461","_type":"edge","_outV":"79","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"5462","_type":"edge","_outV":"79","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"5463","_type":"edge","_outV":"79","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"5464","_type":"edge","_outV":"79","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5465","_type":"edge","_outV":"79","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5466","_type":"edge","_outV":"79","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"5467","_type":"edge","_outV":"79","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5468","_type":"edge","_outV":"79","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"5469","_type":"edge","_outV":"79","_inV":"27","_label":"followed_by"},{"weight":12,"_id":"547","_type":"edge","_outV":"120","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"5470","_type":"edge","_outV":"79","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5471","_type":"edge","_outV":"79","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5472","_type":"edge","_outV":"79","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"5473","_type":"edge","_outV":"79","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5474","_type":"edge","_outV":"79","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5475","_type":"edge","_outV":"79","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"5476","_type":"edge","_outV":"79","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5477","_type":"edge","_outV":"79","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"5478","_type":"edge","_outV":"79","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"5479","_type":"edge","_outV":"79","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"548","_type":"edge","_outV":"120","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"5480","_type":"edge","_outV":"79","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"5481","_type":"edge","_outV":"79","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5482","_type":"edge","_outV":"79","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5483","_type":"edge","_outV":"79","_inV":"192","_label":"followed_by"},{"weight":1,"_id":"5484","_type":"edge","_outV":"79","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"5485","_type":"edge","_outV":"79","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5486","_type":"edge","_outV":"79","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5487","_type":"edge","_outV":"79","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"5488","_type":"edge","_outV":"79","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5489","_type":"edge","_outV":"79","_inV":"175","_label":"followed_by"},{"weight":3,"_id":"549","_type":"edge","_outV":"120","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"5490","_type":"edge","_outV":"79","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5491","_type":"edge","_outV":"79","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"5492","_type":"edge","_outV":"79","_inV":"40","_label":"followed_by"},{"weight":4,"_id":"5493","_type":"edge","_outV":"131","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5494","_type":"edge","_outV":"131","_inV":"287","_label":"followed_by"},{"weight":1,"_id":"5495","_type":"edge","_outV":"131","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"5496","_type":"edge","_outV":"131","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"5497","_type":"edge","_outV":"131","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"5498","_type":"edge","_outV":"131","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"5499","_type":"edge","_outV":"131","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"55","_type":"edge","_outV":"46","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"550","_type":"edge","_outV":"120","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5500","_type":"edge","_outV":"131","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5501","_type":"edge","_outV":"131","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"5502","_type":"edge","_outV":"131","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5503","_type":"edge","_outV":"131","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5504","_type":"edge","_outV":"131","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"5505","_type":"edge","_outV":"131","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"5506","_type":"edge","_outV":"131","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5507","_type":"edge","_outV":"131","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5508","_type":"edge","_outV":"131","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5509","_type":"edge","_outV":"131","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"551","_type":"edge","_outV":"120","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5510","_type":"edge","_outV":"131","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5511","_type":"edge","_outV":"131","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5512","_type":"edge","_outV":"131","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"5513","_type":"edge","_outV":"131","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5514","_type":"edge","_outV":"131","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"5515","_type":"edge","_outV":"131","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5516","_type":"edge","_outV":"328","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5517","_type":"edge","_outV":"43","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5518","_type":"edge","_outV":"43","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"5519","_type":"edge","_outV":"43","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"552","_type":"edge","_outV":"120","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"5520","_type":"edge","_outV":"43","_inV":"236","_label":"followed_by"},{"weight":3,"_id":"5521","_type":"edge","_outV":"43","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"5522","_type":"edge","_outV":"43","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5523","_type":"edge","_outV":"43","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5524","_type":"edge","_outV":"43","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5525","_type":"edge","_outV":"43","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"5526","_type":"edge","_outV":"43","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"5527","_type":"edge","_outV":"43","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5528","_type":"edge","_outV":"43","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5529","_type":"edge","_outV":"43","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"553","_type":"edge","_outV":"120","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5530","_type":"edge","_outV":"43","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5531","_type":"edge","_outV":"43","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"5532","_type":"edge","_outV":"43","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5533","_type":"edge","_outV":"43","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"5534","_type":"edge","_outV":"43","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5535","_type":"edge","_outV":"43","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5536","_type":"edge","_outV":"333","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"5537","_type":"edge","_outV":"126","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5538","_type":"edge","_outV":"126","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"5539","_type":"edge","_outV":"126","_inV":"245","_label":"followed_by"},{"weight":6,"_id":"554","_type":"edge","_outV":"120","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5540","_type":"edge","_outV":"126","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5541","_type":"edge","_outV":"126","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5542","_type":"edge","_outV":"126","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5543","_type":"edge","_outV":"126","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5544","_type":"edge","_outV":"126","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5545","_type":"edge","_outV":"126","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5546","_type":"edge","_outV":"166","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5547","_type":"edge","_outV":"166","_inV":"262","_label":"followed_by"},{"weight":1,"_id":"5548","_type":"edge","_outV":"166","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"5549","_type":"edge","_outV":"166","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"555","_type":"edge","_outV":"120","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5550","_type":"edge","_outV":"166","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"5551","_type":"edge","_outV":"166","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"5552","_type":"edge","_outV":"166","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5553","_type":"edge","_outV":"166","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5554","_type":"edge","_outV":"166","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"5555","_type":"edge","_outV":"162","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"5556","_type":"edge","_outV":"162","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"5557","_type":"edge","_outV":"162","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5558","_type":"edge","_outV":"162","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5559","_type":"edge","_outV":"162","_inV":"65","_label":"followed_by"},{"weight":6,"_id":"556","_type":"edge","_outV":"120","_inV":"208","_label":"followed_by"},{"weight":4,"_id":"5560","_type":"edge","_outV":"162","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"5561","_type":"edge","_outV":"162","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"5562","_type":"edge","_outV":"162","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5563","_type":"edge","_outV":"162","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5564","_type":"edge","_outV":"162","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"5565","_type":"edge","_outV":"162","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5566","_type":"edge","_outV":"162","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5567","_type":"edge","_outV":"162","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5568","_type":"edge","_outV":"162","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5569","_type":"edge","_outV":"316","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"557","_type":"edge","_outV":"120","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5570","_type":"edge","_outV":"42","_inV":"82","_label":"followed_by"},{"weight":16,"_id":"5571","_type":"edge","_outV":"42","_inV":"56","_label":"followed_by"},{"weight":13,"_id":"5572","_type":"edge","_outV":"42","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"5573","_type":"edge","_outV":"42","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5574","_type":"edge","_outV":"42","_inV":"59","_label":"followed_by"},{"weight":6,"_id":"5575","_type":"edge","_outV":"42","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"5576","_type":"edge","_outV":"42","_inV":"121","_label":"followed_by"},{"weight":11,"_id":"5577","_type":"edge","_outV":"42","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5578","_type":"edge","_outV":"42","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5579","_type":"edge","_outV":"42","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"558","_type":"edge","_outV":"120","_inV":"82","_label":"followed_by"},{"weight":5,"_id":"5580","_type":"edge","_outV":"42","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5581","_type":"edge","_outV":"42","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"5582","_type":"edge","_outV":"42","_inV":"108","_label":"followed_by"},{"weight":7,"_id":"5583","_type":"edge","_outV":"42","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5584","_type":"edge","_outV":"42","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"5585","_type":"edge","_outV":"42","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"5586","_type":"edge","_outV":"42","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"5587","_type":"edge","_outV":"42","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"5588","_type":"edge","_outV":"42","_inV":"63","_label":"followed_by"},{"weight":6,"_id":"5589","_type":"edge","_outV":"42","_inV":"73","_label":"followed_by"},{"weight":12,"_id":"559","_type":"edge","_outV":"120","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"5590","_type":"edge","_outV":"42","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5591","_type":"edge","_outV":"42","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"5592","_type":"edge","_outV":"42","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"5593","_type":"edge","_outV":"42","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5594","_type":"edge","_outV":"42","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5595","_type":"edge","_outV":"42","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5596","_type":"edge","_outV":"42","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"5597","_type":"edge","_outV":"42","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5598","_type":"edge","_outV":"42","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5599","_type":"edge","_outV":"42","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"56","_type":"edge","_outV":"46","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"560","_type":"edge","_outV":"120","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5600","_type":"edge","_outV":"42","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5601","_type":"edge","_outV":"42","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5602","_type":"edge","_outV":"42","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"5603","_type":"edge","_outV":"42","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5604","_type":"edge","_outV":"42","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5605","_type":"edge","_outV":"42","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"5606","_type":"edge","_outV":"42","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5607","_type":"edge","_outV":"42","_inV":"169","_label":"followed_by"},{"weight":3,"_id":"5608","_type":"edge","_outV":"42","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5609","_type":"edge","_outV":"42","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"561","_type":"edge","_outV":"120","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5610","_type":"edge","_outV":"42","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5611","_type":"edge","_outV":"42","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"5612","_type":"edge","_outV":"42","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"5613","_type":"edge","_outV":"42","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5614","_type":"edge","_outV":"42","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"5615","_type":"edge","_outV":"42","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5616","_type":"edge","_outV":"42","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5617","_type":"edge","_outV":"42","_inV":"150","_label":"followed_by"},{"weight":4,"_id":"5618","_type":"edge","_outV":"42","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5619","_type":"edge","_outV":"42","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"562","_type":"edge","_outV":"120","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5620","_type":"edge","_outV":"42","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5621","_type":"edge","_outV":"22","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5622","_type":"edge","_outV":"22","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5623","_type":"edge","_outV":"22","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5624","_type":"edge","_outV":"22","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5625","_type":"edge","_outV":"22","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"5626","_type":"edge","_outV":"22","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"5627","_type":"edge","_outV":"22","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5628","_type":"edge","_outV":"22","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5629","_type":"edge","_outV":"22","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"563","_type":"edge","_outV":"120","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"5630","_type":"edge","_outV":"22","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"5631","_type":"edge","_outV":"22","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"5632","_type":"edge","_outV":"22","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5633","_type":"edge","_outV":"22","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"5634","_type":"edge","_outV":"22","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5635","_type":"edge","_outV":"22","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"5636","_type":"edge","_outV":"22","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"5637","_type":"edge","_outV":"22","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"5638","_type":"edge","_outV":"22","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5639","_type":"edge","_outV":"22","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"564","_type":"edge","_outV":"120","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5640","_type":"edge","_outV":"22","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5641","_type":"edge","_outV":"22","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"5642","_type":"edge","_outV":"22","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5643","_type":"edge","_outV":"22","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"5644","_type":"edge","_outV":"22","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5645","_type":"edge","_outV":"22","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5646","_type":"edge","_outV":"22","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5647","_type":"edge","_outV":"22","_inV":"142","_label":"followed_by"},{"weight":1,"_id":"5648","_type":"edge","_outV":"22","_inV":"302","_label":"followed_by"},{"weight":1,"_id":"5649","_type":"edge","_outV":"22","_inV":"301","_label":"followed_by"},{"weight":15,"_id":"565","_type":"edge","_outV":"120","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"5650","_type":"edge","_outV":"169","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5651","_type":"edge","_outV":"169","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"5652","_type":"edge","_outV":"169","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"5653","_type":"edge","_outV":"169","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"5654","_type":"edge","_outV":"169","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5655","_type":"edge","_outV":"169","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"5656","_type":"edge","_outV":"169","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5657","_type":"edge","_outV":"169","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5658","_type":"edge","_outV":"169","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"5659","_type":"edge","_outV":"169","_inV":"79","_label":"followed_by"},{"weight":17,"_id":"566","_type":"edge","_outV":"120","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5660","_type":"edge","_outV":"169","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"5661","_type":"edge","_outV":"169","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5662","_type":"edge","_outV":"169","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5663","_type":"edge","_outV":"169","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5664","_type":"edge","_outV":"169","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5665","_type":"edge","_outV":"169","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5666","_type":"edge","_outV":"167","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"5667","_type":"edge","_outV":"167","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5668","_type":"edge","_outV":"167","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"5669","_type":"edge","_outV":"167","_inV":"34","_label":"followed_by"},{"weight":6,"_id":"567","_type":"edge","_outV":"120","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5670","_type":"edge","_outV":"167","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5671","_type":"edge","_outV":"167","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5672","_type":"edge","_outV":"167","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5673","_type":"edge","_outV":"167","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5674","_type":"edge","_outV":"167","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5675","_type":"edge","_outV":"167","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5676","_type":"edge","_outV":"167","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5677","_type":"edge","_outV":"167","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5678","_type":"edge","_outV":"167","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5679","_type":"edge","_outV":"167","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"568","_type":"edge","_outV":"120","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"5680","_type":"edge","_outV":"167","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5681","_type":"edge","_outV":"167","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5682","_type":"edge","_outV":"167","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5683","_type":"edge","_outV":"167","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5684","_type":"edge","_outV":"167","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"5685","_type":"edge","_outV":"167","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5686","_type":"edge","_outV":"167","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5687","_type":"edge","_outV":"167","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5688","_type":"edge","_outV":"159","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"5689","_type":"edge","_outV":"159","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"569","_type":"edge","_outV":"120","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"5690","_type":"edge","_outV":"159","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5691","_type":"edge","_outV":"159","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5692","_type":"edge","_outV":"159","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5693","_type":"edge","_outV":"159","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5694","_type":"edge","_outV":"159","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5695","_type":"edge","_outV":"330","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"5696","_type":"edge","_outV":"330","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5697","_type":"edge","_outV":"156","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"5698","_type":"edge","_outV":"156","_inV":"38","_label":"followed_by"},{"weight":6,"_id":"5699","_type":"edge","_outV":"20","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"57","_type":"edge","_outV":"46","_inV":"55","_label":"followed_by"},{"weight":6,"_id":"570","_type":"edge","_outV":"120","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"5700","_type":"edge","_outV":"20","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"5701","_type":"edge","_outV":"20","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5702","_type":"edge","_outV":"20","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"5703","_type":"edge","_outV":"20","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5704","_type":"edge","_outV":"20","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5705","_type":"edge","_outV":"20","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"5706","_type":"edge","_outV":"20","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"5707","_type":"edge","_outV":"20","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5708","_type":"edge","_outV":"20","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"5709","_type":"edge","_outV":"20","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"571","_type":"edge","_outV":"120","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5710","_type":"edge","_outV":"20","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"5711","_type":"edge","_outV":"20","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"5712","_type":"edge","_outV":"20","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5713","_type":"edge","_outV":"20","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5714","_type":"edge","_outV":"20","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"5715","_type":"edge","_outV":"20","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"5716","_type":"edge","_outV":"20","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"5717","_type":"edge","_outV":"20","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5718","_type":"edge","_outV":"20","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"5719","_type":"edge","_outV":"20","_inV":"273","_label":"followed_by"},{"weight":9,"_id":"572","_type":"edge","_outV":"120","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5720","_type":"edge","_outV":"20","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5721","_type":"edge","_outV":"20","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5722","_type":"edge","_outV":"20","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"5723","_type":"edge","_outV":"20","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"5724","_type":"edge","_outV":"20","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5725","_type":"edge","_outV":"20","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"5726","_type":"edge","_outV":"20","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5727","_type":"edge","_outV":"20","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5728","_type":"edge","_outV":"20","_inV":"173","_label":"followed_by"},{"weight":3,"_id":"5729","_type":"edge","_outV":"274","_inV":"96","_label":"followed_by"},{"weight":18,"_id":"573","_type":"edge","_outV":"120","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"5730","_type":"edge","_outV":"274","_inV":"123","_label":"followed_by"},{"weight":11,"_id":"5731","_type":"edge","_outV":"129","_inV":"25","_label":"followed_by"},{"weight":13,"_id":"5732","_type":"edge","_outV":"129","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"5733","_type":"edge","_outV":"129","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5734","_type":"edge","_outV":"129","_inV":"52","_label":"followed_by"},{"weight":2,"_id":"5735","_type":"edge","_outV":"129","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5736","_type":"edge","_outV":"129","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"5737","_type":"edge","_outV":"129","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"5738","_type":"edge","_outV":"129","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5739","_type":"edge","_outV":"129","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"574","_type":"edge","_outV":"120","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"5740","_type":"edge","_outV":"129","_inV":"130","_label":"followed_by"},{"weight":12,"_id":"5741","_type":"edge","_outV":"129","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"5742","_type":"edge","_outV":"129","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5743","_type":"edge","_outV":"129","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5744","_type":"edge","_outV":"129","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5745","_type":"edge","_outV":"129","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5746","_type":"edge","_outV":"129","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5747","_type":"edge","_outV":"129","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"5748","_type":"edge","_outV":"129","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"5749","_type":"edge","_outV":"129","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"575","_type":"edge","_outV":"120","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5750","_type":"edge","_outV":"129","_inV":"199","_label":"followed_by"},{"weight":21,"_id":"5751","_type":"edge","_outV":"129","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"5752","_type":"edge","_outV":"129","_inV":"74","_label":"followed_by"},{"weight":8,"_id":"5753","_type":"edge","_outV":"129","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5754","_type":"edge","_outV":"129","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"5755","_type":"edge","_outV":"129","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5756","_type":"edge","_outV":"129","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5757","_type":"edge","_outV":"129","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5758","_type":"edge","_outV":"129","_inV":"163","_label":"followed_by"},{"weight":6,"_id":"5759","_type":"edge","_outV":"129","_inV":"5","_label":"followed_by"},{"weight":7,"_id":"576","_type":"edge","_outV":"120","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"5760","_type":"edge","_outV":"129","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"5761","_type":"edge","_outV":"129","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5762","_type":"edge","_outV":"129","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5763","_type":"edge","_outV":"129","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5764","_type":"edge","_outV":"129","_inV":"164","_label":"followed_by"},{"weight":8,"_id":"5765","_type":"edge","_outV":"76","_inV":"215","_label":"followed_by"},{"weight":6,"_id":"5766","_type":"edge","_outV":"76","_inV":"100","_label":"followed_by"},{"weight":67,"_id":"5767","_type":"edge","_outV":"76","_inV":"69","_label":"followed_by"},{"weight":30,"_id":"5768","_type":"edge","_outV":"76","_inV":"49","_label":"followed_by"},{"weight":17,"_id":"5769","_type":"edge","_outV":"76","_inV":"98","_label":"followed_by"},{"weight":9,"_id":"577","_type":"edge","_outV":"120","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"5770","_type":"edge","_outV":"76","_inV":"154","_label":"followed_by"},{"weight":12,"_id":"5771","_type":"edge","_outV":"76","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"5772","_type":"edge","_outV":"76","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5773","_type":"edge","_outV":"76","_inV":"51","_label":"followed_by"},{"weight":13,"_id":"5774","_type":"edge","_outV":"76","_inV":"63","_label":"followed_by"},{"weight":11,"_id":"5775","_type":"edge","_outV":"76","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5776","_type":"edge","_outV":"76","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"5777","_type":"edge","_outV":"76","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"5778","_type":"edge","_outV":"76","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"5779","_type":"edge","_outV":"76","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"578","_type":"edge","_outV":"120","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5780","_type":"edge","_outV":"76","_inV":"130","_label":"followed_by"},{"weight":11,"_id":"5781","_type":"edge","_outV":"76","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"5782","_type":"edge","_outV":"76","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5783","_type":"edge","_outV":"76","_inV":"179","_label":"followed_by"},{"weight":6,"_id":"5784","_type":"edge","_outV":"76","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"5785","_type":"edge","_outV":"76","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"5786","_type":"edge","_outV":"76","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"5787","_type":"edge","_outV":"76","_inV":"3","_label":"followed_by"},{"weight":5,"_id":"5788","_type":"edge","_outV":"76","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"5789","_type":"edge","_outV":"76","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"579","_type":"edge","_outV":"120","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"5790","_type":"edge","_outV":"76","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5791","_type":"edge","_outV":"76","_inV":"50","_label":"followed_by"},{"weight":36,"_id":"5792","_type":"edge","_outV":"76","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5793","_type":"edge","_outV":"76","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5794","_type":"edge","_outV":"76","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"5795","_type":"edge","_outV":"76","_inV":"4","_label":"followed_by"},{"weight":4,"_id":"5796","_type":"edge","_outV":"76","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5797","_type":"edge","_outV":"76","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"5798","_type":"edge","_outV":"76","_inV":"120","_label":"followed_by"},{"weight":3,"_id":"5799","_type":"edge","_outV":"76","_inV":"208","_label":"followed_by"},{"weight":2,"_id":"58","_type":"edge","_outV":"46","_inV":"17","_label":"followed_by"},{"weight":11,"_id":"580","_type":"edge","_outV":"120","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"5800","_type":"edge","_outV":"76","_inV":"108","_label":"followed_by"},{"weight":5,"_id":"5801","_type":"edge","_outV":"76","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5802","_type":"edge","_outV":"76","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5803","_type":"edge","_outV":"76","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"5804","_type":"edge","_outV":"76","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5805","_type":"edge","_outV":"76","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"5806","_type":"edge","_outV":"76","_inV":"227","_label":"followed_by"},{"weight":6,"_id":"5807","_type":"edge","_outV":"76","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5808","_type":"edge","_outV":"76","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"5809","_type":"edge","_outV":"76","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"581","_type":"edge","_outV":"120","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5810","_type":"edge","_outV":"76","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"5811","_type":"edge","_outV":"76","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5812","_type":"edge","_outV":"76","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5813","_type":"edge","_outV":"76","_inV":"286","_label":"followed_by"},{"weight":4,"_id":"5814","_type":"edge","_outV":"76","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5815","_type":"edge","_outV":"76","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"5816","_type":"edge","_outV":"76","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"5817","_type":"edge","_outV":"76","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5818","_type":"edge","_outV":"76","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"5819","_type":"edge","_outV":"76","_inV":"150","_label":"followed_by"},{"weight":11,"_id":"582","_type":"edge","_outV":"120","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"5820","_type":"edge","_outV":"76","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"5821","_type":"edge","_outV":"76","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5822","_type":"edge","_outV":"76","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"5823","_type":"edge","_outV":"76","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"5824","_type":"edge","_outV":"76","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"5825","_type":"edge","_outV":"76","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"5826","_type":"edge","_outV":"76","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"5827","_type":"edge","_outV":"76","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"5828","_type":"edge","_outV":"76","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"5829","_type":"edge","_outV":"76","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"583","_type":"edge","_outV":"120","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"5830","_type":"edge","_outV":"76","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5831","_type":"edge","_outV":"76","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5832","_type":"edge","_outV":"76","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"5833","_type":"edge","_outV":"76","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5834","_type":"edge","_outV":"76","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"5835","_type":"edge","_outV":"76","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"5836","_type":"edge","_outV":"258","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5837","_type":"edge","_outV":"258","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5838","_type":"edge","_outV":"258","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5839","_type":"edge","_outV":"258","_inV":"140","_label":"followed_by"},{"weight":8,"_id":"584","_type":"edge","_outV":"120","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5840","_type":"edge","_outV":"258","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5841","_type":"edge","_outV":"326","_inV":"194","_label":"followed_by"},{"weight":3,"_id":"5842","_type":"edge","_outV":"61","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"5843","_type":"edge","_outV":"61","_inV":"336","_label":"followed_by"},{"weight":3,"_id":"5844","_type":"edge","_outV":"61","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5845","_type":"edge","_outV":"61","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"5846","_type":"edge","_outV":"61","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5847","_type":"edge","_outV":"61","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5848","_type":"edge","_outV":"61","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"5849","_type":"edge","_outV":"61","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"585","_type":"edge","_outV":"120","_inV":"211","_label":"followed_by"},{"weight":1,"_id":"5850","_type":"edge","_outV":"61","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5851","_type":"edge","_outV":"61","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"5852","_type":"edge","_outV":"61","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5853","_type":"edge","_outV":"61","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5854","_type":"edge","_outV":"61","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5855","_type":"edge","_outV":"61","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5856","_type":"edge","_outV":"61","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5857","_type":"edge","_outV":"61","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5858","_type":"edge","_outV":"61","_inV":"35","_label":"followed_by"},{"weight":10,"_id":"5859","_type":"edge","_outV":"96","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"586","_type":"edge","_outV":"120","_inV":"62","_label":"followed_by"},{"weight":219,"_id":"5860","_type":"edge","_outV":"96","_inV":"148","_label":"followed_by"},{"weight":14,"_id":"5861","_type":"edge","_outV":"96","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"5862","_type":"edge","_outV":"96","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"5863","_type":"edge","_outV":"96","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5864","_type":"edge","_outV":"96","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"5865","_type":"edge","_outV":"96","_inV":"83","_label":"followed_by"},{"weight":96,"_id":"5866","_type":"edge","_outV":"96","_inV":"21","_label":"followed_by"},{"weight":116,"_id":"5867","_type":"edge","_outV":"96","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5868","_type":"edge","_outV":"96","_inV":"145","_label":"followed_by"},{"weight":4,"_id":"5869","_type":"edge","_outV":"96","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"587","_type":"edge","_outV":"120","_inV":"212","_label":"followed_by"},{"weight":159,"_id":"5870","_type":"edge","_outV":"96","_inV":"134","_label":"followed_by"},{"weight":4,"_id":"5871","_type":"edge","_outV":"96","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5872","_type":"edge","_outV":"96","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5873","_type":"edge","_outV":"96","_inV":"104","_label":"followed_by"},{"weight":41,"_id":"5874","_type":"edge","_outV":"96","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"5875","_type":"edge","_outV":"96","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"5876","_type":"edge","_outV":"96","_inV":"98","_label":"followed_by"},{"weight":18,"_id":"5877","_type":"edge","_outV":"96","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5878","_type":"edge","_outV":"96","_inV":"100","_label":"followed_by"},{"weight":22,"_id":"5879","_type":"edge","_outV":"96","_inV":"5","_label":"followed_by"},{"weight":4,"_id":"588","_type":"edge","_outV":"120","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5880","_type":"edge","_outV":"96","_inV":"133","_label":"followed_by"},{"weight":15,"_id":"5881","_type":"edge","_outV":"96","_inV":"62","_label":"followed_by"},{"weight":9,"_id":"5882","_type":"edge","_outV":"96","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"5883","_type":"edge","_outV":"96","_inV":"327","_label":"followed_by"},{"weight":1,"_id":"5884","_type":"edge","_outV":"96","_inV":"147","_label":"followed_by"},{"weight":20,"_id":"5885","_type":"edge","_outV":"96","_inV":"125","_label":"followed_by"},{"weight":15,"_id":"5886","_type":"edge","_outV":"96","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"5887","_type":"edge","_outV":"96","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5888","_type":"edge","_outV":"96","_inV":"171","_label":"followed_by"},{"weight":3,"_id":"5889","_type":"edge","_outV":"96","_inV":"289","_label":"followed_by"},{"weight":2,"_id":"589","_type":"edge","_outV":"120","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5890","_type":"edge","_outV":"96","_inV":"154","_label":"followed_by"},{"weight":7,"_id":"5891","_type":"edge","_outV":"96","_inV":"141","_label":"followed_by"},{"weight":8,"_id":"5892","_type":"edge","_outV":"96","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5893","_type":"edge","_outV":"96","_inV":"109","_label":"followed_by"},{"weight":4,"_id":"5894","_type":"edge","_outV":"96","_inV":"49","_label":"followed_by"},{"weight":51,"_id":"5895","_type":"edge","_outV":"96","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"5896","_type":"edge","_outV":"96","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"5897","_type":"edge","_outV":"96","_inV":"82","_label":"followed_by"},{"weight":23,"_id":"5898","_type":"edge","_outV":"96","_inV":"149","_label":"followed_by"},{"weight":2,"_id":"5899","_type":"edge","_outV":"96","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"59","_type":"edge","_outV":"46","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"590","_type":"edge","_outV":"120","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"5900","_type":"edge","_outV":"96","_inV":"281","_label":"followed_by"},{"weight":1,"_id":"5901","_type":"edge","_outV":"96","_inV":"8","_label":"followed_by"},{"weight":4,"_id":"5902","_type":"edge","_outV":"96","_inV":"319","_label":"followed_by"},{"weight":1,"_id":"5903","_type":"edge","_outV":"96","_inV":"116","_label":"followed_by"},{"weight":26,"_id":"5904","_type":"edge","_outV":"96","_inV":"29","_label":"followed_by"},{"weight":15,"_id":"5905","_type":"edge","_outV":"96","_inV":"129","_label":"followed_by"},{"weight":10,"_id":"5906","_type":"edge","_outV":"96","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5907","_type":"edge","_outV":"96","_inV":"233","_label":"followed_by"},{"weight":1,"_id":"5908","_type":"edge","_outV":"96","_inV":"323","_label":"followed_by"},{"weight":1,"_id":"5909","_type":"edge","_outV":"96","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"591","_type":"edge","_outV":"120","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5910","_type":"edge","_outV":"96","_inV":"183","_label":"followed_by"},{"weight":2,"_id":"5911","_type":"edge","_outV":"96","_inV":"115","_label":"followed_by"},{"weight":27,"_id":"5912","_type":"edge","_outV":"96","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5913","_type":"edge","_outV":"96","_inV":"162","_label":"followed_by"},{"weight":6,"_id":"5914","_type":"edge","_outV":"96","_inV":"132","_label":"followed_by"},{"weight":2,"_id":"5915","_type":"edge","_outV":"96","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"5916","_type":"edge","_outV":"96","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"5917","_type":"edge","_outV":"96","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"5918","_type":"edge","_outV":"96","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"5919","_type":"edge","_outV":"96","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"592","_type":"edge","_outV":"120","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"5920","_type":"edge","_outV":"96","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"5921","_type":"edge","_outV":"96","_inV":"60","_label":"followed_by"},{"weight":11,"_id":"5922","_type":"edge","_outV":"96","_inV":"165","_label":"followed_by"},{"weight":30,"_id":"5923","_type":"edge","_outV":"96","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"5924","_type":"edge","_outV":"96","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"5925","_type":"edge","_outV":"96","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5926","_type":"edge","_outV":"96","_inV":"135","_label":"followed_by"},{"weight":2,"_id":"5927","_type":"edge","_outV":"96","_inV":"92","_label":"followed_by"},{"weight":324,"_id":"5928","_type":"edge","_outV":"96","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"5929","_type":"edge","_outV":"96","_inV":"201","_label":"followed_by"},{"weight":4,"_id":"593","_type":"edge","_outV":"120","_inV":"144","_label":"followed_by"},{"weight":1,"_id":"5930","_type":"edge","_outV":"96","_inV":"279","_label":"followed_by"},{"weight":1,"_id":"5931","_type":"edge","_outV":"96","_inV":"304","_label":"followed_by"},{"weight":1,"_id":"5932","_type":"edge","_outV":"314","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"5933","_type":"edge","_outV":"50","_inV":"234","_label":"followed_by"},{"weight":29,"_id":"5934","_type":"edge","_outV":"50","_inV":"104","_label":"followed_by"},{"weight":12,"_id":"5935","_type":"edge","_outV":"50","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"5936","_type":"edge","_outV":"50","_inV":"72","_label":"followed_by"},{"weight":19,"_id":"5937","_type":"edge","_outV":"50","_inV":"56","_label":"followed_by"},{"weight":19,"_id":"5938","_type":"edge","_outV":"50","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"5939","_type":"edge","_outV":"50","_inV":"89","_label":"followed_by"},{"weight":7,"_id":"594","_type":"edge","_outV":"120","_inV":"204","_label":"followed_by"},{"weight":32,"_id":"5940","_type":"edge","_outV":"50","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5941","_type":"edge","_outV":"50","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5942","_type":"edge","_outV":"50","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"5943","_type":"edge","_outV":"50","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5944","_type":"edge","_outV":"50","_inV":"207","_label":"followed_by"},{"weight":5,"_id":"5945","_type":"edge","_outV":"50","_inV":"49","_label":"followed_by"},{"weight":19,"_id":"5946","_type":"edge","_outV":"50","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5947","_type":"edge","_outV":"50","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5948","_type":"edge","_outV":"50","_inV":"39","_label":"followed_by"},{"weight":17,"_id":"5949","_type":"edge","_outV":"50","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"595","_type":"edge","_outV":"120","_inV":"165","_label":"followed_by"},{"weight":6,"_id":"5950","_type":"edge","_outV":"50","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5951","_type":"edge","_outV":"50","_inV":"206","_label":"followed_by"},{"weight":7,"_id":"5952","_type":"edge","_outV":"50","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5953","_type":"edge","_outV":"50","_inV":"47","_label":"followed_by"},{"weight":5,"_id":"5954","_type":"edge","_outV":"50","_inV":"27","_label":"followed_by"},{"weight":43,"_id":"5955","_type":"edge","_outV":"50","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"5956","_type":"edge","_outV":"50","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"5957","_type":"edge","_outV":"50","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5958","_type":"edge","_outV":"50","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"5959","_type":"edge","_outV":"50","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"596","_type":"edge","_outV":"120","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5960","_type":"edge","_outV":"50","_inV":"55","_label":"followed_by"},{"weight":5,"_id":"5961","_type":"edge","_outV":"50","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"5962","_type":"edge","_outV":"50","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5963","_type":"edge","_outV":"50","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"5964","_type":"edge","_outV":"50","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"5965","_type":"edge","_outV":"50","_inV":"83","_label":"followed_by"},{"weight":13,"_id":"5966","_type":"edge","_outV":"50","_inV":"51","_label":"followed_by"},{"weight":15,"_id":"5967","_type":"edge","_outV":"50","_inV":"80","_label":"followed_by"},{"weight":7,"_id":"5968","_type":"edge","_outV":"50","_inV":"98","_label":"followed_by"},{"weight":9,"_id":"5969","_type":"edge","_outV":"50","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"597","_type":"edge","_outV":"120","_inV":"90","_label":"followed_by"},{"weight":7,"_id":"5970","_type":"edge","_outV":"50","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5971","_type":"edge","_outV":"50","_inV":"324","_label":"followed_by"},{"weight":1,"_id":"5972","_type":"edge","_outV":"50","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"5973","_type":"edge","_outV":"50","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5974","_type":"edge","_outV":"50","_inV":"196","_label":"followed_by"},{"weight":6,"_id":"5975","_type":"edge","_outV":"50","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5976","_type":"edge","_outV":"50","_inV":"110","_label":"followed_by"},{"weight":5,"_id":"5977","_type":"edge","_outV":"50","_inV":"112","_label":"followed_by"},{"weight":9,"_id":"5978","_type":"edge","_outV":"50","_inV":"154","_label":"followed_by"},{"weight":9,"_id":"5979","_type":"edge","_outV":"50","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"598","_type":"edge","_outV":"120","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"5980","_type":"edge","_outV":"50","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5981","_type":"edge","_outV":"50","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"5982","_type":"edge","_outV":"50","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5983","_type":"edge","_outV":"50","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5984","_type":"edge","_outV":"50","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"5985","_type":"edge","_outV":"50","_inV":"105","_label":"followed_by"},{"weight":5,"_id":"5986","_type":"edge","_outV":"50","_inV":"78","_label":"followed_by"},{"weight":6,"_id":"5987","_type":"edge","_outV":"50","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"5988","_type":"edge","_outV":"50","_inV":"65","_label":"followed_by"},{"weight":12,"_id":"5989","_type":"edge","_outV":"50","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"599","_type":"edge","_outV":"120","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"5990","_type":"edge","_outV":"50","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"5991","_type":"edge","_outV":"50","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"5992","_type":"edge","_outV":"50","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"5993","_type":"edge","_outV":"50","_inV":"108","_label":"followed_by"},{"weight":9,"_id":"5994","_type":"edge","_outV":"50","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"5995","_type":"edge","_outV":"50","_inV":"75","_label":"followed_by"},{"weight":8,"_id":"5996","_type":"edge","_outV":"50","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"5997","_type":"edge","_outV":"50","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5998","_type":"edge","_outV":"50","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5999","_type":"edge","_outV":"50","_inV":"243","_label":"followed_by"},{"weight":3,"_id":"6","_type":"edge","_outV":"9","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"60","_type":"edge","_outV":"46","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"600","_type":"edge","_outV":"120","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6000","_type":"edge","_outV":"50","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6001","_type":"edge","_outV":"50","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6002","_type":"edge","_outV":"50","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"6003","_type":"edge","_outV":"50","_inV":"151","_label":"followed_by"},{"weight":2,"_id":"6004","_type":"edge","_outV":"50","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6005","_type":"edge","_outV":"50","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"6006","_type":"edge","_outV":"50","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6007","_type":"edge","_outV":"50","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6008","_type":"edge","_outV":"50","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"6009","_type":"edge","_outV":"50","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"601","_type":"edge","_outV":"120","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"6010","_type":"edge","_outV":"50","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6011","_type":"edge","_outV":"50","_inV":"40","_label":"followed_by"},{"weight":6,"_id":"6012","_type":"edge","_outV":"204","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6013","_type":"edge","_outV":"204","_inV":"114","_label":"followed_by"},{"weight":10,"_id":"6014","_type":"edge","_outV":"204","_inV":"87","_label":"followed_by"},{"weight":6,"_id":"6015","_type":"edge","_outV":"204","_inV":"62","_label":"followed_by"},{"weight":6,"_id":"6016","_type":"edge","_outV":"204","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6017","_type":"edge","_outV":"204","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6018","_type":"edge","_outV":"204","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"6019","_type":"edge","_outV":"204","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"602","_type":"edge","_outV":"120","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"6020","_type":"edge","_outV":"204","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"6021","_type":"edge","_outV":"204","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"6022","_type":"edge","_outV":"204","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"6023","_type":"edge","_outV":"204","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6024","_type":"edge","_outV":"204","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6025","_type":"edge","_outV":"204","_inV":"81","_label":"followed_by"},{"weight":8,"_id":"6026","_type":"edge","_outV":"204","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"6027","_type":"edge","_outV":"204","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6028","_type":"edge","_outV":"204","_inV":"332","_label":"followed_by"},{"weight":4,"_id":"6029","_type":"edge","_outV":"204","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"603","_type":"edge","_outV":"120","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"6030","_type":"edge","_outV":"204","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6031","_type":"edge","_outV":"204","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6032","_type":"edge","_outV":"115","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6033","_type":"edge","_outV":"115","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"6034","_type":"edge","_outV":"115","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6035","_type":"edge","_outV":"115","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"6036","_type":"edge","_outV":"115","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6037","_type":"edge","_outV":"115","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6038","_type":"edge","_outV":"115","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6039","_type":"edge","_outV":"115","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"604","_type":"edge","_outV":"120","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"6040","_type":"edge","_outV":"115","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6041","_type":"edge","_outV":"115","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6042","_type":"edge","_outV":"115","_inV":"151","_label":"followed_by"},{"weight":2,"_id":"6043","_type":"edge","_outV":"115","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"6044","_type":"edge","_outV":"115","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6045","_type":"edge","_outV":"115","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"6046","_type":"edge","_outV":"115","_inV":"103","_label":"followed_by"},{"weight":4,"_id":"6047","_type":"edge","_outV":"115","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"6048","_type":"edge","_outV":"115","_inV":"79","_label":"followed_by"},{"weight":6,"_id":"6049","_type":"edge","_outV":"115","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"605","_type":"edge","_outV":"120","_inV":"193","_label":"followed_by"},{"weight":2,"_id":"6050","_type":"edge","_outV":"115","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6051","_type":"edge","_outV":"115","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"6052","_type":"edge","_outV":"115","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"6053","_type":"edge","_outV":"115","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6054","_type":"edge","_outV":"115","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"6055","_type":"edge","_outV":"115","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"6056","_type":"edge","_outV":"115","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6057","_type":"edge","_outV":"115","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6058","_type":"edge","_outV":"115","_inV":"117","_label":"followed_by"},{"weight":3,"_id":"6059","_type":"edge","_outV":"115","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"606","_type":"edge","_outV":"120","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"6060","_type":"edge","_outV":"115","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"6061","_type":"edge","_outV":"115","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"6062","_type":"edge","_outV":"115","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6063","_type":"edge","_outV":"115","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6064","_type":"edge","_outV":"115","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6065","_type":"edge","_outV":"115","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6066","_type":"edge","_outV":"115","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6067","_type":"edge","_outV":"296","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6068","_type":"edge","_outV":"296","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6069","_type":"edge","_outV":"296","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"607","_type":"edge","_outV":"182","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6070","_type":"edge","_outV":"296","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"6071","_type":"edge","_outV":"72","_inV":"24","_label":"followed_by"},{"weight":5,"_id":"6072","_type":"edge","_outV":"72","_inV":"11","_label":"followed_by"},{"weight":13,"_id":"6073","_type":"edge","_outV":"72","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"6074","_type":"edge","_outV":"72","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"6075","_type":"edge","_outV":"72","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"6076","_type":"edge","_outV":"72","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"6077","_type":"edge","_outV":"72","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6078","_type":"edge","_outV":"72","_inV":"89","_label":"followed_by"},{"weight":15,"_id":"6079","_type":"edge","_outV":"72","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"608","_type":"edge","_outV":"23","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"6080","_type":"edge","_outV":"72","_inV":"18","_label":"followed_by"},{"weight":24,"_id":"6081","_type":"edge","_outV":"72","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6082","_type":"edge","_outV":"72","_inV":"22","_label":"followed_by"},{"weight":9,"_id":"6083","_type":"edge","_outV":"72","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"6084","_type":"edge","_outV":"72","_inV":"20","_label":"followed_by"},{"weight":6,"_id":"6085","_type":"edge","_outV":"72","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6086","_type":"edge","_outV":"72","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6087","_type":"edge","_outV":"72","_inV":"189","_label":"followed_by"},{"weight":12,"_id":"6088","_type":"edge","_outV":"72","_inV":"84","_label":"followed_by"},{"weight":9,"_id":"6089","_type":"edge","_outV":"72","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"609","_type":"edge","_outV":"23","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"6090","_type":"edge","_outV":"72","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"6091","_type":"edge","_outV":"72","_inV":"112","_label":"followed_by"},{"weight":8,"_id":"6092","_type":"edge","_outV":"72","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6093","_type":"edge","_outV":"72","_inV":"109","_label":"followed_by"},{"weight":4,"_id":"6094","_type":"edge","_outV":"72","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"6095","_type":"edge","_outV":"72","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6096","_type":"edge","_outV":"72","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"6097","_type":"edge","_outV":"72","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"6098","_type":"edge","_outV":"72","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"6099","_type":"edge","_outV":"72","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"61","_type":"edge","_outV":"46","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"610","_type":"edge","_outV":"23","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"6100","_type":"edge","_outV":"72","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"6101","_type":"edge","_outV":"72","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6102","_type":"edge","_outV":"72","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6103","_type":"edge","_outV":"72","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"6104","_type":"edge","_outV":"72","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6105","_type":"edge","_outV":"72","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6106","_type":"edge","_outV":"72","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"6107","_type":"edge","_outV":"72","_inV":"65","_label":"followed_by"},{"weight":10,"_id":"6108","_type":"edge","_outV":"72","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6109","_type":"edge","_outV":"72","_inV":"121","_label":"followed_by"},{"weight":4,"_id":"611","_type":"edge","_outV":"23","_inV":"58","_label":"followed_by"},{"weight":24,"_id":"6110","_type":"edge","_outV":"72","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6111","_type":"edge","_outV":"72","_inV":"111","_label":"followed_by"},{"weight":9,"_id":"6112","_type":"edge","_outV":"72","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"6113","_type":"edge","_outV":"72","_inV":"114","_label":"followed_by"},{"weight":6,"_id":"6114","_type":"edge","_outV":"72","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6115","_type":"edge","_outV":"72","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"6116","_type":"edge","_outV":"72","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"6117","_type":"edge","_outV":"72","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6118","_type":"edge","_outV":"72","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"6119","_type":"edge","_outV":"72","_inV":"91","_label":"followed_by"},{"weight":10,"_id":"612","_type":"edge","_outV":"23","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6120","_type":"edge","_outV":"72","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6121","_type":"edge","_outV":"72","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"6122","_type":"edge","_outV":"72","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6123","_type":"edge","_outV":"72","_inV":"150","_label":"followed_by"},{"weight":3,"_id":"6124","_type":"edge","_outV":"72","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"6125","_type":"edge","_outV":"72","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"6126","_type":"edge","_outV":"72","_inV":"4","_label":"followed_by"},{"weight":12,"_id":"6127","_type":"edge","_outV":"72","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6128","_type":"edge","_outV":"72","_inV":"337","_label":"followed_by"},{"weight":5,"_id":"6129","_type":"edge","_outV":"72","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"613","_type":"edge","_outV":"23","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"6130","_type":"edge","_outV":"72","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6131","_type":"edge","_outV":"72","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"6132","_type":"edge","_outV":"72","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"6133","_type":"edge","_outV":"72","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6134","_type":"edge","_outV":"72","_inV":"217","_label":"followed_by"},{"weight":2,"_id":"6135","_type":"edge","_outV":"72","_inV":"37","_label":"followed_by"},{"weight":3,"_id":"6136","_type":"edge","_outV":"72","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"6137","_type":"edge","_outV":"72","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"6138","_type":"edge","_outV":"72","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"6139","_type":"edge","_outV":"72","_inV":"177","_label":"followed_by"},{"weight":6,"_id":"614","_type":"edge","_outV":"23","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6140","_type":"edge","_outV":"289","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6141","_type":"edge","_outV":"289","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6142","_type":"edge","_outV":"289","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"6143","_type":"edge","_outV":"289","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"6144","_type":"edge","_outV":"289","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"6145","_type":"edge","_outV":"289","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"6146","_type":"edge","_outV":"36","_inV":"82","_label":"followed_by"},{"weight":25,"_id":"6147","_type":"edge","_outV":"36","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"6148","_type":"edge","_outV":"36","_inV":"84","_label":"followed_by"},{"weight":41,"_id":"6149","_type":"edge","_outV":"36","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"615","_type":"edge","_outV":"23","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"6150","_type":"edge","_outV":"36","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6151","_type":"edge","_outV":"36","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"6152","_type":"edge","_outV":"36","_inV":"19","_label":"followed_by"},{"weight":28,"_id":"6153","_type":"edge","_outV":"36","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"6154","_type":"edge","_outV":"36","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"6155","_type":"edge","_outV":"36","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6156","_type":"edge","_outV":"36","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"6157","_type":"edge","_outV":"36","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6158","_type":"edge","_outV":"36","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"6159","_type":"edge","_outV":"36","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"616","_type":"edge","_outV":"23","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"6160","_type":"edge","_outV":"36","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6161","_type":"edge","_outV":"36","_inV":"94","_label":"followed_by"},{"weight":20,"_id":"6162","_type":"edge","_outV":"36","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6163","_type":"edge","_outV":"36","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6164","_type":"edge","_outV":"36","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6165","_type":"edge","_outV":"36","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6166","_type":"edge","_outV":"36","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6167","_type":"edge","_outV":"36","_inV":"149","_label":"followed_by"},{"weight":13,"_id":"6168","_type":"edge","_outV":"36","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6169","_type":"edge","_outV":"36","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"617","_type":"edge","_outV":"23","_inV":"207","_label":"followed_by"},{"weight":1,"_id":"6170","_type":"edge","_outV":"36","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"6171","_type":"edge","_outV":"36","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6172","_type":"edge","_outV":"36","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6173","_type":"edge","_outV":"36","_inV":"183","_label":"followed_by"},{"weight":7,"_id":"6174","_type":"edge","_outV":"36","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"6175","_type":"edge","_outV":"36","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6176","_type":"edge","_outV":"36","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6177","_type":"edge","_outV":"36","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6178","_type":"edge","_outV":"36","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6179","_type":"edge","_outV":"36","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"618","_type":"edge","_outV":"23","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"6180","_type":"edge","_outV":"36","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"6181","_type":"edge","_outV":"36","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"6182","_type":"edge","_outV":"36","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"6183","_type":"edge","_outV":"36","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6184","_type":"edge","_outV":"36","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"6185","_type":"edge","_outV":"36","_inV":"173","_label":"followed_by"},{"weight":3,"_id":"6186","_type":"edge","_outV":"36","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6187","_type":"edge","_outV":"36","_inV":"258","_label":"followed_by"},{"weight":2,"_id":"6188","_type":"edge","_outV":"36","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"6189","_type":"edge","_outV":"36","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"619","_type":"edge","_outV":"23","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6190","_type":"edge","_outV":"2","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"6191","_type":"edge","_outV":"2","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6192","_type":"edge","_outV":"313","_inV":"263","_label":"followed_by"},{"weight":1,"_id":"6193","_type":"edge","_outV":"232","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6194","_type":"edge","_outV":"232","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6195","_type":"edge","_outV":"232","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6196","_type":"edge","_outV":"232","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6197","_type":"edge","_outV":"232","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6198","_type":"edge","_outV":"220","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"6199","_type":"edge","_outV":"319","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"62","_type":"edge","_outV":"46","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"620","_type":"edge","_outV":"23","_inV":"218","_label":"followed_by"},{"weight":2,"_id":"6200","_type":"edge","_outV":"319","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"6201","_type":"edge","_outV":"319","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"6202","_type":"edge","_outV":"319","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"6203","_type":"edge","_outV":"319","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"6204","_type":"edge","_outV":"319","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6205","_type":"edge","_outV":"319","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6206","_type":"edge","_outV":"319","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6207","_type":"edge","_outV":"319","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"6208","_type":"edge","_outV":"319","_inV":"3","_label":"followed_by"},{"weight":4,"_id":"6209","_type":"edge","_outV":"319","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"621","_type":"edge","_outV":"23","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"6210","_type":"edge","_outV":"319","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6211","_type":"edge","_outV":"319","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6212","_type":"edge","_outV":"319","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6213","_type":"edge","_outV":"319","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"6214","_type":"edge","_outV":"319","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6215","_type":"edge","_outV":"319","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"6216","_type":"edge","_outV":"337","_inV":"334","_label":"followed_by"},{"weight":1,"_id":"6217","_type":"edge","_outV":"336","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6218","_type":"edge","_outV":"117","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6219","_type":"edge","_outV":"117","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"622","_type":"edge","_outV":"23","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"6220","_type":"edge","_outV":"117","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"6221","_type":"edge","_outV":"117","_inV":"59","_label":"followed_by"},{"weight":33,"_id":"6222","_type":"edge","_outV":"117","_inV":"58","_label":"followed_by"},{"weight":5,"_id":"6223","_type":"edge","_outV":"117","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"6224","_type":"edge","_outV":"117","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6225","_type":"edge","_outV":"117","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"6226","_type":"edge","_outV":"117","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6227","_type":"edge","_outV":"117","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6228","_type":"edge","_outV":"117","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6229","_type":"edge","_outV":"117","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"623","_type":"edge","_outV":"23","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"6230","_type":"edge","_outV":"117","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"6231","_type":"edge","_outV":"117","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"6232","_type":"edge","_outV":"117","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6233","_type":"edge","_outV":"117","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6234","_type":"edge","_outV":"117","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"6235","_type":"edge","_outV":"117","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"6236","_type":"edge","_outV":"117","_inV":"73","_label":"followed_by"},{"weight":6,"_id":"6237","_type":"edge","_outV":"117","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6238","_type":"edge","_outV":"117","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"6239","_type":"edge","_outV":"117","_inV":"118","_label":"followed_by"},{"weight":14,"_id":"624","_type":"edge","_outV":"23","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"6240","_type":"edge","_outV":"117","_inV":"39","_label":"followed_by"},{"weight":8,"_id":"6241","_type":"edge","_outV":"117","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"6242","_type":"edge","_outV":"117","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"6243","_type":"edge","_outV":"117","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"6244","_type":"edge","_outV":"117","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6245","_type":"edge","_outV":"117","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"6246","_type":"edge","_outV":"117","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"6247","_type":"edge","_outV":"117","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"6248","_type":"edge","_outV":"117","_inV":"202","_label":"followed_by"},{"weight":5,"_id":"6249","_type":"edge","_outV":"117","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"625","_type":"edge","_outV":"23","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6250","_type":"edge","_outV":"117","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6251","_type":"edge","_outV":"117","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6252","_type":"edge","_outV":"117","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6253","_type":"edge","_outV":"117","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"6254","_type":"edge","_outV":"117","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6255","_type":"edge","_outV":"117","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"6256","_type":"edge","_outV":"117","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"6257","_type":"edge","_outV":"117","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6258","_type":"edge","_outV":"117","_inV":"63","_label":"followed_by"},{"weight":4,"_id":"6259","_type":"edge","_outV":"117","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"626","_type":"edge","_outV":"23","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6260","_type":"edge","_outV":"117","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6261","_type":"edge","_outV":"117","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"6262","_type":"edge","_outV":"117","_inV":"140","_label":"followed_by"},{"weight":3,"_id":"6263","_type":"edge","_outV":"310","_inV":"165","_label":"followed_by"},{"weight":22,"_id":"6264","_type":"edge","_outV":"49","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6265","_type":"edge","_outV":"49","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"6266","_type":"edge","_outV":"49","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6267","_type":"edge","_outV":"49","_inV":"15","_label":"followed_by"},{"weight":51,"_id":"6268","_type":"edge","_outV":"49","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"6269","_type":"edge","_outV":"49","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"627","_type":"edge","_outV":"23","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6270","_type":"edge","_outV":"49","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6271","_type":"edge","_outV":"49","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"6272","_type":"edge","_outV":"49","_inV":"252","_label":"followed_by"},{"weight":2,"_id":"6273","_type":"edge","_outV":"49","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"6274","_type":"edge","_outV":"49","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"6275","_type":"edge","_outV":"49","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"6276","_type":"edge","_outV":"49","_inV":"18","_label":"followed_by"},{"weight":168,"_id":"6277","_type":"edge","_outV":"49","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6278","_type":"edge","_outV":"49","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6279","_type":"edge","_outV":"49","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"628","_type":"edge","_outV":"23","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"6280","_type":"edge","_outV":"49","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6281","_type":"edge","_outV":"49","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6282","_type":"edge","_outV":"49","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6283","_type":"edge","_outV":"49","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6284","_type":"edge","_outV":"49","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6285","_type":"edge","_outV":"49","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6286","_type":"edge","_outV":"49","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"6287","_type":"edge","_outV":"49","_inV":"145","_label":"followed_by"},{"weight":1,"_id":"6288","_type":"edge","_outV":"49","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"6289","_type":"edge","_outV":"49","_inV":"83","_label":"followed_by"},{"weight":10,"_id":"629","_type":"edge","_outV":"23","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6290","_type":"edge","_outV":"49","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6291","_type":"edge","_outV":"49","_inV":"85","_label":"followed_by"},{"weight":12,"_id":"6292","_type":"edge","_outV":"49","_inV":"33","_label":"followed_by"},{"weight":8,"_id":"6293","_type":"edge","_outV":"49","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"6294","_type":"edge","_outV":"49","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"6295","_type":"edge","_outV":"49","_inV":"183","_label":"followed_by"},{"weight":3,"_id":"6296","_type":"edge","_outV":"49","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6297","_type":"edge","_outV":"49","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6298","_type":"edge","_outV":"49","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6299","_type":"edge","_outV":"49","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"63","_type":"edge","_outV":"46","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"630","_type":"edge","_outV":"23","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"6300","_type":"edge","_outV":"49","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"6301","_type":"edge","_outV":"49","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"6302","_type":"edge","_outV":"49","_inV":"319","_label":"followed_by"},{"weight":2,"_id":"6303","_type":"edge","_outV":"49","_inV":"186","_label":"followed_by"},{"weight":3,"_id":"6304","_type":"edge","_outV":"49","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6305","_type":"edge","_outV":"123","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6306","_type":"edge","_outV":"123","_inV":"282","_label":"followed_by"},{"weight":1,"_id":"6307","_type":"edge","_outV":"123","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6308","_type":"edge","_outV":"123","_inV":"19","_label":"followed_by"},{"weight":10,"_id":"6309","_type":"edge","_outV":"123","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"631","_type":"edge","_outV":"23","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6310","_type":"edge","_outV":"123","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"6311","_type":"edge","_outV":"123","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6312","_type":"edge","_outV":"123","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"6313","_type":"edge","_outV":"123","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6314","_type":"edge","_outV":"123","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6315","_type":"edge","_outV":"123","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"6316","_type":"edge","_outV":"123","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6317","_type":"edge","_outV":"123","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6318","_type":"edge","_outV":"123","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"6319","_type":"edge","_outV":"21","_inV":"59","_label":"followed_by"},{"weight":11,"_id":"632","_type":"edge","_outV":"23","_inV":"80","_label":"followed_by"},{"weight":72,"_id":"6320","_type":"edge","_outV":"21","_inV":"96","_label":"followed_by"},{"weight":24,"_id":"6321","_type":"edge","_outV":"21","_inV":"319","_label":"followed_by"},{"weight":48,"_id":"6322","_type":"edge","_outV":"21","_inV":"148","_label":"followed_by"},{"weight":7,"_id":"6323","_type":"edge","_outV":"21","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6324","_type":"edge","_outV":"21","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"6325","_type":"edge","_outV":"21","_inV":"252","_label":"followed_by"},{"weight":2,"_id":"6326","_type":"edge","_outV":"21","_inV":"145","_label":"followed_by"},{"weight":3,"_id":"6327","_type":"edge","_outV":"21","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6328","_type":"edge","_outV":"21","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"6329","_type":"edge","_outV":"21","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"633","_type":"edge","_outV":"23","_inV":"3","_label":"followed_by"},{"weight":12,"_id":"6330","_type":"edge","_outV":"21","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"6331","_type":"edge","_outV":"21","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"6332","_type":"edge","_outV":"21","_inV":"56","_label":"followed_by"},{"weight":32,"_id":"6333","_type":"edge","_outV":"21","_inV":"125","_label":"followed_by"},{"weight":34,"_id":"6334","_type":"edge","_outV":"21","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6335","_type":"edge","_outV":"21","_inV":"9","_label":"followed_by"},{"weight":24,"_id":"6336","_type":"edge","_outV":"21","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6337","_type":"edge","_outV":"21","_inV":"51","_label":"followed_by"},{"weight":11,"_id":"6338","_type":"edge","_outV":"21","_inV":"83","_label":"followed_by"},{"weight":9,"_id":"6339","_type":"edge","_outV":"21","_inV":"127","_label":"followed_by"},{"weight":8,"_id":"634","_type":"edge","_outV":"23","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"6340","_type":"edge","_outV":"21","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"6341","_type":"edge","_outV":"21","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"6342","_type":"edge","_outV":"21","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6343","_type":"edge","_outV":"21","_inV":"3","_label":"followed_by"},{"weight":6,"_id":"6344","_type":"edge","_outV":"21","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"6345","_type":"edge","_outV":"21","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"6346","_type":"edge","_outV":"21","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6347","_type":"edge","_outV":"21","_inV":"338","_label":"followed_by"},{"weight":1,"_id":"6348","_type":"edge","_outV":"21","_inV":"281","_label":"followed_by"},{"weight":1,"_id":"6349","_type":"edge","_outV":"21","_inV":"114","_label":"followed_by"},{"weight":16,"_id":"635","_type":"edge","_outV":"23","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6350","_type":"edge","_outV":"21","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"6351","_type":"edge","_outV":"21","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6352","_type":"edge","_outV":"21","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"6353","_type":"edge","_outV":"21","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"6354","_type":"edge","_outV":"21","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6355","_type":"edge","_outV":"21","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6356","_type":"edge","_outV":"21","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6357","_type":"edge","_outV":"21","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6358","_type":"edge","_outV":"21","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"6359","_type":"edge","_outV":"21","_inV":"141","_label":"followed_by"},{"weight":11,"_id":"636","_type":"edge","_outV":"23","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"6360","_type":"edge","_outV":"21","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6361","_type":"edge","_outV":"21","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6362","_type":"edge","_outV":"21","_inV":"65","_label":"followed_by"},{"weight":20,"_id":"6363","_type":"edge","_outV":"21","_inV":"33","_label":"followed_by"},{"weight":28,"_id":"6364","_type":"edge","_outV":"21","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"6365","_type":"edge","_outV":"21","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6366","_type":"edge","_outV":"21","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6367","_type":"edge","_outV":"21","_inV":"67","_label":"followed_by"},{"weight":7,"_id":"6368","_type":"edge","_outV":"21","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6369","_type":"edge","_outV":"21","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"637","_type":"edge","_outV":"23","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6370","_type":"edge","_outV":"21","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"6371","_type":"edge","_outV":"21","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6372","_type":"edge","_outV":"21","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6373","_type":"edge","_outV":"21","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6374","_type":"edge","_outV":"21","_inV":"292","_label":"followed_by"},{"weight":4,"_id":"6375","_type":"edge","_outV":"21","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6376","_type":"edge","_outV":"21","_inV":"286","_label":"followed_by"},{"weight":1,"_id":"6377","_type":"edge","_outV":"21","_inV":"329","_label":"followed_by"},{"weight":1,"_id":"6378","_type":"edge","_outV":"21","_inV":"37","_label":"followed_by"},{"weight":58,"_id":"6379","_type":"edge","_outV":"65","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"638","_type":"edge","_outV":"23","_inV":"9","_label":"followed_by"},{"weight":59,"_id":"6380","_type":"edge","_outV":"65","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"6381","_type":"edge","_outV":"65","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6382","_type":"edge","_outV":"65","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"6383","_type":"edge","_outV":"65","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6384","_type":"edge","_outV":"65","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"6385","_type":"edge","_outV":"65","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6386","_type":"edge","_outV":"65","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"6387","_type":"edge","_outV":"65","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6388","_type":"edge","_outV":"65","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6389","_type":"edge","_outV":"65","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"639","_type":"edge","_outV":"23","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6390","_type":"edge","_outV":"65","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"6391","_type":"edge","_outV":"65","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6392","_type":"edge","_outV":"65","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"6393","_type":"edge","_outV":"136","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6394","_type":"edge","_outV":"136","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"6395","_type":"edge","_outV":"136","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"6396","_type":"edge","_outV":"136","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6397","_type":"edge","_outV":"136","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6398","_type":"edge","_outV":"136","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6399","_type":"edge","_outV":"136","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"64","_type":"edge","_outV":"46","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"640","_type":"edge","_outV":"23","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"6400","_type":"edge","_outV":"136","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6401","_type":"edge","_outV":"134","_inV":"69","_label":"followed_by"},{"weight":18,"_id":"6402","_type":"edge","_outV":"134","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"6403","_type":"edge","_outV":"134","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6404","_type":"edge","_outV":"134","_inV":"68","_label":"followed_by"},{"weight":5,"_id":"6405","_type":"edge","_outV":"134","_inV":"76","_label":"followed_by"},{"weight":7,"_id":"6406","_type":"edge","_outV":"134","_inV":"153","_label":"followed_by"},{"weight":24,"_id":"6407","_type":"edge","_outV":"134","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6408","_type":"edge","_outV":"134","_inV":"78","_label":"followed_by"},{"weight":5,"_id":"6409","_type":"edge","_outV":"134","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"641","_type":"edge","_outV":"23","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6410","_type":"edge","_outV":"134","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6411","_type":"edge","_outV":"134","_inV":"149","_label":"followed_by"},{"weight":10,"_id":"6412","_type":"edge","_outV":"134","_inV":"130","_label":"followed_by"},{"weight":18,"_id":"6413","_type":"edge","_outV":"134","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6414","_type":"edge","_outV":"134","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"6415","_type":"edge","_outV":"134","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6416","_type":"edge","_outV":"134","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6417","_type":"edge","_outV":"134","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6418","_type":"edge","_outV":"134","_inV":"36","_label":"followed_by"},{"weight":6,"_id":"6419","_type":"edge","_outV":"134","_inV":"94","_label":"followed_by"},{"weight":8,"_id":"642","_type":"edge","_outV":"23","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6420","_type":"edge","_outV":"134","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"6421","_type":"edge","_outV":"134","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6422","_type":"edge","_outV":"134","_inV":"116","_label":"followed_by"},{"weight":32,"_id":"6423","_type":"edge","_outV":"134","_inV":"70","_label":"followed_by"},{"weight":23,"_id":"6424","_type":"edge","_outV":"134","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6425","_type":"edge","_outV":"134","_inV":"3","_label":"followed_by"},{"weight":8,"_id":"6426","_type":"edge","_outV":"134","_inV":"125","_label":"followed_by"},{"weight":31,"_id":"6427","_type":"edge","_outV":"134","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6428","_type":"edge","_outV":"134","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"6429","_type":"edge","_outV":"134","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"643","_type":"edge","_outV":"23","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"6430","_type":"edge","_outV":"134","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"6431","_type":"edge","_outV":"134","_inV":"5","_label":"followed_by"},{"weight":34,"_id":"6432","_type":"edge","_outV":"134","_inV":"165","_label":"followed_by"},{"weight":4,"_id":"6433","_type":"edge","_outV":"134","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"6434","_type":"edge","_outV":"134","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6435","_type":"edge","_outV":"134","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"6436","_type":"edge","_outV":"134","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"6437","_type":"edge","_outV":"318","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6438","_type":"edge","_outV":"338","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"6439","_type":"edge","_outV":"284","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"644","_type":"edge","_outV":"23","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6440","_type":"edge","_outV":"284","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"6441","_type":"edge","_outV":"187","_inV":"120","_label":"followed_by"},{"weight":7,"_id":"6442","_type":"edge","_outV":"187","_inV":"11","_label":"followed_by"},{"weight":47,"_id":"6443","_type":"edge","_outV":"187","_inV":"13","_label":"followed_by"},{"weight":9,"_id":"6444","_type":"edge","_outV":"187","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6445","_type":"edge","_outV":"187","_inV":"47","_label":"followed_by"},{"weight":5,"_id":"6446","_type":"edge","_outV":"187","_inV":"24","_label":"followed_by"},{"weight":5,"_id":"6447","_type":"edge","_outV":"187","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"6448","_type":"edge","_outV":"187","_inV":"3","_label":"followed_by"},{"weight":16,"_id":"6449","_type":"edge","_outV":"187","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"645","_type":"edge","_outV":"23","_inV":"170","_label":"followed_by"},{"weight":8,"_id":"6450","_type":"edge","_outV":"187","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6451","_type":"edge","_outV":"187","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"6452","_type":"edge","_outV":"187","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6453","_type":"edge","_outV":"187","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"6454","_type":"edge","_outV":"187","_inV":"252","_label":"followed_by"},{"weight":12,"_id":"6455","_type":"edge","_outV":"187","_inV":"12","_label":"followed_by"},{"weight":8,"_id":"6456","_type":"edge","_outV":"187","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6457","_type":"edge","_outV":"187","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"6458","_type":"edge","_outV":"187","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6459","_type":"edge","_outV":"187","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"646","_type":"edge","_outV":"23","_inV":"68","_label":"followed_by"},{"weight":10,"_id":"6460","_type":"edge","_outV":"187","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"6461","_type":"edge","_outV":"187","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"6462","_type":"edge","_outV":"187","_inV":"26","_label":"followed_by"},{"weight":26,"_id":"6463","_type":"edge","_outV":"187","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6464","_type":"edge","_outV":"187","_inV":"55","_label":"followed_by"},{"weight":9,"_id":"6465","_type":"edge","_outV":"187","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6466","_type":"edge","_outV":"187","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6467","_type":"edge","_outV":"187","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6468","_type":"edge","_outV":"187","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"6469","_type":"edge","_outV":"187","_inV":"129","_label":"followed_by"},{"weight":6,"_id":"647","_type":"edge","_outV":"23","_inV":"112","_label":"followed_by"},{"weight":32,"_id":"6470","_type":"edge","_outV":"187","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6471","_type":"edge","_outV":"187","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6472","_type":"edge","_outV":"187","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"6473","_type":"edge","_outV":"187","_inV":"42","_label":"followed_by"},{"weight":5,"_id":"6474","_type":"edge","_outV":"187","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6475","_type":"edge","_outV":"187","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"6476","_type":"edge","_outV":"187","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"6477","_type":"edge","_outV":"187","_inV":"32","_label":"followed_by"},{"weight":9,"_id":"6478","_type":"edge","_outV":"187","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6479","_type":"edge","_outV":"187","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"648","_type":"edge","_outV":"23","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6480","_type":"edge","_outV":"187","_inV":"101","_label":"followed_by"},{"weight":9,"_id":"6481","_type":"edge","_outV":"187","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"6482","_type":"edge","_outV":"187","_inV":"96","_label":"followed_by"},{"weight":6,"_id":"6483","_type":"edge","_outV":"187","_inV":"82","_label":"followed_by"},{"weight":34,"_id":"6484","_type":"edge","_outV":"187","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"6485","_type":"edge","_outV":"187","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"6486","_type":"edge","_outV":"187","_inV":"106","_label":"followed_by"},{"weight":16,"_id":"6487","_type":"edge","_outV":"187","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6488","_type":"edge","_outV":"187","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"6489","_type":"edge","_outV":"187","_inV":"73","_label":"followed_by"},{"weight":22,"_id":"649","_type":"edge","_outV":"23","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"6490","_type":"edge","_outV":"187","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6491","_type":"edge","_outV":"187","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"6492","_type":"edge","_outV":"187","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"6493","_type":"edge","_outV":"187","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6494","_type":"edge","_outV":"187","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6495","_type":"edge","_outV":"187","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"6496","_type":"edge","_outV":"187","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"6497","_type":"edge","_outV":"187","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"6498","_type":"edge","_outV":"187","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6499","_type":"edge","_outV":"187","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"65","_type":"edge","_outV":"46","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"650","_type":"edge","_outV":"23","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"6500","_type":"edge","_outV":"187","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6501","_type":"edge","_outV":"187","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"6502","_type":"edge","_outV":"187","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6503","_type":"edge","_outV":"187","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"6504","_type":"edge","_outV":"187","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6505","_type":"edge","_outV":"187","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6506","_type":"edge","_outV":"187","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6507","_type":"edge","_outV":"187","_inV":"150","_label":"followed_by"},{"weight":3,"_id":"6508","_type":"edge","_outV":"187","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6509","_type":"edge","_outV":"187","_inV":"257","_label":"followed_by"},{"weight":15,"_id":"651","_type":"edge","_outV":"23","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6510","_type":"edge","_outV":"187","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6511","_type":"edge","_outV":"187","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"6512","_type":"edge","_outV":"187","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"6513","_type":"edge","_outV":"187","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"6514","_type":"edge","_outV":"187","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6515","_type":"edge","_outV":"187","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"6516","_type":"edge","_outV":"187","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"6517","_type":"edge","_outV":"187","_inV":"31","_label":"followed_by"},{"weight":8,"_id":"6518","_type":"edge","_outV":"187","_inV":"28","_label":"followed_by"},{"weight":5,"_id":"6519","_type":"edge","_outV":"187","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"652","_type":"edge","_outV":"23","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6520","_type":"edge","_outV":"187","_inV":"34","_label":"followed_by"},{"weight":5,"_id":"6521","_type":"edge","_outV":"187","_inV":"35","_label":"followed_by"},{"weight":4,"_id":"6522","_type":"edge","_outV":"187","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"6523","_type":"edge","_outV":"187","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"6524","_type":"edge","_outV":"211","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"6525","_type":"edge","_outV":"211","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6526","_type":"edge","_outV":"211","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"6527","_type":"edge","_outV":"211","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6528","_type":"edge","_outV":"211","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6529","_type":"edge","_outV":"211","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"653","_type":"edge","_outV":"23","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6530","_type":"edge","_outV":"211","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"6531","_type":"edge","_outV":"242","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6532","_type":"edge","_outV":"242","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6533","_type":"edge","_outV":"242","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6534","_type":"edge","_outV":"242","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6535","_type":"edge","_outV":"242","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6536","_type":"edge","_outV":"242","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6537","_type":"edge","_outV":"55","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6538","_type":"edge","_outV":"55","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6539","_type":"edge","_outV":"55","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"654","_type":"edge","_outV":"23","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"6540","_type":"edge","_outV":"55","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6541","_type":"edge","_outV":"55","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6542","_type":"edge","_outV":"55","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6543","_type":"edge","_outV":"55","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6544","_type":"edge","_outV":"55","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6545","_type":"edge","_outV":"55","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6546","_type":"edge","_outV":"55","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6547","_type":"edge","_outV":"55","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6548","_type":"edge","_outV":"55","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6549","_type":"edge","_outV":"172","_inV":"72","_label":"followed_by"},{"weight":7,"_id":"655","_type":"edge","_outV":"23","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"6550","_type":"edge","_outV":"172","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"6551","_type":"edge","_outV":"172","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6552","_type":"edge","_outV":"172","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"6553","_type":"edge","_outV":"172","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6554","_type":"edge","_outV":"172","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6555","_type":"edge","_outV":"172","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6556","_type":"edge","_outV":"172","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6557","_type":"edge","_outV":"172","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"6558","_type":"edge","_outV":"172","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6559","_type":"edge","_outV":"172","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"656","_type":"edge","_outV":"23","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6560","_type":"edge","_outV":"172","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6561","_type":"edge","_outV":"172","_inV":"13","_label":"followed_by"},{"weight":140,"_id":"6562","_type":"edge","_outV":"181","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6563","_type":"edge","_outV":"181","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"6564","_type":"edge","_outV":"181","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6565","_type":"edge","_outV":"181","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6566","_type":"edge","_outV":"181","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"6567","_type":"edge","_outV":"116","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"6568","_type":"edge","_outV":"116","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"6569","_type":"edge","_outV":"116","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"657","_type":"edge","_outV":"23","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"6570","_type":"edge","_outV":"116","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6571","_type":"edge","_outV":"116","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6572","_type":"edge","_outV":"116","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6573","_type":"edge","_outV":"116","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6574","_type":"edge","_outV":"116","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6575","_type":"edge","_outV":"116","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6576","_type":"edge","_outV":"116","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6577","_type":"edge","_outV":"116","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6578","_type":"edge","_outV":"116","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6579","_type":"edge","_outV":"116","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"658","_type":"edge","_outV":"23","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6580","_type":"edge","_outV":"116","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"6581","_type":"edge","_outV":"116","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"6582","_type":"edge","_outV":"116","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6583","_type":"edge","_outV":"116","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6584","_type":"edge","_outV":"116","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6585","_type":"edge","_outV":"116","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"6586","_type":"edge","_outV":"116","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6587","_type":"edge","_outV":"116","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"6588","_type":"edge","_outV":"116","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"6589","_type":"edge","_outV":"116","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"659","_type":"edge","_outV":"23","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"6590","_type":"edge","_outV":"116","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"6591","_type":"edge","_outV":"116","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6592","_type":"edge","_outV":"116","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6593","_type":"edge","_outV":"116","_inV":"105","_label":"followed_by"},{"weight":6,"_id":"6594","_type":"edge","_outV":"127","_inV":"13","_label":"followed_by"},{"weight":30,"_id":"6595","_type":"edge","_outV":"127","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6596","_type":"edge","_outV":"127","_inV":"47","_label":"followed_by"},{"weight":17,"_id":"6597","_type":"edge","_outV":"127","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6598","_type":"edge","_outV":"127","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6599","_type":"edge","_outV":"127","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"66","_type":"edge","_outV":"46","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"660","_type":"edge","_outV":"23","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"6600","_type":"edge","_outV":"127","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6601","_type":"edge","_outV":"127","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6602","_type":"edge","_outV":"127","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"6603","_type":"edge","_outV":"127","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"6604","_type":"edge","_outV":"127","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6605","_type":"edge","_outV":"127","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6606","_type":"edge","_outV":"127","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6607","_type":"edge","_outV":"127","_inV":"59","_label":"followed_by"},{"weight":14,"_id":"6608","_type":"edge","_outV":"127","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"6609","_type":"edge","_outV":"127","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"661","_type":"edge","_outV":"23","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"6610","_type":"edge","_outV":"127","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6611","_type":"edge","_outV":"127","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"6612","_type":"edge","_outV":"127","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6613","_type":"edge","_outV":"127","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6614","_type":"edge","_outV":"127","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"6615","_type":"edge","_outV":"127","_inV":"162","_label":"followed_by"},{"weight":14,"_id":"6616","_type":"edge","_outV":"127","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6617","_type":"edge","_outV":"127","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6618","_type":"edge","_outV":"127","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6619","_type":"edge","_outV":"127","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"662","_type":"edge","_outV":"23","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6620","_type":"edge","_outV":"127","_inV":"165","_label":"followed_by"},{"weight":5,"_id":"6621","_type":"edge","_outV":"127","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"6622","_type":"edge","_outV":"127","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"6623","_type":"edge","_outV":"127","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"6624","_type":"edge","_outV":"127","_inV":"213","_label":"followed_by"},{"weight":2,"_id":"6625","_type":"edge","_outV":"127","_inV":"133","_label":"followed_by"},{"weight":3,"_id":"6626","_type":"edge","_outV":"127","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6627","_type":"edge","_outV":"127","_inV":"321","_label":"followed_by"},{"weight":2,"_id":"6628","_type":"edge","_outV":"127","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"6629","_type":"edge","_outV":"127","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"663","_type":"edge","_outV":"23","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6630","_type":"edge","_outV":"127","_inV":"157","_label":"followed_by"},{"weight":2,"_id":"6631","_type":"edge","_outV":"127","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6632","_type":"edge","_outV":"127","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"6633","_type":"edge","_outV":"127","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6634","_type":"edge","_outV":"127","_inV":"124","_label":"followed_by"},{"weight":3,"_id":"6635","_type":"edge","_outV":"127","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"6636","_type":"edge","_outV":"127","_inV":"90","_label":"followed_by"},{"weight":4,"_id":"6637","_type":"edge","_outV":"127","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"6638","_type":"edge","_outV":"127","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"6639","_type":"edge","_outV":"127","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"664","_type":"edge","_outV":"23","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"6640","_type":"edge","_outV":"127","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6641","_type":"edge","_outV":"127","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6642","_type":"edge","_outV":"127","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"6643","_type":"edge","_outV":"127","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6644","_type":"edge","_outV":"256","_inV":"325","_label":"followed_by"},{"weight":7,"_id":"6645","_type":"edge","_outV":"12","_inV":"72","_label":"followed_by"},{"weight":7,"_id":"6646","_type":"edge","_outV":"12","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"6647","_type":"edge","_outV":"12","_inV":"57","_label":"followed_by"},{"weight":8,"_id":"6648","_type":"edge","_outV":"12","_inV":"54","_label":"followed_by"},{"weight":14,"_id":"6649","_type":"edge","_outV":"12","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"665","_type":"edge","_outV":"23","_inV":"117","_label":"followed_by"},{"weight":7,"_id":"6650","_type":"edge","_outV":"12","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"6651","_type":"edge","_outV":"12","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6652","_type":"edge","_outV":"12","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"6653","_type":"edge","_outV":"12","_inV":"218","_label":"followed_by"},{"weight":2,"_id":"6654","_type":"edge","_outV":"12","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"6655","_type":"edge","_outV":"12","_inV":"130","_label":"followed_by"},{"weight":9,"_id":"6656","_type":"edge","_outV":"12","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"6657","_type":"edge","_outV":"12","_inV":"19","_label":"followed_by"},{"weight":9,"_id":"6658","_type":"edge","_outV":"12","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6659","_type":"edge","_outV":"12","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"666","_type":"edge","_outV":"23","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"6660","_type":"edge","_outV":"12","_inV":"206","_label":"followed_by"},{"weight":4,"_id":"6661","_type":"edge","_outV":"12","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6662","_type":"edge","_outV":"12","_inV":"160","_label":"followed_by"},{"weight":167,"_id":"6663","_type":"edge","_outV":"12","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"6664","_type":"edge","_outV":"12","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"6665","_type":"edge","_outV":"12","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6666","_type":"edge","_outV":"12","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"6667","_type":"edge","_outV":"12","_inV":"9","_label":"followed_by"},{"weight":3,"_id":"6668","_type":"edge","_outV":"12","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6669","_type":"edge","_outV":"12","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"667","_type":"edge","_outV":"23","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6670","_type":"edge","_outV":"12","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"6671","_type":"edge","_outV":"12","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6672","_type":"edge","_outV":"12","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6673","_type":"edge","_outV":"12","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"6674","_type":"edge","_outV":"12","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"6675","_type":"edge","_outV":"12","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"6676","_type":"edge","_outV":"12","_inV":"56","_label":"followed_by"},{"weight":5,"_id":"6677","_type":"edge","_outV":"12","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"6678","_type":"edge","_outV":"12","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"6679","_type":"edge","_outV":"12","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"668","_type":"edge","_outV":"23","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"6680","_type":"edge","_outV":"12","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6681","_type":"edge","_outV":"12","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"6682","_type":"edge","_outV":"12","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6683","_type":"edge","_outV":"12","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6684","_type":"edge","_outV":"12","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"6685","_type":"edge","_outV":"12","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"6686","_type":"edge","_outV":"12","_inV":"50","_label":"followed_by"},{"weight":83,"_id":"6687","_type":"edge","_outV":"12","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6688","_type":"edge","_outV":"12","_inV":"18","_label":"followed_by"},{"weight":6,"_id":"6689","_type":"edge","_outV":"12","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"669","_type":"edge","_outV":"23","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6690","_type":"edge","_outV":"12","_inV":"105","_label":"followed_by"},{"weight":14,"_id":"6691","_type":"edge","_outV":"12","_inV":"131","_label":"followed_by"},{"weight":2,"_id":"6692","_type":"edge","_outV":"141","_inV":"3","_label":"followed_by"},{"weight":8,"_id":"6693","_type":"edge","_outV":"141","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6694","_type":"edge","_outV":"141","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6695","_type":"edge","_outV":"141","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6696","_type":"edge","_outV":"141","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"6697","_type":"edge","_outV":"141","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6698","_type":"edge","_outV":"141","_inV":"15","_label":"followed_by"},{"weight":5,"_id":"6699","_type":"edge","_outV":"141","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"67","_type":"edge","_outV":"46","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"670","_type":"edge","_outV":"23","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"6700","_type":"edge","_outV":"141","_inV":"13","_label":"followed_by"},{"weight":7,"_id":"6701","_type":"edge","_outV":"141","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6702","_type":"edge","_outV":"141","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6703","_type":"edge","_outV":"141","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6704","_type":"edge","_outV":"141","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"6705","_type":"edge","_outV":"141","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6706","_type":"edge","_outV":"141","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6707","_type":"edge","_outV":"141","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6708","_type":"edge","_outV":"141","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"6709","_type":"edge","_outV":"141","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"671","_type":"edge","_outV":"23","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6710","_type":"edge","_outV":"141","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6711","_type":"edge","_outV":"141","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"6712","_type":"edge","_outV":"141","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6713","_type":"edge","_outV":"141","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"6714","_type":"edge","_outV":"53","_inV":"24","_label":"followed_by"},{"weight":6,"_id":"6715","_type":"edge","_outV":"53","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6716","_type":"edge","_outV":"53","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6717","_type":"edge","_outV":"53","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6718","_type":"edge","_outV":"53","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6719","_type":"edge","_outV":"53","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"672","_type":"edge","_outV":"23","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"6720","_type":"edge","_outV":"53","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"6721","_type":"edge","_outV":"53","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6722","_type":"edge","_outV":"53","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"6723","_type":"edge","_outV":"53","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6724","_type":"edge","_outV":"53","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6725","_type":"edge","_outV":"53","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"6726","_type":"edge","_outV":"53","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"6727","_type":"edge","_outV":"53","_inV":"234","_label":"followed_by"},{"weight":4,"_id":"6728","_type":"edge","_outV":"53","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6729","_type":"edge","_outV":"53","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"673","_type":"edge","_outV":"23","_inV":"30","_label":"followed_by"},{"weight":4,"_id":"6730","_type":"edge","_outV":"53","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"6731","_type":"edge","_outV":"53","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"6732","_type":"edge","_outV":"53","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"6733","_type":"edge","_outV":"53","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6734","_type":"edge","_outV":"53","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6735","_type":"edge","_outV":"53","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6736","_type":"edge","_outV":"53","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6737","_type":"edge","_outV":"53","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"6738","_type":"edge","_outV":"53","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6739","_type":"edge","_outV":"53","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"674","_type":"edge","_outV":"23","_inV":"24","_label":"followed_by"},{"weight":4,"_id":"6740","_type":"edge","_outV":"53","_inV":"121","_label":"followed_by"},{"weight":12,"_id":"6741","_type":"edge","_outV":"53","_inV":"103","_label":"followed_by"},{"weight":15,"_id":"6742","_type":"edge","_outV":"53","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"6743","_type":"edge","_outV":"53","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6744","_type":"edge","_outV":"53","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"6745","_type":"edge","_outV":"53","_inV":"38","_label":"followed_by"},{"weight":10,"_id":"6746","_type":"edge","_outV":"53","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6747","_type":"edge","_outV":"53","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"6748","_type":"edge","_outV":"53","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"6749","_type":"edge","_outV":"53","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"675","_type":"edge","_outV":"23","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6750","_type":"edge","_outV":"53","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"6751","_type":"edge","_outV":"53","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"6752","_type":"edge","_outV":"53","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6753","_type":"edge","_outV":"53","_inV":"42","_label":"followed_by"},{"weight":6,"_id":"6754","_type":"edge","_outV":"53","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6755","_type":"edge","_outV":"53","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6756","_type":"edge","_outV":"53","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"6757","_type":"edge","_outV":"53","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"6758","_type":"edge","_outV":"53","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6759","_type":"edge","_outV":"53","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"676","_type":"edge","_outV":"23","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6760","_type":"edge","_outV":"53","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"6761","_type":"edge","_outV":"53","_inV":"71","_label":"followed_by"},{"weight":111,"_id":"6762","_type":"edge","_outV":"121","_inV":"184","_label":"followed_by"},{"weight":8,"_id":"6763","_type":"edge","_outV":"39","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"6764","_type":"edge","_outV":"39","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"6765","_type":"edge","_outV":"39","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6766","_type":"edge","_outV":"39","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"6767","_type":"edge","_outV":"39","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"6768","_type":"edge","_outV":"39","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6769","_type":"edge","_outV":"39","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"677","_type":"edge","_outV":"23","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6770","_type":"edge","_outV":"39","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6771","_type":"edge","_outV":"39","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6772","_type":"edge","_outV":"39","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6773","_type":"edge","_outV":"39","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"6774","_type":"edge","_outV":"39","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6775","_type":"edge","_outV":"39","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6776","_type":"edge","_outV":"39","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"6777","_type":"edge","_outV":"39","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"6778","_type":"edge","_outV":"39","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6779","_type":"edge","_outV":"39","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"678","_type":"edge","_outV":"23","_inV":"191","_label":"followed_by"},{"weight":1,"_id":"6780","_type":"edge","_outV":"39","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6781","_type":"edge","_outV":"39","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"6782","_type":"edge","_outV":"39","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"6783","_type":"edge","_outV":"39","_inV":"68","_label":"followed_by"},{"weight":10,"_id":"6784","_type":"edge","_outV":"39","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6785","_type":"edge","_outV":"39","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"6786","_type":"edge","_outV":"39","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6787","_type":"edge","_outV":"39","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"6788","_type":"edge","_outV":"39","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6789","_type":"edge","_outV":"39","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"679","_type":"edge","_outV":"23","_inV":"192","_label":"followed_by"},{"weight":1,"_id":"6790","_type":"edge","_outV":"39","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"6791","_type":"edge","_outV":"39","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6792","_type":"edge","_outV":"39","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6793","_type":"edge","_outV":"39","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6794","_type":"edge","_outV":"39","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"6795","_type":"edge","_outV":"39","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"6796","_type":"edge","_outV":"39","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"6797","_type":"edge","_outV":"39","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6798","_type":"edge","_outV":"39","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6799","_type":"edge","_outV":"39","_inV":"245","_label":"followed_by"},{"weight":7,"_id":"68","_type":"edge","_outV":"46","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"680","_type":"edge","_outV":"23","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"6800","_type":"edge","_outV":"39","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6801","_type":"edge","_outV":"39","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"6802","_type":"edge","_outV":"39","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"6803","_type":"edge","_outV":"39","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"6804","_type":"edge","_outV":"39","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"6805","_type":"edge","_outV":"39","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6806","_type":"edge","_outV":"39","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6807","_type":"edge","_outV":"39","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6808","_type":"edge","_outV":"39","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6809","_type":"edge","_outV":"39","_inV":"221","_label":"followed_by"},{"weight":1,"_id":"681","_type":"edge","_outV":"23","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6810","_type":"edge","_outV":"39","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6811","_type":"edge","_outV":"39","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6812","_type":"edge","_outV":"39","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6813","_type":"edge","_outV":"39","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6814","_type":"edge","_outV":"39","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6815","_type":"edge","_outV":"39","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6816","_type":"edge","_outV":"39","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"6817","_type":"edge","_outV":"39","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"6818","_type":"edge","_outV":"39","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6819","_type":"edge","_outV":"39","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"682","_type":"edge","_outV":"219","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6820","_type":"edge","_outV":"39","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"6821","_type":"edge","_outV":"39","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6822","_type":"edge","_outV":"39","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"6823","_type":"edge","_outV":"64","_inV":"210","_label":"followed_by"},{"weight":6,"_id":"6824","_type":"edge","_outV":"64","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"6825","_type":"edge","_outV":"64","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"6826","_type":"edge","_outV":"64","_inV":"99","_label":"followed_by"},{"weight":8,"_id":"6827","_type":"edge","_outV":"64","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"6828","_type":"edge","_outV":"64","_inV":"56","_label":"followed_by"},{"weight":6,"_id":"6829","_type":"edge","_outV":"64","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"683","_type":"edge","_outV":"219","_inV":"220","_label":"followed_by"},{"weight":1,"_id":"6830","_type":"edge","_outV":"64","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"6831","_type":"edge","_outV":"64","_inV":"19","_label":"followed_by"},{"weight":67,"_id":"6832","_type":"edge","_outV":"64","_inV":"59","_label":"followed_by"},{"weight":7,"_id":"6833","_type":"edge","_outV":"64","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6834","_type":"edge","_outV":"64","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6835","_type":"edge","_outV":"64","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"6836","_type":"edge","_outV":"64","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6837","_type":"edge","_outV":"64","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"6838","_type":"edge","_outV":"64","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"6839","_type":"edge","_outV":"64","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"684","_type":"edge","_outV":"157","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"6840","_type":"edge","_outV":"64","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6841","_type":"edge","_outV":"64","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"6842","_type":"edge","_outV":"64","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"6843","_type":"edge","_outV":"64","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"6844","_type":"edge","_outV":"64","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6845","_type":"edge","_outV":"64","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"6846","_type":"edge","_outV":"64","_inV":"48","_label":"followed_by"},{"weight":7,"_id":"6847","_type":"edge","_outV":"64","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6848","_type":"edge","_outV":"64","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6849","_type":"edge","_outV":"64","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"685","_type":"edge","_outV":"157","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6850","_type":"edge","_outV":"64","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"6851","_type":"edge","_outV":"64","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6852","_type":"edge","_outV":"64","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"6853","_type":"edge","_outV":"64","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6854","_type":"edge","_outV":"64","_inV":"105","_label":"followed_by"},{"weight":12,"_id":"6855","_type":"edge","_outV":"64","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6856","_type":"edge","_outV":"64","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"6857","_type":"edge","_outV":"64","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6858","_type":"edge","_outV":"64","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6859","_type":"edge","_outV":"64","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"686","_type":"edge","_outV":"157","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6860","_type":"edge","_outV":"64","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6861","_type":"edge","_outV":"64","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6862","_type":"edge","_outV":"64","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"6863","_type":"edge","_outV":"64","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"6864","_type":"edge","_outV":"64","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"6865","_type":"edge","_outV":"64","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"6866","_type":"edge","_outV":"64","_inV":"46","_label":"followed_by"},{"weight":6,"_id":"6867","_type":"edge","_outV":"64","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6868","_type":"edge","_outV":"64","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6869","_type":"edge","_outV":"64","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"687","_type":"edge","_outV":"157","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6870","_type":"edge","_outV":"64","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"6871","_type":"edge","_outV":"64","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6872","_type":"edge","_outV":"64","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6873","_type":"edge","_outV":"64","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6874","_type":"edge","_outV":"64","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6875","_type":"edge","_outV":"64","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6876","_type":"edge","_outV":"64","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"6877","_type":"edge","_outV":"64","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6878","_type":"edge","_outV":"64","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6879","_type":"edge","_outV":"64","_inV":"191","_label":"followed_by"},{"weight":1,"_id":"688","_type":"edge","_outV":"157","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6880","_type":"edge","_outV":"64","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6881","_type":"edge","_outV":"64","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6882","_type":"edge","_outV":"64","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"6883","_type":"edge","_outV":"64","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"6884","_type":"edge","_outV":"93","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"6885","_type":"edge","_outV":"93","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6886","_type":"edge","_outV":"93","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"6887","_type":"edge","_outV":"93","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6888","_type":"edge","_outV":"93","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6889","_type":"edge","_outV":"93","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"689","_type":"edge","_outV":"157","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6890","_type":"edge","_outV":"93","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"6891","_type":"edge","_outV":"93","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6892","_type":"edge","_outV":"93","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6893","_type":"edge","_outV":"93","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6894","_type":"edge","_outV":"93","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6895","_type":"edge","_outV":"93","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6896","_type":"edge","_outV":"93","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6897","_type":"edge","_outV":"147","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6898","_type":"edge","_outV":"147","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6899","_type":"edge","_outV":"147","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"69","_type":"edge","_outV":"46","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"690","_type":"edge","_outV":"157","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"6900","_type":"edge","_outV":"133","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6901","_type":"edge","_outV":"133","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6902","_type":"edge","_outV":"133","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"6903","_type":"edge","_outV":"133","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6904","_type":"edge","_outV":"133","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6905","_type":"edge","_outV":"133","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6906","_type":"edge","_outV":"133","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"6907","_type":"edge","_outV":"133","_inV":"162","_label":"followed_by"},{"weight":2,"_id":"6908","_type":"edge","_outV":"133","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"6909","_type":"edge","_outV":"133","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"691","_type":"edge","_outV":"157","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6910","_type":"edge","_outV":"133","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"6911","_type":"edge","_outV":"133","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6912","_type":"edge","_outV":"133","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"6913","_type":"edge","_outV":"133","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6914","_type":"edge","_outV":"133","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6915","_type":"edge","_outV":"133","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6916","_type":"edge","_outV":"133","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"6917","_type":"edge","_outV":"133","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6918","_type":"edge","_outV":"133","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"6919","_type":"edge","_outV":"133","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"692","_type":"edge","_outV":"157","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6920","_type":"edge","_outV":"133","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"6921","_type":"edge","_outV":"133","_inV":"335","_label":"followed_by"},{"weight":1,"_id":"6922","_type":"edge","_outV":"133","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6923","_type":"edge","_outV":"270","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"6924","_type":"edge","_outV":"270","_inV":"284","_label":"followed_by"},{"weight":1,"_id":"6925","_type":"edge","_outV":"245","_inV":"98","_label":"followed_by"},{"weight":7,"_id":"6926","_type":"edge","_outV":"245","_inV":"126","_label":"followed_by"},{"weight":1,"_id":"6927","_type":"edge","_outV":"245","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"6928","_type":"edge","_outV":"84","_inV":"289","_label":"followed_by"},{"weight":3,"_id":"6929","_type":"edge","_outV":"84","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"693","_type":"edge","_outV":"157","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"6930","_type":"edge","_outV":"84","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"6931","_type":"edge","_outV":"84","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6932","_type":"edge","_outV":"84","_inV":"125","_label":"followed_by"},{"weight":14,"_id":"6933","_type":"edge","_outV":"84","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6934","_type":"edge","_outV":"84","_inV":"153","_label":"followed_by"},{"weight":5,"_id":"6935","_type":"edge","_outV":"84","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"6936","_type":"edge","_outV":"84","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"6937","_type":"edge","_outV":"84","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6938","_type":"edge","_outV":"84","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"6939","_type":"edge","_outV":"84","_inV":"109","_label":"followed_by"},{"weight":3,"_id":"694","_type":"edge","_outV":"157","_inV":"90","_label":"followed_by"},{"weight":5,"_id":"6940","_type":"edge","_outV":"84","_inV":"4","_label":"followed_by"},{"weight":21,"_id":"6941","_type":"edge","_outV":"84","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6942","_type":"edge","_outV":"84","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6943","_type":"edge","_outV":"84","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"6944","_type":"edge","_outV":"84","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6945","_type":"edge","_outV":"84","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"6946","_type":"edge","_outV":"84","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6947","_type":"edge","_outV":"84","_inV":"59","_label":"followed_by"},{"weight":4,"_id":"6948","_type":"edge","_outV":"84","_inV":"26","_label":"followed_by"},{"weight":5,"_id":"6949","_type":"edge","_outV":"84","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"695","_type":"edge","_outV":"157","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"6950","_type":"edge","_outV":"84","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6951","_type":"edge","_outV":"84","_inV":"65","_label":"followed_by"},{"weight":7,"_id":"6952","_type":"edge","_outV":"84","_inV":"181","_label":"followed_by"},{"weight":15,"_id":"6953","_type":"edge","_outV":"84","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"6954","_type":"edge","_outV":"84","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6955","_type":"edge","_outV":"84","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6956","_type":"edge","_outV":"84","_inV":"10","_label":"followed_by"},{"weight":6,"_id":"6957","_type":"edge","_outV":"84","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"6958","_type":"edge","_outV":"84","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6959","_type":"edge","_outV":"84","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"696","_type":"edge","_outV":"157","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6960","_type":"edge","_outV":"84","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"6961","_type":"edge","_outV":"84","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6962","_type":"edge","_outV":"84","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"6963","_type":"edge","_outV":"84","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6964","_type":"edge","_outV":"84","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6965","_type":"edge","_outV":"84","_inV":"312","_label":"followed_by"},{"weight":1,"_id":"6966","_type":"edge","_outV":"84","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6967","_type":"edge","_outV":"84","_inV":"36","_label":"followed_by"},{"weight":8,"_id":"6968","_type":"edge","_outV":"84","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6969","_type":"edge","_outV":"84","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"697","_type":"edge","_outV":"157","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"6970","_type":"edge","_outV":"84","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6971","_type":"edge","_outV":"84","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"6972","_type":"edge","_outV":"84","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"6973","_type":"edge","_outV":"84","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"6974","_type":"edge","_outV":"84","_inV":"89","_label":"followed_by"},{"weight":4,"_id":"6975","_type":"edge","_outV":"84","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6976","_type":"edge","_outV":"84","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6977","_type":"edge","_outV":"84","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"6978","_type":"edge","_outV":"175","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"6979","_type":"edge","_outV":"175","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"698","_type":"edge","_outV":"157","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6980","_type":"edge","_outV":"175","_inV":"62","_label":"followed_by"},{"weight":5,"_id":"6981","_type":"edge","_outV":"175","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6982","_type":"edge","_outV":"175","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6983","_type":"edge","_outV":"175","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6984","_type":"edge","_outV":"175","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6985","_type":"edge","_outV":"175","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6986","_type":"edge","_outV":"175","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6987","_type":"edge","_outV":"175","_inV":"113","_label":"followed_by"},{"weight":3,"_id":"6988","_type":"edge","_outV":"175","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6989","_type":"edge","_outV":"175","_inV":"319","_label":"followed_by"},{"weight":10,"_id":"699","_type":"edge","_outV":"206","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6990","_type":"edge","_outV":"175","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6991","_type":"edge","_outV":"175","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6992","_type":"edge","_outV":"175","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6993","_type":"edge","_outV":"175","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6994","_type":"edge","_outV":"197","_inV":"198","_label":"followed_by"},{"weight":2,"_id":"6995","_type":"edge","_outV":"197","_inV":"129","_label":"followed_by"},{"weight":4,"_id":"6996","_type":"edge","_outV":"197","_inV":"273","_label":"followed_by"},{"weight":3,"_id":"6997","_type":"edge","_outV":"197","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"6998","_type":"edge","_outV":"197","_inV":"199","_label":"followed_by"},{"weight":4,"_id":"6999","_type":"edge","_outV":"197","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"7","_type":"edge","_outV":"9","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"70","_type":"edge","_outV":"46","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"700","_type":"edge","_outV":"206","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"7000","_type":"edge","_outV":"197","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"7001","_type":"edge","_outV":"197","_inV":"224","_label":"followed_by"},{"weight":1,"_id":"7002","_type":"edge","_outV":"197","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"7003","_type":"edge","_outV":"197","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"7004","_type":"edge","_outV":"197","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"7005","_type":"edge","_outV":"197","_inV":"65","_label":"followed_by"},{"weight":11,"_id":"7006","_type":"edge","_outV":"89","_inV":"127","_label":"followed_by"},{"weight":2,"_id":"7007","_type":"edge","_outV":"89","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"7008","_type":"edge","_outV":"89","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"7009","_type":"edge","_outV":"89","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"701","_type":"edge","_outV":"206","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"7010","_type":"edge","_outV":"89","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"7011","_type":"edge","_outV":"89","_inV":"3","_label":"followed_by"},{"weight":7,"_id":"7012","_type":"edge","_outV":"89","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"7013","_type":"edge","_outV":"89","_inV":"12","_label":"followed_by"},{"weight":28,"_id":"7014","_type":"edge","_outV":"89","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"7015","_type":"edge","_outV":"89","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"7016","_type":"edge","_outV":"89","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"7017","_type":"edge","_outV":"89","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"7018","_type":"edge","_outV":"89","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"7019","_type":"edge","_outV":"89","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"702","_type":"edge","_outV":"206","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"7020","_type":"edge","_outV":"89","_inV":"296","_label":"followed_by"},{"weight":9,"_id":"7021","_type":"edge","_outV":"89","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"7022","_type":"edge","_outV":"89","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"7023","_type":"edge","_outV":"89","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"7024","_type":"edge","_outV":"89","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"7025","_type":"edge","_outV":"89","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"7026","_type":"edge","_outV":"89","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"7027","_type":"edge","_outV":"89","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"7028","_type":"edge","_outV":"89","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"7029","_type":"edge","_outV":"89","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"703","_type":"edge","_outV":"206","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"7030","_type":"edge","_outV":"89","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"7031","_type":"edge","_outV":"89","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"7032","_type":"edge","_outV":"89","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"7033","_type":"edge","_outV":"89","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"7034","_type":"edge","_outV":"89","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"7035","_type":"edge","_outV":"89","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"7036","_type":"edge","_outV":"89","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"7037","_type":"edge","_outV":"89","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"7038","_type":"edge","_outV":"89","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"7039","_type":"edge","_outV":"89","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"704","_type":"edge","_outV":"206","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"7040","_type":"edge","_outV":"269","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"7041","_type":"edge","_outV":"269","_inV":"297","_label":"followed_by"},{"weight":1,"_id":"7042","_type":"edge","_outV":"269","_inV":"330","_label":"followed_by"},{"weight":1,"_id":"7043","_type":"edge","_outV":"269","_inV":"331","_label":"followed_by"},{"weight":1,"_id":"7044","_type":"edge","_outV":"269","_inV":"270","_label":"followed_by"},{"weight":1,"_id":"7045","_type":"edge","_outV":"269","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"7046","_type":"edge","_outV":"269","_inV":"75","_label":"followed_by"},{"_id":"7047","_type":"edge","_outV":"65","_inV":"339","_label":"written_by"},{"_id":"7048","_type":"edge","_outV":"65","_inV":"340","_label":"sung_by"},{"_id":"7049","_type":"edge","_outV":"341","_inV":"342","_label":"written_by"},{"weight":1,"_id":"705","_type":"edge","_outV":"206","_inV":"24","_label":"followed_by"},{"_id":"7050","_type":"edge","_outV":"341","_inV":"342","_label":"sung_by"},{"_id":"7051","_type":"edge","_outV":"343","_inV":"344","_label":"written_by"},{"_id":"7052","_type":"edge","_outV":"343","_inV":"345","_label":"sung_by"},{"_id":"7053","_type":"edge","_outV":"73","_inV":"339","_label":"written_by"},{"_id":"7054","_type":"edge","_outV":"73","_inV":"340","_label":"sung_by"},{"_id":"7055","_type":"edge","_outV":"346","_inV":"339","_label":"written_by"},{"_id":"7056","_type":"edge","_outV":"346","_inV":"347","_label":"sung_by"},{"_id":"7057","_type":"edge","_outV":"140","_inV":"339","_label":"written_by"},{"_id":"7058","_type":"edge","_outV":"140","_inV":"340","_label":"sung_by"},{"_id":"7059","_type":"edge","_outV":"348","_inV":"342","_label":"written_by"},{"weight":2,"_id":"706","_type":"edge","_outV":"206","_inV":"3","_label":"followed_by"},{"_id":"7060","_type":"edge","_outV":"348","_inV":"342","_label":"sung_by"},{"_id":"7061","_type":"edge","_outV":"232","_inV":"339","_label":"written_by"},{"_id":"7062","_type":"edge","_outV":"232","_inV":"340","_label":"sung_by"},{"_id":"7063","_type":"edge","_outV":"4","_inV":"339","_label":"written_by"},{"_id":"7064","_type":"edge","_outV":"4","_inV":"340","_label":"sung_by"},{"_id":"7065","_type":"edge","_outV":"150","_inV":"339","_label":"written_by"},{"_id":"7066","_type":"edge","_outV":"150","_inV":"340","_label":"sung_by"},{"_id":"7067","_type":"edge","_outV":"349","_inV":"339","_label":"written_by"},{"_id":"7068","_type":"edge","_outV":"349","_inV":"340","_label":"sung_by"},{"_id":"7069","_type":"edge","_outV":"125","_inV":"339","_label":"written_by"},{"weight":1,"_id":"707","_type":"edge","_outV":"206","_inV":"27","_label":"followed_by"},{"_id":"7070","_type":"edge","_outV":"125","_inV":"340","_label":"sung_by"},{"_id":"7071","_type":"edge","_outV":"11","_inV":"350","_label":"written_by"},{"_id":"7072","_type":"edge","_outV":"11","_inV":"351","_label":"sung_by"},{"_id":"7073","_type":"edge","_outV":"167","_inV":"350","_label":"written_by"},{"_id":"7074","_type":"edge","_outV":"167","_inV":"352","_label":"sung_by"},{"_id":"7075","_type":"edge","_outV":"159","_inV":"339","_label":"written_by"},{"_id":"7076","_type":"edge","_outV":"159","_inV":"340","_label":"sung_by"},{"_id":"7077","_type":"edge","_outV":"353","_inV":"351","_label":"written_by"},{"_id":"7078","_type":"edge","_outV":"353","_inV":"351","_label":"sung_by"},{"_id":"7079","_type":"edge","_outV":"46","_inV":"339","_label":"written_by"},{"weight":1,"_id":"708","_type":"edge","_outV":"206","_inV":"22","_label":"followed_by"},{"_id":"7080","_type":"edge","_outV":"46","_inV":"354","_label":"sung_by"},{"_id":"7081","_type":"edge","_outV":"160","_inV":"339","_label":"written_by"},{"_id":"7082","_type":"edge","_outV":"160","_inV":"340","_label":"sung_by"},{"_id":"7083","_type":"edge","_outV":"100","_inV":"339","_label":"written_by"},{"_id":"7084","_type":"edge","_outV":"100","_inV":"340","_label":"sung_by"},{"_id":"7085","_type":"edge","_outV":"168","_inV":"339","_label":"written_by"},{"_id":"7086","_type":"edge","_outV":"168","_inV":"340","_label":"sung_by"},{"_id":"7087","_type":"edge","_outV":"355","_inV":"340","_label":"written_by"},{"_id":"7088","_type":"edge","_outV":"355","_inV":"342","_label":"sung_by"},{"_id":"7089","_type":"edge","_outV":"48","_inV":"339","_label":"written_by"},{"weight":1,"_id":"709","_type":"edge","_outV":"221","_inV":"53","_label":"followed_by"},{"_id":"7090","_type":"edge","_outV":"48","_inV":"340","_label":"sung_by"},{"_id":"7091","_type":"edge","_outV":"122","_inV":"339","_label":"written_by"},{"_id":"7092","_type":"edge","_outV":"122","_inV":"340","_label":"sung_by"},{"_id":"7093","_type":"edge","_outV":"68","_inV":"350","_label":"written_by"},{"_id":"7094","_type":"edge","_outV":"68","_inV":"351","_label":"sung_by"},{"_id":"7095","_type":"edge","_outV":"145","_inV":"342","_label":"written_by"},{"_id":"7096","_type":"edge","_outV":"145","_inV":"342","_label":"sung_by"},{"_id":"7097","_type":"edge","_outV":"119","_inV":"354","_label":"written_by"},{"_id":"7098","_type":"edge","_outV":"119","_inV":"354","_label":"sung_by"},{"_id":"7099","_type":"edge","_outV":"19","_inV":"339","_label":"written_by"},{"weight":1,"_id":"71","_type":"edge","_outV":"46","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"710","_type":"edge","_outV":"221","_inV":"117","_label":"followed_by"},{"_id":"7100","_type":"edge","_outV":"19","_inV":"340","_label":"sung_by"},{"_id":"7101","_type":"edge","_outV":"129","_inV":"339","_label":"written_by"},{"_id":"7102","_type":"edge","_outV":"129","_inV":"340","_label":"sung_by"},{"_id":"7103","_type":"edge","_outV":"234","_inV":"356","_label":"written_by"},{"_id":"7104","_type":"edge","_outV":"234","_inV":"356","_label":"sung_by"},{"_id":"7105","_type":"edge","_outV":"357","_inV":"339","_label":"written_by"},{"_id":"7106","_type":"edge","_outV":"357","_inV":"354","_label":"sung_by"},{"_id":"7107","_type":"edge","_outV":"141","_inV":"339","_label":"written_by"},{"_id":"7108","_type":"edge","_outV":"141","_inV":"340","_label":"sung_by"},{"_id":"7109","_type":"edge","_outV":"358","_inV":"339","_label":"written_by"},{"weight":1,"_id":"711","_type":"edge","_outV":"80","_inV":"25","_label":"followed_by"},{"_id":"7110","_type":"edge","_outV":"358","_inV":"359","_label":"sung_by"},{"_id":"7111","_type":"edge","_outV":"360","_inV":"339","_label":"written_by"},{"_id":"7112","_type":"edge","_outV":"360","_inV":"340","_label":"sung_by"},{"_id":"7113","_type":"edge","_outV":"60","_inV":"339","_label":"written_by"},{"_id":"7114","_type":"edge","_outV":"60","_inV":"340","_label":"sung_by"},{"_id":"7115","_type":"edge","_outV":"361","_inV":"340","_label":"written_by"},{"_id":"7116","_type":"edge","_outV":"361","_inV":"340","_label":"sung_by"},{"_id":"7117","_type":"edge","_outV":"278","_inV":"340","_label":"written_by"},{"_id":"7118","_type":"edge","_outV":"278","_inV":"340","_label":"sung_by"},{"_id":"7119","_type":"edge","_outV":"39","_inV":"339","_label":"written_by"},{"weight":1,"_id":"712","_type":"edge","_outV":"80","_inV":"120","_label":"followed_by"},{"_id":"7120","_type":"edge","_outV":"39","_inV":"362","_label":"sung_by"},{"_id":"7121","_type":"edge","_outV":"89","_inV":"339","_label":"written_by"},{"_id":"7122","_type":"edge","_outV":"89","_inV":"340","_label":"sung_by"},{"_id":"7123","_type":"edge","_outV":"363","_inV":"339","_label":"written_by"},{"_id":"7124","_type":"edge","_outV":"363","_inV":"340","_label":"sung_by"},{"_id":"7125","_type":"edge","_outV":"57","_inV":"339","_label":"written_by"},{"_id":"7126","_type":"edge","_outV":"57","_inV":"340","_label":"sung_by"},{"_id":"7127","_type":"edge","_outV":"80","_inV":"339","_label":"written_by"},{"_id":"7128","_type":"edge","_outV":"80","_inV":"340","_label":"sung_by"},{"_id":"7129","_type":"edge","_outV":"364","_inV":"339","_label":"written_by"},{"weight":1,"_id":"713","_type":"edge","_outV":"80","_inV":"21","_label":"followed_by"},{"_id":"7130","_type":"edge","_outV":"364","_inV":"340","_label":"sung_by"},{"_id":"7131","_type":"edge","_outV":"183","_inV":"352","_label":"written_by"},{"_id":"7132","_type":"edge","_outV":"183","_inV":"352","_label":"sung_by"},{"_id":"7133","_type":"edge","_outV":"365","_inV":"342","_label":"written_by"},{"_id":"7134","_type":"edge","_outV":"365","_inV":"342","_label":"sung_by"},{"_id":"7135","_type":"edge","_outV":"108","_inV":"339","_label":"written_by"},{"_id":"7136","_type":"edge","_outV":"108","_inV":"340","_label":"sung_by"},{"_id":"7137","_type":"edge","_outV":"96","_inV":"342","_label":"written_by"},{"_id":"7138","_type":"edge","_outV":"96","_inV":"342","_label":"sung_by"},{"_id":"7139","_type":"edge","_outV":"366","_inV":"350","_label":"written_by"},{"weight":5,"_id":"714","_type":"edge","_outV":"80","_inV":"11","_label":"followed_by"},{"_id":"7140","_type":"edge","_outV":"366","_inV":"351","_label":"sung_by"},{"_id":"7141","_type":"edge","_outV":"158","_inV":"367","_label":"written_by"},{"_id":"7142","_type":"edge","_outV":"158","_inV":"368","_label":"sung_by"},{"_id":"7143","_type":"edge","_outV":"189","_inV":"350","_label":"written_by"},{"_id":"7144","_type":"edge","_outV":"189","_inV":"352","_label":"sung_by"},{"_id":"7145","_type":"edge","_outV":"369","_inV":"339","_label":"written_by"},{"_id":"7146","_type":"edge","_outV":"369","_inV":"339","_label":"sung_by"},{"_id":"7147","_type":"edge","_outV":"281","_inV":"339","_label":"written_by"},{"_id":"7148","_type":"edge","_outV":"281","_inV":"354","_label":"sung_by"},{"_id":"7149","_type":"edge","_outV":"370","_inV":"356","_label":"written_by"},{"weight":1,"_id":"715","_type":"edge","_outV":"80","_inV":"218","_label":"followed_by"},{"_id":"7150","_type":"edge","_outV":"370","_inV":"356","_label":"sung_by"},{"_id":"7151","_type":"edge","_outV":"371","_inV":"354","_label":"written_by"},{"_id":"7152","_type":"edge","_outV":"371","_inV":"354","_label":"sung_by"},{"_id":"7153","_type":"edge","_outV":"85","_inV":"350","_label":"written_by"},{"_id":"7154","_type":"edge","_outV":"85","_inV":"351","_label":"sung_by"},{"_id":"7155","_type":"edge","_outV":"43","_inV":"372","_label":"written_by"},{"_id":"7156","_type":"edge","_outV":"43","_inV":"373","_label":"sung_by"},{"_id":"7157","_type":"edge","_outV":"83","_inV":"339","_label":"written_by"},{"_id":"7158","_type":"edge","_outV":"83","_inV":"340","_label":"sung_by"},{"_id":"7159","_type":"edge","_outV":"106","_inV":"352","_label":"written_by"},{"weight":10,"_id":"716","_type":"edge","_outV":"80","_inV":"14","_label":"followed_by"},{"_id":"7160","_type":"edge","_outV":"106","_inV":"352","_label":"sung_by"},{"_id":"7161","_type":"edge","_outV":"38","_inV":"350","_label":"written_by"},{"_id":"7162","_type":"edge","_outV":"38","_inV":"351","_label":"sung_by"},{"_id":"7163","_type":"edge","_outV":"171","_inV":"339","_label":"written_by"},{"_id":"7164","_type":"edge","_outV":"171","_inV":"347","_label":"sung_by"},{"_id":"7165","_type":"edge","_outV":"81","_inV":"339","_label":"written_by"},{"_id":"7166","_type":"edge","_outV":"81","_inV":"340","_label":"sung_by"},{"_id":"7167","_type":"edge","_outV":"374","_inV":"339","_label":"written_by"},{"_id":"7168","_type":"edge","_outV":"374","_inV":"351","_label":"sung_by"},{"_id":"7169","_type":"edge","_outV":"154","_inV":"339","_label":"written_by"},{"weight":9,"_id":"717","_type":"edge","_outV":"80","_inV":"10","_label":"followed_by"},{"_id":"7170","_type":"edge","_outV":"154","_inV":"375","_label":"sung_by"},{"_id":"7171","_type":"edge","_outV":"104","_inV":"339","_label":"written_by"},{"_id":"7172","_type":"edge","_outV":"104","_inV":"376","_label":"sung_by"},{"_id":"7173","_type":"edge","_outV":"208","_inV":"377","_label":"written_by"},{"_id":"7174","_type":"edge","_outV":"208","_inV":"377","_label":"sung_by"},{"_id":"7175","_type":"edge","_outV":"221","_inV":"350","_label":"written_by"},{"_id":"7176","_type":"edge","_outV":"221","_inV":"352","_label":"sung_by"},{"_id":"7177","_type":"edge","_outV":"378","_inV":"342","_label":"written_by"},{"_id":"7178","_type":"edge","_outV":"378","_inV":"342","_label":"sung_by"},{"_id":"7179","_type":"edge","_outV":"379","_inV":"339","_label":"written_by"},{"weight":2,"_id":"718","_type":"edge","_outV":"80","_inV":"20","_label":"followed_by"},{"_id":"7180","_type":"edge","_outV":"379","_inV":"359","_label":"sung_by"},{"_id":"7181","_type":"edge","_outV":"49","_inV":"339","_label":"written_by"},{"_id":"7182","_type":"edge","_outV":"49","_inV":"340","_label":"sung_by"},{"_id":"7183","_type":"edge","_outV":"209","_inV":"380","_label":"written_by"},{"_id":"7184","_type":"edge","_outV":"209","_inV":"351","_label":"sung_by"},{"_id":"7185","_type":"edge","_outV":"64","_inV":"350","_label":"written_by"},{"_id":"7186","_type":"edge","_outV":"64","_inV":"381","_label":"sung_by"},{"_id":"7187","_type":"edge","_outV":"215","_inV":"339","_label":"written_by"},{"_id":"7188","_type":"edge","_outV":"215","_inV":"340","_label":"sung_by"},{"_id":"7189","_type":"edge","_outV":"9","_inV":"339","_label":"written_by"},{"weight":1,"_id":"719","_type":"edge","_outV":"80","_inV":"153","_label":"followed_by"},{"_id":"7190","_type":"edge","_outV":"9","_inV":"340","_label":"sung_by"},{"_id":"7191","_type":"edge","_outV":"63","_inV":"339","_label":"written_by"},{"_id":"7192","_type":"edge","_outV":"63","_inV":"340","_label":"sung_by"},{"_id":"7193","_type":"edge","_outV":"382","_inV":"339","_label":"written_by"},{"_id":"7194","_type":"edge","_outV":"382","_inV":"351","_label":"sung_by"},{"_id":"7195","_type":"edge","_outV":"70","_inV":"350","_label":"written_by"},{"_id":"7196","_type":"edge","_outV":"70","_inV":"351","_label":"sung_by"},{"_id":"7197","_type":"edge","_outV":"231","_inV":"350","_label":"written_by"},{"_id":"7198","_type":"edge","_outV":"231","_inV":"352","_label":"sung_by"},{"_id":"7199","_type":"edge","_outV":"174","_inV":"383","_label":"written_by"},{"weight":1,"_id":"72","_type":"edge","_outV":"46","_inV":"66","_label":"followed_by"},{"weight":2,"_id":"720","_type":"edge","_outV":"80","_inV":"22","_label":"followed_by"},{"_id":"7200","_type":"edge","_outV":"174","_inV":"354","_label":"sung_by"},{"_id":"7201","_type":"edge","_outV":"327","_inV":"339","_label":"written_by"},{"_id":"7202","_type":"edge","_outV":"327","_inV":"340","_label":"sung_by"},{"_id":"7203","_type":"edge","_outV":"98","_inV":"339","_label":"written_by"},{"_id":"7204","_type":"edge","_outV":"98","_inV":"339","_label":"sung_by"},{"_id":"7205","_type":"edge","_outV":"123","_inV":"384","_label":"written_by"},{"_id":"7206","_type":"edge","_outV":"123","_inV":"342","_label":"sung_by"},{"_id":"7207","_type":"edge","_outV":"50","_inV":"339","_label":"written_by"},{"_id":"7208","_type":"edge","_outV":"50","_inV":"351","_label":"sung_by"},{"_id":"7209","_type":"edge","_outV":"118","_inV":"350","_label":"written_by"},{"weight":1,"_id":"721","_type":"edge","_outV":"80","_inV":"13","_label":"followed_by"},{"_id":"7210","_type":"edge","_outV":"118","_inV":"352","_label":"sung_by"},{"_id":"7211","_type":"edge","_outV":"385","_inV":"342","_label":"written_by"},{"_id":"7212","_type":"edge","_outV":"385","_inV":"342","_label":"sung_by"},{"_id":"7213","_type":"edge","_outV":"386","_inV":"339","_label":"written_by"},{"_id":"7214","_type":"edge","_outV":"386","_inV":"340","_label":"sung_by"},{"_id":"7215","_type":"edge","_outV":"387","_inV":"384","_label":"written_by"},{"_id":"7216","_type":"edge","_outV":"387","_inV":"388","_label":"sung_by"},{"_id":"7217","_type":"edge","_outV":"389","_inV":"339","_label":"written_by"},{"_id":"7218","_type":"edge","_outV":"389","_inV":"340","_label":"sung_by"},{"_id":"7219","_type":"edge","_outV":"121","_inV":"350","_label":"written_by"},{"weight":1,"_id":"722","_type":"edge","_outV":"80","_inV":"3","_label":"followed_by"},{"_id":"7220","_type":"edge","_outV":"121","_inV":"351","_label":"sung_by"},{"_id":"7221","_type":"edge","_outV":"390","_inV":"339","_label":"written_by"},{"_id":"7222","_type":"edge","_outV":"390","_inV":"340","_label":"sung_by"},{"_id":"7223","_type":"edge","_outV":"195","_inV":"339","_label":"written_by"},{"_id":"7224","_type":"edge","_outV":"195","_inV":"391","_label":"sung_by"},{"_id":"7225","_type":"edge","_outV":"101","_inV":"350","_label":"written_by"},{"_id":"7226","_type":"edge","_outV":"101","_inV":"351","_label":"sung_by"},{"_id":"7227","_type":"edge","_outV":"236","_inV":"339","_label":"written_by"},{"_id":"7228","_type":"edge","_outV":"236","_inV":"340","_label":"sung_by"},{"_id":"7229","_type":"edge","_outV":"392","_inV":"351","_label":"written_by"},{"weight":18,"_id":"723","_type":"edge","_outV":"80","_inV":"68","_label":"followed_by"},{"_id":"7230","_type":"edge","_outV":"392","_inV":"351","_label":"sung_by"},{"_id":"7231","_type":"edge","_outV":"14","_inV":"350","_label":"written_by"},{"_id":"7232","_type":"edge","_outV":"14","_inV":"351","_label":"sung_by"},{"_id":"7233","_type":"edge","_outV":"202","_inV":"339","_label":"written_by"},{"_id":"7234","_type":"edge","_outV":"202","_inV":"340","_label":"sung_by"},{"_id":"7235","_type":"edge","_outV":"56","_inV":"339","_label":"written_by"},{"_id":"7236","_type":"edge","_outV":"56","_inV":"340","_label":"sung_by"},{"_id":"7237","_type":"edge","_outV":"181","_inV":"350","_label":"written_by"},{"_id":"7238","_type":"edge","_outV":"181","_inV":"351","_label":"sung_by"},{"_id":"7239","_type":"edge","_outV":"393","_inV":"339","_label":"written_by"},{"weight":2,"_id":"724","_type":"edge","_outV":"80","_inV":"85","_label":"followed_by"},{"_id":"7240","_type":"edge","_outV":"393","_inV":"394","_label":"sung_by"},{"_id":"7241","_type":"edge","_outV":"395","_inV":"352","_label":"written_by"},{"_id":"7242","_type":"edge","_outV":"395","_inV":"352","_label":"sung_by"},{"_id":"7243","_type":"edge","_outV":"24","_inV":"350","_label":"written_by"},{"_id":"7244","_type":"edge","_outV":"24","_inV":"351","_label":"sung_by"},{"_id":"7245","_type":"edge","_outV":"99","_inV":"339","_label":"written_by"},{"_id":"7246","_type":"edge","_outV":"99","_inV":"340","_label":"sung_by"},{"_id":"7247","_type":"edge","_outV":"396","_inV":"362","_label":"written_by"},{"_id":"7248","_type":"edge","_outV":"396","_inV":"362","_label":"sung_by"},{"_id":"7249","_type":"edge","_outV":"296","_inV":"342","_label":"written_by"},{"weight":2,"_id":"725","_type":"edge","_outV":"80","_inV":"103","_label":"followed_by"},{"_id":"7250","_type":"edge","_outV":"296","_inV":"342","_label":"sung_by"},{"_id":"7251","_type":"edge","_outV":"294","_inV":"339","_label":"written_by"},{"_id":"7252","_type":"edge","_outV":"294","_inV":"340","_label":"sung_by"},{"_id":"7253","_type":"edge","_outV":"259","_inV":"339","_label":"written_by"},{"_id":"7254","_type":"edge","_outV":"259","_inV":"340","_label":"sung_by"},{"_id":"7255","_type":"edge","_outV":"205","_inV":"339","_label":"written_by"},{"_id":"7256","_type":"edge","_outV":"205","_inV":"356","_label":"sung_by"},{"_id":"7257","_type":"edge","_outV":"290","_inV":"350","_label":"written_by"},{"_id":"7258","_type":"edge","_outV":"290","_inV":"351","_label":"sung_by"},{"_id":"7259","_type":"edge","_outV":"397","_inV":"342","_label":"written_by"},{"weight":3,"_id":"726","_type":"edge","_outV":"80","_inV":"109","_label":"followed_by"},{"_id":"7260","_type":"edge","_outV":"397","_inV":"342","_label":"sung_by"},{"_id":"7261","_type":"edge","_outV":"398","_inV":"339","_label":"written_by"},{"_id":"7262","_type":"edge","_outV":"398","_inV":"340","_label":"sung_by"},{"_id":"7263","_type":"edge","_outV":"103","_inV":"350","_label":"written_by"},{"_id":"7264","_type":"edge","_outV":"103","_inV":"351","_label":"sung_by"},{"_id":"7265","_type":"edge","_outV":"97","_inV":"350","_label":"written_by"},{"_id":"7266","_type":"edge","_outV":"97","_inV":"351","_label":"sung_by"},{"_id":"7267","_type":"edge","_outV":"399","_inV":"352","_label":"written_by"},{"_id":"7268","_type":"edge","_outV":"399","_inV":"352","_label":"sung_by"},{"_id":"7269","_type":"edge","_outV":"400","_inV":"401","_label":"written_by"},{"weight":6,"_id":"727","_type":"edge","_outV":"80","_inV":"112","_label":"followed_by"},{"_id":"7270","_type":"edge","_outV":"400","_inV":"354","_label":"sung_by"},{"_id":"7271","_type":"edge","_outV":"175","_inV":"339","_label":"written_by"},{"_id":"7272","_type":"edge","_outV":"175","_inV":"340","_label":"sung_by"},{"_id":"7273","_type":"edge","_outV":"402","_inV":"354","_label":"written_by"},{"_id":"7274","_type":"edge","_outV":"402","_inV":"354","_label":"sung_by"},{"_id":"7275","_type":"edge","_outV":"114","_inV":"351","_label":"written_by"},{"_id":"7276","_type":"edge","_outV":"114","_inV":"351","_label":"sung_by"},{"_id":"7277","_type":"edge","_outV":"182","_inV":"352","_label":"written_by"},{"_id":"7278","_type":"edge","_outV":"182","_inV":"352","_label":"sung_by"},{"_id":"7279","_type":"edge","_outV":"403","_inV":"340","_label":"written_by"},{"weight":3,"_id":"728","_type":"edge","_outV":"80","_inV":"24","_label":"followed_by"},{"_id":"7280","_type":"edge","_outV":"403","_inV":"342","_label":"sung_by"},{"_id":"7281","_type":"edge","_outV":"404","_inV":"356","_label":"written_by"},{"_id":"7282","_type":"edge","_outV":"404","_inV":"356","_label":"sung_by"},{"_id":"7283","_type":"edge","_outV":"148","_inV":"351","_label":"written_by"},{"_id":"7284","_type":"edge","_outV":"148","_inV":"405","_label":"sung_by"},{"_id":"7285","_type":"edge","_outV":"406","_inV":"342","_label":"written_by"},{"_id":"7286","_type":"edge","_outV":"406","_inV":"342","_label":"sung_by"},{"_id":"7287","_type":"edge","_outV":"109","_inV":"407","_label":"written_by"},{"_id":"7288","_type":"edge","_outV":"109","_inV":"354","_label":"sung_by"},{"_id":"7289","_type":"edge","_outV":"79","_inV":"350","_label":"written_by"},{"weight":5,"_id":"729","_type":"edge","_outV":"80","_inV":"18","_label":"followed_by"},{"_id":"7290","_type":"edge","_outV":"79","_inV":"408","_label":"sung_by"},{"_id":"7291","_type":"edge","_outV":"13","_inV":"339","_label":"written_by"},{"_id":"7292","_type":"edge","_outV":"13","_inV":"359","_label":"sung_by"},{"_id":"7293","_type":"edge","_outV":"409","_inV":"401","_label":"written_by"},{"_id":"7294","_type":"edge","_outV":"409","_inV":"354","_label":"sung_by"},{"_id":"7295","_type":"edge","_outV":"27","_inV":"339","_label":"written_by"},{"_id":"7296","_type":"edge","_outV":"27","_inV":"340","_label":"sung_by"},{"_id":"7297","_type":"edge","_outV":"410","_inV":"339","_label":"written_by"},{"_id":"7298","_type":"edge","_outV":"410","_inV":"354","_label":"sung_by"},{"_id":"7299","_type":"edge","_outV":"411","_inV":"339","_label":"written_by"},{"weight":4,"_id":"73","_type":"edge","_outV":"46","_inV":"4","_label":"followed_by"},{"weight":12,"_id":"730","_type":"edge","_outV":"80","_inV":"12","_label":"followed_by"},{"_id":"7300","_type":"edge","_outV":"411","_inV":"340","_label":"sung_by"},{"_id":"7301","_type":"edge","_outV":"267","_inV":"401","_label":"written_by"},{"_id":"7302","_type":"edge","_outV":"267","_inV":"412","_label":"sung_by"},{"_id":"7303","_type":"edge","_outV":"222","_inV":"339","_label":"written_by"},{"_id":"7304","_type":"edge","_outV":"222","_inV":"340","_label":"sung_by"},{"_id":"7305","_type":"edge","_outV":"413","_inV":"339","_label":"written_by"},{"_id":"7306","_type":"edge","_outV":"413","_inV":"340","_label":"sung_by"},{"_id":"7307","_type":"edge","_outV":"51","_inV":"339","_label":"written_by"},{"_id":"7308","_type":"edge","_outV":"51","_inV":"340","_label":"sung_by"},{"_id":"7309","_type":"edge","_outV":"219","_inV":"384","_label":"written_by"},{"weight":8,"_id":"731","_type":"edge","_outV":"80","_inV":"42","_label":"followed_by"},{"_id":"7310","_type":"edge","_outV":"219","_inV":"351","_label":"sung_by"},{"_id":"7311","_type":"edge","_outV":"36","_inV":"350","_label":"written_by"},{"_id":"7312","_type":"edge","_outV":"36","_inV":"351","_label":"sung_by"},{"_id":"7313","_type":"edge","_outV":"414","_inV":"339","_label":"written_by"},{"_id":"7314","_type":"edge","_outV":"414","_inV":"362","_label":"sung_by"},{"_id":"7315","_type":"edge","_outV":"240","_inV":"350","_label":"written_by"},{"_id":"7316","_type":"edge","_outV":"240","_inV":"351","_label":"sung_by"},{"_id":"7317","_type":"edge","_outV":"37","_inV":"339","_label":"written_by"},{"_id":"7318","_type":"edge","_outV":"37","_inV":"415","_label":"sung_by"},{"_id":"7319","_type":"edge","_outV":"82","_inV":"339","_label":"written_by"},{"weight":1,"_id":"732","_type":"edge","_outV":"80","_inV":"155","_label":"followed_by"},{"_id":"7320","_type":"edge","_outV":"82","_inV":"340","_label":"sung_by"},{"_id":"7321","_type":"edge","_outV":"84","_inV":"339","_label":"written_by"},{"_id":"7322","_type":"edge","_outV":"84","_inV":"340","_label":"sung_by"},{"_id":"7323","_type":"edge","_outV":"69","_inV":"339","_label":"written_by"},{"_id":"7324","_type":"edge","_outV":"69","_inV":"340","_label":"sung_by"},{"_id":"7325","_type":"edge","_outV":"288","_inV":"384","_label":"written_by"},{"_id":"7326","_type":"edge","_outV":"288","_inV":"342","_label":"sung_by"},{"_id":"7327","_type":"edge","_outV":"137","_inV":"339","_label":"written_by"},{"_id":"7328","_type":"edge","_outV":"137","_inV":"340","_label":"sung_by"},{"_id":"7329","_type":"edge","_outV":"149","_inV":"342","_label":"written_by"},{"weight":1,"_id":"733","_type":"edge","_outV":"80","_inV":"189","_label":"followed_by"},{"_id":"7330","_type":"edge","_outV":"149","_inV":"384","_label":"sung_by"},{"_id":"7331","_type":"edge","_outV":"105","_inV":"339","_label":"written_by"},{"_id":"7332","_type":"edge","_outV":"105","_inV":"340","_label":"sung_by"},{"_id":"7333","_type":"edge","_outV":"136","_inV":"416","_label":"written_by"},{"_id":"7334","_type":"edge","_outV":"136","_inV":"416","_label":"sung_by"},{"_id":"7335","_type":"edge","_outV":"417","_inV":"342","_label":"written_by"},{"_id":"7336","_type":"edge","_outV":"417","_inV":"342","_label":"sung_by"},{"_id":"7337","_type":"edge","_outV":"92","_inV":"339","_label":"written_by"},{"_id":"7338","_type":"edge","_outV":"92","_inV":"340","_label":"sung_by"},{"_id":"7339","_type":"edge","_outV":"94","_inV":"339","_label":"written_by"},{"weight":3,"_id":"734","_type":"edge","_outV":"80","_inV":"198","_label":"followed_by"},{"_id":"7340","_type":"edge","_outV":"94","_inV":"340","_label":"sung_by"},{"_id":"7341","_type":"edge","_outV":"418","_inV":"356","_label":"written_by"},{"_id":"7342","_type":"edge","_outV":"418","_inV":"356","_label":"sung_by"},{"_id":"7343","_type":"edge","_outV":"153","_inV":"367","_label":"written_by"},{"_id":"7344","_type":"edge","_outV":"153","_inV":"351","_label":"sung_by"},{"_id":"7345","_type":"edge","_outV":"59","_inV":"339","_label":"written_by"},{"_id":"7346","_type":"edge","_outV":"59","_inV":"340","_label":"sung_by"},{"_id":"7347","_type":"edge","_outV":"133","_inV":"367","_label":"written_by"},{"_id":"7348","_type":"edge","_outV":"133","_inV":"351","_label":"sung_by"},{"_id":"7349","_type":"edge","_outV":"196","_inV":"377","_label":"written_by"},{"weight":6,"_id":"735","_type":"edge","_outV":"80","_inV":"111","_label":"followed_by"},{"_id":"7350","_type":"edge","_outV":"196","_inV":"377","_label":"sung_by"},{"_id":"7351","_type":"edge","_outV":"184","_inV":"350","_label":"written_by"},{"_id":"7352","_type":"edge","_outV":"184","_inV":"351","_label":"sung_by"},{"_id":"7353","_type":"edge","_outV":"419","_inV":"356","_label":"written_by"},{"_id":"7354","_type":"edge","_outV":"419","_inV":"356","_label":"sung_by"},{"_id":"7355","_type":"edge","_outV":"420","_inV":"339","_label":"written_by"},{"_id":"7356","_type":"edge","_outV":"420","_inV":"340","_label":"sung_by"},{"_id":"7357","_type":"edge","_outV":"421","_inV":"384","_label":"written_by"},{"_id":"7358","_type":"edge","_outV":"421","_inV":"422","_label":"sung_by"},{"_id":"7359","_type":"edge","_outV":"91","_inV":"339","_label":"written_by"},{"weight":1,"_id":"736","_type":"edge","_outV":"80","_inV":"222","_label":"followed_by"},{"_id":"7360","_type":"edge","_outV":"91","_inV":"340","_label":"sung_by"},{"_id":"7361","_type":"edge","_outV":"423","_inV":"384","_label":"written_by"},{"_id":"7362","_type":"edge","_outV":"423","_inV":"422","_label":"sung_by"},{"_id":"7363","_type":"edge","_outV":"17","_inV":"339","_label":"written_by"},{"_id":"7364","_type":"edge","_outV":"17","_inV":"340","_label":"sung_by"},{"_id":"7365","_type":"edge","_outV":"424","_inV":"350","_label":"written_by"},{"_id":"7366","_type":"edge","_outV":"424","_inV":"351","_label":"sung_by"},{"_id":"7367","_type":"edge","_outV":"29","_inV":"350","_label":"written_by"},{"_id":"7368","_type":"edge","_outV":"29","_inV":"351","_label":"sung_by"},{"_id":"7369","_type":"edge","_outV":"425","_inV":"339","_label":"written_by"},{"weight":2,"_id":"737","_type":"edge","_outV":"80","_inV":"197","_label":"followed_by"},{"_id":"7370","_type":"edge","_outV":"425","_inV":"340","_label":"sung_by"},{"_id":"7371","_type":"edge","_outV":"170","_inV":"339","_label":"written_by"},{"_id":"7372","_type":"edge","_outV":"170","_inV":"340","_label":"sung_by"},{"_id":"7373","_type":"edge","_outV":"223","_inV":"352","_label":"written_by"},{"_id":"7374","_type":"edge","_outV":"223","_inV":"352","_label":"sung_by"},{"_id":"7375","_type":"edge","_outV":"87","_inV":"339","_label":"written_by"},{"_id":"7376","_type":"edge","_outV":"87","_inV":"340","_label":"sung_by"},{"_id":"7377","_type":"edge","_outV":"21","_inV":"339","_label":"written_by"},{"_id":"7378","_type":"edge","_outV":"21","_inV":"426","_label":"sung_by"},{"_id":"7379","_type":"edge","_outV":"193","_inV":"339","_label":"written_by"},{"weight":8,"_id":"738","_type":"edge","_outV":"80","_inV":"32","_label":"followed_by"},{"_id":"7380","_type":"edge","_outV":"193","_inV":"340","_label":"sung_by"},{"_id":"7381","_type":"edge","_outV":"176","_inV":"401","_label":"written_by"},{"_id":"7382","_type":"edge","_outV":"176","_inV":"354","_label":"sung_by"},{"_id":"7383","_type":"edge","_outV":"74","_inV":"339","_label":"written_by"},{"_id":"7384","_type":"edge","_outV":"74","_inV":"340","_label":"sung_by"},{"_id":"7385","_type":"edge","_outV":"427","_inV":"416","_label":"written_by"},{"_id":"7386","_type":"edge","_outV":"427","_inV":"416","_label":"sung_by"},{"_id":"7387","_type":"edge","_outV":"34","_inV":"428","_label":"written_by"},{"_id":"7388","_type":"edge","_outV":"34","_inV":"351","_label":"sung_by"},{"_id":"7389","_type":"edge","_outV":"429","_inV":"350","_label":"written_by"},{"weight":1,"_id":"739","_type":"edge","_outV":"80","_inV":"78","_label":"followed_by"},{"_id":"7390","_type":"edge","_outV":"429","_inV":"351","_label":"sung_by"},{"_id":"7391","_type":"edge","_outV":"52","_inV":"339","_label":"written_by"},{"_id":"7392","_type":"edge","_outV":"52","_inV":"340","_label":"sung_by"},{"_id":"7393","_type":"edge","_outV":"172","_inV":"339","_label":"written_by"},{"_id":"7394","_type":"edge","_outV":"172","_inV":"354","_label":"sung_by"},{"_id":"7395","_type":"edge","_outV":"35","_inV":"339","_label":"written_by"},{"_id":"7396","_type":"edge","_outV":"35","_inV":"430","_label":"sung_by"},{"_id":"7397","_type":"edge","_outV":"431","_inV":"350","_label":"written_by"},{"_id":"7398","_type":"edge","_outV":"431","_inV":"352","_label":"sung_by"},{"_id":"7399","_type":"edge","_outV":"432","_inV":"384","_label":"written_by"},{"weight":1,"_id":"74","_type":"edge","_outV":"46","_inV":"67","_label":"followed_by"},{"weight":9,"_id":"740","_type":"edge","_outV":"80","_inV":"88","_label":"followed_by"},{"_id":"7400","_type":"edge","_outV":"432","_inV":"351","_label":"sung_by"},{"_id":"7401","_type":"edge","_outV":"433","_inV":"434","_label":"written_by"},{"_id":"7402","_type":"edge","_outV":"433","_inV":"351","_label":"sung_by"},{"_id":"7403","_type":"edge","_outV":"435","_inV":"339","_label":"written_by"},{"_id":"7404","_type":"edge","_outV":"435","_inV":"340","_label":"sung_by"},{"_id":"7405","_type":"edge","_outV":"130","_inV":"339","_label":"written_by"},{"_id":"7406","_type":"edge","_outV":"130","_inV":"340","_label":"sung_by"},{"_id":"7407","_type":"edge","_outV":"436","_inV":"339","_label":"written_by"},{"_id":"7408","_type":"edge","_outV":"436","_inV":"339","_label":"sung_by"},{"_id":"7409","_type":"edge","_outV":"437","_inV":"339","_label":"written_by"},{"weight":1,"_id":"741","_type":"edge","_outV":"80","_inV":"180","_label":"followed_by"},{"_id":"7410","_type":"edge","_outV":"437","_inV":"340","_label":"sung_by"},{"_id":"7411","_type":"edge","_outV":"134","_inV":"339","_label":"written_by"},{"_id":"7412","_type":"edge","_outV":"134","_inV":"375","_label":"sung_by"},{"_id":"7413","_type":"edge","_outV":"75","_inV":"339","_label":"written_by"},{"_id":"7414","_type":"edge","_outV":"75","_inV":"340","_label":"sung_by"},{"_id":"7415","_type":"edge","_outV":"438","_inV":"342","_label":"written_by"},{"_id":"7416","_type":"edge","_outV":"438","_inV":"342","_label":"sung_by"},{"_id":"7417","_type":"edge","_outV":"439","_inV":"342","_label":"written_by"},{"_id":"7418","_type":"edge","_outV":"439","_inV":"342","_label":"sung_by"},{"_id":"7419","_type":"edge","_outV":"440","_inV":"356","_label":"written_by"},{"weight":1,"_id":"742","_type":"edge","_outV":"80","_inV":"181","_label":"followed_by"},{"_id":"7420","_type":"edge","_outV":"440","_inV":"356","_label":"sung_by"},{"_id":"7421","_type":"edge","_outV":"441","_inV":"442","_label":"written_by"},{"_id":"7422","_type":"edge","_outV":"441","_inV":"356","_label":"sung_by"},{"_id":"7423","_type":"edge","_outV":"443","_inV":"444","_label":"written_by"},{"_id":"7424","_type":"edge","_outV":"443","_inV":"351","_label":"sung_by"},{"_id":"7425","_type":"edge","_outV":"445","_inV":"446","_label":"written_by"},{"_id":"7426","_type":"edge","_outV":"445","_inV":"340","_label":"sung_by"},{"_id":"7427","_type":"edge","_outV":"165","_inV":"447","_label":"written_by"},{"_id":"7428","_type":"edge","_outV":"165","_inV":"351","_label":"sung_by"},{"_id":"7429","_type":"edge","_outV":"448","_inV":"449","_label":"written_by"},{"weight":2,"_id":"743","_type":"edge","_outV":"80","_inV":"121","_label":"followed_by"},{"_id":"7430","_type":"edge","_outV":"448","_inV":"351","_label":"sung_by"},{"_id":"7431","_type":"edge","_outV":"450","_inV":"451","_label":"written_by"},{"_id":"7432","_type":"edge","_outV":"450","_inV":"356","_label":"sung_by"},{"_id":"7433","_type":"edge","_outV":"452","_inV":"446","_label":"written_by"},{"_id":"7434","_type":"edge","_outV":"452","_inV":"453","_label":"sung_by"},{"_id":"7435","_type":"edge","_outV":"454","_inV":"451","_label":"written_by"},{"_id":"7436","_type":"edge","_outV":"454","_inV":"451","_label":"sung_by"},{"_id":"7437","_type":"edge","_outV":"455","_inV":"456","_label":"written_by"},{"_id":"7438","_type":"edge","_outV":"455","_inV":"457","_label":"sung_by"},{"_id":"7439","_type":"edge","_outV":"25","_inV":"458","_label":"written_by"},{"weight":2,"_id":"744","_type":"edge","_outV":"80","_inV":"58","_label":"followed_by"},{"_id":"7440","_type":"edge","_outV":"25","_inV":"351","_label":"sung_by"},{"_id":"7441","_type":"edge","_outV":"185","_inV":"459","_label":"written_by"},{"_id":"7442","_type":"edge","_outV":"185","_inV":"415","_label":"sung_by"},{"_id":"7443","_type":"edge","_outV":"163","_inV":"460","_label":"written_by"},{"_id":"7444","_type":"edge","_outV":"163","_inV":"461","_label":"sung_by"},{"_id":"7445","_type":"edge","_outV":"326","_inV":"462","_label":"written_by"},{"_id":"7446","_type":"edge","_outV":"326","_inV":"462","_label":"sung_by"},{"_id":"7447","_type":"edge","_outV":"463","_inV":"446","_label":"written_by"},{"_id":"7448","_type":"edge","_outV":"463","_inV":"340","_label":"sung_by"},{"_id":"7449","_type":"edge","_outV":"464","_inV":"447","_label":"written_by"},{"weight":4,"_id":"745","_type":"edge","_outV":"80","_inV":"97","_label":"followed_by"},{"_id":"7450","_type":"edge","_outV":"464","_inV":"447","_label":"sung_by"},{"_id":"7451","_type":"edge","_outV":"269","_inV":"447","_label":"written_by"},{"_id":"7452","_type":"edge","_outV":"269","_inV":"351","_label":"sung_by"},{"_id":"7453","_type":"edge","_outV":"465","_inV":"466","_label":"written_by"},{"_id":"7454","_type":"edge","_outV":"465","_inV":"467","_label":"sung_by"},{"_id":"7455","_type":"edge","_outV":"468","_inV":"446","_label":"written_by"},{"_id":"7456","_type":"edge","_outV":"468","_inV":"469","_label":"sung_by"},{"_id":"7457","_type":"edge","_outV":"470","_inV":"446","_label":"written_by"},{"_id":"7458","_type":"edge","_outV":"470","_inV":"469","_label":"sung_by"},{"_id":"7459","_type":"edge","_outV":"10","_inV":"471","_label":"written_by"},{"weight":1,"_id":"746","_type":"edge","_outV":"80","_inV":"15","_label":"followed_by"},{"_id":"7460","_type":"edge","_outV":"10","_inV":"351","_label":"sung_by"},{"_id":"7461","_type":"edge","_outV":"472","_inV":"446","_label":"written_by"},{"_id":"7462","_type":"edge","_outV":"472","_inV":"340","_label":"sung_by"},{"_id":"7463","_type":"edge","_outV":"152","_inV":"473","_label":"written_by"},{"_id":"7464","_type":"edge","_outV":"152","_inV":"474","_label":"sung_by"},{"_id":"7465","_type":"edge","_outV":"303","_inV":"475","_label":"written_by"},{"_id":"7466","_type":"edge","_outV":"303","_inV":"476","_label":"sung_by"},{"_id":"7467","_type":"edge","_outV":"477","_inV":"451","_label":"written_by"},{"_id":"7468","_type":"edge","_outV":"477","_inV":"356","_label":"sung_by"},{"_id":"7469","_type":"edge","_outV":"53","_inV":"478","_label":"written_by"},{"weight":2,"_id":"747","_type":"edge","_outV":"80","_inV":"64","_label":"followed_by"},{"_id":"7470","_type":"edge","_outV":"53","_inV":"340","_label":"sung_by"},{"_id":"7471","_type":"edge","_outV":"15","_inV":"479","_label":"written_by"},{"_id":"7472","_type":"edge","_outV":"15","_inV":"351","_label":"sung_by"},{"_id":"7473","_type":"edge","_outV":"321","_inV":"480","_label":"written_by"},{"_id":"7474","_type":"edge","_outV":"321","_inV":"351","_label":"sung_by"},{"_id":"7475","_type":"edge","_outV":"233","_inV":"481","_label":"written_by"},{"_id":"7476","_type":"edge","_outV":"233","_inV":"481","_label":"sung_by"},{"_id":"7477","_type":"edge","_outV":"482","_inV":"483","_label":"written_by"},{"_id":"7478","_type":"edge","_outV":"482","_inV":"484","_label":"sung_by"},{"_id":"7479","_type":"edge","_outV":"485","_inV":"486","_label":"written_by"},{"weight":1,"_id":"748","_type":"edge","_outV":"80","_inV":"223","_label":"followed_by"},{"_id":"7480","_type":"edge","_outV":"485","_inV":"340","_label":"sung_by"},{"_id":"7481","_type":"edge","_outV":"256","_inV":"462","_label":"written_by"},{"_id":"7482","_type":"edge","_outV":"256","_inV":"462","_label":"sung_by"},{"_id":"7483","_type":"edge","_outV":"487","_inV":"488","_label":"written_by"},{"_id":"7484","_type":"edge","_outV":"487","_inV":"469","_label":"sung_by"},{"_id":"7485","_type":"edge","_outV":"489","_inV":"442","_label":"written_by"},{"_id":"7486","_type":"edge","_outV":"489","_inV":"356","_label":"sung_by"},{"_id":"7487","_type":"edge","_outV":"254","_inV":"490","_label":"written_by"},{"_id":"7488","_type":"edge","_outV":"254","_inV":"354","_label":"sung_by"},{"_id":"7489","_type":"edge","_outV":"301","_inV":"491","_label":"written_by"},{"weight":2,"_id":"749","_type":"edge","_outV":"80","_inV":"56","_label":"followed_by"},{"_id":"7490","_type":"edge","_outV":"301","_inV":"469","_label":"sung_by"},{"_id":"7491","_type":"edge","_outV":"492","_inV":"446","_label":"written_by"},{"_id":"7492","_type":"edge","_outV":"492","_inV":"351","_label":"sung_by"},{"_id":"7493","_type":"edge","_outV":"156","_inV":"493","_label":"written_by"},{"_id":"7494","_type":"edge","_outV":"156","_inV":"340","_label":"sung_by"},{"_id":"7495","_type":"edge","_outV":"494","_inV":"495","_label":"written_by"},{"_id":"7496","_type":"edge","_outV":"494","_inV":"351","_label":"sung_by"},{"_id":"7497","_type":"edge","_outV":"496","_inV":"497","_label":"written_by"},{"_id":"7498","_type":"edge","_outV":"496","_inV":"498","_label":"sung_by"},{"_id":"7499","_type":"edge","_outV":"499","_inV":"469","_label":"written_by"},{"weight":2,"_id":"75","_type":"edge","_outV":"46","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"750","_type":"edge","_outV":"80","_inV":"48","_label":"followed_by"},{"_id":"7500","_type":"edge","_outV":"499","_inV":"469","_label":"sung_by"},{"_id":"7501","_type":"edge","_outV":"271","_inV":"447","_label":"written_by"},{"_id":"7502","_type":"edge","_outV":"271","_inV":"447","_label":"sung_by"},{"_id":"7503","_type":"edge","_outV":"337","_inV":"500","_label":"written_by"},{"_id":"7504","_type":"edge","_outV":"337","_inV":"501","_label":"sung_by"},{"_id":"7505","_type":"edge","_outV":"78","_inV":"446","_label":"written_by"},{"_id":"7506","_type":"edge","_outV":"78","_inV":"340","_label":"sung_by"},{"_id":"7507","_type":"edge","_outV":"502","_inV":"442","_label":"written_by"},{"_id":"7508","_type":"edge","_outV":"502","_inV":"356","_label":"sung_by"},{"_id":"7509","_type":"edge","_outV":"503","_inV":"451","_label":"written_by"},{"weight":2,"_id":"751","_type":"edge","_outV":"80","_inV":"106","_label":"followed_by"},{"_id":"7510","_type":"edge","_outV":"503","_inV":"451","_label":"sung_by"},{"_id":"7511","_type":"edge","_outV":"504","_inV":"505","_label":"written_by"},{"_id":"7512","_type":"edge","_outV":"504","_inV":"351","_label":"sung_by"},{"_id":"7513","_type":"edge","_outV":"506","_inV":"446","_label":"written_by"},{"_id":"7514","_type":"edge","_outV":"506","_inV":"340","_label":"sung_by"},{"_id":"7515","_type":"edge","_outV":"198","_inV":"446","_label":"written_by"},{"_id":"7516","_type":"edge","_outV":"198","_inV":"351","_label":"sung_by"},{"_id":"7517","_type":"edge","_outV":"212","_inV":"480","_label":"written_by"},{"_id":"7518","_type":"edge","_outV":"212","_inV":"507","_label":"sung_by"},{"_id":"7519","_type":"edge","_outV":"508","_inV":"447","_label":"written_by"},{"weight":1,"_id":"752","_type":"edge","_outV":"80","_inV":"116","_label":"followed_by"},{"_id":"7520","_type":"edge","_outV":"508","_inV":"447","_label":"sung_by"},{"_id":"7521","_type":"edge","_outV":"509","_inV":"510","_label":"written_by"},{"_id":"7522","_type":"edge","_outV":"509","_inV":"352","_label":"sung_by"},{"_id":"7523","_type":"edge","_outV":"135","_inV":"511","_label":"written_by"},{"_id":"7524","_type":"edge","_outV":"135","_inV":"340","_label":"sung_by"},{"_id":"7525","_type":"edge","_outV":"512","_inV":"446","_label":"written_by"},{"_id":"7526","_type":"edge","_outV":"512","_inV":"340","_label":"sung_by"},{"_id":"7527","_type":"edge","_outV":"180","_inV":"446","_label":"written_by"},{"_id":"7528","_type":"edge","_outV":"180","_inV":"340","_label":"sung_by"},{"_id":"7529","_type":"edge","_outV":"71","_inV":"447","_label":"written_by"},{"weight":7,"_id":"753","_type":"edge","_outV":"80","_inV":"188","_label":"followed_by"},{"_id":"7530","_type":"edge","_outV":"71","_inV":"351","_label":"sung_by"},{"_id":"7531","_type":"edge","_outV":"513","_inV":"514","_label":"written_by"},{"_id":"7532","_type":"edge","_outV":"513","_inV":"352","_label":"sung_by"},{"_id":"7533","_type":"edge","_outV":"515","_inV":"516","_label":"written_by"},{"_id":"7534","_type":"edge","_outV":"515","_inV":"467","_label":"sung_by"},{"_id":"7535","_type":"edge","_outV":"72","_inV":"446","_label":"written_by"},{"_id":"7536","_type":"edge","_outV":"72","_inV":"340","_label":"sung_by"},{"_id":"7537","_type":"edge","_outV":"517","_inV":"518","_label":"written_by"},{"_id":"7538","_type":"edge","_outV":"517","_inV":"356","_label":"sung_by"},{"_id":"7539","_type":"edge","_outV":"519","_inV":"447","_label":"written_by"},{"weight":3,"_id":"754","_type":"edge","_outV":"80","_inV":"117","_label":"followed_by"},{"_id":"7540","_type":"edge","_outV":"519","_inV":"447","_label":"sung_by"},{"_id":"7541","_type":"edge","_outV":"245","_inV":"520","_label":"written_by"},{"_id":"7542","_type":"edge","_outV":"245","_inV":"351","_label":"sung_by"},{"_id":"7543","_type":"edge","_outV":"365","_inV":"451","_label":"written_by"},{"_id":"7544","_type":"edge","_outV":"365","_inV":"340","_label":"sung_by"},{"_id":"7545","_type":"edge","_outV":"521","_inV":"446","_label":"written_by"},{"_id":"7546","_type":"edge","_outV":"521","_inV":"340","_label":"sung_by"},{"_id":"7547","_type":"edge","_outV":"522","_inV":"523","_label":"written_by"},{"_id":"7548","_type":"edge","_outV":"522","_inV":"354","_label":"sung_by"},{"_id":"7549","_type":"edge","_outV":"524","_inV":"446","_label":"written_by"},{"weight":1,"_id":"755","_type":"edge","_outV":"80","_inV":"31","_label":"followed_by"},{"_id":"7550","_type":"edge","_outV":"524","_inV":"525","_label":"sung_by"},{"_id":"7551","_type":"edge","_outV":"526","_inV":"527","_label":"written_by"},{"_id":"7552","_type":"edge","_outV":"526","_inV":"527","_label":"sung_by"},{"_id":"7553","_type":"edge","_outV":"18","_inV":"528","_label":"written_by"},{"_id":"7554","_type":"edge","_outV":"18","_inV":"351","_label":"sung_by"},{"_id":"7555","_type":"edge","_outV":"529","_inV":"530","_label":"written_by"},{"_id":"7556","_type":"edge","_outV":"529","_inV":"356","_label":"sung_by"},{"_id":"7557","_type":"edge","_outV":"531","_inV":"532","_label":"written_by"},{"_id":"7558","_type":"edge","_outV":"531","_inV":"533","_label":"sung_by"},{"_id":"7559","_type":"edge","_outV":"283","_inV":"534","_label":"written_by"},{"weight":1,"_id":"756","_type":"edge","_outV":"80","_inV":"79","_label":"followed_by"},{"_id":"7560","_type":"edge","_outV":"283","_inV":"351","_label":"sung_by"},{"_id":"7561","_type":"edge","_outV":"535","_inV":"536","_label":"written_by"},{"_id":"7562","_type":"edge","_outV":"535","_inV":"537","_label":"sung_by"},{"_id":"7563","_type":"edge","_outV":"538","_inV":"451","_label":"written_by"},{"_id":"7564","_type":"edge","_outV":"538","_inV":"356","_label":"sung_by"},{"_id":"7565","_type":"edge","_outV":"335","_inV":"447","_label":"written_by"},{"_id":"7566","_type":"edge","_outV":"335","_inV":"539","_label":"sung_by"},{"_id":"7567","_type":"edge","_outV":"315","_inV":"540","_label":"written_by"},{"_id":"7568","_type":"edge","_outV":"315","_inV":"351","_label":"sung_by"},{"_id":"7569","_type":"edge","_outV":"541","_inV":"542","_label":"written_by"},{"weight":1,"_id":"757","_type":"edge","_outV":"80","_inV":"101","_label":"followed_by"},{"_id":"7570","_type":"edge","_outV":"541","_inV":"351","_label":"sung_by"},{"_id":"7571","_type":"edge","_outV":"543","_inV":"544","_label":"written_by"},{"_id":"7572","_type":"edge","_outV":"543","_inV":"340","_label":"sung_by"},{"_id":"7573","_type":"edge","_outV":"545","_inV":"546","_label":"written_by"},{"_id":"7574","_type":"edge","_outV":"545","_inV":"351","_label":"sung_by"},{"_id":"7575","_type":"edge","_outV":"312","_inV":"480","_label":"written_by"},{"_id":"7576","_type":"edge","_outV":"312","_inV":"351","_label":"sung_by"},{"_id":"7577","_type":"edge","_outV":"547","_inV":"548","_label":"written_by"},{"_id":"7578","_type":"edge","_outV":"547","_inV":"354","_label":"sung_by"},{"_id":"7579","_type":"edge","_outV":"227","_inV":"549","_label":"written_by"},{"weight":1,"_id":"758","_type":"edge","_outV":"80","_inV":"77","_label":"followed_by"},{"_id":"7580","_type":"edge","_outV":"227","_inV":"351","_label":"sung_by"},{"_id":"7581","_type":"edge","_outV":"5","_inV":"446","_label":"written_by"},{"_id":"7582","_type":"edge","_outV":"5","_inV":"340","_label":"sung_by"},{"_id":"7583","_type":"edge","_outV":"550","_inV":"480","_label":"written_by"},{"_id":"7584","_type":"edge","_outV":"550","_inV":"451","_label":"sung_by"},{"_id":"7585","_type":"edge","_outV":"44","_inV":"551","_label":"written_by"},{"_id":"7586","_type":"edge","_outV":"44","_inV":"352","_label":"sung_by"},{"_id":"7587","_type":"edge","_outV":"120","_inV":"552","_label":"written_by"},{"_id":"7588","_type":"edge","_outV":"120","_inV":"553","_label":"sung_by"},{"_id":"7589","_type":"edge","_outV":"292","_inV":"554","_label":"written_by"},{"weight":1,"_id":"759","_type":"edge","_outV":"80","_inV":"43","_label":"followed_by"},{"_id":"7590","_type":"edge","_outV":"292","_inV":"476","_label":"sung_by"},{"_id":"7591","_type":"edge","_outV":"555","_inV":"556","_label":"written_by"},{"_id":"7592","_type":"edge","_outV":"555","_inV":"453","_label":"sung_by"},{"_id":"7593","_type":"edge","_outV":"336","_inV":"557","_label":"written_by"},{"_id":"7594","_type":"edge","_outV":"336","_inV":"340","_label":"sung_by"},{"_id":"7595","_type":"edge","_outV":"558","_inV":"559","_label":"written_by"},{"_id":"7596","_type":"edge","_outV":"558","_inV":"351","_label":"sung_by"},{"_id":"7597","_type":"edge","_outV":"284","_inV":"447","_label":"written_by"},{"_id":"7598","_type":"edge","_outV":"284","_inV":"447","_label":"sung_by"},{"_id":"7599","_type":"edge","_outV":"560","_inV":"561","_label":"written_by"},{"weight":2,"_id":"76","_type":"edge","_outV":"46","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"760","_type":"edge","_outV":"224","_inV":"68","_label":"followed_by"},{"_id":"7600","_type":"edge","_outV":"560","_inV":"351","_label":"sung_by"},{"_id":"7601","_type":"edge","_outV":"325","_inV":"462","_label":"written_by"},{"_id":"7602","_type":"edge","_outV":"325","_inV":"462","_label":"sung_by"},{"_id":"7603","_type":"edge","_outV":"161","_inV":"562","_label":"written_by"},{"_id":"7604","_type":"edge","_outV":"161","_inV":"356","_label":"sung_by"},{"_id":"7605","_type":"edge","_outV":"563","_inV":"564","_label":"written_by"},{"_id":"7606","_type":"edge","_outV":"563","_inV":"340","_label":"sung_by"},{"_id":"7607","_type":"edge","_outV":"260","_inV":"447","_label":"written_by"},{"_id":"7608","_type":"edge","_outV":"260","_inV":"447","_label":"sung_by"},{"_id":"7609","_type":"edge","_outV":"565","_inV":"566","_label":"written_by"},{"weight":1,"_id":"761","_type":"edge","_outV":"224","_inV":"111","_label":"followed_by"},{"_id":"7610","_type":"edge","_outV":"565","_inV":"567","_label":"sung_by"},{"_id":"7611","_type":"edge","_outV":"1","_inV":"527","_label":"written_by"},{"_id":"7612","_type":"edge","_outV":"1","_inV":"340","_label":"sung_by"},{"_id":"7613","_type":"edge","_outV":"132","_inV":"480","_label":"written_by"},{"_id":"7614","_type":"edge","_outV":"132","_inV":"461","_label":"sung_by"},{"_id":"7615","_type":"edge","_outV":"568","_inV":"569","_label":"written_by"},{"_id":"7616","_type":"edge","_outV":"568","_inV":"340","_label":"sung_by"},{"_id":"7617","_type":"edge","_outV":"151","_inV":"570","_label":"written_by"},{"_id":"7618","_type":"edge","_outV":"151","_inV":"352","_label":"sung_by"},{"_id":"7619","_type":"edge","_outV":"571","_inV":"572","_label":"written_by"},{"weight":1,"_id":"762","_type":"edge","_outV":"224","_inV":"198","_label":"followed_by"},{"_id":"7620","_type":"edge","_outV":"571","_inV":"340","_label":"sung_by"},{"_id":"7621","_type":"edge","_outV":"332","_inV":"573","_label":"written_by"},{"_id":"7622","_type":"edge","_outV":"332","_inV":"574","_label":"sung_by"},{"_id":"7623","_type":"edge","_outV":"575","_inV":"447","_label":"written_by"},{"_id":"7624","_type":"edge","_outV":"575","_inV":"447","_label":"sung_by"},{"_id":"7625","_type":"edge","_outV":"576","_inV":"520","_label":"written_by"},{"_id":"7626","_type":"edge","_outV":"576","_inV":"340","_label":"sung_by"},{"_id":"7627","_type":"edge","_outV":"247","_inV":"577","_label":"written_by"},{"_id":"7628","_type":"edge","_outV":"247","_inV":"340","_label":"sung_by"},{"_id":"7629","_type":"edge","_outV":"578","_inV":"579","_label":"written_by"},{"weight":2,"_id":"763","_type":"edge","_outV":"224","_inV":"197","_label":"followed_by"},{"_id":"7630","_type":"edge","_outV":"578","_inV":"340","_label":"sung_by"},{"_id":"7631","_type":"edge","_outV":"580","_inV":"581","_label":"written_by"},{"_id":"7632","_type":"edge","_outV":"580","_inV":"351","_label":"sung_by"},{"_id":"7633","_type":"edge","_outV":"582","_inV":"520","_label":"written_by"},{"_id":"7634","_type":"edge","_outV":"582","_inV":"351","_label":"sung_by"},{"_id":"7635","_type":"edge","_outV":"216","_inV":"583","_label":"written_by"},{"_id":"7636","_type":"edge","_outV":"216","_inV":"340","_label":"sung_by"},{"_id":"7637","_type":"edge","_outV":"584","_inV":"446","_label":"written_by"},{"_id":"7638","_type":"edge","_outV":"584","_inV":"585","_label":"sung_by"},{"_id":"7639","_type":"edge","_outV":"586","_inV":"587","_label":"written_by"},{"weight":1,"_id":"764","_type":"edge","_outV":"224","_inV":"58","_label":"followed_by"},{"_id":"7640","_type":"edge","_outV":"586","_inV":"352","_label":"sung_by"},{"_id":"7641","_type":"edge","_outV":"588","_inV":"520","_label":"written_by"},{"_id":"7642","_type":"edge","_outV":"588","_inV":"461","_label":"sung_by"},{"_id":"7643","_type":"edge","_outV":"589","_inV":"460","_label":"written_by"},{"_id":"7644","_type":"edge","_outV":"589","_inV":"340","_label":"sung_by"},{"_id":"7645","_type":"edge","_outV":"187","_inV":"446","_label":"written_by"},{"_id":"7646","_type":"edge","_outV":"187","_inV":"453","_label":"sung_by"},{"_id":"7647","_type":"edge","_outV":"590","_inV":"591","_label":"written_by"},{"_id":"7648","_type":"edge","_outV":"590","_inV":"340","_label":"sung_by"},{"_id":"7649","_type":"edge","_outV":"258","_inV":"592","_label":"written_by"},{"weight":1,"_id":"765","_type":"edge","_outV":"224","_inV":"209","_label":"followed_by"},{"_id":"7650","_type":"edge","_outV":"258","_inV":"340","_label":"sung_by"},{"_id":"7651","_type":"edge","_outV":"251","_inV":"447","_label":"written_by"},{"_id":"7652","_type":"edge","_outV":"251","_inV":"447","_label":"sung_by"},{"_id":"7653","_type":"edge","_outV":"593","_inV":"594","_label":"written_by"},{"_id":"7654","_type":"edge","_outV":"593","_inV":"340","_label":"sung_by"},{"_id":"7655","_type":"edge","_outV":"266","_inV":"447","_label":"written_by"},{"_id":"7656","_type":"edge","_outV":"266","_inV":"447","_label":"sung_by"},{"_id":"7657","_type":"edge","_outV":"595","_inV":"596","_label":"written_by"},{"_id":"7658","_type":"edge","_outV":"595","_inV":"356","_label":"sung_by"},{"_id":"7659","_type":"edge","_outV":"597","_inV":"598","_label":"written_by"},{"weight":5,"_id":"766","_type":"edge","_outV":"122","_inV":"120","_label":"followed_by"},{"_id":"7660","_type":"edge","_outV":"597","_inV":"356","_label":"sung_by"},{"_id":"7661","_type":"edge","_outV":"599","_inV":"600","_label":"written_by"},{"_id":"7662","_type":"edge","_outV":"599","_inV":"356","_label":"sung_by"},{"_id":"7663","_type":"edge","_outV":"601","_inV":"602","_label":"written_by"},{"_id":"7664","_type":"edge","_outV":"601","_inV":"476","_label":"sung_by"},{"_id":"7665","_type":"edge","_outV":"2","_inV":"525","_label":"written_by"},{"_id":"7666","_type":"edge","_outV":"2","_inV":"525","_label":"sung_by"},{"_id":"7667","_type":"edge","_outV":"603","_inV":"446","_label":"written_by"},{"_id":"7668","_type":"edge","_outV":"603","_inV":"340","_label":"sung_by"},{"_id":"7669","_type":"edge","_outV":"604","_inV":"605","_label":"written_by"},{"weight":11,"_id":"767","_type":"edge","_outV":"122","_inV":"23","_label":"followed_by"},{"_id":"7670","_type":"edge","_outV":"604","_inV":"351","_label":"sung_by"},{"_id":"7671","_type":"edge","_outV":"606","_inV":"480","_label":"written_by"},{"_id":"7672","_type":"edge","_outV":"606","_inV":"351","_label":"sung_by"},{"_id":"7673","_type":"edge","_outV":"62","_inV":"446","_label":"written_by"},{"_id":"7674","_type":"edge","_outV":"62","_inV":"340","_label":"sung_by"},{"_id":"7675","_type":"edge","_outV":"607","_inV":"446","_label":"written_by"},{"_id":"7676","_type":"edge","_outV":"607","_inV":"340","_label":"sung_by"},{"_id":"7677","_type":"edge","_outV":"608","_inV":"609","_label":"written_by"},{"_id":"7678","_type":"edge","_outV":"608","_inV":"476","_label":"sung_by"},{"_id":"7679","_type":"edge","_outV":"610","_inV":"611","_label":"written_by"},{"weight":18,"_id":"768","_type":"edge","_outV":"122","_inV":"26","_label":"followed_by"},{"_id":"7680","_type":"edge","_outV":"610","_inV":"356","_label":"sung_by"},{"_id":"7681","_type":"edge","_outV":"612","_inV":"447","_label":"written_by"},{"_id":"7682","_type":"edge","_outV":"612","_inV":"340","_label":"sung_by"},{"_id":"7683","_type":"edge","_outV":"613","_inV":"614","_label":"written_by"},{"_id":"7684","_type":"edge","_outV":"613","_inV":"356","_label":"sung_by"},{"_id":"7685","_type":"edge","_outV":"42","_inV":"615","_label":"written_by"},{"_id":"7686","_type":"edge","_outV":"42","_inV":"476","_label":"sung_by"},{"_id":"7687","_type":"edge","_outV":"616","_inV":"447","_label":"written_by"},{"_id":"7688","_type":"edge","_outV":"616","_inV":"340","_label":"sung_by"},{"_id":"7689","_type":"edge","_outV":"177","_inV":"592","_label":"written_by"},{"weight":3,"_id":"769","_type":"edge","_outV":"122","_inV":"15","_label":"followed_by"},{"_id":"7690","_type":"edge","_outV":"177","_inV":"415","_label":"sung_by"},{"_id":"7691","_type":"edge","_outV":"617","_inV":"618","_label":"written_by"},{"_id":"7692","_type":"edge","_outV":"617","_inV":"451","_label":"sung_by"},{"_id":"7693","_type":"edge","_outV":"619","_inV":"527","_label":"written_by"},{"_id":"7694","_type":"edge","_outV":"619","_inV":"527","_label":"sung_by"},{"_id":"7695","_type":"edge","_outV":"620","_inV":"446","_label":"written_by"},{"_id":"7696","_type":"edge","_outV":"620","_inV":"340","_label":"sung_by"},{"_id":"7697","_type":"edge","_outV":"310","_inV":"447","_label":"written_by"},{"_id":"7698","_type":"edge","_outV":"310","_inV":"447","_label":"sung_by"},{"_id":"7699","_type":"edge","_outV":"249","_inV":"447","_label":"written_by"},{"weight":1,"_id":"77","_type":"edge","_outV":"46","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"770","_type":"edge","_outV":"122","_inV":"89","_label":"followed_by"},{"_id":"7700","_type":"edge","_outV":"249","_inV":"447","_label":"sung_by"},{"_id":"7701","_type":"edge","_outV":"621","_inV":"622","_label":"written_by"},{"_id":"7702","_type":"edge","_outV":"621","_inV":"623","_label":"sung_by"},{"_id":"7703","_type":"edge","_outV":"166","_inV":"458","_label":"written_by"},{"_id":"7704","_type":"edge","_outV":"166","_inV":"351","_label":"sung_by"},{"_id":"7705","_type":"edge","_outV":"624","_inV":"446","_label":"written_by"},{"_id":"7706","_type":"edge","_outV":"624","_inV":"453","_label":"sung_by"},{"_id":"7707","_type":"edge","_outV":"625","_inV":"447","_label":"written_by"},{"_id":"7708","_type":"edge","_outV":"625","_inV":"354","_label":"sung_by"},{"_id":"7709","_type":"edge","_outV":"244","_inV":"598","_label":"written_by"},{"weight":2,"_id":"771","_type":"edge","_outV":"122","_inV":"78","_label":"followed_by"},{"_id":"7710","_type":"edge","_outV":"244","_inV":"351","_label":"sung_by"},{"_id":"7711","_type":"edge","_outV":"626","_inV":"442","_label":"written_by"},{"_id":"7712","_type":"edge","_outV":"626","_inV":"356","_label":"sung_by"},{"_id":"7713","_type":"edge","_outV":"298","_inV":"446","_label":"written_by"},{"_id":"7714","_type":"edge","_outV":"298","_inV":"351","_label":"sung_by"},{"_id":"7715","_type":"edge","_outV":"299","_inV":"627","_label":"written_by"},{"_id":"7716","_type":"edge","_outV":"299","_inV":"628","_label":"sung_by"},{"_id":"7717","_type":"edge","_outV":"385","_inV":"446","_label":"written_by"},{"_id":"7718","_type":"edge","_outV":"385","_inV":"453","_label":"sung_by"},{"_id":"7719","_type":"edge","_outV":"204","_inV":"447","_label":"written_by"},{"weight":1,"_id":"772","_type":"edge","_outV":"122","_inV":"39","_label":"followed_by"},{"_id":"7720","_type":"edge","_outV":"204","_inV":"340","_label":"sung_by"},{"_id":"7721","_type":"edge","_outV":"144","_inV":"629","_label":"written_by"},{"_id":"7722","_type":"edge","_outV":"144","_inV":"340","_label":"sung_by"},{"_id":"7723","_type":"edge","_outV":"630","_inV":"469","_label":"written_by"},{"_id":"7724","_type":"edge","_outV":"630","_inV":"469","_label":"sung_by"},{"_id":"7725","_type":"edge","_outV":"631","_inV":"632","_label":"written_by"},{"_id":"7726","_type":"edge","_outV":"631","_inV":"507","_label":"sung_by"},{"_id":"7727","_type":"edge","_outV":"633","_inV":"451","_label":"written_by"},{"_id":"7728","_type":"edge","_outV":"633","_inV":"451","_label":"sung_by"},{"_id":"7729","_type":"edge","_outV":"634","_inV":"635","_label":"written_by"},{"weight":9,"_id":"773","_type":"edge","_outV":"122","_inV":"4","_label":"followed_by"},{"_id":"7730","_type":"edge","_outV":"634","_inV":"351","_label":"sung_by"},{"_id":"7731","_type":"edge","_outV":"324","_inV":"458","_label":"written_by"},{"_id":"7732","_type":"edge","_outV":"324","_inV":"340","_label":"sung_by"},{"_id":"7733","_type":"edge","_outV":"636","_inV":"637","_label":"written_by"},{"_id":"7734","_type":"edge","_outV":"636","_inV":"351","_label":"sung_by"},{"_id":"7735","_type":"edge","_outV":"638","_inV":"451","_label":"written_by"},{"_id":"7736","_type":"edge","_outV":"638","_inV":"352","_label":"sung_by"},{"_id":"7737","_type":"edge","_outV":"220","_inV":"446","_label":"written_by"},{"_id":"7738","_type":"edge","_outV":"220","_inV":"340","_label":"sung_by"},{"_id":"7739","_type":"edge","_outV":"88","_inV":"520","_label":"written_by"},{"weight":3,"_id":"774","_type":"edge","_outV":"122","_inV":"153","_label":"followed_by"},{"_id":"7740","_type":"edge","_outV":"88","_inV":"553","_label":"sung_by"},{"_id":"7741","_type":"edge","_outV":"639","_inV":"640","_label":"written_by"},{"_id":"7742","_type":"edge","_outV":"639","_inV":"351","_label":"sung_by"},{"_id":"7743","_type":"edge","_outV":"641","_inV":"642","_label":"written_by"},{"_id":"7744","_type":"edge","_outV":"641","_inV":"462","_label":"sung_by"},{"_id":"7745","_type":"edge","_outV":"643","_inV":"644","_label":"written_by"},{"_id":"7746","_type":"edge","_outV":"643","_inV":"645","_label":"sung_by"},{"_id":"7747","_type":"edge","_outV":"257","_inV":"646","_label":"written_by"},{"_id":"7748","_type":"edge","_outV":"257","_inV":"381","_label":"sung_by"},{"_id":"7749","_type":"edge","_outV":"323","_inV":"481","_label":"written_by"},{"weight":1,"_id":"775","_type":"edge","_outV":"122","_inV":"13","_label":"followed_by"},{"_id":"7750","_type":"edge","_outV":"323","_inV":"481","_label":"sung_by"},{"_id":"7751","_type":"edge","_outV":"143","_inV":"469","_label":"written_by"},{"_id":"7752","_type":"edge","_outV":"143","_inV":"469","_label":"sung_by"},{"_id":"7753","_type":"edge","_outV":"647","_inV":"480","_label":"written_by"},{"_id":"7754","_type":"edge","_outV":"647","_inV":"340","_label":"sung_by"},{"_id":"7755","_type":"edge","_outV":"648","_inV":"451","_label":"written_by"},{"_id":"7756","_type":"edge","_outV":"648","_inV":"574","_label":"sung_by"},{"_id":"7757","_type":"edge","_outV":"306","_inV":"649","_label":"written_by"},{"_id":"7758","_type":"edge","_outV":"306","_inV":"354","_label":"sung_by"},{"_id":"7759","_type":"edge","_outV":"131","_inV":"447","_label":"written_by"},{"weight":12,"_id":"776","_type":"edge","_outV":"122","_inV":"114","_label":"followed_by"},{"_id":"7760","_type":"edge","_outV":"131","_inV":"453","_label":"sung_by"},{"_id":"7761","_type":"edge","_outV":"112","_inV":"650","_label":"written_by"},{"_id":"7762","_type":"edge","_outV":"112","_inV":"351","_label":"sung_by"},{"_id":"7763","_type":"edge","_outV":"264","_inV":"447","_label":"written_by"},{"_id":"7764","_type":"edge","_outV":"264","_inV":"447","_label":"sung_by"},{"_id":"7765","_type":"edge","_outV":"651","_inV":"652","_label":"written_by"},{"_id":"7766","_type":"edge","_outV":"651","_inV":"381","_label":"sung_by"},{"_id":"7767","_type":"edge","_outV":"653","_inV":"654","_label":"written_by"},{"_id":"7768","_type":"edge","_outV":"653","_inV":"356","_label":"sung_by"},{"_id":"7769","_type":"edge","_outV":"655","_inV":"469","_label":"written_by"},{"weight":7,"_id":"777","_type":"edge","_outV":"122","_inV":"21","_label":"followed_by"},{"_id":"7770","_type":"edge","_outV":"655","_inV":"469","_label":"sung_by"},{"_id":"7771","_type":"edge","_outV":"656","_inV":"657","_label":"written_by"},{"_id":"7772","_type":"edge","_outV":"656","_inV":"340","_label":"sung_by"},{"_id":"7773","_type":"edge","_outV":"22","_inV":"658","_label":"written_by"},{"_id":"7774","_type":"edge","_outV":"22","_inV":"351","_label":"sung_by"},{"_id":"7775","_type":"edge","_outV":"12","_inV":"659","_label":"written_by"},{"_id":"7776","_type":"edge","_outV":"12","_inV":"351","_label":"sung_by"},{"_id":"7777","_type":"edge","_outV":"660","_inV":"447","_label":"written_by"},{"_id":"7778","_type":"edge","_outV":"660","_inV":"351","_label":"sung_by"},{"_id":"7779","_type":"edge","_outV":"661","_inV":"447","_label":"written_by"},{"weight":3,"_id":"778","_type":"edge","_outV":"122","_inV":"49","_label":"followed_by"},{"_id":"7780","_type":"edge","_outV":"661","_inV":"340","_label":"sung_by"},{"_id":"7781","_type":"edge","_outV":"6","_inV":"527","_label":"written_by"},{"_id":"7782","_type":"edge","_outV":"6","_inV":"351","_label":"sung_by"},{"_id":"7783","_type":"edge","_outV":"197","_inV":"471","_label":"written_by"},{"_id":"7784","_type":"edge","_outV":"197","_inV":"351","_label":"sung_by"},{"_id":"7785","_type":"edge","_outV":"127","_inV":"662","_label":"written_by"},{"_id":"7786","_type":"edge","_outV":"127","_inV":"340","_label":"sung_by"},{"_id":"7787","_type":"edge","_outV":"663","_inV":"447","_label":"written_by"},{"_id":"7788","_type":"edge","_outV":"663","_inV":"447","_label":"sung_by"},{"_id":"7789","_type":"edge","_outV":"664","_inV":"520","_label":"written_by"},{"weight":1,"_id":"779","_type":"edge","_outV":"122","_inV":"164","_label":"followed_by"},{"_id":"7790","_type":"edge","_outV":"664","_inV":"340","_label":"sung_by"},{"_id":"7791","_type":"edge","_outV":"313","_inV":"644","_label":"written_by"},{"_id":"7792","_type":"edge","_outV":"313","_inV":"340","_label":"sung_by"},{"_id":"7793","_type":"edge","_outV":"665","_inV":"666","_label":"written_by"},{"_id":"7794","_type":"edge","_outV":"665","_inV":"666","_label":"sung_by"},{"_id":"7795","_type":"edge","_outV":"667","_inV":"668","_label":"written_by"},{"_id":"7796","_type":"edge","_outV":"667","_inV":"340","_label":"sung_by"},{"_id":"7797","_type":"edge","_outV":"334","_inV":"501","_label":"written_by"},{"_id":"7798","_type":"edge","_outV":"334","_inV":"501","_label":"sung_by"},{"_id":"7799","_type":"edge","_outV":"32","_inV":"478","_label":"written_by"},{"weight":1,"_id":"78","_type":"edge","_outV":"46","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"780","_type":"edge","_outV":"122","_inV":"225","_label":"followed_by"},{"_id":"7800","_type":"edge","_outV":"32","_inV":"351","_label":"sung_by"},{"_id":"7801","_type":"edge","_outV":"320","_inV":"669","_label":"written_by"},{"_id":"7802","_type":"edge","_outV":"320","_inV":"351","_label":"sung_by"},{"_id":"7803","_type":"edge","_outV":"207","_inV":"670","_label":"written_by"},{"_id":"7804","_type":"edge","_outV":"207","_inV":"356","_label":"sung_by"},{"_id":"7805","_type":"edge","_outV":"319","_inV":"446","_label":"written_by"},{"_id":"7806","_type":"edge","_outV":"319","_inV":"340","_label":"sung_by"},{"_id":"7807","_type":"edge","_outV":"3","_inV":"671","_label":"written_by"},{"_id":"7808","_type":"edge","_outV":"3","_inV":"351","_label":"sung_by"},{"_id":"7809","_type":"edge","_outV":"672","_inV":"623","_label":"written_by"},{"weight":2,"_id":"781","_type":"edge","_outV":"122","_inV":"27","_label":"followed_by"},{"_id":"7810","_type":"edge","_outV":"672","_inV":"623","_label":"sung_by"},{"_id":"7811","_type":"edge","_outV":"199","_inV":"673","_label":"written_by"},{"_id":"7812","_type":"edge","_outV":"199","_inV":"340","_label":"sung_by"},{"_id":"7813","_type":"edge","_outV":"8","_inV":"674","_label":"written_by"},{"_id":"7814","_type":"edge","_outV":"8","_inV":"351","_label":"sung_by"},{"_id":"7815","_type":"edge","_outV":"675","_inV":"650","_label":"written_by"},{"_id":"7816","_type":"edge","_outV":"675","_inV":"567","_label":"sung_by"},{"_id":"7817","_type":"edge","_outV":"676","_inV":"677","_label":"written_by"},{"_id":"7818","_type":"edge","_outV":"676","_inV":"351","_label":"sung_by"},{"_id":"7819","_type":"edge","_outV":"678","_inV":"679","_label":"written_by"},{"weight":1,"_id":"782","_type":"edge","_outV":"122","_inV":"226","_label":"followed_by"},{"_id":"7820","_type":"edge","_outV":"678","_inV":"351","_label":"sung_by"},{"_id":"7821","_type":"edge","_outV":"111","_inV":"446","_label":"written_by"},{"_id":"7822","_type":"edge","_outV":"111","_inV":"507","_label":"sung_by"},{"_id":"7823","_type":"edge","_outV":"680","_inV":"681","_label":"written_by"},{"_id":"7824","_type":"edge","_outV":"680","_inV":"340","_label":"sung_by"},{"_id":"7825","_type":"edge","_outV":"682","_inV":"683","_label":"written_by"},{"_id":"7826","_type":"edge","_outV":"682","_inV":"415","_label":"sung_by"},{"_id":"7827","_type":"edge","_outV":"684","_inV":"451","_label":"written_by"},{"_id":"7828","_type":"edge","_outV":"684","_inV":"340","_label":"sung_by"},{"_id":"7829","_type":"edge","_outV":"685","_inV":"686","_label":"written_by"},{"weight":1,"_id":"783","_type":"edge","_outV":"122","_inV":"12","_label":"followed_by"},{"_id":"7830","_type":"edge","_outV":"685","_inV":"340","_label":"sung_by"},{"_id":"7831","_type":"edge","_outV":"687","_inV":"688","_label":"written_by"},{"_id":"7832","_type":"edge","_outV":"687","_inV":"356","_label":"sung_by"},{"_id":"7833","_type":"edge","_outV":"689","_inV":"480","_label":"written_by"},{"_id":"7834","_type":"edge","_outV":"689","_inV":"415","_label":"sung_by"},{"_id":"7835","_type":"edge","_outV":"690","_inV":"691","_label":"written_by"},{"_id":"7836","_type":"edge","_outV":"690","_inV":"356","_label":"sung_by"},{"_id":"7837","_type":"edge","_outV":"692","_inV":"446","_label":"written_by"},{"_id":"7838","_type":"edge","_outV":"692","_inV":"340","_label":"sung_by"},{"_id":"7839","_type":"edge","_outV":"693","_inV":"694","_label":"written_by"},{"weight":1,"_id":"784","_type":"edge","_outV":"122","_inV":"53","_label":"followed_by"},{"_id":"7840","_type":"edge","_outV":"693","_inV":"623","_label":"sung_by"},{"_id":"7841","_type":"edge","_outV":"695","_inV":"596","_label":"written_by"},{"_id":"7842","_type":"edge","_outV":"695","_inV":"415","_label":"sung_by"},{"_id":"7843","_type":"edge","_outV":"696","_inV":"527","_label":"written_by"},{"_id":"7844","_type":"edge","_outV":"696","_inV":"527","_label":"sung_by"},{"_id":"7845","_type":"edge","_outV":"697","_inV":"446","_label":"written_by"},{"_id":"7846","_type":"edge","_outV":"697","_inV":"498","_label":"sung_by"},{"_id":"7847","_type":"edge","_outV":"26","_inV":"458","_label":"written_by"},{"_id":"7848","_type":"edge","_outV":"26","_inV":"351","_label":"sung_by"},{"_id":"7849","_type":"edge","_outV":"194","_inV":"462","_label":"written_by"},{"weight":1,"_id":"785","_type":"edge","_outV":"122","_inV":"24","_label":"followed_by"},{"_id":"7850","_type":"edge","_outV":"194","_inV":"462","_label":"sung_by"},{"_id":"7851","_type":"edge","_outV":"698","_inV":"447","_label":"written_by"},{"_id":"7852","_type":"edge","_outV":"698","_inV":"351","_label":"sung_by"},{"_id":"7853","_type":"edge","_outV":"20","_inV":"699","_label":"written_by"},{"_id":"7854","_type":"edge","_outV":"20","_inV":"351","_label":"sung_by"},{"_id":"7855","_type":"edge","_outV":"700","_inV":"701","_label":"written_by"},{"_id":"7856","_type":"edge","_outV":"700","_inV":"351","_label":"sung_by"},{"_id":"7857","_type":"edge","_outV":"93","_inV":"480","_label":"written_by"},{"_id":"7858","_type":"edge","_outV":"93","_inV":"453","_label":"sung_by"},{"_id":"7859","_type":"edge","_outV":"702","_inV":"447","_label":"written_by"},{"weight":4,"_id":"786","_type":"edge","_outV":"122","_inV":"25","_label":"followed_by"},{"_id":"7860","_type":"edge","_outV":"702","_inV":"447","_label":"sung_by"},{"_id":"7861","_type":"edge","_outV":"211","_inV":"480","_label":"written_by"},{"_id":"7862","_type":"edge","_outV":"211","_inV":"340","_label":"sung_by"},{"_id":"7863","_type":"edge","_outV":"703","_inV":"704","_label":"written_by"},{"_id":"7864","_type":"edge","_outV":"703","_inV":"567","_label":"sung_by"},{"_id":"7865","_type":"edge","_outV":"705","_inV":"706","_label":"written_by"},{"_id":"7866","_type":"edge","_outV":"705","_inV":"340","_label":"sung_by"},{"_id":"7867","_type":"edge","_outV":"707","_inV":"708","_label":"written_by"},{"_id":"7868","_type":"edge","_outV":"707","_inV":"457","_label":"sung_by"},{"_id":"7869","_type":"edge","_outV":"709","_inV":"579","_label":"written_by"},{"weight":3,"_id":"787","_type":"edge","_outV":"122","_inV":"9","_label":"followed_by"},{"_id":"7870","_type":"edge","_outV":"709","_inV":"351","_label":"sung_by"},{"_id":"7871","_type":"edge","_outV":"710","_inV":"557","_label":"written_by"},{"_id":"7872","_type":"edge","_outV":"710","_inV":"356","_label":"sung_by"},{"_id":"7873","_type":"edge","_outV":"711","_inV":"712","_label":"written_by"},{"_id":"7874","_type":"edge","_outV":"711","_inV":"340","_label":"sung_by"},{"_id":"7875","_type":"edge","_outV":"713","_inV":"714","_label":"written_by"},{"_id":"7876","_type":"edge","_outV":"713","_inV":"340","_label":"sung_by"},{"_id":"7877","_type":"edge","_outV":"715","_inV":"716","_label":"written_by"},{"_id":"7878","_type":"edge","_outV":"715","_inV":"340","_label":"sung_by"},{"_id":"7879","_type":"edge","_outV":"717","_inV":"718","_label":"written_by"},{"weight":1,"_id":"788","_type":"edge","_outV":"122","_inV":"72","_label":"followed_by"},{"_id":"7880","_type":"edge","_outV":"717","_inV":"356","_label":"sung_by"},{"_id":"7881","_type":"edge","_outV":"40","_inV":"520","_label":"written_by"},{"_id":"7882","_type":"edge","_outV":"40","_inV":"356","_label":"sung_by"},{"_id":"7883","_type":"edge","_outV":"76","_inV":"446","_label":"written_by"},{"_id":"7884","_type":"edge","_outV":"76","_inV":"351","_label":"sung_by"},{"_id":"7885","_type":"edge","_outV":"719","_inV":"632","_label":"written_by"},{"_id":"7886","_type":"edge","_outV":"719","_inV":"351","_label":"sung_by"},{"_id":"7887","_type":"edge","_outV":"720","_inV":"721","_label":"written_by"},{"_id":"7888","_type":"edge","_outV":"720","_inV":"351","_label":"sung_by"},{"_id":"7889","_type":"edge","_outV":"526","_inV":"527","_label":"written_by"},{"weight":1,"_id":"789","_type":"edge","_outV":"122","_inV":"54","_label":"followed_by"},{"_id":"7890","_type":"edge","_outV":"526","_inV":"527","_label":"sung_by"},{"_id":"7891","_type":"edge","_outV":"722","_inV":"704","_label":"written_by"},{"_id":"7892","_type":"edge","_outV":"722","_inV":"356","_label":"sung_by"},{"_id":"7893","_type":"edge","_outV":"723","_inV":"724","_label":"written_by"},{"_id":"7894","_type":"edge","_outV":"723","_inV":"351","_label":"sung_by"},{"_id":"7895","_type":"edge","_outV":"725","_inV":"469","_label":"written_by"},{"_id":"7896","_type":"edge","_outV":"725","_inV":"469","_label":"sung_by"},{"_id":"7897","_type":"edge","_outV":"128","_inV":"447","_label":"written_by"},{"_id":"7898","_type":"edge","_outV":"128","_inV":"726","_label":"sung_by"},{"_id":"7899","_type":"edge","_outV":"727","_inV":"442","_label":"written_by"},{"weight":1,"_id":"79","_type":"edge","_outV":"46","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"790","_type":"edge","_outV":"122","_inV":"19","_label":"followed_by"},{"_id":"7900","_type":"edge","_outV":"727","_inV":"356","_label":"sung_by"},{"_id":"7901","_type":"edge","_outV":"331","_inV":"447","_label":"written_by"},{"_id":"7902","_type":"edge","_outV":"331","_inV":"447","_label":"sung_by"},{"_id":"7903","_type":"edge","_outV":"728","_inV":"729","_label":"written_by"},{"_id":"7904","_type":"edge","_outV":"728","_inV":"356","_label":"sung_by"},{"_id":"7905","_type":"edge","_outV":"317","_inV":"730","_label":"written_by"},{"_id":"7906","_type":"edge","_outV":"317","_inV":"574","_label":"sung_by"},{"_id":"7907","_type":"edge","_outV":"731","_inV":"732","_label":"written_by"},{"_id":"7908","_type":"edge","_outV":"731","_inV":"351","_label":"sung_by"},{"_id":"7909","_type":"edge","_outV":"250","_inV":"447","_label":"written_by"},{"weight":3,"_id":"791","_type":"edge","_outV":"122","_inV":"157","_label":"followed_by"},{"_id":"7910","_type":"edge","_outV":"250","_inV":"447","_label":"sung_by"},{"_id":"7911","_type":"edge","_outV":"206","_inV":"650","_label":"written_by"},{"_id":"7912","_type":"edge","_outV":"206","_inV":"340","_label":"sung_by"},{"_id":"7913","_type":"edge","_outV":"733","_inV":"734","_label":"written_by"},{"_id":"7914","_type":"edge","_outV":"733","_inV":"340","_label":"sung_by"},{"_id":"7915","_type":"edge","_outV":"735","_inV":"527","_label":"written_by"},{"_id":"7916","_type":"edge","_outV":"735","_inV":"527","_label":"sung_by"},{"_id":"7917","_type":"edge","_outV":"736","_inV":"447","_label":"written_by"},{"_id":"7918","_type":"edge","_outV":"736","_inV":"447","_label":"sung_by"},{"_id":"7919","_type":"edge","_outV":"113","_inV":"737","_label":"written_by"},{"weight":1,"_id":"792","_type":"edge","_outV":"122","_inV":"127","_label":"followed_by"},{"_id":"7920","_type":"edge","_outV":"113","_inV":"476","_label":"sung_by"},{"_id":"7921","_type":"edge","_outV":"738","_inV":"739","_label":"written_by"},{"_id":"7922","_type":"edge","_outV":"738","_inV":"351","_label":"sung_by"},{"_id":"7923","_type":"edge","_outV":"740","_inV":"741","_label":"written_by"},{"_id":"7924","_type":"edge","_outV":"740","_inV":"574","_label":"sung_by"},{"_id":"7925","_type":"edge","_outV":"742","_inV":"451","_label":"written_by"},{"_id":"7926","_type":"edge","_outV":"742","_inV":"537","_label":"sung_by"},{"_id":"7927","_type":"edge","_outV":"33","_inV":"520","_label":"written_by"},{"_id":"7928","_type":"edge","_outV":"33","_inV":"351","_label":"sung_by"},{"_id":"7929","_type":"edge","_outV":"136","_inV":"743","_label":"written_by"},{"weight":1,"_id":"793","_type":"edge","_outV":"122","_inV":"55","_label":"followed_by"},{"_id":"7930","_type":"edge","_outV":"136","_inV":"416","_label":"sung_by"},{"_id":"7931","_type":"edge","_outV":"744","_inV":"745","_label":"written_by"},{"_id":"7932","_type":"edge","_outV":"744","_inV":"574","_label":"sung_by"},{"_id":"7933","_type":"edge","_outV":"746","_inV":"530","_label":"written_by"},{"_id":"7934","_type":"edge","_outV":"746","_inV":"415","_label":"sung_by"},{"_id":"7935","_type":"edge","_outV":"747","_inV":"748","_label":"written_by"},{"_id":"7936","_type":"edge","_outV":"747","_inV":"340","_label":"sung_by"},{"_id":"7937","_type":"edge","_outV":"228","_inV":"749","_label":"written_by"},{"_id":"7938","_type":"edge","_outV":"228","_inV":"340","_label":"sung_by"},{"_id":"7939","_type":"edge","_outV":"750","_inV":"751","_label":"written_by"},{"weight":1,"_id":"794","_type":"edge","_outV":"122","_inV":"195","_label":"followed_by"},{"_id":"7940","_type":"edge","_outV":"750","_inV":"340","_label":"sung_by"},{"_id":"7941","_type":"edge","_outV":"752","_inV":"446","_label":"written_by"},{"_id":"7942","_type":"edge","_outV":"752","_inV":"340","_label":"sung_by"},{"_id":"7943","_type":"edge","_outV":"272","_inV":"753","_label":"written_by"},{"_id":"7944","_type":"edge","_outV":"272","_inV":"351","_label":"sung_by"},{"_id":"7945","_type":"edge","_outV":"330","_inV":"447","_label":"written_by"},{"_id":"7946","_type":"edge","_outV":"330","_inV":"447","_label":"sung_by"},{"_id":"7947","_type":"edge","_outV":"754","_inV":"755","_label":"written_by"},{"_id":"7948","_type":"edge","_outV":"754","_inV":"527","_label":"sung_by"},{"_id":"7949","_type":"edge","_outV":"756","_inV":"446","_label":"written_by"},{"weight":1,"_id":"795","_type":"edge","_outV":"122","_inV":"82","_label":"followed_by"},{"_id":"7950","_type":"edge","_outV":"756","_inV":"340","_label":"sung_by"},{"_id":"7951","_type":"edge","_outV":"255","_inV":"757","_label":"written_by"},{"_id":"7952","_type":"edge","_outV":"255","_inV":"757","_label":"sung_by"},{"_id":"7953","_type":"edge","_outV":"139","_inV":"758","_label":"written_by"},{"_id":"7954","_type":"edge","_outV":"139","_inV":"340","_label":"sung_by"},{"_id":"7955","_type":"edge","_outV":"759","_inV":"760","_label":"written_by"},{"_id":"7956","_type":"edge","_outV":"759","_inV":"340","_label":"sung_by"},{"_id":"7957","_type":"edge","_outV":"761","_inV":"644","_label":"written_by"},{"_id":"7958","_type":"edge","_outV":"761","_inV":"340","_label":"sung_by"},{"_id":"7959","_type":"edge","_outV":"762","_inV":"763","_label":"written_by"},{"weight":4,"_id":"796","_type":"edge","_outV":"122","_inV":"50","_label":"followed_by"},{"_id":"7960","_type":"edge","_outV":"762","_inV":"356","_label":"sung_by"},{"_id":"7961","_type":"edge","_outV":"764","_inV":"765","_label":"written_by"},{"_id":"7962","_type":"edge","_outV":"764","_inV":"498","_label":"sung_by"},{"_id":"7963","_type":"edge","_outV":"766","_inV":"458","_label":"written_by"},{"_id":"7964","_type":"edge","_outV":"766","_inV":"340","_label":"sung_by"},{"_id":"7965","_type":"edge","_outV":"767","_inV":"447","_label":"written_by"},{"_id":"7966","_type":"edge","_outV":"767","_inV":"447","_label":"sung_by"},{"_id":"7967","_type":"edge","_outV":"768","_inV":"446","_label":"written_by"},{"_id":"7968","_type":"edge","_outV":"768","_inV":"340","_label":"sung_by"},{"_id":"7969","_type":"edge","_outV":"311","_inV":"447","_label":"written_by"},{"weight":2,"_id":"797","_type":"edge","_outV":"122","_inV":"99","_label":"followed_by"},{"_id":"7970","_type":"edge","_outV":"311","_inV":"447","_label":"sung_by"},{"_id":"7971","_type":"edge","_outV":"47","_inV":"769","_label":"written_by"},{"_id":"7972","_type":"edge","_outV":"47","_inV":"457","_label":"sung_by"},{"_id":"7973","_type":"edge","_outV":"275","_inV":"480","_label":"written_by"},{"_id":"7974","_type":"edge","_outV":"275","_inV":"415","_label":"sung_by"},{"_id":"7975","_type":"edge","_outV":"770","_inV":"447","_label":"written_by"},{"_id":"7976","_type":"edge","_outV":"770","_inV":"340","_label":"sung_by"},{"_id":"7977","_type":"edge","_outV":"164","_inV":"771","_label":"written_by"},{"_id":"7978","_type":"edge","_outV":"164","_inV":"476","_label":"sung_by"},{"_id":"7979","_type":"edge","_outV":"772","_inV":"773","_label":"written_by"},{"weight":1,"_id":"798","_type":"edge","_outV":"122","_inV":"91","_label":"followed_by"},{"_id":"7980","_type":"edge","_outV":"772","_inV":"574","_label":"sung_by"},{"_id":"7981","_type":"edge","_outV":"774","_inV":"775","_label":"written_by"},{"_id":"7982","_type":"edge","_outV":"774","_inV":"484","_label":"sung_by"},{"_id":"7983","_type":"edge","_outV":"776","_inV":"446","_label":"written_by"},{"_id":"7984","_type":"edge","_outV":"776","_inV":"356","_label":"sung_by"},{"_id":"7985","_type":"edge","_outV":"777","_inV":"446","_label":"written_by"},{"_id":"7986","_type":"edge","_outV":"777","_inV":"623","_label":"sung_by"},{"_id":"7987","_type":"edge","_outV":"778","_inV":"743","_label":"written_by"},{"_id":"7988","_type":"edge","_outV":"778","_inV":"416","_label":"sung_by"},{"_id":"7989","_type":"edge","_outV":"779","_inV":"478","_label":"written_by"},{"weight":1,"_id":"799","_type":"edge","_outV":"122","_inV":"70","_label":"followed_by"},{"_id":"7990","_type":"edge","_outV":"779","_inV":"453","_label":"sung_by"},{"_id":"7991","_type":"edge","_outV":"66","_inV":"447","_label":"written_by"},{"_id":"7992","_type":"edge","_outV":"66","_inV":"340","_label":"sung_by"},{"_id":"7993","_type":"edge","_outV":"780","_inV":"781","_label":"written_by"},{"_id":"7994","_type":"edge","_outV":"780","_inV":"351","_label":"sung_by"},{"_id":"7995","_type":"edge","_outV":"782","_inV":"783","_label":"written_by"},{"_id":"7996","_type":"edge","_outV":"782","_inV":"351","_label":"sung_by"},{"_id":"7997","_type":"edge","_outV":"784","_inV":"451","_label":"written_by"},{"_id":"7998","_type":"edge","_outV":"784","_inV":"451","_label":"sung_by"},{"_id":"7999","_type":"edge","_outV":"30","_inV":"785","_label":"written_by"},{"weight":3,"_id":"8","_type":"edge","_outV":"9","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"80","_type":"edge","_outV":"46","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"800","_type":"edge","_outV":"122","_inV":"84","_label":"followed_by"},{"_id":"8000","_type":"edge","_outV":"30","_inV":"476","_label":"sung_by"},{"_id":"8001","_type":"edge","_outV":"786","_inV":"787","_label":"written_by"},{"_id":"8002","_type":"edge","_outV":"786","_inV":"351","_label":"sung_by"},{"_id":"8003","_type":"edge","_outV":"31","_inV":"520","_label":"written_by"},{"_id":"8004","_type":"edge","_outV":"31","_inV":"351","_label":"sung_by"},{"_id":"8005","_type":"edge","_outV":"300","_inV":"469","_label":"written_by"},{"_id":"8006","_type":"edge","_outV":"300","_inV":"469","_label":"sung_by"},{"_id":"8007","_type":"edge","_outV":"287","_inV":"447","_label":"written_by"},{"_id":"8008","_type":"edge","_outV":"287","_inV":"447","_label":"sung_by"},{"_id":"8009","_type":"edge","_outV":"788","_inV":"789","_label":"written_by"},{"weight":7,"_id":"801","_type":"edge","_outV":"122","_inV":"65","_label":"followed_by"},{"_id":"8010","_type":"edge","_outV":"788","_inV":"415","_label":"sung_by"},{"_id":"8011","_type":"edge","_outV":"86","_inV":"490","_label":"written_by"},{"_id":"8012","_type":"edge","_outV":"86","_inV":"453","_label":"sung_by"},{"_id":"8013","_type":"edge","_outV":"214","_inV":"790","_label":"written_by"},{"_id":"8014","_type":"edge","_outV":"214","_inV":"340","_label":"sung_by"},{"_id":"8015","_type":"edge","_outV":"95","_inV":"791","_label":"written_by"},{"_id":"8016","_type":"edge","_outV":"95","_inV":"533","_label":"sung_by"},{"_id":"8017","_type":"edge","_outV":"792","_inV":"793","_label":"written_by"},{"_id":"8018","_type":"edge","_outV":"792","_inV":"415","_label":"sung_by"},{"_id":"8019","_type":"edge","_outV":"117","_inV":"447","_label":"written_by"},{"weight":2,"_id":"802","_type":"edge","_outV":"122","_inV":"80","_label":"followed_by"},{"_id":"8020","_type":"edge","_outV":"117","_inV":"351","_label":"sung_by"},{"_id":"8021","_type":"edge","_outV":"794","_inV":"446","_label":"written_by"},{"_id":"8022","_type":"edge","_outV":"794","_inV":"340","_label":"sung_by"},{"_id":"8023","_type":"edge","_outV":"146","_inV":"527","_label":"written_by"},{"_id":"8024","_type":"edge","_outV":"146","_inV":"356","_label":"sung_by"},{"_id":"8025","_type":"edge","_outV":"795","_inV":"796","_label":"written_by"},{"_id":"8026","_type":"edge","_outV":"795","_inV":"498","_label":"sung_by"},{"_id":"8027","_type":"edge","_outV":"242","_inV":"480","_label":"written_by"},{"_id":"8028","_type":"edge","_outV":"242","_inV":"354","_label":"sung_by"},{"_id":"8029","_type":"edge","_outV":"297","_inV":"447","_label":"written_by"},{"weight":1,"_id":"803","_type":"edge","_outV":"122","_inV":"180","_label":"followed_by"},{"_id":"8030","_type":"edge","_outV":"297","_inV":"447","_label":"sung_by"},{"_id":"8031","_type":"edge","_outV":"797","_inV":"446","_label":"written_by"},{"_id":"8032","_type":"edge","_outV":"797","_inV":"798","_label":"sung_by"},{"_id":"8033","_type":"edge","_outV":"238","_inV":"799","_label":"written_by"},{"_id":"8034","_type":"edge","_outV":"238","_inV":"351","_label":"sung_by"},{"_id":"8035","_type":"edge","_outV":"800","_inV":"446","_label":"written_by"},{"_id":"8036","_type":"edge","_outV":"800","_inV":"351","_label":"sung_by"},{"_id":"8037","_type":"edge","_outV":"801","_inV":"527","_label":"written_by"},{"_id":"8038","_type":"edge","_outV":"801","_inV":"527","_label":"sung_by"},{"_id":"8039","_type":"edge","_outV":"802","_inV":"803","_label":"written_by"},{"weight":4,"_id":"804","_type":"edge","_outV":"122","_inV":"38","_label":"followed_by"},{"_id":"8040","_type":"edge","_outV":"802","_inV":"340","_label":"sung_by"},{"_id":"8041","_type":"edge","_outV":"55","_inV":"804","_label":"written_by"},{"_id":"8042","_type":"edge","_outV":"55","_inV":"457","_label":"sung_by"},{"_id":"8043","_type":"edge","_outV":"805","_inV":"806","_label":"written_by"},{"_id":"8044","_type":"edge","_outV":"805","_inV":"356","_label":"sung_by"},{"_id":"8045","_type":"edge","_outV":"235","_inV":"807","_label":"written_by"},{"_id":"8046","_type":"edge","_outV":"235","_inV":"340","_label":"sung_by"},{"_id":"8047","_type":"edge","_outV":"808","_inV":"598","_label":"written_by"},{"_id":"8048","_type":"edge","_outV":"808","_inV":"351","_label":"sung_by"},{"weight":1,"_id":"805","_type":"edge","_outV":"122","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"806","_type":"edge","_outV":"122","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"807","_type":"edge","_outV":"122","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"808","_type":"edge","_outV":"122","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"809","_type":"edge","_outV":"122","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"81","_type":"edge","_outV":"46","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"810","_type":"edge","_outV":"122","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"811","_type":"edge","_outV":"122","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"812","_type":"edge","_outV":"122","_inV":"83","_label":"followed_by"},{"weight":68,"_id":"813","_type":"edge","_outV":"171","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"814","_type":"edge","_outV":"171","_inV":"155","_label":"followed_by"},{"weight":7,"_id":"815","_type":"edge","_outV":"171","_inV":"120","_label":"followed_by"},{"weight":11,"_id":"816","_type":"edge","_outV":"171","_inV":"21","_label":"followed_by"},{"weight":38,"_id":"817","_type":"edge","_outV":"171","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"818","_type":"edge","_outV":"171","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"819","_type":"edge","_outV":"171","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"82","_type":"edge","_outV":"46","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"820","_type":"edge","_outV":"171","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"821","_type":"edge","_outV":"171","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"822","_type":"edge","_outV":"171","_inV":"208","_label":"followed_by"},{"weight":24,"_id":"823","_type":"edge","_outV":"171","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"824","_type":"edge","_outV":"171","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"825","_type":"edge","_outV":"171","_inV":"196","_label":"followed_by"},{"weight":4,"_id":"826","_type":"edge","_outV":"171","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"827","_type":"edge","_outV":"171","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"828","_type":"edge","_outV":"171","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"829","_type":"edge","_outV":"171","_inV":"109","_label":"followed_by"},{"weight":8,"_id":"83","_type":"edge","_outV":"46","_inV":"34","_label":"followed_by"},{"weight":10,"_id":"830","_type":"edge","_outV":"171","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"831","_type":"edge","_outV":"171","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"832","_type":"edge","_outV":"171","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"833","_type":"edge","_outV":"171","_inV":"227","_label":"followed_by"},{"weight":20,"_id":"834","_type":"edge","_outV":"171","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"835","_type":"edge","_outV":"171","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"836","_type":"edge","_outV":"171","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"837","_type":"edge","_outV":"171","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"838","_type":"edge","_outV":"171","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"839","_type":"edge","_outV":"171","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"84","_type":"edge","_outV":"46","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"840","_type":"edge","_outV":"171","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"841","_type":"edge","_outV":"171","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"842","_type":"edge","_outV":"171","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"843","_type":"edge","_outV":"171","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"844","_type":"edge","_outV":"171","_inV":"82","_label":"followed_by"},{"weight":11,"_id":"845","_type":"edge","_outV":"171","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"846","_type":"edge","_outV":"171","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"847","_type":"edge","_outV":"171","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"848","_type":"edge","_outV":"171","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"849","_type":"edge","_outV":"171","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"85","_type":"edge","_outV":"46","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"850","_type":"edge","_outV":"171","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"851","_type":"edge","_outV":"171","_inV":"228","_label":"followed_by"},{"weight":4,"_id":"852","_type":"edge","_outV":"171","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"853","_type":"edge","_outV":"171","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"854","_type":"edge","_outV":"171","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"855","_type":"edge","_outV":"171","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"856","_type":"edge","_outV":"171","_inV":"172","_label":"followed_by"},{"weight":5,"_id":"857","_type":"edge","_outV":"171","_inV":"229","_label":"followed_by"},{"weight":5,"_id":"858","_type":"edge","_outV":"171","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"859","_type":"edge","_outV":"171","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"86","_type":"edge","_outV":"46","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"860","_type":"edge","_outV":"171","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"861","_type":"edge","_outV":"189","_inV":"181","_label":"followed_by"},{"weight":6,"_id":"862","_type":"edge","_outV":"189","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"863","_type":"edge","_outV":"189","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"864","_type":"edge","_outV":"189","_inV":"14","_label":"followed_by"},{"weight":9,"_id":"865","_type":"edge","_outV":"189","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"866","_type":"edge","_outV":"189","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"867","_type":"edge","_outV":"189","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"868","_type":"edge","_outV":"189","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"869","_type":"edge","_outV":"189","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"87","_type":"edge","_outV":"46","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"870","_type":"edge","_outV":"189","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"871","_type":"edge","_outV":"189","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"872","_type":"edge","_outV":"189","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"873","_type":"edge","_outV":"189","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"874","_type":"edge","_outV":"189","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"875","_type":"edge","_outV":"189","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"876","_type":"edge","_outV":"189","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"877","_type":"edge","_outV":"189","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"878","_type":"edge","_outV":"189","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"879","_type":"edge","_outV":"189","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"88","_type":"edge","_outV":"46","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"880","_type":"edge","_outV":"189","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"881","_type":"edge","_outV":"189","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"882","_type":"edge","_outV":"189","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"883","_type":"edge","_outV":"189","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"884","_type":"edge","_outV":"189","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"885","_type":"edge","_outV":"140","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"886","_type":"edge","_outV":"140","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"887","_type":"edge","_outV":"140","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"888","_type":"edge","_outV":"140","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"889","_type":"edge","_outV":"140","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"89","_type":"edge","_outV":"46","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"890","_type":"edge","_outV":"140","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"891","_type":"edge","_outV":"140","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"892","_type":"edge","_outV":"140","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"893","_type":"edge","_outV":"140","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"894","_type":"edge","_outV":"140","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"895","_type":"edge","_outV":"140","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"896","_type":"edge","_outV":"140","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"897","_type":"edge","_outV":"140","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"898","_type":"edge","_outV":"140","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"899","_type":"edge","_outV":"140","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"9","_type":"edge","_outV":"9","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"90","_type":"edge","_outV":"46","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"900","_type":"edge","_outV":"174","_inV":"173","_label":"followed_by"},{"weight":5,"_id":"901","_type":"edge","_outV":"174","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"902","_type":"edge","_outV":"174","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"903","_type":"edge","_outV":"174","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"904","_type":"edge","_outV":"174","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"905","_type":"edge","_outV":"174","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"906","_type":"edge","_outV":"174","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"907","_type":"edge","_outV":"174","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"908","_type":"edge","_outV":"174","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"909","_type":"edge","_outV":"174","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"91","_type":"edge","_outV":"46","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"910","_type":"edge","_outV":"91","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"911","_type":"edge","_outV":"91","_inV":"125","_label":"followed_by"},{"weight":59,"_id":"912","_type":"edge","_outV":"91","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"913","_type":"edge","_outV":"91","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"914","_type":"edge","_outV":"91","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"915","_type":"edge","_outV":"91","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"916","_type":"edge","_outV":"91","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"917","_type":"edge","_outV":"91","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"918","_type":"edge","_outV":"91","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"919","_type":"edge","_outV":"91","_inV":"230","_label":"followed_by"},{"weight":2,"_id":"92","_type":"edge","_outV":"46","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"920","_type":"edge","_outV":"91","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"921","_type":"edge","_outV":"91","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"922","_type":"edge","_outV":"91","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"923","_type":"edge","_outV":"91","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"924","_type":"edge","_outV":"91","_inV":"153","_label":"followed_by"},{"weight":192,"_id":"925","_type":"edge","_outV":"91","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"926","_type":"edge","_outV":"91","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"927","_type":"edge","_outV":"91","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"928","_type":"edge","_outV":"91","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"929","_type":"edge","_outV":"91","_inV":"116","_label":"followed_by"},{"weight":4,"_id":"93","_type":"edge","_outV":"46","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"930","_type":"edge","_outV":"91","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"931","_type":"edge","_outV":"91","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"932","_type":"edge","_outV":"91","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"933","_type":"edge","_outV":"91","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"934","_type":"edge","_outV":"91","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"935","_type":"edge","_outV":"91","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"936","_type":"edge","_outV":"91","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"937","_type":"edge","_outV":"91","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"938","_type":"edge","_outV":"91","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"939","_type":"edge","_outV":"91","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"94","_type":"edge","_outV":"46","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"940","_type":"edge","_outV":"91","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"941","_type":"edge","_outV":"67","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"942","_type":"edge","_outV":"67","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"943","_type":"edge","_outV":"67","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"944","_type":"edge","_outV":"67","_inV":"128","_label":"followed_by"},{"weight":2,"_id":"945","_type":"edge","_outV":"67","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"946","_type":"edge","_outV":"67","_inV":"61","_label":"followed_by"},{"weight":7,"_id":"947","_type":"edge","_outV":"67","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"948","_type":"edge","_outV":"67","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"949","_type":"edge","_outV":"67","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"95","_type":"edge","_outV":"46","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"950","_type":"edge","_outV":"67","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"951","_type":"edge","_outV":"67","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"952","_type":"edge","_outV":"67","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"953","_type":"edge","_outV":"67","_inV":"134","_label":"followed_by"},{"weight":10,"_id":"954","_type":"edge","_outV":"67","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"955","_type":"edge","_outV":"67","_inV":"75","_label":"followed_by"},{"weight":5,"_id":"956","_type":"edge","_outV":"67","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"957","_type":"edge","_outV":"67","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"958","_type":"edge","_outV":"67","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"959","_type":"edge","_outV":"67","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"96","_type":"edge","_outV":"46","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"960","_type":"edge","_outV":"67","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"961","_type":"edge","_outV":"67","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"962","_type":"edge","_outV":"67","_inV":"5","_label":"followed_by"},{"weight":15,"_id":"963","_type":"edge","_outV":"67","_inV":"165","_label":"followed_by"},{"weight":10,"_id":"964","_type":"edge","_outV":"67","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"965","_type":"edge","_outV":"67","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"966","_type":"edge","_outV":"67","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"967","_type":"edge","_outV":"67","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"968","_type":"edge","_outV":"67","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"969","_type":"edge","_outV":"67","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"97","_type":"edge","_outV":"46","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"970","_type":"edge","_outV":"67","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"971","_type":"edge","_outV":"233","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"972","_type":"edge","_outV":"11","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"973","_type":"edge","_outV":"11","_inV":"59","_label":"followed_by"},{"weight":4,"_id":"974","_type":"edge","_outV":"11","_inV":"53","_label":"followed_by"},{"weight":15,"_id":"975","_type":"edge","_outV":"11","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"976","_type":"edge","_outV":"11","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"977","_type":"edge","_outV":"11","_inV":"48","_label":"followed_by"},{"weight":4,"_id":"978","_type":"edge","_outV":"11","_inV":"72","_label":"followed_by"},{"weight":9,"_id":"979","_type":"edge","_outV":"11","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"98","_type":"edge","_outV":"46","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"980","_type":"edge","_outV":"11","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"981","_type":"edge","_outV":"11","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"982","_type":"edge","_outV":"11","_inV":"46","_label":"followed_by"},{"weight":7,"_id":"983","_type":"edge","_outV":"11","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"984","_type":"edge","_outV":"11","_inV":"235","_label":"followed_by"},{"weight":4,"_id":"985","_type":"edge","_outV":"11","_inV":"207","_label":"followed_by"},{"weight":3,"_id":"986","_type":"edge","_outV":"11","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"987","_type":"edge","_outV":"11","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"988","_type":"edge","_outV":"11","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"989","_type":"edge","_outV":"11","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"99","_type":"edge","_outV":"46","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"990","_type":"edge","_outV":"11","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"991","_type":"edge","_outV":"11","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"992","_type":"edge","_outV":"11","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"993","_type":"edge","_outV":"11","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"994","_type":"edge","_outV":"11","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"995","_type":"edge","_outV":"11","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"996","_type":"edge","_outV":"11","_inV":"236","_label":"followed_by"},{"weight":3,"_id":"997","_type":"edge","_outV":"11","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"998","_type":"edge","_outV":"11","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"999","_type":"edge","_outV":"11","_inV":"115","_label":"followed_by"}]} \ No newline at end of file +{"mode":"NORMAL","vertices":[{"_id":"0","_type":"vertex"},{"song_type":"cover","name":"HEY BO DIDDLEY","type":"song","performances":5,"_id":"1","_type":"vertex"},{"song_type":"cover","name":"BEAT IT ON DOWN THE LINE","type":"song","performances":325,"_id":"10","_type":"vertex"},{"song_type":"original","name":"BROWN EYED WOMEN","type":"song","performances":347,"_id":"100","_type":"vertex"},{"song_type":"original","name":"LET IT GROW","type":"song","performances":276,"_id":"101","_type":"vertex"},{"name":"MAYBE YOU KNOW HOW I FEEL","type":"song","_id":"102","_type":"vertex"},{"song_type":"original","name":"THE MUSIC NEVER STOPPED","type":"song","performances":234,"_id":"103","_type":"vertex"},{"song_type":"original","name":"FRIEND OF THE DEVIL","type":"song","performances":304,"_id":"104","_type":"vertex"},{"song_type":"original","name":"STAGGER LEE","type":"song","performances":146,"_id":"105","_type":"vertex"},{"song_type":"original","name":"FAR FROM ME","type":"song","performances":74,"_id":"106","_type":"vertex"},{"name":"BANKS OF OHIO","type":"song","_id":"107","_type":"vertex"},{"song_type":"original","name":"DUPREES DIAMOND BLUES","type":"song","performances":80,"_id":"108","_type":"vertex"},{"song_type":"original","name":"PASSENGER","type":"song","performances":98,"_id":"109","_type":"vertex"},{"song_type":"original","name":"BLACK THROATED WIND","type":"song","performances":158,"_id":"11","_type":"vertex"},{"name":"DANCIN IN THE STREETS","type":"song","_id":"110","_type":"vertex"},{"song_type":"cover","name":"ON THE ROAD AGAIN","type":"song","performances":38,"_id":"111","_type":"vertex"},{"song_type":"cover","name":"MAMA TRIED","type":"song","performances":302,"_id":"112","_type":"vertex"},{"song_type":"cover","name":"SMOKESTACK LIGHTNING","type":"song","performances":60,"_id":"113","_type":"vertex"},{"song_type":"original","name":"ONE MORE SATURDAY NIGHT","type":"song","performances":340,"_id":"114","_type":"vertex"},{"name":"TOM THUMB BLUES","type":"song","_id":"115","_type":"vertex"},{"name":"GOOD TIME BLUES","type":"song","_id":"116","_type":"vertex"},{"song_type":"cover","name":"WHEN I PAINT MY MASTERPIECE","type":"song","performances":144,"_id":"117","_type":"vertex"},{"song_type":"original","name":"JUST A LITTLE LIGHT","type":"song","performances":21,"_id":"118","_type":"vertex"},{"song_type":"original","name":"CHILDHOODS END","type":"song","performances":11,"_id":"119","_type":"vertex"},{"song_type":"cover","name":"ME AND MY UNCLE","type":"song","performances":616,"_id":"12","_type":"vertex"},{"song_type":"cover","name":"GOOD LOVING","type":"song","performances":428,"_id":"120","_type":"vertex"},{"song_type":"original","name":"LAZY LIGHTNING","type":"song","performances":111,"_id":"121","_type":"vertex"},{"song_type":"original","name":"CASEY JONES","type":"song","performances":312,"_id":"122","_type":"vertex"},{"song_type":"original","name":"JAM","type":"song","performances":24,"_id":"123","_type":"vertex"},{"name":"BABY BLUE","type":"song","_id":"124","_type":"vertex"},{"song_type":"original","name":"BLACK PETER","type":"song","performances":343,"_id":"125","_type":"vertex"},{"name":"AINT SUPERSTITIOUS","type":"song","_id":"126","_type":"vertex"},{"song_type":"cover","name":"MORNING DEW","type":"song","performances":254,"_id":"127","_type":"vertex"},{"song_type":"cover","name":"SHE BELONGS TO ME","type":"song","performances":10,"_id":"128","_type":"vertex"},{"song_type":"original","name":"CHINA DOLL","type":"song","performances":114,"_id":"129","_type":"vertex"},{"song_type":"original","name":"PLAYING IN THE BAND","type":"song","performances":582,"_id":"13","_type":"vertex"},{"song_type":"original","name":"WHARF RAT","type":"song","performances":394,"_id":"130","_type":"vertex"},{"song_type":"cover","name":"MAGGIES FARM","type":"song","performances":43,"_id":"131","_type":"vertex"},{"song_type":"cover","name":"HEY JUDE","type":"song","performances":3,"_id":"132","_type":"vertex"},{"song_type":"original","name":"SUNSHINE DAYDREAM","type":"song","performances":31,"_id":"133","_type":"vertex"},{"song_type":"original","name":"THE WHEEL","type":"song","performances":258,"_id":"134","_type":"vertex"},{"song_type":"cover","name":"DEATH DONT HAVE NO MERCY","type":"song","performances":49,"_id":"135","_type":"vertex"},{"song_type":"cover","name":"STANDER ON THE MOUNTAIN","type":"song","performances":3,"_id":"136","_type":"vertex"},{"song_type":"original","name":"SO MANY ROADS","type":"song","performances":55,"_id":"137","_type":"vertex"},{"name":"THE DAYS BETWEEN","type":"song","_id":"138","_type":"vertex"},{"song_type":"cover","name":"THAT WOULD BE SOMETHING","type":"song","performances":17,"_id":"139","_type":"vertex"},{"song_type":"original","name":"LOOKS LIKE RAIN","type":"song","performances":417,"_id":"14","_type":"vertex"},{"song_type":"original","name":"ATTICS OF MY LIFE","type":"song","performances":48,"_id":"140","_type":"vertex"},{"song_type":"original","name":"COMES A TIME","type":"song","performances":66,"_id":"141","_type":"vertex"},{"name":"CHILDREN OF THE EIGHTIES","type":"song","_id":"142","_type":"vertex"},{"song_type":"cover","name":"LUCIFERS EYES","type":"song","performances":2,"_id":"143","_type":"vertex"},{"song_type":"cover","name":"LA BAMBA","type":"song","performances":4,"_id":"144","_type":"vertex"},{"song_type":"original","name":"CAUTION","type":"song","performances":56,"_id":"145","_type":"vertex"},{"song_type":"cover","name":"WHO DO YOU LOVE","type":"song","performances":3,"_id":"146","_type":"vertex"},{"name":"MOJO","type":"song","_id":"147","_type":"vertex"},{"song_type":"original","name":"THE OTHER ONE","type":"song","performances":583,"_id":"148","_type":"vertex"},{"song_type":"original","name":"SPANISH JAM","type":"song","performances":41,"_id":"149","_type":"vertex"},{"song_type":"cover","name":"BIG RIVER","type":"song","performances":397,"_id":"15","_type":"vertex"},{"song_type":"original","name":"BIRDSONG","type":"song","performances":296,"_id":"150","_type":"vertex"},{"song_type":"cover","name":"HEY POCKY WAY","type":"song","performances":25,"_id":"151","_type":"vertex"},{"song_type":"cover","name":"BIG BOSS MAN","type":"song","performances":71,"_id":"152","_type":"vertex"},{"song_type":"original","name":"SUGAR MAGNOLIA","type":"song","performances":594,"_id":"153","_type":"vertex"},{"song_type":"original","name":"FRANKLINS TOWER","type":"song","performances":221,"_id":"154","_type":"vertex"},{"name":"FUNICULI FUNICULA","type":"song","_id":"155","_type":"vertex"},{"song_type":"cover","name":"CALIFORNIA EARTHQUAKE","type":"song","performances":2,"_id":"156","_type":"vertex"},{"name":"WE BID YOU GOODNIGHT","type":"song","_id":"157","_type":"vertex"},{"song_type":"original","name":"EASY ANSWERS","type":"song","performances":44,"_id":"158","_type":"vertex"},{"song_type":"original","name":"BLUES FOR ALLAH","type":"song","performances":3,"_id":"159","_type":"vertex"},{"name":"WEATHER REPORT SUITE","type":"song","_id":"16","_type":"vertex"},{"song_type":"original","name":"BROKEDOWN PALACE","type":"song","performances":215,"_id":"160","_type":"vertex"},{"song_type":"cover","name":"HARD TO HANDLE","type":"song","performances":105,"_id":"161","_type":"vertex"},{"name":"SATISFACTION","type":"song","_id":"162","_type":"vertex"},{"song_type":"cover","name":"BABY WHAT YOU WANT ME TO DO","type":"song","performances":5,"_id":"163","_type":"vertex"},{"song_type":"cover","name":"TURN ON YOUR LOVE LIGHT","type":"song","performances":341,"_id":"164","_type":"vertex"},{"song_type":"cover","name":"ALL ALONG THE WATCHTOWER","type":"song","performances":123,"_id":"165","_type":"vertex"},{"song_type":"cover","name":"JOHNNY B GOODE","type":"song","performances":284,"_id":"166","_type":"vertex"},{"song_type":"original","name":"BLOW AWAY","type":"song","performances":23,"_id":"167","_type":"vertex"},{"song_type":"original","name":"BUILT TO LAST","type":"song","performances":18,"_id":"168","_type":"vertex"},{"name":"WE CAN RUN BUT WE CANT HIDE","type":"song","_id":"169","_type":"vertex"},{"song_type":"original","name":"THEY LOVE EACH OTHER","type":"song","performances":227,"_id":"17","_type":"vertex"},{"song_type":"original","name":"TO LAY ME DOWN","type":"song","performances":63,"_id":"170","_type":"vertex"},{"song_type":"original","name":"FIRE ON THE MOUNTAIN","type":"song","performances":253,"_id":"171","_type":"vertex"},{"song_type":"original","name":"WAVE TO THE WIND","type":"song","performances":21,"_id":"172","_type":"vertex"},{"name":"LAZY RIVER","type":"song","_id":"173","_type":"vertex"},{"song_type":"original","name":"IF THE SHOE FITS","type":"song","performances":17,"_id":"174","_type":"vertex"},{"song_type":"original","name":"NEW SPEEDWAY BOOGIE","type":"song","performances":55,"_id":"175","_type":"vertex"},{"song_type":"original","name":"UNBROKEN CHAIN","type":"song","performances":10,"_id":"176","_type":"vertex"},{"song_type":"cover","name":"ITS ALL TOO MUCH","type":"song","performances":6,"_id":"177","_type":"vertex"},{"name":"STRONGER THAN DIRT","type":"song","_id":"178","_type":"vertex"},{"name":"COSMIC CHARLIE","type":"song","_id":"179","_type":"vertex"},{"song_type":"cover","name":"EL PASO","type":"song","performances":388,"_id":"18","_type":"vertex"},{"song_type":"cover","name":"DEEP ELEM BLUES","type":"song","performances":45,"_id":"180","_type":"vertex"},{"song_type":"original","name":"LOST SAILOR","type":"song","performances":145,"_id":"181","_type":"vertex"},{"song_type":"original","name":"ONLY A FOOL","type":"song","performances":1,"_id":"182","_type":"vertex"},{"song_type":"original","name":"DONT NEED LOVE","type":"song","performances":16,"_id":"183","_type":"vertex"},{"song_type":"original","name":"SUPPLICATION","type":"song","performances":113,"_id":"184","_type":"vertex"},{"song_type":"cover","name":"BABA ORILEY","type":"song","performances":12,"_id":"185","_type":"vertex"},{"name":"SPACE","type":"song","_id":"186","_type":"vertex"},{"song_type":"cover","name":"I KNOW YOU RIDER","type":"song","performances":550,"_id":"187","_type":"vertex"},{"name":"QUEEN JANE","type":"song","_id":"188","_type":"vertex"},{"song_type":"original","name":"EASY TO LOVE YOU","type":"song","performances":45,"_id":"189","_type":"vertex"},{"song_type":"original","name":"CHINA CAT SUNFLOWER","type":"song","performances":554,"_id":"19","_type":"vertex"},{"name":"WEST LA FADEAWAY","type":"song","_id":"190","_type":"vertex"},{"name":"JACK A ROE","type":"song","_id":"191","_type":"vertex"},{"name":"PEGGY O","type":"song","_id":"192","_type":"vertex"},{"song_type":"original","name":"US BLUES","type":"song","performances":323,"_id":"193","_type":"vertex"},{"song_type":"cover","name":"PROUD MARY","type":"song","performances":1,"_id":"194","_type":"vertex"},{"song_type":"original","name":"LET ME SING YOUR BLUES AWAY","type":"song","performances":6,"_id":"195","_type":"vertex"},{"song_type":"original","name":"SUNRISE","type":"song","performances":30,"_id":"196","_type":"vertex"},{"song_type":"cover","name":"MONKEY AND THE ENGINEER","type":"song","performances":32,"_id":"197","_type":"vertex"},{"song_type":"cover","name":"DARK HOLLOW","type":"song","performances":29,"_id":"198","_type":"vertex"},{"song_type":"cover","name":"OH BABE IT AINT NO LIE","type":"song","performances":13,"_id":"199","_type":"vertex"},{"song_type":"cover","name":"IM A MAN","type":"song","performances":1,"_id":"2","_type":"vertex"},{"song_type":"cover","name":"THE RACE IS ON","type":"song","performances":59,"_id":"20","_type":"vertex"},{"name":"FRERE JACQUES","type":"song","_id":"200","_type":"vertex"},{"name":"THIS COULD BE THE LAST TIME","type":"song","_id":"201","_type":"vertex"},{"song_type":"original","name":"LOOSE LUCY","type":"song","performances":98,"_id":"202","_type":"vertex"},{"name":"BANANA BOAT SONG","type":"song","_id":"203","_type":"vertex"},{"song_type":"cover","name":"KNOCKING ON HEAVENS DOOR","type":"song","performances":76,"_id":"204","_type":"vertex"},{"song_type":"original","name":"MISTER CHARLIE","type":"song","performances":48,"_id":"205","_type":"vertex"},{"song_type":"cover","name":"SING ME BACK HOME","type":"song","performances":39,"_id":"206","_type":"vertex"},{"song_type":"cover","name":"NEXT TIME YOU SEE ME","type":"song","performances":72,"_id":"207","_type":"vertex"},{"song_type":"original","name":"FROM THE HEART OF ME","type":"song","performances":26,"_id":"208","_type":"vertex"},{"song_type":"original","name":"HEAVEN HELP THE FOOL","type":"song","performances":17,"_id":"209","_type":"vertex"},{"song_type":"original","name":"TRUCKING","type":"song","performances":519,"_id":"21","_type":"vertex"},{"name":"DAY JOB","type":"song","_id":"210","_type":"vertex"},{"song_type":"cover","name":"REVOLUTION","type":"song","performances":11,"_id":"211","_type":"vertex"},{"song_type":"cover","name":"DAY TRIPPER","type":"song","performances":5,"_id":"212","_type":"vertex"},{"name":"QUINN THE ESKIMO","type":"song","_id":"213","_type":"vertex"},{"song_type":"cover","name":"WEREWOLVES OF LONDON","type":"song","performances":12,"_id":"214","_type":"vertex"},{"song_type":"original","name":"HELP ON THE WAY","type":"song","performances":110,"_id":"215","_type":"vertex"},{"song_type":"cover","name":"I FOUGHT THE LAW","type":"song","performances":36,"_id":"216","_type":"vertex"},{"name":"LUCY IN THE SKY","type":"song","_id":"217","_type":"vertex"},{"name":"TWO SOULS IN COMMUNION","type":"song","_id":"218","_type":"vertex"},{"song_type":"original","name":"SAGE AND SPIRIT","type":"song","performances":2,"_id":"219","_type":"vertex"},{"song_type":"cover","name":"ME AND BOBBY MCGEE","type":"song","performances":118,"_id":"22","_type":"vertex"},{"song_type":"cover","name":"LITTLE SADIE","type":"song","performances":6,"_id":"220","_type":"vertex"},{"song_type":"original","name":"GENTLEMEN START YOUR ENGINES","type":"song","performances":2,"_id":"221","_type":"vertex"},{"song_type":"original","name":"RIPPLE","type":"song","performances":39,"_id":"222","_type":"vertex"},{"song_type":"original","name":"TONS OF STEEL","type":"song","performances":29,"_id":"223","_type":"vertex"},{"name":"ROSALIE MCFALL","type":"song","_id":"224","_type":"vertex"},{"name":"TOP OF THE WORLD","type":"song","_id":"225","_type":"vertex"},{"name":"ROCKIN PNEUMONIA","type":"song","_id":"226","_type":"vertex"},{"song_type":"cover","name":"GLORIA","type":"song","performances":15,"_id":"227","_type":"vertex"},{"song_type":"cover","name":"STIR IT UP","type":"song","performances":1,"_id":"228","_type":"vertex"},{"name":"WOMEN ARE SMARTER","type":"song","_id":"229","_type":"vertex"},{"name":"GREATEST STORY","type":"song","_id":"23","_type":"vertex"},{"name":"THE ALHAMBRA","type":"song","_id":"230","_type":"vertex"},{"song_type":"original","name":"I WILL TAKE YOU HOME","type":"song","performances":34,"_id":"231","_type":"vertex"},{"song_type":"original","name":"BELIEVE IT OR NOT","type":"song","performances":7,"_id":"232","_type":"vertex"},{"song_type":"cover","name":"BLACK QUEEN","type":"song","performances":2,"_id":"233","_type":"vertex"},{"song_type":"original","name":"CHINATOWN SHUFFLE","type":"song","performances":28,"_id":"234","_type":"vertex"},{"song_type":"cover","name":"YOU WIN AGAIN","type":"song","performances":25,"_id":"235","_type":"vertex"},{"song_type":"original","name":"LIBERTY","type":"song","performances":56,"_id":"236","_type":"vertex"},{"name":"YOUR LOVE AT HOME","type":"song","_id":"237","_type":"vertex"},{"song_type":"cover","name":"WILLIE AND THE HAND JIVE","type":"song","performances":6,"_id":"238","_type":"vertex"},{"name":"IT TAKES A TRAIN TO CRY","type":"song","_id":"239","_type":"vertex"},{"song_type":"original","name":"MEXICALI BLUES","type":"song","performances":435,"_id":"24","_type":"vertex"},{"song_type":"original","name":"SALT LAKE CITY","type":"song","performances":1,"_id":"240","_type":"vertex"},{"name":"LINDA LOU","type":"song","_id":"241","_type":"vertex"},{"song_type":"cover","name":"WHY DONT WE DO IT IN THE ROAD","type":"song","performances":7,"_id":"242","_type":"vertex"},{"name":"HAPPY BIRTHDAY","type":"song","_id":"243","_type":"vertex"},{"song_type":"cover","name":"KANSAS CITY","type":"song","performances":1,"_id":"244","_type":"vertex"},{"song_type":"cover","name":"DOWN IN THE BOTTOM","type":"song","performances":9,"_id":"245","_type":"vertex"},{"name":"HULLY GULLY","type":"song","_id":"246","_type":"vertex"},{"song_type":"cover","name":"HOW LONG BLUES","type":"song","performances":4,"_id":"247","_type":"vertex"},{"name":"VALLEY ROAD","type":"song","_id":"248","_type":"vertex"},{"song_type":"cover","name":"JOHN BROWN","type":"song","performances":3,"_id":"249","_type":"vertex"},{"song_type":"cover","name":"AROUND AND AROUND","type":"song","performances":418,"_id":"25","_type":"vertex"},{"song_type":"cover","name":"SIMPLE TWIST OF FATE","type":"song","performances":3,"_id":"250","_type":"vertex"},{"song_type":"cover","name":"I WANT YOU","type":"song","performances":2,"_id":"251","_type":"vertex"},{"name":"HURTS ME TOO","type":"song","_id":"252","_type":"vertex"},{"name":"ADDAMS FAMILY","type":"song","_id":"253","_type":"vertex"},{"song_type":"cover","name":"BROKEN ARROW","type":"song","performances":35,"_id":"254","_type":"vertex"},{"song_type":"cover","name":"TELL MAMA","type":"song","performances":1,"_id":"255","_type":"vertex"},{"song_type":"cover","name":"BORN ON THE BAYOU","type":"song","performances":1,"_id":"256","_type":"vertex"},{"song_type":"cover","name":"LOUIE LOUIE","type":"song","performances":8,"_id":"257","_type":"vertex"},{"song_type":"cover","name":"I WANT TO TELL YOU","type":"song","performances":7,"_id":"258","_type":"vertex"},{"song_type":"original","name":"MISSISSIPPI HALF-STEP","type":"song","performances":234,"_id":"259","_type":"vertex"},{"song_type":"cover","name":"PROMISED LAND","type":"song","performances":427,"_id":"26","_type":"vertex"},{"song_type":"cover","name":"HEART OF MINE","type":"song","performances":1,"_id":"260","_type":"vertex"},{"name":"ROADRUNNER","type":"song","_id":"261","_type":"vertex"},{"name":"MARDI GRAS PARADE","type":"song","_id":"262","_type":"vertex"},{"name":"THATS ALRIGHT MAMA","type":"song","_id":"263","_type":"vertex"},{"song_type":"cover","name":"MAN OF PEACE","type":"song","performances":3,"_id":"264","_type":"vertex"},{"name":"FRANKIE LEE AND JUDAS PRIEST","type":"song","_id":"265","_type":"vertex"},{"song_type":"cover","name":"ILL BE YOUR BABY TONIGHT","type":"song","performances":3,"_id":"266","_type":"vertex"},{"song_type":"original","name":"REVOLUTIONARY HAMSTRUNG BLUES","type":"song","performances":1,"_id":"267","_type":"vertex"},{"name":"WALKIN THE DOG","type":"song","_id":"268","_type":"vertex"},{"song_type":"cover","name":"BALLAD OF A THIN MAN","type":"song","performances":8,"_id":"269","_type":"vertex"},{"song_type":"original","name":"RAMBLE ON ROSE","type":"song","performances":316,"_id":"27","_type":"vertex"},{"name":"RAINY DAY WOMAN","type":"song","_id":"270","_type":"vertex"},{"song_type":"cover","name":"CHIMES OF FREEDOM","type":"song","performances":4,"_id":"271","_type":"vertex"},{"song_type":"cover","name":"TAKE ME TO THE RIVER","type":"song","performances":4,"_id":"272","_type":"vertex"},{"name":"BEEN ALL AROUND THIS WORLD","type":"song","_id":"273","_type":"vertex"},{"name":"MATILDA","type":"song","_id":"274","_type":"vertex"},{"song_type":"cover","name":"TOMORROW NEVER KNOWS","type":"song","performances":12,"_id":"275","_type":"vertex"},{"name":"ITS A SIN","type":"song","_id":"276","_type":"vertex"},{"name":"CLOSE ENCOUNTERS","type":"song","_id":"277","_type":"vertex"},{"song_type":"original","name":"CRYPTICAL ENVELOPMENT","type":"song","performances":132,"_id":"278","_type":"vertex"},{"name":"CHANTING BY THE GYOTO MONKS","type":"song","_id":"279","_type":"vertex"},{"name":"LONG WAY TO GO HOME","type":"song","_id":"28","_type":"vertex"},{"name":"EVERY TIME YOU GO","type":"song","_id":"280","_type":"vertex"},{"song_type":"original","name":"THE ELEVEN","type":"song","performances":93,"_id":"281","_type":"vertex"},{"name":"TAKE IT OFF","type":"song","_id":"282","_type":"vertex"},{"song_type":"cover","name":"FEVER","type":"song","performances":1,"_id":"283","_type":"vertex"},{"song_type":"cover","name":"GOTTA SERVE SOMEBODY","type":"song","performances":2,"_id":"284","_type":"vertex"},{"name":"RUBIN AND CHERISE","type":"song","_id":"285","_type":"vertex"},{"name":"I JUST WANNA MAKE LOVE TO YOU","type":"song","_id":"286","_type":"vertex"},{"song_type":"cover","name":"WATCHING THE RIVER FLOW","type":"song","performances":2,"_id":"287","_type":"vertex"},{"song_type":"original","name":"SLIPKNOT","type":"song","performances":112,"_id":"288","_type":"vertex"},{"name":"OLLIN ARRAGEED","type":"song","_id":"289","_type":"vertex"},{"song_type":"original","name":"THROWING STONES","type":"song","performances":265,"_id":"29","_type":"vertex"},{"song_type":"original","name":"MONEY MONEY","type":"song","performances":3,"_id":"290","_type":"vertex"},{"name":"KING BEE","type":"song","_id":"291","_type":"vertex"},{"song_type":"cover","name":"GOOD MORNING LITTLE SCHOOL GIRL","type":"song","performances":62,"_id":"292","_type":"vertex"},{"name":"HOW SWEET IT IS","type":"song","_id":"293","_type":"vertex"},{"song_type":"original","name":"MISSION IN THE RAIN","type":"song","performances":5,"_id":"294","_type":"vertex"},{"name":"YOU WONT FIND ME","type":"song","_id":"295","_type":"vertex"},{"song_type":"original","name":"MIND LEFT BODY JAM","type":"song","performances":4,"_id":"296","_type":"vertex"},{"song_type":"cover","name":"WICKED MESSENGER","type":"song","performances":1,"_id":"297","_type":"vertex"},{"song_type":"cover","name":"KC MOAN","type":"song","performances":2,"_id":"298","_type":"vertex"},{"song_type":"cover","name":"KEEP ON GROWING","type":"song","performances":4,"_id":"299","_type":"vertex"},{"song_type":"cover","name":"NOT FADE AWAY","type":"song","performances":531,"_id":"3","_type":"vertex"},{"song_type":"cover","name":"WALKING BLUES","type":"song","performances":139,"_id":"30","_type":"vertex"},{"song_type":"cover","name":"WARRIORS OF THE SUN","type":"song","performances":1,"_id":"300","_type":"vertex"},{"song_type":"cover","name":"BYE BYE LOVE","type":"song","performances":2,"_id":"301","_type":"vertex"},{"name":"LADY DI","type":"song","_id":"302","_type":"vertex"},{"song_type":"cover","name":"BIG BOY PETE","type":"song","performances":7,"_id":"303","_type":"vertex"},{"name":"SILENT WAY JAM","type":"song","_id":"304","_type":"vertex"},{"name":"ARE YOU LONELY FOR ME","type":"song","_id":"305","_type":"vertex"},{"song_type":"cover","name":"MACK THE KNIFE","type":"song","performances":1,"_id":"306","_type":"vertex"},{"name":"TORE UP OVER YOU","type":"song","_id":"307","_type":"vertex"},{"name":"BARBRY ALLEN","type":"song","_id":"308","_type":"vertex"},{"name":"SLOW TRAIN COMIN","type":"song","_id":"309","_type":"vertex"},{"song_type":"cover","name":"WANG DANG DOODLE","type":"song","performances":95,"_id":"31","_type":"vertex"},{"song_type":"cover","name":"JOEY","type":"song","performances":3,"_id":"310","_type":"vertex"},{"song_type":"cover","name":"TOMORROW IS A LONG TIME","type":"song","performances":1,"_id":"311","_type":"vertex"},{"song_type":"cover","name":"GET BACK","type":"song","performances":1,"_id":"312","_type":"vertex"},{"song_type":"cover","name":"MY BABY LEFT ME","type":"song","performances":1,"_id":"313","_type":"vertex"},{"name":"STEP BACK","type":"song","_id":"314","_type":"vertex"},{"song_type":"cover","name":"THE FROZEN LOGGER","type":"song","performances":6,"_id":"315","_type":"vertex"},{"name":"SUGAR SHACK","type":"song","_id":"316","_type":"vertex"},{"song_type":"cover","name":"SIDEWALKS OF NEW YORK","type":"song","performances":1,"_id":"317","_type":"vertex"},{"name":"MOUNTAIN JAM","type":"song","_id":"318","_type":"vertex"},{"song_type":"cover","name":"NOBODYS FAULT BUT MINE","type":"song","performances":16,"_id":"319","_type":"vertex"},{"song_type":"cover","name":"NEW MINGLEWOOD BLUES","type":"song","performances":435,"_id":"32","_type":"vertex"},{"song_type":"cover","name":"NEW ORLEANS","type":"song","performances":5,"_id":"320","_type":"vertex"},{"song_type":"cover","name":"BLACKBIRD","type":"song","performances":2,"_id":"321","_type":"vertex"},{"name":"DONT THINK TWICE ITS ALRIGHT","type":"song","_id":"322","_type":"vertex"},{"song_type":"cover","name":"LOVE THE ONE YOURE WITH","type":"song","performances":1,"_id":"323","_type":"vertex"},{"song_type":"cover","name":"LET IT ROCK","type":"song","performances":1,"_id":"324","_type":"vertex"},{"song_type":"cover","name":"GREEN RIVER","type":"song","performances":1,"_id":"325","_type":"vertex"},{"song_type":"cover","name":"BAD MOON RISING","type":"song","performances":1,"_id":"326","_type":"vertex"},{"song_type":"original","name":"IF I HAD THE WORLD TO GIVE","type":"song","performances":3,"_id":"327","_type":"vertex"},{"name":"THE BOXER","type":"song","_id":"328","_type":"vertex"},{"name":"ROLLIN AND TUMBLIN","type":"song","_id":"329","_type":"vertex"},{"song_type":"cover","name":"SPOONFUL","type":"song","performances":52,"_id":"33","_type":"vertex"},{"song_type":"cover","name":"TANGLED UP IN BLUE","type":"song","performances":2,"_id":"330","_type":"vertex"},{"song_type":"cover","name":"SHELTER FROM THE STORM","type":"song","performances":1,"_id":"331","_type":"vertex"},{"song_type":"cover","name":"HIDEAWAY","type":"song","performances":1,"_id":"332","_type":"vertex"},{"name":"A MIND TO GIVE UP LIVIN","type":"song","_id":"333","_type":"vertex"},{"song_type":"cover","name":"NEIGHBORHOOD GIRLS","type":"song","performances":1,"_id":"334","_type":"vertex"},{"song_type":"cover","name":"FOREVER YOUNG","type":"song","performances":1,"_id":"335","_type":"vertex"},{"song_type":"cover","name":"GOODNIGHT IRENE","type":"song","performances":1,"_id":"336","_type":"vertex"},{"song_type":"cover","name":"CHINESE BONES","type":"song","performances":1,"_id":"337","_type":"vertex"},{"name":"OTHER ONE JAM","type":"song","_id":"338","_type":"vertex"},{"name":"Hunter","type":"artist","_id":"339","_type":"vertex"},{"song_type":"original","name":"VICTIM OR THE CRIME","type":"song","performances":96,"_id":"34","_type":"vertex"},{"name":"Garcia","type":"artist","_id":"340","_type":"vertex"},{"song_type":"original","name":"ALICE D MILLIONAIRE","type":"song","performances":3,"_id":"341","_type":"vertex"},{"name":"Grateful_Dead","type":"artist","_id":"342","_type":"vertex"},{"song_type":"original","name":"ALLIGATOR","type":"song","performances":63,"_id":"343","_type":"vertex"},{"name":"Hunter_Pigpen","type":"artist","_id":"344","_type":"vertex"},{"name":"Lesh_Pigpen","type":"artist","_id":"345","_type":"vertex"},{"song_type":"original","name":"AT A SIDING","type":"song","performances":0,"_id":"346","_type":"vertex"},{"name":"Hart","type":"artist","_id":"347","_type":"vertex"},{"song_type":"original","name":"BARBED WIRE WHIPPING PARTY","type":"song","performances":0,"_id":"348","_type":"vertex"},{"song_type":"original","name":"BLACK MUDDY RIVER","type":"song","performances":66,"_id":"349","_type":"vertex"},{"song_type":"original","name":"WAY TO GO HOME","type":"song","performances":92,"_id":"35","_type":"vertex"},{"name":"Barlow","type":"artist","_id":"350","_type":"vertex"},{"name":"Weir","type":"artist","_id":"351","_type":"vertex"},{"name":"Mydland","type":"artist","_id":"352","_type":"vertex"},{"song_type":"original","name":"BORN CROSS EYED","type":"song","performances":13,"_id":"353","_type":"vertex"},{"name":"Lesh","type":"artist","_id":"354","_type":"vertex"},{"song_type":"original","name":"CANT COME DOWN","type":"song","performances":1,"_id":"355","_type":"vertex"},{"name":"Pigpen","type":"artist","_id":"356","_type":"vertex"},{"song_type":"original","name":"CLEMENTINE","type":"song","performances":3,"_id":"357","_type":"vertex"},{"song_type":"original","name":"CORRINA","type":"song","performances":77,"_id":"358","_type":"vertex"},{"name":"Weir_Hart","type":"artist","_id":"359","_type":"vertex"},{"song_type":"original","name":"SAINT OF CIRCUMSTANCE","type":"song","performances":222,"_id":"36","_type":"vertex"},{"song_type":"original","name":"COSMIC CHARLEY","type":"song","performances":41,"_id":"360","_type":"vertex"},{"song_type":"original","name":"CREAM PUFF WAR","type":"song","performances":7,"_id":"361","_type":"vertex"},{"name":"Garcia_Lesh","type":"artist","_id":"362","_type":"vertex"},{"song_type":"original","name":"DAYS BETWEEN","type":"song","performances":41,"_id":"363","_type":"vertex"},{"song_type":"original","name":"DOING THAT RAG","type":"song","performances":37,"_id":"364","_type":"vertex"},{"song_type":"cover","name":"DOWN SO LONG","type":"song","performances":2,"_id":"365","_type":"vertex"},{"song_type":"original","name":"THE DWARF","type":"song","performances":0,"_id":"366","_type":"vertex"},{"name":"Hunter_Weir","type":"artist","_id":"367","_type":"vertex"},{"name":"Weir_Hart_Welnick","type":"artist","_id":"368","_type":"vertex"},{"song_type":"original","name":"EASY WIND","type":"song","performances":44,"_id":"369","_type":"vertex"},{"song_type":"original","name":"SAMBA IN THE RAIN","type":"song","performances":38,"_id":"37","_type":"vertex"},{"song_type":"original","name":"EMPTY PAGES","type":"song","performances":2,"_id":"370","_type":"vertex"},{"song_type":"original","name":"EQUINOX","type":"song","performances":0,"_id":"371","_type":"vertex"},{"name":"Dixon","type":"artist","_id":"372","_type":"vertex"},{"name":"Weir_Wasserman","type":"artist","_id":"373","_type":"vertex"},{"song_type":"original","name":"FRANCE","type":"song","performances":0,"_id":"374","_type":"vertex"},{"name":"Garcia_Kreutzmann","type":"artist","_id":"375","_type":"vertex"},{"name":"Garcia_Dawson","type":"artist","_id":"376","_type":"vertex"},{"name":"Donna_Godchaux","type":"artist","_id":"377","_type":"vertex"},{"song_type":"original","name":"THE GOLDEN ROAD (TO UNLIMITED DEVOTION)","type":"song","performances":3,"_id":"378","_type":"vertex"},{"song_type":"original","name":"GREATEST STORY EVER TOLD","type":"song","performances":280,"_id":"379","_type":"vertex"},{"song_type":"original","name":"FEEL LIKE A STRANGER","type":"song","performances":207,"_id":"38","_type":"vertex"},{"name":"Barlow_instrumental","type":"artist","_id":"380","_type":"vertex"},{"name":"Weir_Mydland","type":"artist","_id":"381","_type":"vertex"},{"song_type":"original","name":"HOLLYWOOD CANTATA","type":"song","performances":0,"_id":"382","_type":"vertex"},{"name":"Charles","type":"artist","_id":"383","_type":"vertex"},{"name":"instrumental","type":"artist","_id":"384","_type":"vertex"},{"song_type":"cover","name":"KEEP ROLLING BY","type":"song","performances":1,"_id":"385","_type":"vertex"},{"song_type":"original","name":"KEEP YOUR DAY JOB","type":"song","performances":57,"_id":"386","_type":"vertex"},{"song_type":"original","name":"KING SOLOMONS MARBLES","type":"song","performances":5,"_id":"387","_type":"vertex"},{"name":"Lesh_Hart_Kreutzmann","type":"artist","_id":"388","_type":"vertex"},{"song_type":"original","name":"LADY WITH A FAN","type":"song","performances":302,"_id":"389","_type":"vertex"},{"song_type":"original","name":"CUMBERLAND BLUES","type":"song","performances":223,"_id":"39","_type":"vertex"},{"song_type":"original","name":"LAZY RIVER ROAD","type":"song","performances":65,"_id":"390","_type":"vertex"},{"name":"Keith_Godchaux","type":"artist","_id":"391","_type":"vertex"},{"song_type":"original","name":"LITTLE STAR","type":"song","performances":3,"_id":"392","_type":"vertex"},{"song_type":"original","name":"MASONS CHILDREN","type":"song","performances":18,"_id":"393","_type":"vertex"},{"name":"Garcia_Weir_Lesh","type":"artist","_id":"394","_type":"vertex"},{"song_type":"original","name":"MAYBE YOU KNOW","type":"song","performances":6,"_id":"395","_type":"vertex"},{"song_type":"original","name":"MINDBENDER","type":"song","performances":2,"_id":"396","_type":"vertex"},{"song_type":"original","name":"THE MONSTER","type":"song","performances":1,"_id":"397","_type":"vertex"},{"song_type":"original","name":"MOUNTAINS OF THE MOON","type":"song","performances":12,"_id":"398","_type":"vertex"},{"song_type":"original","name":"NEVER TRUST A WOMAN","type":"song","performances":42,"_id":"399","_type":"vertex"},{"song_type":"original","name":"BERTHA","type":"song","performances":394,"_id":"4","_type":"vertex"},{"song_type":"cover","name":"THE SAME THING","type":"song","performances":45,"_id":"40","_type":"vertex"},{"song_type":"original","name":"NEW POTATO CABOOSE","type":"song","performances":26,"_id":"400","_type":"vertex"},{"name":"Petersen","type":"artist","_id":"401","_type":"vertex"},{"song_type":"original","name":"NO LEFT TURN UNSTONED (CARDBOARD COWBOY)","type":"song","performances":2,"_id":"402","_type":"vertex"},{"song_type":"original","name":"THE ONLY TIME IS NOW","type":"song","performances":1,"_id":"403","_type":"vertex"},{"song_type":"original","name":"OPERATOR","type":"song","performances":4,"_id":"404","_type":"vertex"},{"name":"Weir_Kreutzmann","type":"artist","_id":"405","_type":"vertex"},{"song_type":"original","name":"OTIS ON A SHAKEDOWN CRUISE","type":"song","performances":1,"_id":"406","_type":"vertex"},{"name":"Monk","type":"artist","_id":"407","_type":"vertex"},{"name":"Weir_Bralove","type":"artist","_id":"408","_type":"vertex"},{"song_type":"original","name":"PRIDE OF CUCAMONGA","type":"song","performances":0,"_id":"409","_type":"vertex"},{"name":"CORINA","type":"song","_id":"41","_type":"vertex"},{"song_type":"original","name":"RED","type":"song","performances":0,"_id":"410","_type":"vertex"},{"song_type":"original","name":"REUBEN AND CERISE","type":"song","performances":4,"_id":"411","_type":"vertex"},{"name":"Mydland_Lesh","type":"artist","_id":"412","_type":"vertex"},{"song_type":"original","name":"ROSEMARY","type":"song","performances":1,"_id":"413","_type":"vertex"},{"song_type":"original","name":"SAINT STEPHEN","type":"song","performances":165,"_id":"414","_type":"vertex"},{"name":"Welnick","type":"artist","_id":"415","_type":"vertex"},{"name":"Hornsby","type":"artist","_id":"416","_type":"vertex"},{"song_type":"original","name":"STANDING ON THE CORNER","type":"song","performances":3,"_id":"417","_type":"vertex"},{"song_type":"original","name":"THE STRANGER (TWO SOULS IN COMMUNION)","type":"song","performances":12,"_id":"418","_type":"vertex"},{"song_type":"original","name":"TASTEBUD","type":"song","performances":1,"_id":"419","_type":"vertex"},{"song_type":"cover","name":"ITS ALL OVER NOW","type":"song","performances":160,"_id":"42","_type":"vertex"},{"song_type":"original","name":"TENNESSEE JED","type":"song","performances":433,"_id":"420","_type":"vertex"},{"song_type":"original","name":"TERRAPIN FLYER","type":"song","performances":1,"_id":"421","_type":"vertex"},{"name":"Hart_Kreutzmann","type":"artist","_id":"422","_type":"vertex"},{"song_type":"original","name":"TERRAPIN TRANSIT","type":"song","performances":1,"_id":"423","_type":"vertex"},{"song_type":"original","name":"THIS TIME FOREVER","type":"song","performances":1,"_id":"424","_type":"vertex"},{"song_type":"original","name":"TILL THE MORNING COMES","type":"song","performances":5,"_id":"425","_type":"vertex"},{"name":"Garcia_Lesh_Weir","type":"artist","_id":"426","_type":"vertex"},{"song_type":"original","name":"THE VALLEY ROAD","type":"song","performances":6,"_id":"427","_type":"vertex"},{"name":"Graham","type":"artist","_id":"428","_type":"vertex"},{"song_type":"original","name":"WALK IN THE SUNSHINE","type":"song","performances":0,"_id":"429","_type":"vertex"},{"song_type":"original","name":"ETERNITY","type":"song","performances":44,"_id":"43","_type":"vertex"},{"name":"Welnick_Bralove","type":"artist","_id":"430","_type":"vertex"},{"song_type":"original","name":"WE CAN RUN","type":"song","performances":22,"_id":"431","_type":"vertex"},{"song_type":"original","name":"WEATHER REPORT SUITE PRELUDE","type":"song","performances":52,"_id":"432","_type":"vertex"},{"song_type":"original","name":"WEATHER REPORT SUITE PART 1","type":"song","performances":47,"_id":"433","_type":"vertex"},{"name":"Weir_Andersen","type":"artist","_id":"434","_type":"vertex"},{"song_type":"original","name":"WEST L.A. FADEAWAY","type":"song","performances":140,"_id":"435","_type":"vertex"},{"song_type":"original","name":"WHATLL YOU RAISE","type":"song","performances":0,"_id":"436","_type":"vertex"},{"song_type":"original","name":"WHATS BECOME OF THE BABY","type":"song","performances":0,"_id":"437","_type":"vertex"},{"song_type":"original","name":"YOU CANT CATCH ME","type":"song","performances":1,"_id":"438","_type":"vertex"},{"song_type":"original","name":"YOU DONT HAVE TO ASK","type":"song","performances":5,"_id":"439","_type":"vertex"},{"song_type":"cover","name":"GOOD GOLLY MISS MOLLY","type":"song","performances":3,"_id":"44","_type":"vertex"},{"song_type":"original","name":"YOU SEE A BROKEN HEART","type":"song","performances":1,"_id":"440","_type":"vertex"},{"song_type":"cover","name":"AINT IT CRAZY (THE RUB)","type":"song","performances":12,"_id":"441","_type":"vertex"},{"name":"Lightning_Hopkins","type":"artist","_id":"442","_type":"vertex"},{"song_type":"cover","name":"AINT THAT PECULIAR","type":"song","performances":1,"_id":"443","_type":"vertex"},{"name":"Robinson_et_al","type":"artist","_id":"444","_type":"vertex"},{"song_type":"cover","name":"ALABAMA BOUND","type":"song","performances":1,"_id":"445","_type":"vertex"},{"name":"Traditional","type":"artist","_id":"446","_type":"vertex"},{"name":"Bob_Dylan","type":"artist","_id":"447","_type":"vertex"},{"song_type":"cover","name":"ALL I HAVE TO DO IS DREAM","type":"song","performances":1,"_id":"448","_type":"vertex"},{"name":"Boudleaux_Bryant","type":"artist","_id":"449","_type":"vertex"},{"name":"DEVIL WITH A BLUE DRESS","type":"song","_id":"45","_type":"vertex"},{"song_type":"cover","name":"ALL OF MY LOVE","type":"song","performances":1,"_id":"450","_type":"vertex"},{"name":"Unknown","type":"artist","_id":"451","_type":"vertex"},{"song_type":"cover","name":"AND WE BID YOU GOODNIGHT","type":"song","performances":61,"_id":"452","_type":"vertex"},{"name":"All","type":"artist","_id":"453","_type":"vertex"},{"song_type":"cover","name":"ANY WONDER","type":"song","performances":1,"_id":"454","_type":"vertex"},{"song_type":"cover","name":"ARE YOU LONELY FOR ME BABY","type":"song","performances":1,"_id":"455","_type":"vertex"},{"name":"Freddie_Scott","type":"artist","_id":"456","_type":"vertex"},{"name":"Donna","type":"artist","_id":"457","_type":"vertex"},{"name":"Chuck_Berry","type":"artist","_id":"458","_type":"vertex"},{"name":"Pete_Townshend","type":"artist","_id":"459","_type":"vertex"},{"song_type":"original","name":"BOX OF RAIN","type":"song","performances":161,"_id":"46","_type":"vertex"},{"name":"Jimmy_Reed","type":"artist","_id":"460","_type":"vertex"},{"name":"Pigpen_Mydland","type":"artist","_id":"461","_type":"vertex"},{"name":"John_Fogerty","type":"artist","_id":"462","_type":"vertex"},{"song_type":"cover","name":"BALLAD OF CASEY JONES","type":"song","performances":2,"_id":"463","_type":"vertex"},{"song_type":"cover","name":"BALLAD OF FRANKIE LEE AND JUDAS PRIEST","type":"song","performances":2,"_id":"464","_type":"vertex"},{"song_type":"cover","name":"BANANA BOAT SONG (DAY-O)","type":"song","performances":1,"_id":"465","_type":"vertex"},{"name":"Darling_Carey_Arkin","type":"artist","_id":"466","_type":"vertex"},{"name":"Neville_Brothers","type":"artist","_id":"467","_type":"vertex"},{"song_type":"cover","name":"BANKS OF THE OHIO","type":"song","performances":1,"_id":"468","_type":"vertex"},{"name":"Joan_Baez","type":"artist","_id":"469","_type":"vertex"},{"song_type":"cover","name":"TOMORROW IS FOREVER","type":"song","performances":10,"_id":"47","_type":"vertex"},{"song_type":"cover","name":"BARBARA ALLEN","type":"song","performances":2,"_id":"470","_type":"vertex"},{"name":"Jesse_Fuller","type":"artist","_id":"471","_type":"vertex"},{"song_type":"cover","name":"BETTY AND DUPREE","type":"song","performances":1,"_id":"472","_type":"vertex"},{"name":"Smith_Dixon","type":"artist","_id":"473","_type":"vertex"},{"name":"Pigpen_Garcia","type":"artist","_id":"474","_type":"vertex"},{"name":"Harris_Terry","type":"artist","_id":"475","_type":"vertex"},{"name":"Pigpen_Weir","type":"artist","_id":"476","_type":"vertex"},{"song_type":"cover","name":"BIG BREASA","type":"song","performances":1,"_id":"477","_type":"vertex"},{"name":"Noah_Lewis","type":"artist","_id":"478","_type":"vertex"},{"name":"Johnny_Cash","type":"artist","_id":"479","_type":"vertex"},{"song_type":"original","name":"CANDYMAN","type":"song","performances":277,"_id":"48","_type":"vertex"},{"name":"Lennon_McCartney","type":"artist","_id":"480","_type":"vertex"},{"name":"Stephen_Stills","type":"artist","_id":"481","_type":"vertex"},{"song_type":"cover","name":"BLUE MOON","type":"song","performances":1,"_id":"482","_type":"vertex"},{"name":"Rodgers_Hart","type":"artist","_id":"483","_type":"vertex"},{"name":"Joey_Covington","type":"artist","_id":"484","_type":"vertex"},{"song_type":"cover","name":"BLUE SUEDE SHOES","type":"song","performances":2,"_id":"485","_type":"vertex"},{"name":"Carl_Perkins","type":"artist","_id":"486","_type":"vertex"},{"song_type":"cover","name":"BOXER THE","type":"song","performances":1,"_id":"487","_type":"vertex"},{"name":"Paul_Simon","type":"artist","_id":"488","_type":"vertex"},{"song_type":"cover","name":"BRING ME MY SHOTGUN","type":"song","performances":1,"_id":"489","_type":"vertex"},{"song_type":"original","name":"HES GONE","type":"song","performances":328,"_id":"49","_type":"vertex"},{"name":"Robbie_Robertson","type":"artist","_id":"490","_type":"vertex"},{"name":"F_and_B_Bryant","type":"artist","_id":"491","_type":"vertex"},{"song_type":"cover","name":"C.C.RIDER","type":"song","performances":127,"_id":"492","_type":"vertex"},{"name":"Rodney_Crowell","type":"artist","_id":"493","_type":"vertex"},{"song_type":"cover","name":"CATHYS CLOWN","type":"song","performances":2,"_id":"494","_type":"vertex"},{"name":"Don_and_Phil_Everly","type":"artist","_id":"495","_type":"vertex"},{"song_type":"cover","name":"CHECKING UP","type":"song","performances":1,"_id":"496","_type":"vertex"},{"name":"Sonny_Boy_Williamson","type":"artist","_id":"497","_type":"vertex"},{"name":"Elvin_Bishop","type":"artist","_id":"498","_type":"vertex"},{"song_type":"cover","name":"CHILDREN OF THE 80S","type":"song","performances":2,"_id":"499","_type":"vertex"},{"song_type":"cover","name":"GOING DOWN THE ROAD FEELING BAD","type":"song","performances":293,"_id":"5","_type":"vertex"},{"song_type":"original","name":"JACK STRAW","type":"song","performances":473,"_id":"50","_type":"vertex"},{"name":"Robyn_Hitchcock","type":"artist","_id":"500","_type":"vertex"},{"name":"Suzanne_Vega","type":"artist","_id":"501","_type":"vertex"},{"song_type":"cover","name":"COME BACK BABY","type":"song","performances":1,"_id":"502","_type":"vertex"},{"song_type":"cover","name":"COWBOY SONG","type":"song","performances":1,"_id":"503","_type":"vertex"},{"song_type":"cover","name":"DANCING IN THE STREET","type":"song","performances":123,"_id":"504","_type":"vertex"},{"name":"Stevenson_et_al","type":"artist","_id":"505","_type":"vertex"},{"song_type":"cover","name":"DARLING COREY","type":"song","performances":1,"_id":"506","_type":"vertex"},{"name":"Garcia_Weir","type":"artist","_id":"507","_type":"vertex"},{"song_type":"cover","name":"DEAD MAN DEAD MAN","type":"song","performances":2,"_id":"508","_type":"vertex"},{"song_type":"cover","name":"DEAR MR FANTASY","type":"song","performances":58,"_id":"509","_type":"vertex"},{"song_type":"original","name":"ROW JIMMY","type":"song","performances":274,"_id":"51","_type":"vertex"},{"name":"Winwood_et_al","type":"artist","_id":"510","_type":"vertex"},{"name":"Rev_Gary_Davis","type":"artist","_id":"511","_type":"vertex"},{"song_type":"cover","name":"DEATH LETTER BLUES","type":"song","performances":1,"_id":"512","_type":"vertex"},{"song_type":"cover","name":"DEVIL WITH THE BLUE DRESS ON","type":"song","performances":3,"_id":"513","_type":"vertex"},{"name":"Long_Stevenson","type":"artist","_id":"514","_type":"vertex"},{"song_type":"cover","name":"DO YOU WANNA DANCE?","type":"song","performances":1,"_id":"515","_type":"vertex"},{"name":"Bobby_Freeman","type":"artist","_id":"516","_type":"vertex"},{"song_type":"cover","name":"DONT MESS UP A GOOD THING","type":"song","performances":1,"_id":"517","_type":"vertex"},{"name":"Oliver_Sain","type":"artist","_id":"518","_type":"vertex"},{"song_type":"cover","name":"DONT THINK TWICE ITS ALL RIGHT","type":"song","performances":1,"_id":"519","_type":"vertex"},{"song_type":"original","name":"WAVE THAT FLAG","type":"song","performances":15,"_id":"52","_type":"vertex"},{"name":"Willie_Dixon","type":"artist","_id":"520","_type":"vertex"},{"song_type":"cover","name":"DRINK UP AND GO HOME","type":"song","performances":1,"_id":"521","_type":"vertex"},{"song_type":"cover","name":"EARLY MORNING RAIN","type":"song","performances":2,"_id":"522","_type":"vertex"},{"name":"Gordon_Lightfoot","type":"artist","_id":"523","_type":"vertex"},{"song_type":"cover","name":"EASY RIDER","type":"song","performances":1,"_id":"524","_type":"vertex"},{"name":"Spencer_Davis","type":"artist","_id":"525","_type":"vertex"},{"song_type":"cover","name":"SAY BOSS MAN (EIGHTEEN CHILDREN)","type":"song","performances":1,"_id":"526","_type":"vertex"},{"name":"Bo_Diddley","type":"artist","_id":"527","_type":"vertex"},{"name":"Marty_Robbins","type":"artist","_id":"528","_type":"vertex"},{"song_type":"cover","name":"EMPTY HEART","type":"song","performances":1,"_id":"529","_type":"vertex"},{"song_type":"cover","name":"BIG RAILROAD BLUES","type":"song","performances":175,"_id":"53","_type":"vertex"},{"name":"Jagger_Richard","type":"artist","_id":"530","_type":"vertex"},{"song_type":"cover","name":"EVERY TIME YOU GO AWAY","type":"song","performances":1,"_id":"531","_type":"vertex"},{"name":"Daryl_Hall","type":"artist","_id":"532","_type":"vertex"},{"name":"Hall_and_Oates","type":"artist","_id":"533","_type":"vertex"},{"name":"Davenport_Cooley","type":"artist","_id":"534","_type":"vertex"},{"song_type":"cover","name":"FIRE IN THE CITY","type":"song","performances":1,"_id":"535","_type":"vertex"},{"name":"Peter_Krug","type":"artist","_id":"536","_type":"vertex"},{"name":"Jon_Hendricks","type":"artist","_id":"537","_type":"vertex"},{"song_type":"cover","name":"THE FLOOD","type":"song","performances":1,"_id":"538","_type":"vertex"},{"name":"Neil_Young","type":"artist","_id":"539","_type":"vertex"},{"name":"TENNESSE JED","type":"song","_id":"54","_type":"vertex"},{"name":"Stevens","type":"artist","_id":"540","_type":"vertex"},{"song_type":"cover","name":"GAMES PEOPLE PLAY","type":"song","performances":1,"_id":"541","_type":"vertex"},{"name":"Joe_South","type":"artist","_id":"542","_type":"vertex"},{"song_type":"cover","name":"GANSTER OF LOVE","type":"song","performances":1,"_id":"543","_type":"vertex"},{"name":"Johnny_Guitar_Watson","type":"artist","_id":"544","_type":"vertex"},{"song_type":"cover","name":"GATHERING FLOWERS FOR THE MASTERS BOUQUET","type":"song","performances":1,"_id":"545","_type":"vertex"},{"name":"Marvin_Baumgardner","type":"artist","_id":"546","_type":"vertex"},{"song_type":"cover","name":"GIMME SOME LOVING","type":"song","performances":87,"_id":"547","_type":"vertex"},{"name":"Winwood_Davis","type":"artist","_id":"548","_type":"vertex"},{"name":"Van_Morrison","type":"artist","_id":"549","_type":"vertex"},{"song_type":"cover","name":"YOU AINT WOMAN ENOUGH","type":"song","performances":15,"_id":"55","_type":"vertex"},{"song_type":"cover","name":"GOOD DAY SUNSHINE","type":"song","performances":1,"_id":"550","_type":"vertex"},{"name":"Blackwell_Marascalco","type":"artist","_id":"551","_type":"vertex"},{"name":"Resnick_Clark","type":"artist","_id":"552","_type":"vertex"},{"name":"Pigpen_Weir_Mydland","type":"artist","_id":"553","_type":"vertex"},{"name":"Williamson","type":"artist","_id":"554","_type":"vertex"},{"song_type":"cover","name":"GOOD TIMES","type":"song","performances":47,"_id":"555","_type":"vertex"},{"name":"Sam_Cooke","type":"artist","_id":"556","_type":"vertex"},{"name":"Leadbelly","type":"artist","_id":"557","_type":"vertex"},{"song_type":"cover","name":"GOT MY MOJO WORKING","type":"song","performances":2,"_id":"558","_type":"vertex"},{"name":"Preston_Foster","type":"artist","_id":"559","_type":"vertex"},{"song_type":"original","name":"LOSER","type":"song","performances":345,"_id":"56","_type":"vertex"},{"song_type":"cover","name":"GREEN GREEN GRASS OF HOME","type":"song","performances":9,"_id":"560","_type":"vertex"},{"name":"Curly_Putnam","type":"artist","_id":"561","_type":"vertex"},{"name":"Redding","type":"artist","_id":"562","_type":"vertex"},{"song_type":"cover","name":"HE WAS A FRIEND OF MINE","type":"song","performances":17,"_id":"563","_type":"vertex"},{"name":"Mark_Spoelstra","type":"artist","_id":"564","_type":"vertex"},{"song_type":"cover","name":"HELP ME RHONDA","type":"song","performances":1,"_id":"565","_type":"vertex"},{"name":"Brian_Wilson","type":"artist","_id":"566","_type":"vertex"},{"name":"Beach_Boys","type":"artist","_id":"567","_type":"vertex"},{"song_type":"cover","name":"HEY LITTLE ONE","type":"song","performances":3,"_id":"568","_type":"vertex"},{"name":"Bernette_Vorzon","type":"artist","_id":"569","_type":"vertex"},{"song_type":"original","name":"DEAL","type":"song","performances":423,"_id":"57","_type":"vertex"},{"name":"Meters_(Traditional)","type":"artist","_id":"570","_type":"vertex"},{"song_type":"cover","name":"HI-HEEL SNEAKERS","type":"song","performances":5,"_id":"571","_type":"vertex"},{"name":"Higgenbotham","type":"artist","_id":"572","_type":"vertex"},{"name":"Freddie_King","type":"artist","_id":"573","_type":"vertex"},{"name":"None","type":"artist","_id":"574","_type":"vertex"},{"song_type":"cover","name":"HIGHWAY 61 REVISITED","type":"song","performances":3,"_id":"575","_type":"vertex"},{"song_type":"cover","name":"HOOCHIE COOCHIE MAN","type":"song","performances":1,"_id":"576","_type":"vertex"},{"name":"Leroy_Carr_Frank_Stokes","type":"artist","_id":"577","_type":"vertex"},{"song_type":"cover","name":"HOW SWEET IT IS (TO BE LOVED BY YOU)","type":"song","performances":1,"_id":"578","_type":"vertex"},{"name":"Holland_et_al","type":"artist","_id":"579","_type":"vertex"},{"name":"BIRD SONG","type":"song","_id":"58","_type":"vertex"},{"song_type":"cover","name":"(BABY) HULLY GULLY","type":"song","performances":1,"_id":"580","_type":"vertex"},{"name":"Smith_Goldsmith","type":"artist","_id":"581","_type":"vertex"},{"song_type":"cover","name":"I AINT SUPERSTITIOUS","type":"song","performances":8,"_id":"582","_type":"vertex"},{"name":"Sonny_Curtis","type":"artist","_id":"583","_type":"vertex"},{"song_type":"cover","name":"I GOT A MIND TO GIVE UP LIVING","type":"song","performances":1,"_id":"584","_type":"vertex"},{"name":"Boz_Scaggs","type":"artist","_id":"585","_type":"vertex"},{"song_type":"cover","name":"I HEARD IT THROUGH THE GRAPEVINE","type":"song","performances":1,"_id":"586","_type":"vertex"},{"name":"Strong_Whitfield","type":"artist","_id":"587","_type":"vertex"},{"song_type":"cover","name":"I JUST WANT TO MAKE LOVE TO YOU","type":"song","performances":4,"_id":"588","_type":"vertex"},{"song_type":"cover","name":"I KNOW ITS A SIN","type":"song","performances":11,"_id":"589","_type":"vertex"},{"song_type":"original","name":"SUGAREE","type":"song","performances":357,"_id":"59","_type":"vertex"},{"song_type":"cover","name":"I SECOND THAT EMOTION","type":"song","performances":6,"_id":"590","_type":"vertex"},{"name":"Robinson_Cleveland","type":"artist","_id":"591","_type":"vertex"},{"name":"George_Harrison","type":"artist","_id":"592","_type":"vertex"},{"song_type":"cover","name":"I WASHED MY HANDS IN MUDDY WATER","type":"song","performances":1,"_id":"593","_type":"vertex"},{"name":"J_Babcock","type":"artist","_id":"594","_type":"vertex"},{"song_type":"cover","name":"ILL GO CRAZY","type":"song","performances":1,"_id":"595","_type":"vertex"},{"name":"James_Brown","type":"artist","_id":"596","_type":"vertex"},{"song_type":"cover","name":"IM A HOG FOR YOU BABY","type":"song","performances":4,"_id":"597","_type":"vertex"},{"name":"Leiber_Stoller","type":"artist","_id":"598","_type":"vertex"},{"song_type":"cover","name":"IM A KING BEE","type":"song","performances":38,"_id":"599","_type":"vertex"},{"song_type":"cover","name":"MONA","type":"song","performances":1,"_id":"6","_type":"vertex"},{"song_type":"original","name":"CRAZY FINGERS","type":"song","performances":144,"_id":"60","_type":"vertex"},{"name":"James_Moore","type":"artist","_id":"600","_type":"vertex"},{"song_type":"cover","name":"IM A LOVING MAN","type":"song","performances":0,"_id":"601","_type":"vertex"},{"name":"Clancy_Carlile","type":"artist","_id":"602","_type":"vertex"},{"song_type":"cover","name":"IVE BEEN ALL AROUND THIS WORLD","type":"song","performances":18,"_id":"603","_type":"vertex"},{"song_type":"cover","name":"IVE GOT A TIGER BY THE TAIL","type":"song","performances":1,"_id":"604","_type":"vertex"},{"name":"Owens_Howard","type":"artist","_id":"605","_type":"vertex"},{"song_type":"cover","name":"IVE JUST SEEN A FACE","type":"song","performances":1,"_id":"606","_type":"vertex"},{"song_type":"cover","name":"IN THE PINES","type":"song","performances":1,"_id":"607","_type":"vertex"},{"song_type":"cover","name":"IN THE MIDNIGHT HOUR","type":"song","performances":46,"_id":"608","_type":"vertex"},{"name":"Pickett_Cropper","type":"artist","_id":"609","_type":"vertex"},{"name":"MIDNIGHT HOUR","type":"song","_id":"61","_type":"vertex"},{"song_type":"cover","name":"IT HURTS ME TOO","type":"song","performances":47,"_id":"610","_type":"vertex"},{"name":"Tampa_Red","type":"artist","_id":"611","_type":"vertex"},{"song_type":"cover","name":"IT TAKES ... A TRAIN TO CRY","type":"song","performances":7,"_id":"612","_type":"vertex"},{"song_type":"cover","name":"ITS A MANS MANS MANS WORLD","type":"song","performances":11,"_id":"613","_type":"vertex"},{"name":"Brown_et_al","type":"artist","_id":"614","_type":"vertex"},{"name":"B_and_S_Womack","type":"artist","_id":"615","_type":"vertex"},{"song_type":"cover","name":"ITS ALL OVER NOW BABY BLUE","type":"song","performances":145,"_id":"616","_type":"vertex"},{"song_type":"cover","name":"ITS MY OWN FAULT","type":"song","performances":1,"_id":"617","_type":"vertex"},{"name":"John_Lee_Hooker","type":"artist","_id":"618","_type":"vertex"},{"song_type":"cover","name":"IVE SEEN THEM ALL","type":"song","performances":1,"_id":"619","_type":"vertex"},{"song_type":"cover","name":"IKO IKO","type":"song","performances":185,"_id":"62","_type":"vertex"},{"song_type":"cover","name":"JACK-A-ROE","type":"song","performances":115,"_id":"620","_type":"vertex"},{"song_type":"cover","name":"JOHNS OTHER","type":"song","performances":1,"_id":"621","_type":"vertex"},{"name":"Papa_John_Creach","type":"artist","_id":"622","_type":"vertex"},{"name":"Jorma_Kaukonen","type":"artist","_id":"623","_type":"vertex"},{"song_type":"cover","name":"JORDAN","type":"song","performances":12,"_id":"624","_type":"vertex"},{"song_type":"cover","name":"JUST LIKE TOM THUMBS BLUES","type":"song","performances":58,"_id":"625","_type":"vertex"},{"song_type":"cover","name":"KATIE MAE","type":"song","performances":11,"_id":"626","_type":"vertex"},{"name":"Clapton_Whitlock","type":"artist","_id":"627","_type":"vertex"},{"name":"Lesh_Mydland","type":"artist","_id":"628","_type":"vertex"},{"name":"Traditional_(arr_Valens)","type":"artist","_id":"629","_type":"vertex"},{"song_type":"original","name":"HIGH TIME","type":"song","performances":133,"_id":"63","_type":"vertex"},{"song_type":"cover","name":"LADY DI AND I","type":"song","performances":2,"_id":"630","_type":"vertex"},{"song_type":"cover","name":"THE LAST TIME","type":"song","performances":70,"_id":"631","_type":"vertex"},{"name":"Jagger_Richards","type":"artist","_id":"632","_type":"vertex"},{"song_type":"cover","name":"LEAVE YOUR LOVE AT HOME","type":"song","performances":1,"_id":"633","_type":"vertex"},{"song_type":"cover","name":"LET IT BE ME","type":"song","performances":1,"_id":"634","_type":"vertex"},{"name":"Curtis_et_al","type":"artist","_id":"635","_type":"vertex"},{"song_type":"cover","name":"LET ME IN","type":"song","performances":1,"_id":"636","_type":"vertex"},{"name":"Gene_Crysler","type":"artist","_id":"637","_type":"vertex"},{"song_type":"cover","name":"LITTLE BUNNY FOO FOO","type":"song","performances":1,"_id":"638","_type":"vertex"},{"song_type":"cover","name":"LONG BLACK LIMOUSINE","type":"song","performances":6,"_id":"639","_type":"vertex"},{"song_type":"original","name":"HELL IN A BUCKET","type":"song","performances":216,"_id":"64","_type":"vertex"},{"name":"Stovall_George","type":"artist","_id":"640","_type":"vertex"},{"song_type":"cover","name":"LONG TALL SALLY","type":"song","performances":1,"_id":"641","_type":"vertex"},{"name":"Johnson_et_al","type":"artist","_id":"642","_type":"vertex"},{"song_type":"cover","name":"LOOK ON YONDERS WALL","type":"song","performances":1,"_id":"643","_type":"vertex"},{"name":"Arthur_Cruddup","type":"artist","_id":"644","_type":"vertex"},{"name":"Pigpen?","type":"artist","_id":"645","_type":"vertex"},{"name":"Richard_Berry","type":"artist","_id":"646","_type":"vertex"},{"song_type":"cover","name":"LUCY IN THE SKY WITH DIAMONDS","type":"song","performances":19,"_id":"647","_type":"vertex"},{"song_type":"cover","name":"LUCKY MAN","type":"song","performances":0,"_id":"648","_type":"vertex"},{"name":"Brecht_Wiell","type":"artist","_id":"649","_type":"vertex"},{"song_type":"original","name":"ALABAMA GETAWAY","type":"song","performances":141,"_id":"65","_type":"vertex"},{"name":"Merle_Haggard","type":"artist","_id":"650","_type":"vertex"},{"song_type":"cover","name":"MAN SMART (WOMAN SMARTER)","type":"song","performances":199,"_id":"651","_type":"vertex"},{"name":"Norman_Span","type":"artist","_id":"652","_type":"vertex"},{"song_type":"cover","name":"MANNISH BOY (IM A MAN)","type":"song","performances":1,"_id":"653","_type":"vertex"},{"name":"Morganfield_McDaniel","type":"artist","_id":"654","_type":"vertex"},{"song_type":"cover","name":"MARRIOTT USA","type":"song","performances":1,"_id":"655","_type":"vertex"},{"song_type":"cover","name":"MATILDA MATILDA","type":"song","performances":6,"_id":"656","_type":"vertex"},{"name":"Harry_Belafonte","type":"artist","_id":"657","_type":"vertex"},{"name":"Kristofferson_Foster","type":"artist","_id":"658","_type":"vertex"},{"name":"John_Phillips","type":"artist","_id":"659","_type":"vertex"},{"song_type":"cover","name":"VISIONS OF JOHANNA","type":"song","performances":8,"_id":"66","_type":"vertex"},{"song_type":"cover","name":"MEMPHIS BLUES","type":"song","performances":76,"_id":"660","_type":"vertex"},{"song_type":"cover","name":"THE MIGHTY QUINN (QUINN THE ESKIMO)","type":"song","performances":59,"_id":"661","_type":"vertex"},{"name":"Bonnie_Dobson","type":"artist","_id":"662","_type":"vertex"},{"song_type":"cover","name":"MR TAMBOURINE MAN","type":"song","performances":1,"_id":"663","_type":"vertex"},{"song_type":"cover","name":"MY BABE","type":"song","performances":1,"_id":"664","_type":"vertex"},{"song_type":"cover","name":"NEAL CASSADY RAP","type":"song","performances":1,"_id":"665","_type":"vertex"},{"name":"Neal_Cassady","type":"artist","_id":"666","_type":"vertex"},{"song_type":"cover","name":"NEIGHBOR NEIGHBOR","type":"song","performances":1,"_id":"667","_type":"vertex"},{"name":"Valler_Meaux","type":"artist","_id":"668","_type":"vertex"},{"name":"Guida_Royster","type":"artist","_id":"669","_type":"vertex"},{"name":"GIMME SOME LOVIN","type":"song","_id":"67","_type":"vertex"},{"name":"Forest_Harvey","type":"artist","_id":"670","_type":"vertex"},{"name":"Hardin_Petty","type":"artist","_id":"671","_type":"vertex"},{"song_type":"cover","name":"ODE FOR BILLIE DEAN","type":"song","performances":1,"_id":"672","_type":"vertex"},{"name":"Elizabeth_Cotten","type":"artist","_id":"673","_type":"vertex"},{"name":"West_Tilghman_Holly","type":"artist","_id":"674","_type":"vertex"},{"song_type":"cover","name":"OKIE FROM MUSKOGEE","type":"song","performances":1,"_id":"675","_type":"vertex"},{"song_type":"cover","name":"OL SLEWFOOT","type":"song","performances":9,"_id":"676","_type":"vertex"},{"name":"Hausey_Manney","type":"artist","_id":"677","_type":"vertex"},{"song_type":"cover","name":"OLD OLD HOUSE","type":"song","performances":2,"_id":"678","_type":"vertex"},{"name":"Jones_Bynum","type":"artist","_id":"679","_type":"vertex"},{"song_type":"original","name":"CASSIDY","type":"song","performances":334,"_id":"68","_type":"vertex"},{"song_type":"cover","name":"ONE KIND FAVOR","type":"song","performances":4,"_id":"680","_type":"vertex"},{"name":"Blind_Lemon_Jefferson","type":"artist","_id":"681","_type":"vertex"},{"song_type":"cover","name":"ONE WAY OUT","type":"song","performances":1,"_id":"682","_type":"vertex"},{"name":"James_Sehorn_Williamson","type":"artist","_id":"683","_type":"vertex"},{"song_type":"cover","name":"ONE YOU LOVE THE","type":"song","performances":1,"_id":"684","_type":"vertex"},{"song_type":"cover","name":"OVERSEAS STOMP (LINDBERGH HOP)","type":"song","performances":3,"_id":"685","_type":"vertex"},{"name":"Jones_Shade","type":"artist","_id":"686","_type":"vertex"},{"song_type":"cover","name":"PAIN IN MY HEART","type":"song","performances":2,"_id":"687","_type":"vertex"},{"name":"Naomi_Neville","type":"artist","_id":"688","_type":"vertex"},{"song_type":"cover","name":"PAPERBACK WRITER","type":"song","performances":1,"_id":"689","_type":"vertex"},{"song_type":"original","name":"SHIP OF FOOLS","type":"song","performances":225,"_id":"69","_type":"vertex"},{"song_type":"cover","name":"PARCHMAN FARM","type":"song","performances":1,"_id":"690","_type":"vertex"},{"name":"Mose_Allison","type":"artist","_id":"691","_type":"vertex"},{"song_type":"cover","name":"PEGGYO","type":"song","performances":265,"_id":"692","_type":"vertex"},{"song_type":"cover","name":"PEGGY SUE","type":"song","performances":1,"_id":"693","_type":"vertex"},{"name":"Holly_Allison_Petty","type":"artist","_id":"694","_type":"vertex"},{"song_type":"cover","name":"PLEASE PLEASE PLEASE","type":"song","performances":1,"_id":"695","_type":"vertex"},{"song_type":"cover","name":"POLLUTION","type":"song","performances":1,"_id":"696","_type":"vertex"},{"song_type":"cover","name":"PRISONER BLUES","type":"song","performances":1,"_id":"697","_type":"vertex"},{"song_type":"cover","name":"QUEEN JANE APPROXIMATELY","type":"song","performances":129,"_id":"698","_type":"vertex"},{"name":"Don_Rollins","type":"artist","_id":"699","_type":"vertex"},{"name":"WHERE HAVE THE HEROES GONE","type":"song","_id":"7","_type":"vertex"},{"song_type":"original","name":"I NEED A MIRACLE","type":"song","performances":271,"_id":"70","_type":"vertex"},{"song_type":"cover","name":"RAILROADING ON THE GREAT DIVIDE","type":"song","performances":1,"_id":"700","_type":"vertex"},{"name":"Sara_Carter","type":"artist","_id":"701","_type":"vertex"},{"song_type":"cover","name":"RAINY DAY WOMEN","type":"song","performances":2,"_id":"702","_type":"vertex"},{"song_type":"cover","name":"RIOT IN CELL BLOCK","type":"song","performances":1,"_id":"703","_type":"vertex"},{"name":"Lieber_Stoller","type":"artist","_id":"704","_type":"vertex"},{"song_type":"cover","name":"RIP IT UP","type":"song","performances":1,"_id":"705","_type":"vertex"},{"name":"Blackwell_Marascaico","type":"artist","_id":"706","_type":"vertex"},{"song_type":"cover","name":"RIVER DEEP MOUNTAIN HIGH","type":"song","performances":1,"_id":"707","_type":"vertex"},{"name":"Greenwich_Barry_Spector","type":"artist","_id":"708","_type":"vertex"},{"song_type":"cover","name":"(IM A) ROAD RUNNER","type":"song","performances":2,"_id":"709","_type":"vertex"},{"song_type":"cover","name":"DESOLATION ROW","type":"song","performances":58,"_id":"71","_type":"vertex"},{"song_type":"cover","name":"ROBERTA","type":"song","performances":2,"_id":"710","_type":"vertex"},{"song_type":"cover","name":"ROCKING PNEUMONIA","type":"song","performances":5,"_id":"711","_type":"vertex"},{"name":"Vincent_Smith","type":"artist","_id":"712","_type":"vertex"},{"song_type":"cover","name":"ROLLING AND TUMBLING","type":"song","performances":2,"_id":"713","_type":"vertex"},{"name":"Willie_Newbern","type":"artist","_id":"714","_type":"vertex"},{"song_type":"cover","name":"ROSA LEE MCFALL","type":"song","performances":16,"_id":"715","_type":"vertex"},{"name":"Charlie_Monroe","type":"artist","_id":"716","_type":"vertex"},{"song_type":"cover","name":"RUN RUDOLPH RUN","type":"song","performances":6,"_id":"717","_type":"vertex"},{"name":"Brodie_Marks","type":"artist","_id":"718","_type":"vertex"},{"song_type":"cover","name":"(I CANT GET NO) SATISFACTION","type":"song","performances":31,"_id":"719","_type":"vertex"},{"song_type":"cover","name":"DONT EASE ME IN","type":"song","performances":316,"_id":"72","_type":"vertex"},{"song_type":"cover","name":"SAWMILL","type":"song","performances":3,"_id":"720","_type":"vertex"},{"name":"Tillis_Whatley","type":"artist","_id":"721","_type":"vertex"},{"song_type":"cover","name":"SEARCHING","type":"song","performances":3,"_id":"722","_type":"vertex"},{"song_type":"cover","name":"SEASONS OF MY HEART","type":"song","performances":5,"_id":"723","_type":"vertex"},{"name":"Jones_Edwards","type":"artist","_id":"724","_type":"vertex"},{"song_type":"cover","name":"SGT PEPPERS BAND","type":"song","performances":1,"_id":"725","_type":"vertex"},{"name":"Weir_Garcia","type":"artist","_id":"726","_type":"vertex"},{"song_type":"cover","name":"SHES MINE","type":"song","performances":3,"_id":"727","_type":"vertex"},{"song_type":"cover","name":"SICK AND TIRED","type":"song","performances":2,"_id":"728","_type":"vertex"},{"name":"Bartholomew_Kenner","type":"artist","_id":"729","_type":"vertex"},{"song_type":"original","name":"ALTHEA","type":"song","performances":272,"_id":"73","_type":"vertex"},{"name":"Lawlor_Blake","type":"artist","_id":"730","_type":"vertex"},{"song_type":"cover","name":"SILVER THREADS AND GOLDEN NEEDLES","type":"song","performances":17,"_id":"731","_type":"vertex"},{"name":"Reynolds_Rhodes","type":"artist","_id":"732","_type":"vertex"},{"song_type":"cover","name":"SITTING ON TOP OF THE WORLD","type":"song","performances":44,"_id":"733","_type":"vertex"},{"name":"Jacobs_Carter","type":"artist","_id":"734","_type":"vertex"},{"song_type":"cover","name":"SLOW BLUES","type":"song","performances":1,"_id":"735","_type":"vertex"},{"song_type":"cover","name":"SLOW TRAIN","type":"song","performances":3,"_id":"736","_type":"vertex"},{"name":"Chester_Burnette","type":"artist","_id":"737","_type":"vertex"},{"song_type":"cover","name":"SO SAD (TO WATCH GOOD LOVE GO BAD)","type":"song","performances":1,"_id":"738","_type":"vertex"},{"name":"Don_Everley","type":"artist","_id":"739","_type":"vertex"},{"song_type":"original","name":"UNCLE JOHNS BAND","type":"song","performances":332,"_id":"74","_type":"vertex"},{"song_type":"cover","name":"SO WHAT","type":"song","performances":1,"_id":"740","_type":"vertex"},{"name":"Miles_Davis","type":"artist","_id":"741","_type":"vertex"},{"song_type":"cover","name":"SONS AND DAUGHTERS","type":"song","performances":1,"_id":"742","_type":"vertex"},{"name":"Bruce_Hornsby","type":"artist","_id":"743","_type":"vertex"},{"song_type":"cover","name":"STARS AND STRIPES FOREVER","type":"song","performances":4,"_id":"744","_type":"vertex"},{"name":"John_Philip_Sousa","type":"artist","_id":"745","_type":"vertex"},{"song_type":"cover","name":"START ME UP","type":"song","performances":1,"_id":"746","_type":"vertex"},{"song_type":"cover","name":"STEALING","type":"song","performances":4,"_id":"747","_type":"vertex"},{"name":"Gus_Cannon","type":"artist","_id":"748","_type":"vertex"},{"name":"Bob_Marley","type":"artist","_id":"749","_type":"vertex"},{"song_type":"original","name":"WHEN PUSH COMES TO SHOVE","type":"song","performances":58,"_id":"75","_type":"vertex"},{"song_type":"cover","name":"SWEET GEORGIA BROWN","type":"song","performances":1,"_id":"750","_type":"vertex"},{"name":"Bernie_Casey_Pinkard","type":"artist","_id":"751","_type":"vertex"},{"song_type":"cover","name":"SWING LOW SWEET CHARIOT","type":"song","performances":8,"_id":"752","_type":"vertex"},{"name":"Al_Green","type":"artist","_id":"753","_type":"vertex"},{"song_type":"cover","name":"TAKE IT ALL OFF","type":"song","performances":1,"_id":"754","_type":"vertex"},{"name":"Eva_Darby","type":"artist","_id":"755","_type":"vertex"},{"song_type":"cover","name":"TELL IT TO ME","type":"song","performances":3,"_id":"756","_type":"vertex"},{"name":"Etta_James","type":"artist","_id":"757","_type":"vertex"},{"name":"Paul_McCartney","type":"artist","_id":"758","_type":"vertex"},{"song_type":"cover","name":"THATLL BE THE DAY","type":"song","performances":1,"_id":"759","_type":"vertex"},{"song_type":"cover","name":"SAMSON AND DELILAH","type":"song","performances":364,"_id":"76","_type":"vertex"},{"name":"Buddy_Holly","type":"artist","_id":"760","_type":"vertex"},{"song_type":"cover","name":"THATS ALL RIGHT MAMA","type":"song","performances":2,"_id":"761","_type":"vertex"},{"song_type":"cover","name":"THERES SOMETHING ON YOUR MIND","type":"song","performances":2,"_id":"762","_type":"vertex"},{"name":"Big_Jay_McNeely?","type":"artist","_id":"763","_type":"vertex"},{"song_type":"cover","name":"THINGS I USED TO DO","type":"song","performances":1,"_id":"764","_type":"vertex"},{"name":"Eddie_Jones","type":"artist","_id":"765","_type":"vertex"},{"song_type":"cover","name":"THIRTY DAYS","type":"song","performances":1,"_id":"766","_type":"vertex"},{"song_type":"cover","name":"TIMES THEY ARE A CHANGING THE","type":"song","performances":3,"_id":"767","_type":"vertex"},{"song_type":"cover","name":"TOM DOOLEY","type":"song","performances":1,"_id":"768","_type":"vertex"},{"name":"Dolly_Parton","type":"artist","_id":"769","_type":"vertex"},{"name":"STUCK INSIDE OF MOBILE","type":"song","_id":"77","_type":"vertex"},{"song_type":"cover","name":"TOUGH MAMA","type":"song","performances":1,"_id":"770","_type":"vertex"},{"name":"Scott_Malone","type":"artist","_id":"771","_type":"vertex"},{"song_type":"cover","name":"TWENTY SIX MILES (SANTA CATALINA)","type":"song","performances":1,"_id":"772","_type":"vertex"},{"name":"Belland_Larson","type":"artist","_id":"773","_type":"vertex"},{"song_type":"cover","name":"TWIST AND SHOUT","type":"song","performances":1,"_id":"774","_type":"vertex"},{"name":"Medley_Russell","type":"artist","_id":"775","_type":"vertex"},{"song_type":"cover","name":"TWO TRAINS","type":"song","performances":1,"_id":"776","_type":"vertex"},{"song_type":"cover","name":"UNCLE SAMS BLUES","type":"song","performances":1,"_id":"777","_type":"vertex"},{"song_type":"cover","name":"VALLEY ROAD THE","type":"song","performances":6,"_id":"778","_type":"vertex"},{"song_type":"cover","name":"VIOLA LEE BLUES","type":"song","performances":32,"_id":"779","_type":"vertex"},{"song_type":"cover","name":"COLD RAIN AND SNOW","type":"song","performances":241,"_id":"78","_type":"vertex"},{"song_type":"cover","name":"WABASH CANNONBALL","type":"song","performances":1,"_id":"780","_type":"vertex"},{"name":"A.P.Carter","type":"artist","_id":"781","_type":"vertex"},{"song_type":"cover","name":"WAKE UP LITTLE SUSIE","type":"song","performances":14,"_id":"782","_type":"vertex"},{"name":"F_&_B_Bryant","type":"artist","_id":"783","_type":"vertex"},{"song_type":"cover","name":"WALK DOWN THE STREET","type":"song","performances":1,"_id":"784","_type":"vertex"},{"name":"Robert_Johnson","type":"artist","_id":"785","_type":"vertex"},{"song_type":"cover","name":"WALKING THE DOG","type":"song","performances":6,"_id":"786","_type":"vertex"},{"name":"Rufus_Thomas","type":"artist","_id":"787","_type":"vertex"},{"song_type":"cover","name":"WATCHING THE WHEELS","type":"song","performances":1,"_id":"788","_type":"vertex"},{"name":"John_Lennon","type":"artist","_id":"789","_type":"vertex"},{"song_type":"original","name":"PICASSO MOON","type":"song","performances":77,"_id":"79","_type":"vertex"},{"name":"Warren_Zevon","type":"artist","_id":"790","_type":"vertex"},{"name":"Cleveland_Gaye","type":"artist","_id":"791","_type":"vertex"},{"song_type":"cover","name":"WHEN A MAN LOVES A WOMAN","type":"song","performances":1,"_id":"792","_type":"vertex"},{"name":"Lewis_Wright","type":"artist","_id":"793","_type":"vertex"},{"song_type":"cover","name":"WHISKEY IN THE JAR","type":"song","performances":0,"_id":"794","_type":"vertex"},{"song_type":"cover","name":"WHOS LOVING YOU TONIGHT","type":"song","performances":1,"_id":"795","_type":"vertex"},{"name":"Jimmy_Rodgers","type":"artist","_id":"796","_type":"vertex"},{"song_type":"cover","name":"WILL THE CIRCLE BE UNBROKEN","type":"song","performances":1,"_id":"797","_type":"vertex"},{"name":"Allman_Brothers","type":"artist","_id":"798","_type":"vertex"},{"name":"Johnny_Otis","type":"artist","_id":"799","_type":"vertex"},{"song_type":"cover","name":"OH BOY","type":"song","performances":2,"_id":"8","_type":"vertex"},{"song_type":"original","name":"DIRE WOLF","type":"song","performances":226,"_id":"80","_type":"vertex"},{"song_type":"cover","name":"WINING BOY BLUES","type":"song","performances":1,"_id":"800","_type":"vertex"},{"song_type":"cover","name":"WO WOW HEY HEY","type":"song","performances":1,"_id":"801","_type":"vertex"},{"song_type":"cover","name":"WORKING MAN BLUES","type":"song","performances":1,"_id":"802","_type":"vertex"},{"name":"Merl_Haggard","type":"artist","_id":"803","_type":"vertex"},{"name":"Loretta_Lynn","type":"artist","_id":"804","_type":"vertex"},{"song_type":"cover","name":"YOU DONT LOVE ME","type":"song","performances":1,"_id":"805","_type":"vertex"},{"name":"Willie_Cobb","type":"artist","_id":"806","_type":"vertex"},{"name":"Hank_Williams","type":"artist","_id":"807","_type":"vertex"},{"song_type":"cover","name":"YOUNG BLOOD","type":"song","performances":1,"_id":"808","_type":"vertex"},{"song_type":"original","name":"FOOLISH HEART","type":"song","performances":87,"_id":"81","_type":"vertex"},{"song_type":"original","name":"SCARLET BEGONIAS","type":"song","performances":316,"_id":"82","_type":"vertex"},{"song_type":"original","name":"EYES OF THE WORLD","type":"song","performances":381,"_id":"83","_type":"vertex"},{"song_type":"original","name":"SHAKEDOWN STREET","type":"song","performances":163,"_id":"84","_type":"vertex"},{"song_type":"original","name":"ESTIMATED PROPHET","type":"song","performances":390,"_id":"85","_type":"vertex"},{"song_type":"cover","name":"THE WEIGHT","type":"song","performances":41,"_id":"86","_type":"vertex"},{"song_type":"original","name":"TOUCH OF GREY","type":"song","performances":213,"_id":"87","_type":"vertex"},{"song_type":"cover","name":"LITTLE RED ROOSTER","type":"song","performances":272,"_id":"88","_type":"vertex"},{"song_type":"original","name":"DARK STAR","type":"song","performances":219,"_id":"89","_type":"vertex"},{"song_type":"original","name":"HERE COMES SUNSHINE","type":"song","performances":65,"_id":"9","_type":"vertex"},{"name":"LET THE GOOD TIMES ROLL","type":"song","_id":"90","_type":"vertex"},{"song_type":"original","name":"TERRAPIN STATION","type":"song","performances":302,"_id":"91","_type":"vertex"},{"song_type":"original","name":"STANDING ON THE MOON","type":"song","performances":75,"_id":"92","_type":"vertex"},{"song_type":"cover","name":"RAIN","type":"song","performances":12,"_id":"93","_type":"vertex"},{"song_type":"original","name":"STELLA BLUE","type":"song","performances":328,"_id":"94","_type":"vertex"},{"song_type":"cover","name":"WHATS GOING ON","type":"song","performances":1,"_id":"95","_type":"vertex"},{"song_type":"original","name":"DRUMS","type":"song","performances":1386,"_id":"96","_type":"vertex"},{"song_type":"original","name":"MY BROTHER ESAU","type":"song","performances":104,"_id":"97","_type":"vertex"},{"song_type":"original","name":"IT MUST HAVE BEEN THE ROSES","type":"song","performances":159,"_id":"98","_type":"vertex"},{"song_type":"original","name":"MIGHT AS WELL","type":"song","performances":111,"_id":"99","_type":"vertex"}],"edges":[{"weight":1,"_id":"0","_type":"edge","_outV":"1","_inV":"2","_label":"followed_by"},{"weight":2,"_id":"1","_type":"edge","_outV":"1","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"10","_type":"edge","_outV":"9","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"100","_type":"edge","_outV":"46","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1000","_type":"edge","_outV":"11","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1001","_type":"edge","_outV":"176","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1002","_type":"edge","_outV":"176","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1003","_type":"edge","_outV":"176","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1004","_type":"edge","_outV":"176","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"1005","_type":"edge","_outV":"176","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1006","_type":"edge","_outV":"176","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1007","_type":"edge","_outV":"176","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1008","_type":"edge","_outV":"237","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"1009","_type":"edge","_outV":"73","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"101","_type":"edge","_outV":"46","_inV":"88","_label":"followed_by"},{"weight":26,"_id":"1010","_type":"edge","_outV":"73","_inV":"181","_label":"followed_by"},{"weight":9,"_id":"1011","_type":"edge","_outV":"73","_inV":"189","_label":"followed_by"},{"weight":10,"_id":"1012","_type":"edge","_outV":"73","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"1013","_type":"edge","_outV":"73","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"1014","_type":"edge","_outV":"73","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"1015","_type":"edge","_outV":"73","_inV":"50","_label":"followed_by"},{"weight":23,"_id":"1016","_type":"edge","_outV":"73","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1017","_type":"edge","_outV":"73","_inV":"85","_label":"followed_by"},{"weight":16,"_id":"1018","_type":"edge","_outV":"73","_inV":"68","_label":"followed_by"},{"weight":23,"_id":"1019","_type":"edge","_outV":"73","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"102","_type":"edge","_outV":"46","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"1020","_type":"edge","_outV":"73","_inV":"38","_label":"followed_by"},{"weight":20,"_id":"1021","_type":"edge","_outV":"73","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"1022","_type":"edge","_outV":"73","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"1023","_type":"edge","_outV":"73","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"1024","_type":"edge","_outV":"73","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1025","_type":"edge","_outV":"73","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1026","_type":"edge","_outV":"73","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"1027","_type":"edge","_outV":"73","_inV":"10","_label":"followed_by"},{"weight":12,"_id":"1028","_type":"edge","_outV":"73","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"1029","_type":"edge","_outV":"73","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"103","_type":"edge","_outV":"46","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1030","_type":"edge","_outV":"73","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1031","_type":"edge","_outV":"73","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1032","_type":"edge","_outV":"73","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"1033","_type":"edge","_outV":"73","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1034","_type":"edge","_outV":"73","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"1035","_type":"edge","_outV":"73","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"1036","_type":"edge","_outV":"73","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"1037","_type":"edge","_outV":"73","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1038","_type":"edge","_outV":"73","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"1039","_type":"edge","_outV":"73","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"104","_type":"edge","_outV":"46","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1040","_type":"edge","_outV":"73","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"1041","_type":"edge","_outV":"73","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"1042","_type":"edge","_outV":"73","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"1043","_type":"edge","_outV":"73","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1044","_type":"edge","_outV":"73","_inV":"238","_label":"followed_by"},{"weight":15,"_id":"1045","_type":"edge","_outV":"73","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1046","_type":"edge","_outV":"73","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1047","_type":"edge","_outV":"73","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"1048","_type":"edge","_outV":"73","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1049","_type":"edge","_outV":"73","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"105","_type":"edge","_outV":"46","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1050","_type":"edge","_outV":"73","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1051","_type":"edge","_outV":"73","_inV":"169","_label":"followed_by"},{"weight":3,"_id":"1052","_type":"edge","_outV":"73","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1053","_type":"edge","_outV":"73","_inV":"136","_label":"followed_by"},{"weight":2,"_id":"1054","_type":"edge","_outV":"73","_inV":"115","_label":"followed_by"},{"weight":6,"_id":"1055","_type":"edge","_outV":"73","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"1056","_type":"edge","_outV":"73","_inV":"239","_label":"followed_by"},{"weight":2,"_id":"1057","_type":"edge","_outV":"73","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"1058","_type":"edge","_outV":"73","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1059","_type":"edge","_outV":"73","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"106","_type":"edge","_outV":"46","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"1060","_type":"edge","_outV":"73","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"1061","_type":"edge","_outV":"73","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"1062","_type":"edge","_outV":"73","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1063","_type":"edge","_outV":"73","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1064","_type":"edge","_outV":"73","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"1065","_type":"edge","_outV":"73","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1066","_type":"edge","_outV":"73","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1067","_type":"edge","_outV":"240","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1068","_type":"edge","_outV":"227","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1069","_type":"edge","_outV":"227","_inV":"241","_label":"followed_by"},{"weight":2,"_id":"107","_type":"edge","_outV":"46","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1070","_type":"edge","_outV":"227","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"1071","_type":"edge","_outV":"227","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"1072","_type":"edge","_outV":"227","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"1073","_type":"edge","_outV":"227","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1074","_type":"edge","_outV":"227","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"1075","_type":"edge","_outV":"227","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"1076","_type":"edge","_outV":"227","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1077","_type":"edge","_outV":"227","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"1078","_type":"edge","_outV":"227","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1079","_type":"edge","_outV":"227","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"108","_type":"edge","_outV":"46","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1080","_type":"edge","_outV":"243","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1081","_type":"edge","_outV":"243","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1082","_type":"edge","_outV":"243","_inV":"160","_label":"followed_by"},{"weight":10,"_id":"1083","_type":"edge","_outV":"59","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1084","_type":"edge","_outV":"59","_inV":"54","_label":"followed_by"},{"weight":26,"_id":"1085","_type":"edge","_outV":"59","_inV":"24","_label":"followed_by"},{"weight":21,"_id":"1086","_type":"edge","_outV":"59","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"1087","_type":"edge","_outV":"59","_inV":"13","_label":"followed_by"},{"weight":14,"_id":"1088","_type":"edge","_outV":"59","_inV":"11","_label":"followed_by"},{"weight":4,"_id":"1089","_type":"edge","_outV":"59","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"109","_type":"edge","_outV":"46","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"1090","_type":"edge","_outV":"59","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1091","_type":"edge","_outV":"59","_inV":"218","_label":"followed_by"},{"weight":3,"_id":"1092","_type":"edge","_outV":"59","_inV":"23","_label":"followed_by"},{"weight":13,"_id":"1093","_type":"edge","_outV":"59","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1094","_type":"edge","_outV":"59","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"1095","_type":"edge","_outV":"59","_inV":"57","_label":"followed_by"},{"weight":26,"_id":"1096","_type":"edge","_outV":"59","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"1097","_type":"edge","_outV":"59","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"1098","_type":"edge","_outV":"59","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1099","_type":"edge","_outV":"59","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"11","_type":"edge","_outV":"9","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"110","_type":"edge","_outV":"46","_inV":"92","_label":"followed_by"},{"weight":5,"_id":"1100","_type":"edge","_outV":"59","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"1101","_type":"edge","_outV":"59","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1102","_type":"edge","_outV":"59","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"1103","_type":"edge","_outV":"59","_inV":"26","_label":"followed_by"},{"weight":32,"_id":"1104","_type":"edge","_outV":"59","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1105","_type":"edge","_outV":"59","_inV":"3","_label":"followed_by"},{"weight":11,"_id":"1106","_type":"edge","_outV":"59","_inV":"68","_label":"followed_by"},{"weight":16,"_id":"1107","_type":"edge","_outV":"59","_inV":"112","_label":"followed_by"},{"weight":6,"_id":"1108","_type":"edge","_outV":"59","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1109","_type":"edge","_outV":"59","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"111","_type":"edge","_outV":"46","_inV":"93","_label":"followed_by"},{"weight":4,"_id":"1110","_type":"edge","_outV":"59","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1111","_type":"edge","_outV":"59","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1112","_type":"edge","_outV":"59","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"1113","_type":"edge","_outV":"59","_inV":"155","_label":"followed_by"},{"weight":4,"_id":"1114","_type":"edge","_outV":"59","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1115","_type":"edge","_outV":"59","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"1116","_type":"edge","_outV":"59","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1117","_type":"edge","_outV":"59","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1118","_type":"edge","_outV":"59","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"1119","_type":"edge","_outV":"59","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"112","_type":"edge","_outV":"46","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"1120","_type":"edge","_outV":"59","_inV":"111","_label":"followed_by"},{"weight":3,"_id":"1121","_type":"edge","_outV":"59","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1122","_type":"edge","_outV":"59","_inV":"82","_label":"followed_by"},{"weight":7,"_id":"1123","_type":"edge","_outV":"59","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1124","_type":"edge","_outV":"59","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"1125","_type":"edge","_outV":"59","_inV":"245","_label":"followed_by"},{"weight":24,"_id":"1126","_type":"edge","_outV":"59","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"1127","_type":"edge","_outV":"59","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"1128","_type":"edge","_outV":"59","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1129","_type":"edge","_outV":"59","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"113","_type":"edge","_outV":"95","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1130","_type":"edge","_outV":"59","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"1131","_type":"edge","_outV":"59","_inV":"228","_label":"followed_by"},{"weight":1,"_id":"1132","_type":"edge","_outV":"59","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1133","_type":"edge","_outV":"59","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1134","_type":"edge","_outV":"59","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"1135","_type":"edge","_outV":"59","_inV":"169","_label":"followed_by"},{"weight":7,"_id":"1136","_type":"edge","_outV":"59","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1137","_type":"edge","_outV":"59","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"1138","_type":"edge","_outV":"59","_inV":"189","_label":"followed_by"},{"weight":3,"_id":"1139","_type":"edge","_outV":"59","_inV":"40","_label":"followed_by"},{"weight":5,"_id":"114","_type":"edge","_outV":"97","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"1140","_type":"edge","_outV":"59","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1141","_type":"edge","_outV":"246","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"1142","_type":"edge","_outV":"26","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"1143","_type":"edge","_outV":"26","_inV":"160","_label":"followed_by"},{"weight":9,"_id":"1144","_type":"edge","_outV":"26","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"1145","_type":"edge","_outV":"26","_inV":"49","_label":"followed_by"},{"weight":13,"_id":"1146","_type":"edge","_outV":"26","_inV":"100","_label":"followed_by"},{"weight":15,"_id":"1147","_type":"edge","_outV":"26","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"1148","_type":"edge","_outV":"26","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"1149","_type":"edge","_outV":"26","_inV":"27","_label":"followed_by"},{"weight":10,"_id":"115","_type":"edge","_outV":"97","_inV":"58","_label":"followed_by"},{"weight":41,"_id":"1150","_type":"edge","_outV":"26","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1151","_type":"edge","_outV":"26","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1152","_type":"edge","_outV":"26","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"1153","_type":"edge","_outV":"26","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1154","_type":"edge","_outV":"26","_inV":"206","_label":"followed_by"},{"weight":2,"_id":"1155","_type":"edge","_outV":"26","_inV":"24","_label":"followed_by"},{"weight":16,"_id":"1156","_type":"edge","_outV":"26","_inV":"4","_label":"followed_by"},{"weight":18,"_id":"1157","_type":"edge","_outV":"26","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"1158","_type":"edge","_outV":"26","_inV":"74","_label":"followed_by"},{"weight":21,"_id":"1159","_type":"edge","_outV":"26","_inV":"19","_label":"followed_by"},{"weight":13,"_id":"116","_type":"edge","_outV":"97","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"1160","_type":"edge","_outV":"26","_inV":"51","_label":"followed_by"},{"weight":8,"_id":"1161","_type":"edge","_outV":"26","_inV":"9","_label":"followed_by"},{"weight":14,"_id":"1162","_type":"edge","_outV":"26","_inV":"83","_label":"followed_by"},{"weight":34,"_id":"1163","_type":"edge","_outV":"26","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"1164","_type":"edge","_outV":"26","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"1165","_type":"edge","_outV":"26","_inV":"202","_label":"followed_by"},{"weight":4,"_id":"1166","_type":"edge","_outV":"26","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1167","_type":"edge","_outV":"26","_inV":"89","_label":"followed_by"},{"weight":5,"_id":"1168","_type":"edge","_outV":"26","_inV":"69","_label":"followed_by"},{"weight":4,"_id":"1169","_type":"edge","_outV":"26","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"117","_type":"edge","_outV":"97","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1170","_type":"edge","_outV":"26","_inV":"5","_label":"followed_by"},{"weight":5,"_id":"1171","_type":"edge","_outV":"26","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"1172","_type":"edge","_outV":"26","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1173","_type":"edge","_outV":"26","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"1174","_type":"edge","_outV":"26","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1175","_type":"edge","_outV":"26","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"1176","_type":"edge","_outV":"26","_inV":"134","_label":"followed_by"},{"weight":4,"_id":"1177","_type":"edge","_outV":"26","_inV":"215","_label":"followed_by"},{"weight":4,"_id":"1178","_type":"edge","_outV":"26","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1179","_type":"edge","_outV":"26","_inV":"13","_label":"followed_by"},{"weight":8,"_id":"118","_type":"edge","_outV":"97","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"1180","_type":"edge","_outV":"26","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1181","_type":"edge","_outV":"26","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1182","_type":"edge","_outV":"26","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"1183","_type":"edge","_outV":"26","_inV":"14","_label":"followed_by"},{"weight":27,"_id":"1184","_type":"edge","_outV":"26","_inV":"82","_label":"followed_by"},{"weight":11,"_id":"1185","_type":"edge","_outV":"26","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"1186","_type":"edge","_outV":"26","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1187","_type":"edge","_outV":"26","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"1188","_type":"edge","_outV":"26","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"1189","_type":"edge","_outV":"26","_inV":"105","_label":"followed_by"},{"weight":7,"_id":"119","_type":"edge","_outV":"97","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"1190","_type":"edge","_outV":"26","_inV":"153","_label":"followed_by"},{"weight":16,"_id":"1191","_type":"edge","_outV":"26","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1192","_type":"edge","_outV":"26","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1193","_type":"edge","_outV":"26","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1194","_type":"edge","_outV":"26","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1195","_type":"edge","_outV":"26","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1196","_type":"edge","_outV":"26","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"1197","_type":"edge","_outV":"26","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1198","_type":"edge","_outV":"26","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"1199","_type":"edge","_outV":"26","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"12","_type":"edge","_outV":"9","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"120","_type":"edge","_outV":"97","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"1200","_type":"edge","_outV":"26","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1201","_type":"edge","_outV":"26","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"1202","_type":"edge","_outV":"26","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1203","_type":"edge","_outV":"26","_inV":"223","_label":"followed_by"},{"weight":6,"_id":"1204","_type":"edge","_outV":"26","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"1205","_type":"edge","_outV":"26","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1206","_type":"edge","_outV":"26","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1207","_type":"edge","_outV":"26","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"1208","_type":"edge","_outV":"26","_inV":"64","_label":"followed_by"},{"weight":5,"_id":"1209","_type":"edge","_outV":"26","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"121","_type":"edge","_outV":"97","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1210","_type":"edge","_outV":"26","_inV":"23","_label":"followed_by"},{"weight":6,"_id":"1211","_type":"edge","_outV":"26","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1212","_type":"edge","_outV":"26","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"1213","_type":"edge","_outV":"26","_inV":"156","_label":"followed_by"},{"weight":1,"_id":"1214","_type":"edge","_outV":"26","_inV":"247","_label":"followed_by"},{"weight":2,"_id":"1215","_type":"edge","_outV":"26","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1216","_type":"edge","_outV":"26","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"1217","_type":"edge","_outV":"26","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1218","_type":"edge","_outV":"26","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"1219","_type":"edge","_outV":"26","_inV":"36","_label":"followed_by"},{"weight":8,"_id":"122","_type":"edge","_outV":"97","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1220","_type":"edge","_outV":"26","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"1221","_type":"edge","_outV":"26","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1222","_type":"edge","_outV":"26","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"1223","_type":"edge","_outV":"26","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1224","_type":"edge","_outV":"26","_inV":"177","_label":"followed_by"},{"weight":1,"_id":"1225","_type":"edge","_outV":"26","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"1226","_type":"edge","_outV":"26","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"1227","_type":"edge","_outV":"26","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"1228","_type":"edge","_outV":"26","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"1229","_type":"edge","_outV":"248","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"123","_type":"edge","_outV":"97","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1230","_type":"edge","_outV":"248","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1231","_type":"edge","_outV":"248","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1232","_type":"edge","_outV":"248","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1233","_type":"edge","_outV":"248","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1234","_type":"edge","_outV":"248","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1235","_type":"edge","_outV":"249","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"1236","_type":"edge","_outV":"249","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"1237","_type":"edge","_outV":"249","_inV":"251","_label":"followed_by"},{"weight":1,"_id":"1238","_type":"edge","_outV":"183","_inV":"74","_label":"followed_by"},{"weight":14,"_id":"1239","_type":"edge","_outV":"183","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"124","_type":"edge","_outV":"97","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1240","_type":"edge","_outV":"183","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"1241","_type":"edge","_outV":"27","_inV":"153","_label":"followed_by"},{"weight":5,"_id":"1242","_type":"edge","_outV":"27","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"1243","_type":"edge","_outV":"27","_inV":"22","_label":"followed_by"},{"weight":16,"_id":"1244","_type":"edge","_outV":"27","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"1245","_type":"edge","_outV":"27","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1246","_type":"edge","_outV":"27","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"1247","_type":"edge","_outV":"27","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"1248","_type":"edge","_outV":"27","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"1249","_type":"edge","_outV":"27","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"125","_type":"edge","_outV":"97","_inV":"102","_label":"followed_by"},{"weight":10,"_id":"1250","_type":"edge","_outV":"27","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"1251","_type":"edge","_outV":"27","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1252","_type":"edge","_outV":"27","_inV":"252","_label":"followed_by"},{"weight":6,"_id":"1253","_type":"edge","_outV":"27","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1254","_type":"edge","_outV":"27","_inV":"226","_label":"followed_by"},{"weight":2,"_id":"1255","_type":"edge","_outV":"27","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1256","_type":"edge","_outV":"27","_inV":"39","_label":"followed_by"},{"weight":19,"_id":"1257","_type":"edge","_outV":"27","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"1258","_type":"edge","_outV":"27","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"1259","_type":"edge","_outV":"27","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"126","_type":"edge","_outV":"97","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1260","_type":"edge","_outV":"27","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"1261","_type":"edge","_outV":"27","_inV":"46","_label":"followed_by"},{"weight":17,"_id":"1262","_type":"edge","_outV":"27","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1263","_type":"edge","_outV":"27","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"1264","_type":"edge","_outV":"27","_inV":"23","_label":"followed_by"},{"weight":15,"_id":"1265","_type":"edge","_outV":"27","_inV":"68","_label":"followed_by"},{"weight":9,"_id":"1266","_type":"edge","_outV":"27","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"1267","_type":"edge","_outV":"27","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"1268","_type":"edge","_outV":"27","_inV":"121","_label":"followed_by"},{"weight":20,"_id":"1269","_type":"edge","_outV":"27","_inV":"101","_label":"followed_by"},{"weight":3,"_id":"127","_type":"edge","_outV":"97","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"1270","_type":"edge","_outV":"27","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"1271","_type":"edge","_outV":"27","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1272","_type":"edge","_outV":"27","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1273","_type":"edge","_outV":"27","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1274","_type":"edge","_outV":"27","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"1275","_type":"edge","_outV":"27","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1276","_type":"edge","_outV":"27","_inV":"155","_label":"followed_by"},{"weight":3,"_id":"1277","_type":"edge","_outV":"27","_inV":"26","_label":"followed_by"},{"weight":8,"_id":"1278","_type":"edge","_outV":"27","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"1279","_type":"edge","_outV":"27","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"128","_type":"edge","_outV":"97","_inV":"4","_label":"followed_by"},{"weight":5,"_id":"1280","_type":"edge","_outV":"27","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"1281","_type":"edge","_outV":"27","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"1282","_type":"edge","_outV":"27","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"1283","_type":"edge","_outV":"27","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1284","_type":"edge","_outV":"27","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"1285","_type":"edge","_outV":"27","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1286","_type":"edge","_outV":"27","_inV":"73","_label":"followed_by"},{"weight":6,"_id":"1287","_type":"edge","_outV":"27","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1288","_type":"edge","_outV":"27","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"1289","_type":"edge","_outV":"27","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"129","_type":"edge","_outV":"97","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"1290","_type":"edge","_outV":"27","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"1291","_type":"edge","_outV":"27","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"1292","_type":"edge","_outV":"27","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1293","_type":"edge","_outV":"27","_inV":"223","_label":"followed_by"},{"weight":11,"_id":"1294","_type":"edge","_outV":"27","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1295","_type":"edge","_outV":"27","_inV":"253","_label":"followed_by"},{"weight":5,"_id":"1296","_type":"edge","_outV":"27","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1297","_type":"edge","_outV":"27","_inV":"221","_label":"followed_by"},{"weight":1,"_id":"1298","_type":"edge","_outV":"27","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1299","_type":"edge","_outV":"27","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"13","_type":"edge","_outV":"9","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"130","_type":"edge","_outV":"97","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"1300","_type":"edge","_outV":"27","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"1301","_type":"edge","_outV":"27","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"1302","_type":"edge","_outV":"27","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1303","_type":"edge","_outV":"27","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1304","_type":"edge","_outV":"27","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"1305","_type":"edge","_outV":"27","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1306","_type":"edge","_outV":"27","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"1307","_type":"edge","_outV":"27","_inV":"254","_label":"followed_by"},{"weight":4,"_id":"1308","_type":"edge","_outV":"27","_inV":"43","_label":"followed_by"},{"weight":5,"_id":"1309","_type":"edge","_outV":"27","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"131","_type":"edge","_outV":"97","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"1310","_type":"edge","_outV":"27","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"1311","_type":"edge","_outV":"27","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"1312","_type":"edge","_outV":"27","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1313","_type":"edge","_outV":"27","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1314","_type":"edge","_outV":"161","_inV":"255","_label":"followed_by"},{"weight":1,"_id":"1315","_type":"edge","_outV":"161","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"1316","_type":"edge","_outV":"31","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1317","_type":"edge","_outV":"31","_inV":"53","_label":"followed_by"},{"weight":4,"_id":"1318","_type":"edge","_outV":"31","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1319","_type":"edge","_outV":"31","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"132","_type":"edge","_outV":"97","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"1320","_type":"edge","_outV":"31","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1321","_type":"edge","_outV":"31","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"1322","_type":"edge","_outV":"31","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"1323","_type":"edge","_outV":"31","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"1324","_type":"edge","_outV":"31","_inV":"117","_label":"followed_by"},{"weight":6,"_id":"1325","_type":"edge","_outV":"31","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"1326","_type":"edge","_outV":"31","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1327","_type":"edge","_outV":"31","_inV":"167","_label":"followed_by"},{"weight":2,"_id":"1328","_type":"edge","_outV":"31","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"1329","_type":"edge","_outV":"31","_inV":"60","_label":"followed_by"},{"weight":6,"_id":"133","_type":"edge","_outV":"97","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1330","_type":"edge","_outV":"31","_inV":"81","_label":"followed_by"},{"weight":5,"_id":"1331","_type":"edge","_outV":"31","_inV":"104","_label":"followed_by"},{"weight":8,"_id":"1332","_type":"edge","_outV":"31","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1333","_type":"edge","_outV":"31","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1334","_type":"edge","_outV":"31","_inV":"125","_label":"followed_by"},{"weight":5,"_id":"1335","_type":"edge","_outV":"31","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"1336","_type":"edge","_outV":"31","_inV":"256","_label":"followed_by"},{"weight":1,"_id":"1337","_type":"edge","_outV":"31","_inV":"10","_label":"followed_by"},{"weight":8,"_id":"1338","_type":"edge","_outV":"31","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"1339","_type":"edge","_outV":"31","_inV":"15","_label":"followed_by"},{"weight":7,"_id":"134","_type":"edge","_outV":"97","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1340","_type":"edge","_outV":"31","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"1341","_type":"edge","_outV":"31","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"1342","_type":"edge","_outV":"31","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"1343","_type":"edge","_outV":"31","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"1344","_type":"edge","_outV":"31","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"1345","_type":"edge","_outV":"31","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1346","_type":"edge","_outV":"31","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1347","_type":"edge","_outV":"31","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1348","_type":"edge","_outV":"31","_inV":"192","_label":"followed_by"},{"weight":5,"_id":"1349","_type":"edge","_outV":"31","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"135","_type":"edge","_outV":"97","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"1350","_type":"edge","_outV":"31","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"1351","_type":"edge","_outV":"31","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1352","_type":"edge","_outV":"31","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1353","_type":"edge","_outV":"31","_inV":"254","_label":"followed_by"},{"weight":3,"_id":"1354","_type":"edge","_outV":"31","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1355","_type":"edge","_outV":"31","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1356","_type":"edge","_outV":"31","_inV":"18","_label":"followed_by"},{"weight":81,"_id":"1357","_type":"edge","_outV":"130","_inV":"153","_label":"followed_by"},{"weight":18,"_id":"1358","_type":"edge","_outV":"130","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1359","_type":"edge","_outV":"130","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"136","_type":"edge","_outV":"97","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"1360","_type":"edge","_outV":"130","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1361","_type":"edge","_outV":"130","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1362","_type":"edge","_outV":"130","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1363","_type":"edge","_outV":"130","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"1364","_type":"edge","_outV":"130","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"1365","_type":"edge","_outV":"130","_inV":"12","_label":"followed_by"},{"weight":12,"_id":"1366","_type":"edge","_outV":"130","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"1367","_type":"edge","_outV":"130","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"1368","_type":"edge","_outV":"130","_inV":"21","_label":"followed_by"},{"weight":77,"_id":"1369","_type":"edge","_outV":"130","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"137","_type":"edge","_outV":"97","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1370","_type":"edge","_outV":"130","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1371","_type":"edge","_outV":"130","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1372","_type":"edge","_outV":"130","_inV":"15","_label":"followed_by"},{"weight":11,"_id":"1373","_type":"edge","_outV":"130","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1374","_type":"edge","_outV":"130","_inV":"149","_label":"followed_by"},{"weight":6,"_id":"1375","_type":"edge","_outV":"130","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1376","_type":"edge","_outV":"130","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"1377","_type":"edge","_outV":"130","_inV":"110","_label":"followed_by"},{"weight":5,"_id":"1378","_type":"edge","_outV":"130","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1379","_type":"edge","_outV":"130","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"138","_type":"edge","_outV":"97","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1380","_type":"edge","_outV":"130","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1381","_type":"edge","_outV":"130","_inV":"101","_label":"followed_by"},{"weight":4,"_id":"1382","_type":"edge","_outV":"130","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"1383","_type":"edge","_outV":"130","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"1384","_type":"edge","_outV":"130","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1385","_type":"edge","_outV":"130","_inV":"26","_label":"followed_by"},{"weight":23,"_id":"1386","_type":"edge","_outV":"130","_inV":"120","_label":"followed_by"},{"weight":9,"_id":"1387","_type":"edge","_outV":"130","_inV":"70","_label":"followed_by"},{"weight":54,"_id":"1388","_type":"edge","_outV":"130","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"1389","_type":"edge","_outV":"130","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"139","_type":"edge","_outV":"97","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1390","_type":"edge","_outV":"130","_inV":"160","_label":"followed_by"},{"weight":18,"_id":"1391","_type":"edge","_outV":"130","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"1392","_type":"edge","_outV":"130","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"1393","_type":"edge","_outV":"130","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"1394","_type":"edge","_outV":"130","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"1395","_type":"edge","_outV":"130","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1396","_type":"edge","_outV":"190","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"1397","_type":"edge","_outV":"190","_inV":"43","_label":"followed_by"},{"weight":4,"_id":"1398","_type":"edge","_outV":"190","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"1399","_type":"edge","_outV":"190","_inV":"117","_label":"followed_by"},{"weight":5,"_id":"14","_type":"edge","_outV":"9","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"140","_type":"edge","_outV":"97","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1400","_type":"edge","_outV":"190","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1401","_type":"edge","_outV":"190","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1402","_type":"edge","_outV":"190","_inV":"88","_label":"followed_by"},{"weight":12,"_id":"1403","_type":"edge","_outV":"83","_inV":"94","_label":"followed_by"},{"weight":24,"_id":"1404","_type":"edge","_outV":"83","_inV":"129","_label":"followed_by"},{"weight":5,"_id":"1405","_type":"edge","_outV":"83","_inV":"16","_label":"followed_by"},{"weight":3,"_id":"1406","_type":"edge","_outV":"83","_inV":"148","_label":"followed_by"},{"weight":9,"_id":"1407","_type":"edge","_outV":"83","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1408","_type":"edge","_outV":"83","_inV":"127","_label":"followed_by"},{"weight":9,"_id":"1409","_type":"edge","_outV":"83","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"141","_type":"edge","_outV":"97","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"1410","_type":"edge","_outV":"83","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"1411","_type":"edge","_outV":"83","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"1412","_type":"edge","_outV":"83","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1413","_type":"edge","_outV":"83","_inV":"195","_label":"followed_by"},{"weight":2,"_id":"1414","_type":"edge","_outV":"83","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"1415","_type":"edge","_outV":"83","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1416","_type":"edge","_outV":"83","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1417","_type":"edge","_outV":"83","_inV":"26","_label":"followed_by"},{"weight":211,"_id":"1418","_type":"edge","_outV":"83","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1419","_type":"edge","_outV":"83","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"142","_type":"edge","_outV":"97","_inV":"106","_label":"followed_by"},{"weight":5,"_id":"1420","_type":"edge","_outV":"83","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1421","_type":"edge","_outV":"83","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"1422","_type":"edge","_outV":"83","_inV":"76","_label":"followed_by"},{"weight":14,"_id":"1423","_type":"edge","_outV":"83","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"1424","_type":"edge","_outV":"83","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"1425","_type":"edge","_outV":"83","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1426","_type":"edge","_outV":"83","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"1427","_type":"edge","_outV":"83","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1428","_type":"edge","_outV":"83","_inV":"242","_label":"followed_by"},{"weight":3,"_id":"1429","_type":"edge","_outV":"83","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"143","_type":"edge","_outV":"97","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1430","_type":"edge","_outV":"83","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"1431","_type":"edge","_outV":"83","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"1432","_type":"edge","_outV":"83","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"1433","_type":"edge","_outV":"83","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1434","_type":"edge","_outV":"83","_inV":"89","_label":"followed_by"},{"weight":4,"_id":"1435","_type":"edge","_outV":"83","_inV":"36","_label":"followed_by"},{"weight":7,"_id":"1436","_type":"edge","_outV":"83","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1437","_type":"edge","_outV":"83","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"1438","_type":"edge","_outV":"83","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1439","_type":"edge","_outV":"83","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"144","_type":"edge","_outV":"107","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1440","_type":"edge","_outV":"83","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1441","_type":"edge","_outV":"83","_inV":"79","_label":"followed_by"},{"weight":4,"_id":"1442","_type":"edge","_outV":"83","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"1443","_type":"edge","_outV":"83","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"1444","_type":"edge","_outV":"83","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1445","_type":"edge","_outV":"83","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1446","_type":"edge","_outV":"83","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1447","_type":"edge","_outV":"83","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1448","_type":"edge","_outV":"83","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"1449","_type":"edge","_outV":"83","_inV":"171","_label":"followed_by"},{"weight":6,"_id":"145","_type":"edge","_outV":"108","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"1450","_type":"edge","_outV":"83","_inV":"176","_label":"followed_by"},{"weight":12,"_id":"1451","_type":"edge","_outV":"81","_inV":"14","_label":"followed_by"},{"weight":10,"_id":"1452","_type":"edge","_outV":"81","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1453","_type":"edge","_outV":"81","_inV":"164","_label":"followed_by"},{"weight":10,"_id":"1454","_type":"edge","_outV":"81","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"1455","_type":"edge","_outV":"81","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"1456","_type":"edge","_outV":"81","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1457","_type":"edge","_outV":"81","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"1458","_type":"edge","_outV":"81","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"1459","_type":"edge","_outV":"81","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"146","_type":"edge","_outV":"108","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"1460","_type":"edge","_outV":"81","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1461","_type":"edge","_outV":"81","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1462","_type":"edge","_outV":"81","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1463","_type":"edge","_outV":"81","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1464","_type":"edge","_outV":"81","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1465","_type":"edge","_outV":"81","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"1466","_type":"edge","_outV":"81","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"1467","_type":"edge","_outV":"81","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1468","_type":"edge","_outV":"81","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"1469","_type":"edge","_outV":"81","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"147","_type":"edge","_outV":"108","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1470","_type":"edge","_outV":"81","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"1471","_type":"edge","_outV":"81","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1472","_type":"edge","_outV":"81","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1473","_type":"edge","_outV":"81","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1474","_type":"edge","_outV":"81","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"1475","_type":"edge","_outV":"81","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1476","_type":"edge","_outV":"81","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1477","_type":"edge","_outV":"81","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"1478","_type":"edge","_outV":"81","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"1479","_type":"edge","_outV":"81","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"148","_type":"edge","_outV":"108","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1480","_type":"edge","_outV":"81","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"1481","_type":"edge","_outV":"81","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"1482","_type":"edge","_outV":"81","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1483","_type":"edge","_outV":"81","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1484","_type":"edge","_outV":"81","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"1485","_type":"edge","_outV":"81","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"1486","_type":"edge","_outV":"81","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"1487","_type":"edge","_outV":"81","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"1488","_type":"edge","_outV":"81","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"1489","_type":"edge","_outV":"81","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"149","_type":"edge","_outV":"108","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1490","_type":"edge","_outV":"164","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"1491","_type":"edge","_outV":"164","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"1492","_type":"edge","_outV":"164","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1493","_type":"edge","_outV":"164","_inV":"255","_label":"followed_by"},{"weight":3,"_id":"1494","_type":"edge","_outV":"164","_inV":"4","_label":"followed_by"},{"weight":9,"_id":"1495","_type":"edge","_outV":"164","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1496","_type":"edge","_outV":"164","_inV":"211","_label":"followed_by"},{"weight":19,"_id":"1497","_type":"edge","_outV":"164","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"1498","_type":"edge","_outV":"164","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"1499","_type":"edge","_outV":"164","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"15","_type":"edge","_outV":"9","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"150","_type":"edge","_outV":"108","_inV":"56","_label":"followed_by"},{"weight":15,"_id":"1500","_type":"edge","_outV":"164","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"1501","_type":"edge","_outV":"164","_inV":"38","_label":"followed_by"},{"weight":6,"_id":"1502","_type":"edge","_outV":"164","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1503","_type":"edge","_outV":"164","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1504","_type":"edge","_outV":"164","_inV":"212","_label":"followed_by"},{"weight":8,"_id":"1505","_type":"edge","_outV":"164","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"1506","_type":"edge","_outV":"164","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"1507","_type":"edge","_outV":"164","_inV":"115","_label":"followed_by"},{"weight":21,"_id":"1508","_type":"edge","_outV":"164","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"1509","_type":"edge","_outV":"164","_inV":"131","_label":"followed_by"},{"weight":3,"_id":"151","_type":"edge","_outV":"108","_inV":"10","_label":"followed_by"},{"weight":18,"_id":"1510","_type":"edge","_outV":"164","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"1511","_type":"edge","_outV":"164","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"1512","_type":"edge","_outV":"164","_inV":"243","_label":"followed_by"},{"weight":1,"_id":"1513","_type":"edge","_outV":"164","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1514","_type":"edge","_outV":"164","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1515","_type":"edge","_outV":"164","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"1516","_type":"edge","_outV":"164","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"1517","_type":"edge","_outV":"164","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1518","_type":"edge","_outV":"164","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1519","_type":"edge","_outV":"164","_inV":"157","_label":"followed_by"},{"weight":3,"_id":"152","_type":"edge","_outV":"108","_inV":"42","_label":"followed_by"},{"weight":7,"_id":"1520","_type":"edge","_outV":"164","_inV":"86","_label":"followed_by"},{"weight":2,"_id":"1521","_type":"edge","_outV":"164","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"1522","_type":"edge","_outV":"164","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"1523","_type":"edge","_outV":"164","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1524","_type":"edge","_outV":"164","_inV":"93","_label":"followed_by"},{"weight":2,"_id":"1525","_type":"edge","_outV":"164","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"1526","_type":"edge","_outV":"164","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"1527","_type":"edge","_outV":"164","_inV":"185","_label":"followed_by"},{"weight":2,"_id":"1528","_type":"edge","_outV":"164","_inV":"236","_label":"followed_by"},{"weight":5,"_id":"1529","_type":"edge","_outV":"164","_inV":"216","_label":"followed_by"},{"weight":4,"_id":"153","_type":"edge","_outV":"108","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"1530","_type":"edge","_outV":"164","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1531","_type":"edge","_outV":"164","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"1532","_type":"edge","_outV":"164","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"1533","_type":"edge","_outV":"164","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"1534","_type":"edge","_outV":"164","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"1535","_type":"edge","_outV":"18","_inV":"235","_label":"followed_by"},{"weight":5,"_id":"1536","_type":"edge","_outV":"18","_inV":"59","_label":"followed_by"},{"weight":17,"_id":"1537","_type":"edge","_outV":"18","_inV":"19","_label":"followed_by"},{"weight":16,"_id":"1538","_type":"edge","_outV":"18","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"1539","_type":"edge","_outV":"18","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"154","_type":"edge","_outV":"108","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"1540","_type":"edge","_outV":"18","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"1541","_type":"edge","_outV":"18","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"1542","_type":"edge","_outV":"18","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"1543","_type":"edge","_outV":"18","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"1544","_type":"edge","_outV":"18","_inV":"94","_label":"followed_by"},{"weight":13,"_id":"1545","_type":"edge","_outV":"18","_inV":"58","_label":"followed_by"},{"weight":10,"_id":"1546","_type":"edge","_outV":"18","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1547","_type":"edge","_outV":"18","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"1548","_type":"edge","_outV":"18","_inV":"39","_label":"followed_by"},{"weight":29,"_id":"1549","_type":"edge","_outV":"18","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"155","_type":"edge","_outV":"108","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1550","_type":"edge","_outV":"18","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"1551","_type":"edge","_outV":"18","_inV":"152","_label":"followed_by"},{"weight":3,"_id":"1552","_type":"edge","_outV":"18","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1553","_type":"edge","_outV":"18","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"1554","_type":"edge","_outV":"18","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"1555","_type":"edge","_outV":"18","_inV":"225","_label":"followed_by"},{"weight":2,"_id":"1556","_type":"edge","_outV":"18","_inV":"80","_label":"followed_by"},{"weight":11,"_id":"1557","_type":"edge","_outV":"18","_inV":"56","_label":"followed_by"},{"weight":16,"_id":"1558","_type":"edge","_outV":"18","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1559","_type":"edge","_outV":"18","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"156","_type":"edge","_outV":"108","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"1560","_type":"edge","_outV":"18","_inV":"206","_label":"followed_by"},{"weight":5,"_id":"1561","_type":"edge","_outV":"18","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"1562","_type":"edge","_outV":"18","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"1563","_type":"edge","_outV":"18","_inV":"49","_label":"followed_by"},{"weight":26,"_id":"1564","_type":"edge","_outV":"18","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"1565","_type":"edge","_outV":"18","_inV":"55","_label":"followed_by"},{"weight":6,"_id":"1566","_type":"edge","_outV":"18","_inV":"202","_label":"followed_by"},{"weight":3,"_id":"1567","_type":"edge","_outV":"18","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"1568","_type":"edge","_outV":"18","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1569","_type":"edge","_outV":"18","_inV":"160","_label":"followed_by"},{"weight":5,"_id":"157","_type":"edge","_outV":"108","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"1570","_type":"edge","_outV":"18","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"1571","_type":"edge","_outV":"18","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"1572","_type":"edge","_outV":"18","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"1573","_type":"edge","_outV":"18","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"1574","_type":"edge","_outV":"18","_inV":"98","_label":"followed_by"},{"weight":5,"_id":"1575","_type":"edge","_outV":"18","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1576","_type":"edge","_outV":"18","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1577","_type":"edge","_outV":"18","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"1578","_type":"edge","_outV":"18","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1579","_type":"edge","_outV":"18","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"158","_type":"edge","_outV":"108","_inV":"97","_label":"followed_by"},{"weight":9,"_id":"1580","_type":"edge","_outV":"18","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"1581","_type":"edge","_outV":"18","_inV":"108","_label":"followed_by"},{"weight":4,"_id":"1582","_type":"edge","_outV":"18","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"1583","_type":"edge","_outV":"18","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1584","_type":"edge","_outV":"18","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"1585","_type":"edge","_outV":"18","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1586","_type":"edge","_outV":"18","_inV":"101","_label":"followed_by"},{"weight":5,"_id":"1587","_type":"edge","_outV":"18","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"1588","_type":"edge","_outV":"18","_inV":"208","_label":"followed_by"},{"weight":2,"_id":"1589","_type":"edge","_outV":"18","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"159","_type":"edge","_outV":"108","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1590","_type":"edge","_outV":"18","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"1591","_type":"edge","_outV":"18","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"1592","_type":"edge","_outV":"18","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"1593","_type":"edge","_outV":"18","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"1594","_type":"edge","_outV":"18","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"1595","_type":"edge","_outV":"18","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"1596","_type":"edge","_outV":"18","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"1597","_type":"edge","_outV":"18","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"1598","_type":"edge","_outV":"18","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1599","_type":"edge","_outV":"18","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"16","_type":"edge","_outV":"9","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"160","_type":"edge","_outV":"108","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"1600","_type":"edge","_outV":"18","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"1601","_type":"edge","_outV":"18","_inV":"199","_label":"followed_by"},{"weight":2,"_id":"1602","_type":"edge","_outV":"18","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1603","_type":"edge","_outV":"18","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"1604","_type":"edge","_outV":"18","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1605","_type":"edge","_outV":"18","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1606","_type":"edge","_outV":"18","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"1607","_type":"edge","_outV":"18","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"1608","_type":"edge","_outV":"18","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"1609","_type":"edge","_outV":"18","_inV":"254","_label":"followed_by"},{"weight":2,"_id":"161","_type":"edge","_outV":"108","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"1610","_type":"edge","_outV":"18","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"1611","_type":"edge","_outV":"18","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"1612","_type":"edge","_outV":"18","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"1613","_type":"edge","_outV":"210","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1614","_type":"edge","_outV":"210","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1615","_type":"edge","_outV":"210","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"1616","_type":"edge","_outV":"210","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"1617","_type":"edge","_outV":"210","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"1618","_type":"edge","_outV":"210","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"1619","_type":"edge","_outV":"210","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"162","_type":"edge","_outV":"108","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"1620","_type":"edge","_outV":"210","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1621","_type":"edge","_outV":"210","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1622","_type":"edge","_outV":"210","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"1623","_type":"edge","_outV":"210","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"1624","_type":"edge","_outV":"210","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1625","_type":"edge","_outV":"210","_inV":"78","_label":"followed_by"},{"weight":7,"_id":"1626","_type":"edge","_outV":"210","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"1627","_type":"edge","_outV":"210","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"1628","_type":"edge","_outV":"210","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1629","_type":"edge","_outV":"210","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"163","_type":"edge","_outV":"108","_inV":"105","_label":"followed_by"},{"weight":3,"_id":"1630","_type":"edge","_outV":"210","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1631","_type":"edge","_outV":"210","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1632","_type":"edge","_outV":"210","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"1633","_type":"edge","_outV":"210","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"1634","_type":"edge","_outV":"210","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1635","_type":"edge","_outV":"210","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1636","_type":"edge","_outV":"260","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"1637","_type":"edge","_outV":"213","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1638","_type":"edge","_outV":"213","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"1639","_type":"edge","_outV":"213","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"164","_type":"edge","_outV":"108","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1640","_type":"edge","_outV":"213","_inV":"261","_label":"followed_by"},{"weight":5,"_id":"1641","_type":"edge","_outV":"213","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1642","_type":"edge","_outV":"213","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1643","_type":"edge","_outV":"213","_inV":"67","_label":"followed_by"},{"weight":3,"_id":"1644","_type":"edge","_outV":"213","_inV":"65","_label":"followed_by"},{"weight":8,"_id":"1645","_type":"edge","_outV":"213","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1646","_type":"edge","_outV":"213","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1647","_type":"edge","_outV":"213","_inV":"23","_label":"followed_by"},{"weight":7,"_id":"1648","_type":"edge","_outV":"213","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1649","_type":"edge","_outV":"213","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"165","_type":"edge","_outV":"108","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1650","_type":"edge","_outV":"213","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"1651","_type":"edge","_outV":"213","_inV":"90","_label":"followed_by"},{"weight":3,"_id":"1652","_type":"edge","_outV":"213","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1653","_type":"edge","_outV":"213","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"1654","_type":"edge","_outV":"213","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1655","_type":"edge","_outV":"213","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"1656","_type":"edge","_outV":"213","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1657","_type":"edge","_outV":"213","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"1658","_type":"edge","_outV":"262","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1659","_type":"edge","_outV":"263","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"166","_type":"edge","_outV":"108","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"1660","_type":"edge","_outV":"263","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1661","_type":"edge","_outV":"264","_inV":"265","_label":"followed_by"},{"weight":1,"_id":"1662","_type":"edge","_outV":"264","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1663","_type":"edge","_outV":"264","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"1664","_type":"edge","_outV":"267","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1665","_type":"edge","_outV":"124","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1666","_type":"edge","_outV":"124","_inV":"111","_label":"followed_by"},{"weight":15,"_id":"1667","_type":"edge","_outV":"124","_inV":"4","_label":"followed_by"},{"weight":10,"_id":"1668","_type":"edge","_outV":"124","_inV":"50","_label":"followed_by"},{"weight":9,"_id":"1669","_type":"edge","_outV":"124","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"167","_type":"edge","_outV":"108","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"1670","_type":"edge","_outV":"124","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1671","_type":"edge","_outV":"124","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"1672","_type":"edge","_outV":"124","_inV":"154","_label":"followed_by"},{"weight":8,"_id":"1673","_type":"edge","_outV":"124","_inV":"38","_label":"followed_by"},{"weight":5,"_id":"1674","_type":"edge","_outV":"124","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1675","_type":"edge","_outV":"124","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"1676","_type":"edge","_outV":"124","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"1677","_type":"edge","_outV":"124","_inV":"31","_label":"followed_by"},{"weight":3,"_id":"1678","_type":"edge","_outV":"124","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1679","_type":"edge","_outV":"124","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"168","_type":"edge","_outV":"108","_inV":"113","_label":"followed_by"},{"weight":8,"_id":"1680","_type":"edge","_outV":"124","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1681","_type":"edge","_outV":"124","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"1682","_type":"edge","_outV":"124","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"1683","_type":"edge","_outV":"124","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"1684","_type":"edge","_outV":"124","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1685","_type":"edge","_outV":"124","_inV":"242","_label":"followed_by"},{"weight":8,"_id":"1686","_type":"edge","_outV":"124","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"1687","_type":"edge","_outV":"124","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1688","_type":"edge","_outV":"124","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"1689","_type":"edge","_outV":"124","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"169","_type":"edge","_outV":"108","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1690","_type":"edge","_outV":"124","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"1691","_type":"edge","_outV":"124","_inV":"270","_label":"followed_by"},{"weight":1,"_id":"1692","_type":"edge","_outV":"124","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"1693","_type":"edge","_outV":"124","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"1694","_type":"edge","_outV":"124","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1695","_type":"edge","_outV":"124","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"1696","_type":"edge","_outV":"124","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1697","_type":"edge","_outV":"124","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"1698","_type":"edge","_outV":"124","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1699","_type":"edge","_outV":"124","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"17","_type":"edge","_outV":"9","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"170","_type":"edge","_outV":"108","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"1700","_type":"edge","_outV":"124","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"1701","_type":"edge","_outV":"124","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"1702","_type":"edge","_outV":"124","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"1703","_type":"edge","_outV":"124","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"1704","_type":"edge","_outV":"124","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1705","_type":"edge","_outV":"124","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"1706","_type":"edge","_outV":"124","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1707","_type":"edge","_outV":"124","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1708","_type":"edge","_outV":"124","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1709","_type":"edge","_outV":"124","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"171","_type":"edge","_outV":"108","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1710","_type":"edge","_outV":"124","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"1711","_type":"edge","_outV":"82","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"1712","_type":"edge","_outV":"82","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1713","_type":"edge","_outV":"82","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"1714","_type":"edge","_outV":"82","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"1715","_type":"edge","_outV":"82","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"1716","_type":"edge","_outV":"82","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"1717","_type":"edge","_outV":"82","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"1718","_type":"edge","_outV":"82","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1719","_type":"edge","_outV":"82","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"172","_type":"edge","_outV":"108","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"1720","_type":"edge","_outV":"82","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"1721","_type":"edge","_outV":"82","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"1722","_type":"edge","_outV":"82","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1723","_type":"edge","_outV":"82","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"1724","_type":"edge","_outV":"82","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"1725","_type":"edge","_outV":"82","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"1726","_type":"edge","_outV":"82","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1727","_type":"edge","_outV":"82","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1728","_type":"edge","_outV":"82","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1729","_type":"edge","_outV":"82","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"173","_type":"edge","_outV":"108","_inV":"116","_label":"followed_by"},{"weight":4,"_id":"1730","_type":"edge","_outV":"82","_inV":"121","_label":"followed_by"},{"weight":4,"_id":"1731","_type":"edge","_outV":"82","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"1732","_type":"edge","_outV":"82","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"1733","_type":"edge","_outV":"82","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1734","_type":"edge","_outV":"82","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1735","_type":"edge","_outV":"82","_inV":"3","_label":"followed_by"},{"weight":239,"_id":"1736","_type":"edge","_outV":"82","_inV":"171","_label":"followed_by"},{"weight":3,"_id":"1737","_type":"edge","_outV":"82","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1738","_type":"edge","_outV":"82","_inV":"5","_label":"followed_by"},{"weight":8,"_id":"1739","_type":"edge","_outV":"82","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"174","_type":"edge","_outV":"108","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1740","_type":"edge","_outV":"82","_inV":"183","_label":"followed_by"},{"weight":3,"_id":"1741","_type":"edge","_outV":"82","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"1742","_type":"edge","_outV":"82","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1743","_type":"edge","_outV":"82","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"1744","_type":"edge","_outV":"82","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1745","_type":"edge","_outV":"82","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"1746","_type":"edge","_outV":"82","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"1747","_type":"edge","_outV":"82","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1748","_type":"edge","_outV":"82","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1749","_type":"edge","_outV":"82","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"175","_type":"edge","_outV":"108","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1750","_type":"edge","_outV":"28","_inV":"34","_label":"followed_by"},{"weight":10,"_id":"1751","_type":"edge","_outV":"28","_inV":"41","_label":"followed_by"},{"weight":8,"_id":"1752","_type":"edge","_outV":"28","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1753","_type":"edge","_outV":"28","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"1754","_type":"edge","_outV":"28","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"1755","_type":"edge","_outV":"28","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1756","_type":"edge","_outV":"28","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"1757","_type":"edge","_outV":"28","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1758","_type":"edge","_outV":"28","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"1759","_type":"edge","_outV":"28","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"176","_type":"edge","_outV":"108","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"1760","_type":"edge","_outV":"28","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"1761","_type":"edge","_outV":"28","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1762","_type":"edge","_outV":"28","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"1763","_type":"edge","_outV":"28","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"1764","_type":"edge","_outV":"28","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1765","_type":"edge","_outV":"28","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"1766","_type":"edge","_outV":"28","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"1767","_type":"edge","_outV":"28","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"1768","_type":"edge","_outV":"28","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"1769","_type":"edge","_outV":"28","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"177","_type":"edge","_outV":"108","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"1770","_type":"edge","_outV":"28","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"1771","_type":"edge","_outV":"28","_inV":"138","_label":"followed_by"},{"weight":2,"_id":"1772","_type":"edge","_outV":"28","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1773","_type":"edge","_outV":"234","_inV":"237","_label":"followed_by"},{"weight":2,"_id":"1774","_type":"edge","_outV":"234","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"1775","_type":"edge","_outV":"234","_inV":"11","_label":"followed_by"},{"weight":7,"_id":"1776","_type":"edge","_outV":"234","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"1777","_type":"edge","_outV":"234","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1778","_type":"edge","_outV":"234","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1779","_type":"edge","_outV":"234","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"178","_type":"edge","_outV":"70","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"1780","_type":"edge","_outV":"234","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1781","_type":"edge","_outV":"234","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"1782","_type":"edge","_outV":"234","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"1783","_type":"edge","_outV":"234","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1784","_type":"edge","_outV":"259","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"1785","_type":"edge","_outV":"259","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1786","_type":"edge","_outV":"259","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"1787","_type":"edge","_outV":"259","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"1788","_type":"edge","_outV":"259","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1789","_type":"edge","_outV":"259","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"179","_type":"edge","_outV":"70","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"1790","_type":"edge","_outV":"259","_inV":"272","_label":"followed_by"},{"weight":4,"_id":"1791","_type":"edge","_outV":"196","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"1792","_type":"edge","_outV":"196","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1793","_type":"edge","_outV":"196","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"1794","_type":"edge","_outV":"196","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"1795","_type":"edge","_outV":"196","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"1796","_type":"edge","_outV":"196","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"1797","_type":"edge","_outV":"196","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1798","_type":"edge","_outV":"196","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1799","_type":"edge","_outV":"196","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"18","_type":"edge","_outV":"9","_inV":"22","_label":"followed_by"},{"weight":46,"_id":"180","_type":"edge","_outV":"70","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"1800","_type":"edge","_outV":"196","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1801","_type":"edge","_outV":"196","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1802","_type":"edge","_outV":"196","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1803","_type":"edge","_outV":"196","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"1804","_type":"edge","_outV":"196","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"1805","_type":"edge","_outV":"196","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"1806","_type":"edge","_outV":"196","_inV":"84","_label":"followed_by"},{"weight":10,"_id":"1807","_type":"edge","_outV":"199","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"1808","_type":"edge","_outV":"199","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1809","_type":"edge","_outV":"199","_inV":"20","_label":"followed_by"},{"weight":4,"_id":"181","_type":"edge","_outV":"70","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"1810","_type":"edge","_outV":"199","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"1811","_type":"edge","_outV":"199","_inV":"64","_label":"followed_by"},{"weight":4,"_id":"1812","_type":"edge","_outV":"273","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"1813","_type":"edge","_outV":"273","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"1814","_type":"edge","_outV":"273","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"1815","_type":"edge","_outV":"273","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"1816","_type":"edge","_outV":"273","_inV":"111","_label":"followed_by"},{"weight":2,"_id":"1817","_type":"edge","_outV":"273","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1818","_type":"edge","_outV":"273","_inV":"20","_label":"followed_by"},{"weight":38,"_id":"1819","_type":"edge","_outV":"41","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"182","_type":"edge","_outV":"70","_inV":"120","_label":"followed_by"},{"weight":7,"_id":"1820","_type":"edge","_outV":"41","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"1821","_type":"edge","_outV":"41","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1822","_type":"edge","_outV":"41","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"1823","_type":"edge","_outV":"41","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1824","_type":"edge","_outV":"41","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"1825","_type":"edge","_outV":"41","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1826","_type":"edge","_outV":"41","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1827","_type":"edge","_outV":"41","_inV":"89","_label":"followed_by"},{"weight":3,"_id":"1828","_type":"edge","_outV":"41","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"1829","_type":"edge","_outV":"41","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"183","_type":"edge","_outV":"70","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1830","_type":"edge","_outV":"41","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"1831","_type":"edge","_outV":"41","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1832","_type":"edge","_outV":"41","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"1833","_type":"edge","_outV":"41","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"1834","_type":"edge","_outV":"41","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"1835","_type":"edge","_outV":"41","_inV":"274","_label":"followed_by"},{"weight":1,"_id":"1836","_type":"edge","_outV":"41","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"1837","_type":"edge","_outV":"275","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"1838","_type":"edge","_outV":"275","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"1839","_type":"edge","_outV":"275","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"184","_type":"edge","_outV":"70","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1840","_type":"edge","_outV":"275","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"1841","_type":"edge","_outV":"275","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1842","_type":"edge","_outV":"275","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"1843","_type":"edge","_outV":"275","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"1844","_type":"edge","_outV":"275","_inV":"96","_label":"followed_by"},{"weight":8,"_id":"1845","_type":"edge","_outV":"94","_inV":"21","_label":"followed_by"},{"weight":5,"_id":"1846","_type":"edge","_outV":"94","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"1847","_type":"edge","_outV":"94","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1848","_type":"edge","_outV":"94","_inV":"19","_label":"followed_by"},{"weight":6,"_id":"1849","_type":"edge","_outV":"94","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"185","_type":"edge","_outV":"70","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1850","_type":"edge","_outV":"94","_inV":"39","_label":"followed_by"},{"weight":80,"_id":"1851","_type":"edge","_outV":"94","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1852","_type":"edge","_outV":"94","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1853","_type":"edge","_outV":"94","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"1854","_type":"edge","_outV":"94","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"1855","_type":"edge","_outV":"94","_inV":"83","_label":"followed_by"},{"weight":54,"_id":"1856","_type":"edge","_outV":"94","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"1857","_type":"edge","_outV":"94","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"1858","_type":"edge","_outV":"94","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1859","_type":"edge","_outV":"94","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"186","_type":"edge","_outV":"70","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"1860","_type":"edge","_outV":"94","_inV":"10","_label":"followed_by"},{"weight":13,"_id":"1861","_type":"edge","_outV":"94","_inV":"114","_label":"followed_by"},{"weight":10,"_id":"1862","_type":"edge","_outV":"94","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"1863","_type":"edge","_outV":"94","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"1864","_type":"edge","_outV":"94","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"1865","_type":"edge","_outV":"94","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"1866","_type":"edge","_outV":"94","_inV":"110","_label":"followed_by"},{"weight":15,"_id":"1867","_type":"edge","_outV":"94","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1868","_type":"edge","_outV":"94","_inV":"154","_label":"followed_by"},{"weight":19,"_id":"1869","_type":"edge","_outV":"94","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"187","_type":"edge","_outV":"70","_inV":"42","_label":"followed_by"},{"weight":9,"_id":"1870","_type":"edge","_outV":"94","_inV":"70","_label":"followed_by"},{"weight":43,"_id":"1871","_type":"edge","_outV":"94","_inV":"29","_label":"followed_by"},{"weight":24,"_id":"1872","_type":"edge","_outV":"94","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"1873","_type":"edge","_outV":"94","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1874","_type":"edge","_outV":"94","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"1875","_type":"edge","_outV":"94","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"1876","_type":"edge","_outV":"103","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"1877","_type":"edge","_outV":"103","_inV":"17","_label":"followed_by"},{"weight":31,"_id":"1878","_type":"edge","_outV":"103","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"1879","_type":"edge","_outV":"103","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"188","_type":"edge","_outV":"70","_inV":"121","_label":"followed_by"},{"weight":15,"_id":"1880","_type":"edge","_outV":"103","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"1881","_type":"edge","_outV":"103","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"1882","_type":"edge","_outV":"103","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"1883","_type":"edge","_outV":"103","_inV":"60","_label":"followed_by"},{"weight":11,"_id":"1884","_type":"edge","_outV":"103","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"1885","_type":"edge","_outV":"103","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"1886","_type":"edge","_outV":"103","_inV":"83","_label":"followed_by"},{"weight":10,"_id":"1887","_type":"edge","_outV":"103","_inV":"99","_label":"followed_by"},{"weight":5,"_id":"1888","_type":"edge","_outV":"103","_inV":"78","_label":"followed_by"},{"weight":7,"_id":"1889","_type":"edge","_outV":"103","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"189","_type":"edge","_outV":"70","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"1890","_type":"edge","_outV":"103","_inV":"94","_label":"followed_by"},{"weight":19,"_id":"1891","_type":"edge","_outV":"103","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"1892","_type":"edge","_outV":"103","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"1893","_type":"edge","_outV":"103","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"1894","_type":"edge","_outV":"103","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"1895","_type":"edge","_outV":"103","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"1896","_type":"edge","_outV":"103","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1897","_type":"edge","_outV":"103","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1898","_type":"edge","_outV":"103","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"1899","_type":"edge","_outV":"103","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"19","_type":"edge","_outV":"9","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"190","_type":"edge","_outV":"70","_inV":"82","_label":"followed_by"},{"weight":22,"_id":"1900","_type":"edge","_outV":"103","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"1901","_type":"edge","_outV":"103","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"1902","_type":"edge","_outV":"103","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"1903","_type":"edge","_outV":"103","_inV":"26","_label":"followed_by"},{"weight":18,"_id":"1904","_type":"edge","_outV":"103","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"1905","_type":"edge","_outV":"103","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"1906","_type":"edge","_outV":"103","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"1907","_type":"edge","_outV":"103","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"1908","_type":"edge","_outV":"103","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"1909","_type":"edge","_outV":"103","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"191","_type":"edge","_outV":"70","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"1910","_type":"edge","_outV":"103","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"1911","_type":"edge","_outV":"103","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"1912","_type":"edge","_outV":"103","_inV":"115","_label":"followed_by"},{"weight":6,"_id":"1913","_type":"edge","_outV":"103","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"1914","_type":"edge","_outV":"103","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"1915","_type":"edge","_outV":"103","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"1916","_type":"edge","_outV":"103","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"1917","_type":"edge","_outV":"103","_inV":"75","_label":"followed_by"},{"weight":4,"_id":"1918","_type":"edge","_outV":"103","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"1919","_type":"edge","_outV":"103","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"192","_type":"edge","_outV":"70","_inV":"123","_label":"followed_by"},{"weight":5,"_id":"1920","_type":"edge","_outV":"103","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"1921","_type":"edge","_outV":"103","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"1922","_type":"edge","_outV":"103","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"1923","_type":"edge","_outV":"103","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"1924","_type":"edge","_outV":"103","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"1925","_type":"edge","_outV":"103","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"1926","_type":"edge","_outV":"103","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"1927","_type":"edge","_outV":"148","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"1928","_type":"edge","_outV":"148","_inV":"23","_label":"followed_by"},{"weight":24,"_id":"1929","_type":"edge","_outV":"148","_inV":"127","_label":"followed_by"},{"weight":4,"_id":"193","_type":"edge","_outV":"70","_inV":"74","_label":"followed_by"},{"weight":143,"_id":"1930","_type":"edge","_outV":"148","_inV":"130","_label":"followed_by"},{"weight":7,"_id":"1931","_type":"edge","_outV":"148","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"1932","_type":"edge","_outV":"148","_inV":"160","_label":"followed_by"},{"weight":84,"_id":"1933","_type":"edge","_outV":"148","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1934","_type":"edge","_outV":"148","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"1935","_type":"edge","_outV":"148","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"1936","_type":"edge","_outV":"148","_inV":"89","_label":"followed_by"},{"weight":28,"_id":"1937","_type":"edge","_outV":"148","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1938","_type":"edge","_outV":"148","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1939","_type":"edge","_outV":"148","_inV":"252","_label":"followed_by"},{"weight":8,"_id":"194","_type":"edge","_outV":"70","_inV":"5","_label":"followed_by"},{"weight":9,"_id":"1940","_type":"edge","_outV":"148","_inV":"141","_label":"followed_by"},{"weight":4,"_id":"1941","_type":"edge","_outV":"148","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"1942","_type":"edge","_outV":"148","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"1943","_type":"edge","_outV":"148","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"1944","_type":"edge","_outV":"148","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"1945","_type":"edge","_outV":"148","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"1946","_type":"edge","_outV":"148","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"1947","_type":"edge","_outV":"148","_inV":"14","_label":"followed_by"},{"weight":35,"_id":"1948","_type":"edge","_outV":"148","_inV":"125","_label":"followed_by"},{"weight":6,"_id":"1949","_type":"edge","_outV":"148","_inV":"21","_label":"followed_by"},{"weight":30,"_id":"195","_type":"edge","_outV":"70","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"1950","_type":"edge","_outV":"148","_inV":"16","_label":"followed_by"},{"weight":14,"_id":"1951","_type":"edge","_outV":"148","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"1952","_type":"edge","_outV":"148","_inV":"149","_label":"followed_by"},{"weight":10,"_id":"1953","_type":"edge","_outV":"148","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"1954","_type":"edge","_outV":"148","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"1955","_type":"edge","_outV":"148","_inV":"276","_label":"followed_by"},{"weight":1,"_id":"1956","_type":"edge","_outV":"148","_inV":"219","_label":"followed_by"},{"weight":1,"_id":"1957","_type":"edge","_outV":"148","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"1958","_type":"edge","_outV":"148","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"1959","_type":"edge","_outV":"148","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"196","_type":"edge","_outV":"70","_inV":"124","_label":"followed_by"},{"weight":6,"_id":"1960","_type":"edge","_outV":"148","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"1961","_type":"edge","_outV":"148","_inV":"277","_label":"followed_by"},{"weight":4,"_id":"1962","_type":"edge","_outV":"148","_inV":"129","_label":"followed_by"},{"weight":3,"_id":"1963","_type":"edge","_outV":"148","_inV":"29","_label":"followed_by"},{"weight":4,"_id":"1964","_type":"edge","_outV":"148","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"1965","_type":"edge","_outV":"148","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"1966","_type":"edge","_outV":"148","_inV":"25","_label":"followed_by"},{"weight":4,"_id":"1967","_type":"edge","_outV":"148","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"1968","_type":"edge","_outV":"148","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"1969","_type":"edge","_outV":"148","_inV":"135","_label":"followed_by"},{"weight":27,"_id":"197","_type":"edge","_outV":"70","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"1970","_type":"edge","_outV":"148","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"1971","_type":"edge","_outV":"148","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"1972","_type":"edge","_outV":"148","_inV":"137","_label":"followed_by"},{"weight":5,"_id":"1973","_type":"edge","_outV":"148","_inV":"138","_label":"followed_by"},{"weight":2,"_id":"1974","_type":"edge","_outV":"148","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"1975","_type":"edge","_outV":"148","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"1976","_type":"edge","_outV":"148","_inV":"179","_label":"followed_by"},{"weight":1,"_id":"1977","_type":"edge","_outV":"148","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"1978","_type":"edge","_outV":"279","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"1979","_type":"edge","_outV":"280","_inV":"95","_label":"followed_by"},{"weight":1,"_id":"198","_type":"edge","_outV":"70","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"1980","_type":"edge","_outV":"281","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"1981","_type":"edge","_outV":"281","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"1982","_type":"edge","_outV":"253","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"1983","_type":"edge","_outV":"253","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"1984","_type":"edge","_outV":"152","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"1985","_type":"edge","_outV":"152","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"1986","_type":"edge","_outV":"152","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"1987","_type":"edge","_outV":"152","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"1988","_type":"edge","_outV":"152","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"1989","_type":"edge","_outV":"152","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"199","_type":"edge","_outV":"70","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"1990","_type":"edge","_outV":"152","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"1991","_type":"edge","_outV":"152","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"1992","_type":"edge","_outV":"152","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"1993","_type":"edge","_outV":"152","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"1994","_type":"edge","_outV":"152","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"1995","_type":"edge","_outV":"152","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"1996","_type":"edge","_outV":"152","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"1997","_type":"edge","_outV":"152","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"1998","_type":"edge","_outV":"152","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"1999","_type":"edge","_outV":"152","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2","_type":"edge","_outV":"1","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"20","_type":"edge","_outV":"9","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"200","_type":"edge","_outV":"70","_inV":"126","_label":"followed_by"},{"weight":1,"_id":"2000","_type":"edge","_outV":"152","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2001","_type":"edge","_outV":"152","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2002","_type":"edge","_outV":"152","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2003","_type":"edge","_outV":"152","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2004","_type":"edge","_outV":"251","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2005","_type":"edge","_outV":"251","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2006","_type":"edge","_outV":"149","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2007","_type":"edge","_outV":"149","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"2008","_type":"edge","_outV":"149","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"2009","_type":"edge","_outV":"149","_inV":"74","_label":"followed_by"},{"weight":18,"_id":"201","_type":"edge","_outV":"70","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"2010","_type":"edge","_outV":"149","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2011","_type":"edge","_outV":"149","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2012","_type":"edge","_outV":"149","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"2013","_type":"edge","_outV":"149","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2014","_type":"edge","_outV":"149","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"2015","_type":"edge","_outV":"149","_inV":"134","_label":"followed_by"},{"weight":8,"_id":"2016","_type":"edge","_outV":"149","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2017","_type":"edge","_outV":"149","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2018","_type":"edge","_outV":"149","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2019","_type":"edge","_outV":"149","_inV":"29","_label":"followed_by"},{"weight":4,"_id":"202","_type":"edge","_outV":"70","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"2020","_type":"edge","_outV":"149","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2021","_type":"edge","_outV":"149","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2022","_type":"edge","_outV":"149","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"2023","_type":"edge","_outV":"282","_inV":"6","_label":"followed_by"},{"weight":1,"_id":"2024","_type":"edge","_outV":"283","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"2025","_type":"edge","_outV":"180","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"2026","_type":"edge","_outV":"180","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"2027","_type":"edge","_outV":"180","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"2028","_type":"edge","_outV":"180","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"2029","_type":"edge","_outV":"180","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"203","_type":"edge","_outV":"70","_inV":"128","_label":"followed_by"},{"weight":2,"_id":"2030","_type":"edge","_outV":"180","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"2031","_type":"edge","_outV":"180","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2032","_type":"edge","_outV":"180","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"2033","_type":"edge","_outV":"180","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"2034","_type":"edge","_outV":"180","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2035","_type":"edge","_outV":"180","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2036","_type":"edge","_outV":"180","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2037","_type":"edge","_outV":"180","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"2038","_type":"edge","_outV":"92","_inV":"76","_label":"followed_by"},{"weight":11,"_id":"2039","_type":"edge","_outV":"92","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"204","_type":"edge","_outV":"70","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"2040","_type":"edge","_outV":"92","_inV":"21","_label":"followed_by"},{"weight":7,"_id":"2041","_type":"edge","_outV":"92","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2042","_type":"edge","_outV":"92","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2043","_type":"edge","_outV":"92","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"2044","_type":"edge","_outV":"92","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2045","_type":"edge","_outV":"92","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2046","_type":"edge","_outV":"92","_inV":"151","_label":"followed_by"},{"weight":7,"_id":"2047","_type":"edge","_outV":"92","_inV":"29","_label":"followed_by"},{"weight":11,"_id":"2048","_type":"edge","_outV":"92","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"2049","_type":"edge","_outV":"92","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"205","_type":"edge","_outV":"70","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2050","_type":"edge","_outV":"92","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"2051","_type":"edge","_outV":"92","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2052","_type":"edge","_outV":"92","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2053","_type":"edge","_outV":"92","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2054","_type":"edge","_outV":"92","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2055","_type":"edge","_outV":"92","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2056","_type":"edge","_outV":"92","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"2057","_type":"edge","_outV":"92","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2058","_type":"edge","_outV":"92","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"2059","_type":"edge","_outV":"92","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"206","_type":"edge","_outV":"70","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2060","_type":"edge","_outV":"92","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"2061","_type":"edge","_outV":"92","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"2062","_type":"edge","_outV":"92","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2063","_type":"edge","_outV":"92","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2064","_type":"edge","_outV":"188","_inV":"284","_label":"followed_by"},{"weight":2,"_id":"2065","_type":"edge","_outV":"188","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"2066","_type":"edge","_outV":"188","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2067","_type":"edge","_outV":"188","_inV":"77","_label":"followed_by"},{"weight":14,"_id":"2068","_type":"edge","_outV":"188","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"2069","_type":"edge","_outV":"188","_inV":"51","_label":"followed_by"},{"weight":21,"_id":"207","_type":"edge","_outV":"70","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"2070","_type":"edge","_outV":"188","_inV":"105","_label":"followed_by"},{"weight":15,"_id":"2071","_type":"edge","_outV":"188","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"2072","_type":"edge","_outV":"188","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2073","_type":"edge","_outV":"188","_inV":"152","_label":"followed_by"},{"weight":9,"_id":"2074","_type":"edge","_outV":"188","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2075","_type":"edge","_outV":"188","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"2076","_type":"edge","_outV":"188","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"2077","_type":"edge","_outV":"188","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"2078","_type":"edge","_outV":"188","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"2079","_type":"edge","_outV":"188","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"208","_type":"edge","_outV":"70","_inV":"13","_label":"followed_by"},{"weight":12,"_id":"2080","_type":"edge","_outV":"188","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2081","_type":"edge","_outV":"188","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"2082","_type":"edge","_outV":"188","_inV":"169","_label":"followed_by"},{"weight":4,"_id":"2083","_type":"edge","_outV":"188","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2084","_type":"edge","_outV":"188","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2085","_type":"edge","_outV":"188","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"2086","_type":"edge","_outV":"188","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2087","_type":"edge","_outV":"188","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"2088","_type":"edge","_outV":"188","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"2089","_type":"edge","_outV":"188","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"209","_type":"edge","_outV":"70","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"2090","_type":"edge","_outV":"188","_inV":"57","_label":"followed_by"},{"weight":8,"_id":"2091","_type":"edge","_outV":"188","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"2092","_type":"edge","_outV":"188","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"2093","_type":"edge","_outV":"188","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"2094","_type":"edge","_outV":"188","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"2095","_type":"edge","_outV":"188","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"2096","_type":"edge","_outV":"188","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2097","_type":"edge","_outV":"188","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2098","_type":"edge","_outV":"188","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"2099","_type":"edge","_outV":"188","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"21","_type":"edge","_outV":"9","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"210","_type":"edge","_outV":"70","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"2100","_type":"edge","_outV":"188","_inV":"254","_label":"followed_by"},{"weight":6,"_id":"2101","_type":"edge","_outV":"188","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"2102","_type":"edge","_outV":"188","_inV":"190","_label":"followed_by"},{"weight":17,"_id":"2103","_type":"edge","_outV":"17","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2104","_type":"edge","_outV":"17","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"2105","_type":"edge","_outV":"17","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"2106","_type":"edge","_outV":"17","_inV":"50","_label":"followed_by"},{"weight":19,"_id":"2107","_type":"edge","_outV":"17","_inV":"14","_label":"followed_by"},{"weight":8,"_id":"2108","_type":"edge","_outV":"17","_inV":"15","_label":"followed_by"},{"weight":24,"_id":"2109","_type":"edge","_outV":"17","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"211","_type":"edge","_outV":"70","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"2110","_type":"edge","_outV":"17","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"2111","_type":"edge","_outV":"17","_inV":"13","_label":"followed_by"},{"weight":9,"_id":"2112","_type":"edge","_outV":"17","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"2113","_type":"edge","_outV":"17","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2114","_type":"edge","_outV":"17","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2115","_type":"edge","_outV":"17","_inV":"20","_label":"followed_by"},{"weight":7,"_id":"2116","_type":"edge","_outV":"17","_inV":"10","_label":"followed_by"},{"weight":25,"_id":"2117","_type":"edge","_outV":"17","_inV":"68","_label":"followed_by"},{"weight":19,"_id":"2118","_type":"edge","_outV":"17","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"2119","_type":"edge","_outV":"17","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"212","_type":"edge","_outV":"70","_inV":"131","_label":"followed_by"},{"weight":3,"_id":"2120","_type":"edge","_outV":"17","_inV":"121","_label":"followed_by"},{"weight":31,"_id":"2121","_type":"edge","_outV":"17","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"2122","_type":"edge","_outV":"17","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2123","_type":"edge","_outV":"17","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2124","_type":"edge","_outV":"17","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"2125","_type":"edge","_outV":"17","_inV":"73","_label":"followed_by"},{"weight":8,"_id":"2126","_type":"edge","_outV":"17","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"2127","_type":"edge","_outV":"17","_inV":"111","_label":"followed_by"},{"weight":2,"_id":"2128","_type":"edge","_outV":"17","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"2129","_type":"edge","_outV":"17","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"213","_type":"edge","_outV":"70","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2130","_type":"edge","_outV":"17","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2131","_type":"edge","_outV":"17","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"2132","_type":"edge","_outV":"17","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2133","_type":"edge","_outV":"17","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"2134","_type":"edge","_outV":"17","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2135","_type":"edge","_outV":"17","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2136","_type":"edge","_outV":"17","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2137","_type":"edge","_outV":"17","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"2138","_type":"edge","_outV":"17","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2139","_type":"edge","_outV":"17","_inV":"31","_label":"followed_by"},{"weight":13,"_id":"214","_type":"edge","_outV":"70","_inV":"132","_label":"followed_by"},{"weight":2,"_id":"2140","_type":"edge","_outV":"17","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"2141","_type":"edge","_outV":"17","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"2142","_type":"edge","_outV":"17","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"2143","_type":"edge","_outV":"286","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2144","_type":"edge","_outV":"286","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2145","_type":"edge","_outV":"286","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"2146","_type":"edge","_outV":"228","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2147","_type":"edge","_outV":"228","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2148","_type":"edge","_outV":"151","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2149","_type":"edge","_outV":"151","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"215","_type":"edge","_outV":"70","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"2150","_type":"edge","_outV":"151","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2151","_type":"edge","_outV":"151","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2152","_type":"edge","_outV":"151","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2153","_type":"edge","_outV":"151","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"2154","_type":"edge","_outV":"151","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"2155","_type":"edge","_outV":"151","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2156","_type":"edge","_outV":"151","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"2157","_type":"edge","_outV":"151","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2158","_type":"edge","_outV":"151","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"2159","_type":"edge","_outV":"151","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"216","_type":"edge","_outV":"70","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2160","_type":"edge","_outV":"151","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"2161","_type":"edge","_outV":"151","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2162","_type":"edge","_outV":"151","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2163","_type":"edge","_outV":"151","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2164","_type":"edge","_outV":"151","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2165","_type":"edge","_outV":"151","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2166","_type":"edge","_outV":"151","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2167","_type":"edge","_outV":"151","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2168","_type":"edge","_outV":"151","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2169","_type":"edge","_outV":"16","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"217","_type":"edge","_outV":"70","_inV":"29","_label":"followed_by"},{"weight":46,"_id":"2170","_type":"edge","_outV":"16","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"2171","_type":"edge","_outV":"16","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2172","_type":"edge","_outV":"16","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2173","_type":"edge","_outV":"16","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"2174","_type":"edge","_outV":"208","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"2175","_type":"edge","_outV":"208","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"2176","_type":"edge","_outV":"208","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2177","_type":"edge","_outV":"208","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"2178","_type":"edge","_outV":"208","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"2179","_type":"edge","_outV":"208","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"218","_type":"edge","_outV":"70","_inV":"134","_label":"followed_by"},{"weight":5,"_id":"2180","_type":"edge","_outV":"208","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"2181","_type":"edge","_outV":"208","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2182","_type":"edge","_outV":"208","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2183","_type":"edge","_outV":"208","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2184","_type":"edge","_outV":"208","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2185","_type":"edge","_outV":"208","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2186","_type":"edge","_outV":"208","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2187","_type":"edge","_outV":"235","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"2188","_type":"edge","_outV":"235","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2189","_type":"edge","_outV":"235","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"219","_type":"edge","_outV":"70","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2190","_type":"edge","_outV":"235","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2191","_type":"edge","_outV":"235","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2192","_type":"edge","_outV":"235","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2193","_type":"edge","_outV":"235","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"2194","_type":"edge","_outV":"235","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2195","_type":"edge","_outV":"235","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"2196","_type":"edge","_outV":"75","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2197","_type":"edge","_outV":"75","_inV":"59","_label":"followed_by"},{"weight":6,"_id":"2198","_type":"edge","_outV":"75","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2199","_type":"edge","_outV":"75","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"22","_type":"edge","_outV":"9","_inV":"26","_label":"followed_by"},{"weight":20,"_id":"220","_type":"edge","_outV":"70","_inV":"92","_label":"followed_by"},{"weight":2,"_id":"2200","_type":"edge","_outV":"75","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2201","_type":"edge","_outV":"75","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"2202","_type":"edge","_outV":"75","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2203","_type":"edge","_outV":"75","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"2204","_type":"edge","_outV":"75","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2205","_type":"edge","_outV":"75","_inV":"42","_label":"followed_by"},{"weight":7,"_id":"2206","_type":"edge","_outV":"75","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"2207","_type":"edge","_outV":"75","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"2208","_type":"edge","_outV":"75","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2209","_type":"edge","_outV":"75","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"221","_type":"edge","_outV":"70","_inV":"135","_label":"followed_by"},{"weight":1,"_id":"2210","_type":"edge","_outV":"75","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2211","_type":"edge","_outV":"75","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"2212","_type":"edge","_outV":"75","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"2213","_type":"edge","_outV":"75","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2214","_type":"edge","_outV":"75","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2215","_type":"edge","_outV":"75","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2216","_type":"edge","_outV":"75","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2217","_type":"edge","_outV":"75","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"2218","_type":"edge","_outV":"75","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"2219","_type":"edge","_outV":"75","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"222","_type":"edge","_outV":"70","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2220","_type":"edge","_outV":"75","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2221","_type":"edge","_outV":"75","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2222","_type":"edge","_outV":"75","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2223","_type":"edge","_outV":"226","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"2224","_type":"edge","_outV":"226","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"2225","_type":"edge","_outV":"226","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2226","_type":"edge","_outV":"250","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"2227","_type":"edge","_outV":"250","_inV":"265","_label":"followed_by"},{"weight":1,"_id":"2228","_type":"edge","_outV":"250","_inV":"287","_label":"followed_by"},{"weight":97,"_id":"2229","_type":"edge","_outV":"215","_inV":"154","_label":"followed_by"},{"weight":6,"_id":"223","_type":"edge","_outV":"70","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"2230","_type":"edge","_outV":"215","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2231","_type":"edge","_outV":"215","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2232","_type":"edge","_outV":"215","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2233","_type":"edge","_outV":"215","_inV":"171","_label":"followed_by"},{"weight":8,"_id":"2234","_type":"edge","_outV":"215","_inV":"288","_label":"followed_by"},{"weight":163,"_id":"2235","_type":"edge","_outV":"29","_inV":"3","_label":"followed_by"},{"weight":5,"_id":"2236","_type":"edge","_outV":"29","_inV":"5","_label":"followed_by"},{"weight":6,"_id":"2237","_type":"edge","_outV":"29","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"2238","_type":"edge","_outV":"29","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2239","_type":"edge","_outV":"29","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"224","_type":"edge","_outV":"70","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"2240","_type":"edge","_outV":"29","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"2241","_type":"edge","_outV":"29","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2242","_type":"edge","_outV":"29","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"2243","_type":"edge","_outV":"29","_inV":"96","_label":"followed_by"},{"weight":11,"_id":"2244","_type":"edge","_outV":"29","_inV":"114","_label":"followed_by"},{"weight":7,"_id":"2245","_type":"edge","_outV":"29","_inV":"125","_label":"followed_by"},{"weight":5,"_id":"2246","_type":"edge","_outV":"29","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2247","_type":"edge","_outV":"29","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2248","_type":"edge","_outV":"29","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2249","_type":"edge","_outV":"29","_inV":"94","_label":"followed_by"},{"weight":9,"_id":"225","_type":"edge","_outV":"70","_inV":"138","_label":"followed_by"},{"weight":46,"_id":"2250","_type":"edge","_outV":"29","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2251","_type":"edge","_outV":"29","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"2252","_type":"edge","_outV":"29","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"2253","_type":"edge","_outV":"29","_inV":"264","_label":"followed_by"},{"weight":1,"_id":"2254","_type":"edge","_outV":"29","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2255","_type":"edge","_outV":"29","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2256","_type":"edge","_outV":"29","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2257","_type":"edge","_outV":"29","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2258","_type":"edge","_outV":"29","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"2259","_type":"edge","_outV":"29","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"226","_type":"edge","_outV":"70","_inV":"139","_label":"followed_by"},{"weight":2,"_id":"2260","_type":"edge","_outV":"29","_inV":"38","_label":"followed_by"},{"weight":16,"_id":"2261","_type":"edge","_outV":"25","_inV":"122","_label":"followed_by"},{"weight":16,"_id":"2262","_type":"edge","_outV":"25","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"2263","_type":"edge","_outV":"25","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2264","_type":"edge","_outV":"25","_inV":"53","_label":"followed_by"},{"weight":31,"_id":"2265","_type":"edge","_outV":"25","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"2266","_type":"edge","_outV":"25","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2267","_type":"edge","_outV":"25","_inV":"104","_label":"followed_by"},{"weight":8,"_id":"2268","_type":"edge","_outV":"25","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2269","_type":"edge","_outV":"25","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"227","_type":"edge","_outV":"70","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"2270","_type":"edge","_outV":"25","_inV":"278","_label":"followed_by"},{"weight":4,"_id":"2271","_type":"edge","_outV":"25","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"2272","_type":"edge","_outV":"25","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"2273","_type":"edge","_outV":"25","_inV":"51","_label":"followed_by"},{"weight":8,"_id":"2274","_type":"edge","_outV":"25","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2275","_type":"edge","_outV":"25","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"2276","_type":"edge","_outV":"25","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2277","_type":"edge","_outV":"25","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"2278","_type":"edge","_outV":"25","_inV":"3","_label":"followed_by"},{"weight":4,"_id":"2279","_type":"edge","_outV":"25","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"228","_type":"edge","_outV":"70","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"2280","_type":"edge","_outV":"25","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"2281","_type":"edge","_outV":"25","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"2282","_type":"edge","_outV":"25","_inV":"89","_label":"followed_by"},{"weight":9,"_id":"2283","_type":"edge","_outV":"25","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"2284","_type":"edge","_outV":"25","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2285","_type":"edge","_outV":"25","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2286","_type":"edge","_outV":"25","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2287","_type":"edge","_outV":"25","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"2288","_type":"edge","_outV":"25","_inV":"82","_label":"followed_by"},{"weight":21,"_id":"2289","_type":"edge","_outV":"25","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"229","_type":"edge","_outV":"70","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"2290","_type":"edge","_outV":"25","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2291","_type":"edge","_outV":"25","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"2292","_type":"edge","_outV":"25","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2293","_type":"edge","_outV":"25","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"2294","_type":"edge","_outV":"25","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"2295","_type":"edge","_outV":"25","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"2296","_type":"edge","_outV":"25","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2297","_type":"edge","_outV":"25","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2298","_type":"edge","_outV":"25","_inV":"78","_label":"followed_by"},{"weight":10,"_id":"2299","_type":"edge","_outV":"25","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"23","_type":"edge","_outV":"9","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"230","_type":"edge","_outV":"142","_inV":"143","_label":"followed_by"},{"weight":7,"_id":"2300","_type":"edge","_outV":"25","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"2301","_type":"edge","_outV":"25","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2302","_type":"edge","_outV":"25","_inV":"76","_label":"followed_by"},{"weight":7,"_id":"2303","_type":"edge","_outV":"25","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"2304","_type":"edge","_outV":"25","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2305","_type":"edge","_outV":"25","_inV":"109","_label":"followed_by"},{"weight":10,"_id":"2306","_type":"edge","_outV":"25","_inV":"84","_label":"followed_by"},{"weight":16,"_id":"2307","_type":"edge","_outV":"25","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"2308","_type":"edge","_outV":"25","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"2309","_type":"edge","_outV":"25","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"231","_type":"edge","_outV":"142","_inV":"107","_label":"followed_by"},{"weight":1,"_id":"2310","_type":"edge","_outV":"25","_inV":"289","_label":"followed_by"},{"weight":71,"_id":"2311","_type":"edge","_outV":"25","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2312","_type":"edge","_outV":"25","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"2313","_type":"edge","_outV":"25","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2314","_type":"edge","_outV":"25","_inV":"166","_label":"followed_by"},{"weight":6,"_id":"2315","_type":"edge","_outV":"25","_inV":"133","_label":"followed_by"},{"weight":4,"_id":"2316","_type":"edge","_outV":"25","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"2317","_type":"edge","_outV":"25","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2318","_type":"edge","_outV":"25","_inV":"211","_label":"followed_by"},{"weight":5,"_id":"2319","_type":"edge","_outV":"25","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"232","_type":"edge","_outV":"144","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"2320","_type":"edge","_outV":"25","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"2321","_type":"edge","_outV":"25","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"2322","_type":"edge","_outV":"25","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2323","_type":"edge","_outV":"25","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"2324","_type":"edge","_outV":"25","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"2325","_type":"edge","_outV":"25","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"2326","_type":"edge","_outV":"25","_inV":"150","_label":"followed_by"},{"weight":9,"_id":"2327","_type":"edge","_outV":"25","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"2328","_type":"edge","_outV":"25","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"2329","_type":"edge","_outV":"25","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"233","_type":"edge","_outV":"145","_inV":"146","_label":"followed_by"},{"weight":1,"_id":"2330","_type":"edge","_outV":"25","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"2331","_type":"edge","_outV":"25","_inV":"216","_label":"followed_by"},{"weight":4,"_id":"2332","_type":"edge","_outV":"25","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"2333","_type":"edge","_outV":"25","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"2334","_type":"edge","_outV":"25","_inV":"93","_label":"followed_by"},{"weight":2,"_id":"2335","_type":"edge","_outV":"290","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2336","_type":"edge","_outV":"290","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"2337","_type":"edge","_outV":"278","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2338","_type":"edge","_outV":"278","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2339","_type":"edge","_outV":"278","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"234","_type":"edge","_outV":"145","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2340","_type":"edge","_outV":"87","_inV":"96","_label":"followed_by"},{"weight":11,"_id":"2341","_type":"edge","_outV":"87","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2342","_type":"edge","_outV":"87","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2343","_type":"edge","_outV":"87","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2344","_type":"edge","_outV":"87","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"2345","_type":"edge","_outV":"87","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2346","_type":"edge","_outV":"87","_inV":"63","_label":"followed_by"},{"weight":8,"_id":"2347","_type":"edge","_outV":"87","_inV":"13","_label":"followed_by"},{"weight":13,"_id":"2348","_type":"edge","_outV":"87","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2349","_type":"edge","_outV":"87","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"235","_type":"edge","_outV":"145","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"2350","_type":"edge","_outV":"87","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"2351","_type":"edge","_outV":"87","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2352","_type":"edge","_outV":"87","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"2353","_type":"edge","_outV":"87","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"2354","_type":"edge","_outV":"87","_inV":"19","_label":"followed_by"},{"weight":15,"_id":"2355","_type":"edge","_outV":"87","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"2356","_type":"edge","_outV":"87","_inV":"26","_label":"followed_by"},{"weight":15,"_id":"2357","_type":"edge","_outV":"87","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"2358","_type":"edge","_outV":"87","_inV":"72","_label":"followed_by"},{"weight":6,"_id":"2359","_type":"edge","_outV":"87","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"236","_type":"edge","_outV":"145","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2360","_type":"edge","_outV":"87","_inV":"114","_label":"followed_by"},{"weight":5,"_id":"2361","_type":"edge","_outV":"87","_inV":"69","_label":"followed_by"},{"weight":28,"_id":"2362","_type":"edge","_outV":"87","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"2363","_type":"edge","_outV":"87","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"2364","_type":"edge","_outV":"87","_inV":"210","_label":"followed_by"},{"weight":7,"_id":"2365","_type":"edge","_outV":"87","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"2366","_type":"edge","_outV":"87","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"2367","_type":"edge","_outV":"87","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"2368","_type":"edge","_outV":"87","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"2369","_type":"edge","_outV":"87","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"237","_type":"edge","_outV":"145","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2370","_type":"edge","_outV":"87","_inV":"223","_label":"followed_by"},{"weight":2,"_id":"2371","_type":"edge","_outV":"87","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2372","_type":"edge","_outV":"87","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"2373","_type":"edge","_outV":"87","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2374","_type":"edge","_outV":"87","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"2375","_type":"edge","_outV":"87","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"2376","_type":"edge","_outV":"87","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2377","_type":"edge","_outV":"87","_inV":"50","_label":"followed_by"},{"weight":11,"_id":"2378","_type":"edge","_outV":"87","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2379","_type":"edge","_outV":"87","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"238","_type":"edge","_outV":"145","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2380","_type":"edge","_outV":"87","_inV":"165","_label":"followed_by"},{"weight":2,"_id":"2381","_type":"edge","_outV":"87","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2382","_type":"edge","_outV":"87","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2383","_type":"edge","_outV":"87","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2384","_type":"edge","_outV":"87","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2385","_type":"edge","_outV":"87","_inV":"213","_label":"followed_by"},{"weight":10,"_id":"2386","_type":"edge","_outV":"87","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2387","_type":"edge","_outV":"87","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"2388","_type":"edge","_outV":"87","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"2389","_type":"edge","_outV":"87","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"239","_type":"edge","_outV":"145","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2390","_type":"edge","_outV":"87","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2391","_type":"edge","_outV":"87","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2392","_type":"edge","_outV":"87","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2393","_type":"edge","_outV":"87","_inV":"291","_label":"followed_by"},{"weight":1,"_id":"2394","_type":"edge","_outV":"87","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"2395","_type":"edge","_outV":"179","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2396","_type":"edge","_outV":"179","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2397","_type":"edge","_outV":"179","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2398","_type":"edge","_outV":"179","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2399","_type":"edge","_outV":"179","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"24","_type":"edge","_outV":"9","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"240","_type":"edge","_outV":"145","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2400","_type":"edge","_outV":"179","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2401","_type":"edge","_outV":"179","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"2402","_type":"edge","_outV":"45","_inV":"44","_label":"followed_by"},{"weight":1,"_id":"2403","_type":"edge","_outV":"45","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2404","_type":"edge","_outV":"45","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2405","_type":"edge","_outV":"45","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2406","_type":"edge","_outV":"6","_inV":"293","_label":"followed_by"},{"weight":1,"_id":"2407","_type":"edge","_outV":"6","_inV":"96","_label":"followed_by"},{"weight":5,"_id":"2408","_type":"edge","_outV":"68","_inV":"19","_label":"followed_by"},{"weight":8,"_id":"2409","_type":"edge","_outV":"68","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"241","_type":"edge","_outV":"145","_inV":"147","_label":"followed_by"},{"weight":34,"_id":"2410","_type":"edge","_outV":"68","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"2411","_type":"edge","_outV":"68","_inV":"15","_label":"followed_by"},{"weight":28,"_id":"2412","_type":"edge","_outV":"68","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"2413","_type":"edge","_outV":"68","_inV":"17","_label":"followed_by"},{"weight":10,"_id":"2414","_type":"edge","_outV":"68","_inV":"48","_label":"followed_by"},{"weight":13,"_id":"2415","_type":"edge","_outV":"68","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2416","_type":"edge","_outV":"68","_inV":"294","_label":"followed_by"},{"weight":12,"_id":"2417","_type":"edge","_outV":"68","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"2418","_type":"edge","_outV":"68","_inV":"69","_label":"followed_by"},{"weight":9,"_id":"2419","_type":"edge","_outV":"68","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"242","_type":"edge","_outV":"145","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"2420","_type":"edge","_outV":"68","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"2421","_type":"edge","_outV":"68","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2422","_type":"edge","_outV":"68","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2423","_type":"edge","_outV":"68","_inV":"59","_label":"followed_by"},{"weight":20,"_id":"2424","_type":"edge","_outV":"68","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"2425","_type":"edge","_outV":"68","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"2426","_type":"edge","_outV":"68","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"2427","_type":"edge","_outV":"68","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"2428","_type":"edge","_outV":"68","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"2429","_type":"edge","_outV":"68","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"243","_type":"edge","_outV":"145","_inV":"149","_label":"followed_by"},{"weight":3,"_id":"2430","_type":"edge","_outV":"68","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"2431","_type":"edge","_outV":"68","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2432","_type":"edge","_outV":"68","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2433","_type":"edge","_outV":"68","_inV":"12","_label":"followed_by"},{"weight":8,"_id":"2434","_type":"edge","_outV":"68","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2435","_type":"edge","_outV":"68","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"2436","_type":"edge","_outV":"68","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"2437","_type":"edge","_outV":"68","_inV":"180","_label":"followed_by"},{"weight":3,"_id":"2438","_type":"edge","_outV":"68","_inV":"273","_label":"followed_by"},{"weight":3,"_id":"2439","_type":"edge","_outV":"68","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"244","_type":"edge","_outV":"150","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"2440","_type":"edge","_outV":"68","_inV":"111","_label":"followed_by"},{"weight":5,"_id":"2441","_type":"edge","_outV":"68","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"2442","_type":"edge","_outV":"68","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"2443","_type":"edge","_outV":"68","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"2444","_type":"edge","_outV":"68","_inV":"106","_label":"followed_by"},{"weight":11,"_id":"2445","_type":"edge","_outV":"68","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"2446","_type":"edge","_outV":"68","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2447","_type":"edge","_outV":"68","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"2448","_type":"edge","_outV":"68","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"2449","_type":"edge","_outV":"68","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"245","_type":"edge","_outV":"150","_inV":"76","_label":"followed_by"},{"weight":9,"_id":"2450","_type":"edge","_outV":"68","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"2451","_type":"edge","_outV":"68","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2452","_type":"edge","_outV":"68","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"2453","_type":"edge","_outV":"68","_inV":"97","_label":"followed_by"},{"weight":35,"_id":"2454","_type":"edge","_outV":"68","_inV":"72","_label":"followed_by"},{"weight":8,"_id":"2455","_type":"edge","_outV":"68","_inV":"99","_label":"followed_by"},{"weight":6,"_id":"2456","_type":"edge","_outV":"68","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"2457","_type":"edge","_outV":"68","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2458","_type":"edge","_outV":"68","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"2459","_type":"edge","_outV":"68","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"246","_type":"edge","_outV":"150","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2460","_type":"edge","_outV":"68","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2461","_type":"edge","_outV":"68","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2462","_type":"edge","_outV":"68","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2463","_type":"edge","_outV":"68","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"2464","_type":"edge","_outV":"68","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2465","_type":"edge","_outV":"68","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"2466","_type":"edge","_outV":"68","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"2467","_type":"edge","_outV":"68","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"2468","_type":"edge","_outV":"68","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"2469","_type":"edge","_outV":"68","_inV":"136","_label":"followed_by"},{"weight":5,"_id":"247","_type":"edge","_outV":"150","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2470","_type":"edge","_outV":"68","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2471","_type":"edge","_outV":"68","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2472","_type":"edge","_outV":"68","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"2473","_type":"edge","_outV":"68","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"2474","_type":"edge","_outV":"68","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"2475","_type":"edge","_outV":"68","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"2476","_type":"edge","_outV":"68","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2477","_type":"edge","_outV":"68","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2478","_type":"edge","_outV":"68","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2479","_type":"edge","_outV":"68","_inV":"119","_label":"followed_by"},{"weight":3,"_id":"248","_type":"edge","_outV":"150","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2480","_type":"edge","_outV":"68","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2481","_type":"edge","_outV":"68","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"2482","_type":"edge","_outV":"68","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2483","_type":"edge","_outV":"68","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"2484","_type":"edge","_outV":"68","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"2485","_type":"edge","_outV":"68","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2486","_type":"edge","_outV":"68","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"2487","_type":"edge","_outV":"68","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2488","_type":"edge","_outV":"68","_inV":"9","_label":"followed_by"},{"weight":19,"_id":"2489","_type":"edge","_outV":"90","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"249","_type":"edge","_outV":"150","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2490","_type":"edge","_outV":"90","_inV":"154","_label":"followed_by"},{"weight":4,"_id":"2491","_type":"edge","_outV":"90","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2492","_type":"edge","_outV":"90","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2493","_type":"edge","_outV":"90","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"2494","_type":"edge","_outV":"90","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"2495","_type":"edge","_outV":"90","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2496","_type":"edge","_outV":"90","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2497","_type":"edge","_outV":"90","_inV":"151","_label":"followed_by"},{"weight":4,"_id":"2498","_type":"edge","_outV":"90","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"2499","_type":"edge","_outV":"90","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"25","_type":"edge","_outV":"9","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"250","_type":"edge","_outV":"150","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2500","_type":"edge","_outV":"90","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2501","_type":"edge","_outV":"90","_inV":"291","_label":"followed_by"},{"weight":1,"_id":"2502","_type":"edge","_outV":"90","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"2503","_type":"edge","_outV":"90","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"2504","_type":"edge","_outV":"57","_inV":"39","_label":"followed_by"},{"weight":12,"_id":"2505","_type":"edge","_outV":"57","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"2506","_type":"edge","_outV":"57","_inV":"153","_label":"followed_by"},{"weight":14,"_id":"2507","_type":"edge","_outV":"57","_inV":"24","_label":"followed_by"},{"weight":9,"_id":"2508","_type":"edge","_outV":"57","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2509","_type":"edge","_outV":"57","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"251","_type":"edge","_outV":"150","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2510","_type":"edge","_outV":"57","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"2511","_type":"edge","_outV":"57","_inV":"205","_label":"followed_by"},{"weight":3,"_id":"2512","_type":"edge","_outV":"57","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"2513","_type":"edge","_outV":"57","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2514","_type":"edge","_outV":"57","_inV":"234","_label":"followed_by"},{"weight":3,"_id":"2515","_type":"edge","_outV":"57","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"2516","_type":"edge","_outV":"57","_inV":"26","_label":"followed_by"},{"weight":11,"_id":"2517","_type":"edge","_outV":"57","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"2518","_type":"edge","_outV":"57","_inV":"15","_label":"followed_by"},{"weight":10,"_id":"2519","_type":"edge","_outV":"57","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"252","_type":"edge","_outV":"150","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"2520","_type":"edge","_outV":"57","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"2521","_type":"edge","_outV":"57","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"2522","_type":"edge","_outV":"57","_inV":"17","_label":"followed_by"},{"weight":9,"_id":"2523","_type":"edge","_outV":"57","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"2524","_type":"edge","_outV":"57","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2525","_type":"edge","_outV":"57","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"2526","_type":"edge","_outV":"57","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"2527","_type":"edge","_outV":"57","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"2528","_type":"edge","_outV":"57","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"2529","_type":"edge","_outV":"57","_inV":"32","_label":"followed_by"},{"weight":14,"_id":"253","_type":"edge","_outV":"150","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"2530","_type":"edge","_outV":"57","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"2531","_type":"edge","_outV":"57","_inV":"101","_label":"followed_by"},{"weight":30,"_id":"2532","_type":"edge","_outV":"57","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"2533","_type":"edge","_outV":"57","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2534","_type":"edge","_outV":"57","_inV":"120","_label":"followed_by"},{"weight":6,"_id":"2535","_type":"edge","_outV":"57","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"2536","_type":"edge","_outV":"57","_inV":"103","_label":"followed_by"},{"weight":31,"_id":"2537","_type":"edge","_outV":"57","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"2538","_type":"edge","_outV":"57","_inV":"4","_label":"followed_by"},{"weight":15,"_id":"2539","_type":"edge","_outV":"57","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"254","_type":"edge","_outV":"150","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"2540","_type":"edge","_outV":"57","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"2541","_type":"edge","_outV":"57","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2542","_type":"edge","_outV":"57","_inV":"289","_label":"followed_by"},{"weight":12,"_id":"2543","_type":"edge","_outV":"57","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2544","_type":"edge","_outV":"57","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"2545","_type":"edge","_outV":"57","_inV":"65","_label":"followed_by"},{"weight":28,"_id":"2546","_type":"edge","_outV":"57","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"2547","_type":"edge","_outV":"57","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"2548","_type":"edge","_outV":"57","_inV":"72","_label":"followed_by"},{"weight":6,"_id":"2549","_type":"edge","_outV":"57","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"255","_type":"edge","_outV":"150","_inV":"155","_label":"followed_by"},{"weight":15,"_id":"2550","_type":"edge","_outV":"57","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"2551","_type":"edge","_outV":"57","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"2552","_type":"edge","_outV":"57","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2553","_type":"edge","_outV":"57","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2554","_type":"edge","_outV":"57","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"2555","_type":"edge","_outV":"57","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"2556","_type":"edge","_outV":"57","_inV":"133","_label":"followed_by"},{"weight":10,"_id":"2557","_type":"edge","_outV":"57","_inV":"87","_label":"followed_by"},{"weight":11,"_id":"2558","_type":"edge","_outV":"57","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2559","_type":"edge","_outV":"57","_inV":"210","_label":"followed_by"},{"weight":5,"_id":"256","_type":"edge","_outV":"150","_inV":"62","_label":"followed_by"},{"weight":5,"_id":"2560","_type":"edge","_outV":"57","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2561","_type":"edge","_outV":"57","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2562","_type":"edge","_outV":"57","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2563","_type":"edge","_outV":"57","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2564","_type":"edge","_outV":"57","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"2565","_type":"edge","_outV":"57","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"2566","_type":"edge","_outV":"57","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2567","_type":"edge","_outV":"57","_inV":"243","_label":"followed_by"},{"weight":1,"_id":"2568","_type":"edge","_outV":"57","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"2569","_type":"edge","_outV":"57","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"257","_type":"edge","_outV":"150","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2570","_type":"edge","_outV":"57","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2571","_type":"edge","_outV":"57","_inV":"89","_label":"followed_by"},{"weight":5,"_id":"2572","_type":"edge","_outV":"57","_inV":"46","_label":"followed_by"},{"weight":5,"_id":"2573","_type":"edge","_outV":"57","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"2574","_type":"edge","_outV":"57","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2575","_type":"edge","_outV":"57","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2576","_type":"edge","_outV":"57","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2577","_type":"edge","_outV":"57","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"2578","_type":"edge","_outV":"57","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"2579","_type":"edge","_outV":"57","_inV":"61","_label":"followed_by"},{"weight":4,"_id":"258","_type":"edge","_outV":"150","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2580","_type":"edge","_outV":"57","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2581","_type":"edge","_outV":"57","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2582","_type":"edge","_outV":"57","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2583","_type":"edge","_outV":"57","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"2584","_type":"edge","_outV":"112","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"2585","_type":"edge","_outV":"112","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"2586","_type":"edge","_outV":"112","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"2587","_type":"edge","_outV":"112","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"2588","_type":"edge","_outV":"112","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"2589","_type":"edge","_outV":"112","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"259","_type":"edge","_outV":"150","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2590","_type":"edge","_outV":"112","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2591","_type":"edge","_outV":"112","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"2592","_type":"edge","_outV":"112","_inV":"294","_label":"followed_by"},{"weight":1,"_id":"2593","_type":"edge","_outV":"112","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"2594","_type":"edge","_outV":"112","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2595","_type":"edge","_outV":"112","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2596","_type":"edge","_outV":"112","_inV":"42","_label":"followed_by"},{"weight":35,"_id":"2597","_type":"edge","_outV":"112","_inV":"15","_label":"followed_by"},{"weight":7,"_id":"2598","_type":"edge","_outV":"112","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"2599","_type":"edge","_outV":"112","_inV":"56","_label":"followed_by"},{"weight":5,"_id":"26","_type":"edge","_outV":"9","_inV":"30","_label":"followed_by"},{"weight":4,"_id":"260","_type":"edge","_outV":"150","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"2600","_type":"edge","_outV":"112","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"2601","_type":"edge","_outV":"112","_inV":"18","_label":"followed_by"},{"weight":130,"_id":"2602","_type":"edge","_outV":"112","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"2603","_type":"edge","_outV":"112","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2604","_type":"edge","_outV":"112","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2605","_type":"edge","_outV":"112","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2606","_type":"edge","_outV":"112","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2607","_type":"edge","_outV":"295","_inV":"7","_label":"followed_by"},{"weight":1,"_id":"2608","_type":"edge","_outV":"158","_inV":"259","_label":"followed_by"},{"weight":7,"_id":"2609","_type":"edge","_outV":"158","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"261","_type":"edge","_outV":"150","_inV":"82","_label":"followed_by"},{"weight":10,"_id":"2610","_type":"edge","_outV":"158","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2611","_type":"edge","_outV":"158","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"2612","_type":"edge","_outV":"158","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2613","_type":"edge","_outV":"158","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"2614","_type":"edge","_outV":"158","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"2615","_type":"edge","_outV":"158","_inV":"138","_label":"followed_by"},{"weight":3,"_id":"2616","_type":"edge","_outV":"158","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"2617","_type":"edge","_outV":"158","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2618","_type":"edge","_outV":"158","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2619","_type":"edge","_outV":"158","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"262","_type":"edge","_outV":"150","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"2620","_type":"edge","_outV":"158","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"2621","_type":"edge","_outV":"158","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"2622","_type":"edge","_outV":"158","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"2623","_type":"edge","_outV":"158","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"2624","_type":"edge","_outV":"158","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"2625","_type":"edge","_outV":"158","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2626","_type":"edge","_outV":"158","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"2627","_type":"edge","_outV":"158","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2628","_type":"edge","_outV":"158","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2629","_type":"edge","_outV":"158","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"263","_type":"edge","_outV":"150","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"2630","_type":"edge","_outV":"137","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"2631","_type":"edge","_outV":"137","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2632","_type":"edge","_outV":"137","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2633","_type":"edge","_outV":"137","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"2634","_type":"edge","_outV":"137","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2635","_type":"edge","_outV":"137","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2636","_type":"edge","_outV":"137","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2637","_type":"edge","_outV":"137","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"2638","_type":"edge","_outV":"137","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"2639","_type":"edge","_outV":"137","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"264","_type":"edge","_outV":"150","_inV":"156","_label":"followed_by"},{"weight":2,"_id":"2640","_type":"edge","_outV":"137","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"2641","_type":"edge","_outV":"137","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2642","_type":"edge","_outV":"137","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"2643","_type":"edge","_outV":"137","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"2644","_type":"edge","_outV":"137","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"2645","_type":"edge","_outV":"137","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"2646","_type":"edge","_outV":"137","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2647","_type":"edge","_outV":"137","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2648","_type":"edge","_outV":"137","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"2649","_type":"edge","_outV":"137","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"265","_type":"edge","_outV":"150","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"2650","_type":"edge","_outV":"137","_inV":"43","_label":"followed_by"},{"weight":7,"_id":"2651","_type":"edge","_outV":"137","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2652","_type":"edge","_outV":"137","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"2653","_type":"edge","_outV":"137","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"2654","_type":"edge","_outV":"137","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2655","_type":"edge","_outV":"137","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"2656","_type":"edge","_outV":"137","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2657","_type":"edge","_outV":"137","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2658","_type":"edge","_outV":"137","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"2659","_type":"edge","_outV":"137","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"266","_type":"edge","_outV":"150","_inV":"157","_label":"followed_by"},{"weight":3,"_id":"2660","_type":"edge","_outV":"13","_inV":"207","_label":"followed_by"},{"weight":17,"_id":"2661","_type":"edge","_outV":"13","_inV":"122","_label":"followed_by"},{"weight":157,"_id":"2662","_type":"edge","_outV":"13","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2663","_type":"edge","_outV":"13","_inV":"104","_label":"followed_by"},{"weight":14,"_id":"2664","_type":"edge","_outV":"13","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"2665","_type":"edge","_outV":"13","_inV":"123","_label":"followed_by"},{"weight":12,"_id":"2666","_type":"edge","_outV":"13","_inV":"19","_label":"followed_by"},{"weight":5,"_id":"2667","_type":"edge","_outV":"13","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2668","_type":"edge","_outV":"13","_inV":"12","_label":"followed_by"},{"weight":12,"_id":"2669","_type":"edge","_outV":"13","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"267","_type":"edge","_outV":"150","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"2670","_type":"edge","_outV":"13","_inV":"21","_label":"followed_by"},{"weight":9,"_id":"2671","_type":"edge","_outV":"13","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"2672","_type":"edge","_outV":"13","_inV":"23","_label":"followed_by"},{"weight":6,"_id":"2673","_type":"edge","_outV":"13","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"2674","_type":"edge","_outV":"13","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2675","_type":"edge","_outV":"13","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2676","_type":"edge","_outV":"13","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"2677","_type":"edge","_outV":"13","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2678","_type":"edge","_outV":"13","_inV":"225","_label":"followed_by"},{"weight":2,"_id":"2679","_type":"edge","_outV":"13","_inV":"235","_label":"followed_by"},{"weight":2,"_id":"268","_type":"edge","_outV":"150","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"2680","_type":"edge","_outV":"13","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2681","_type":"edge","_outV":"13","_inV":"56","_label":"followed_by"},{"weight":6,"_id":"2682","_type":"edge","_outV":"13","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"2683","_type":"edge","_outV":"13","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"2684","_type":"edge","_outV":"13","_inV":"4","_label":"followed_by"},{"weight":7,"_id":"2685","_type":"edge","_outV":"13","_inV":"15","_label":"followed_by"},{"weight":86,"_id":"2686","_type":"edge","_outV":"13","_inV":"74","_label":"followed_by"},{"weight":12,"_id":"2687","_type":"edge","_outV":"13","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"2688","_type":"edge","_outV":"13","_inV":"94","_label":"followed_by"},{"weight":11,"_id":"2689","_type":"edge","_outV":"13","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"269","_type":"edge","_outV":"150","_inV":"83","_label":"followed_by"},{"weight":13,"_id":"2690","_type":"edge","_outV":"13","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"2691","_type":"edge","_outV":"13","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"2692","_type":"edge","_outV":"13","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"2693","_type":"edge","_outV":"13","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"2694","_type":"edge","_outV":"13","_inV":"296","_label":"followed_by"},{"weight":1,"_id":"2695","_type":"edge","_outV":"13","_inV":"52","_label":"followed_by"},{"weight":2,"_id":"2696","_type":"edge","_outV":"13","_inV":"17","_label":"followed_by"},{"weight":3,"_id":"2697","_type":"edge","_outV":"13","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"2698","_type":"edge","_outV":"13","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2699","_type":"edge","_outV":"13","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"27","_type":"edge","_outV":"9","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"270","_type":"edge","_outV":"150","_inV":"79","_label":"followed_by"},{"weight":12,"_id":"2700","_type":"edge","_outV":"13","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2701","_type":"edge","_outV":"13","_inV":"195","_label":"followed_by"},{"weight":1,"_id":"2702","_type":"edge","_outV":"13","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"2703","_type":"edge","_outV":"13","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"2704","_type":"edge","_outV":"13","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"2705","_type":"edge","_outV":"13","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"2706","_type":"edge","_outV":"13","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2707","_type":"edge","_outV":"13","_inV":"57","_label":"followed_by"},{"weight":9,"_id":"2708","_type":"edge","_outV":"13","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2709","_type":"edge","_outV":"13","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"271","_type":"edge","_outV":"150","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"2710","_type":"edge","_outV":"13","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"2711","_type":"edge","_outV":"13","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"2712","_type":"edge","_outV":"13","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2713","_type":"edge","_outV":"13","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"2714","_type":"edge","_outV":"13","_inV":"184","_label":"followed_by"},{"weight":21,"_id":"2715","_type":"edge","_outV":"13","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2716","_type":"edge","_outV":"13","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2717","_type":"edge","_outV":"13","_inV":"32","_label":"followed_by"},{"weight":42,"_id":"2718","_type":"edge","_outV":"13","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2719","_type":"edge","_outV":"13","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"272","_type":"edge","_outV":"150","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"2720","_type":"edge","_outV":"13","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"2721","_type":"edge","_outV":"13","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"2722","_type":"edge","_outV":"13","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"2723","_type":"edge","_outV":"13","_inV":"109","_label":"followed_by"},{"weight":9,"_id":"2724","_type":"edge","_outV":"13","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"2725","_type":"edge","_outV":"13","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"2726","_type":"edge","_outV":"13","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2727","_type":"edge","_outV":"13","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2728","_type":"edge","_outV":"13","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"2729","_type":"edge","_outV":"13","_inV":"72","_label":"followed_by"},{"weight":40,"_id":"273","_type":"edge","_outV":"5","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"2730","_type":"edge","_outV":"13","_inV":"246","_label":"followed_by"},{"weight":29,"_id":"2731","_type":"edge","_outV":"13","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"2732","_type":"edge","_outV":"13","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2733","_type":"edge","_outV":"13","_inV":"133","_label":"followed_by"},{"weight":1,"_id":"2734","_type":"edge","_outV":"13","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"2735","_type":"edge","_outV":"13","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"2736","_type":"edge","_outV":"13","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"2737","_type":"edge","_outV":"13","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"2738","_type":"edge","_outV":"13","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"2739","_type":"edge","_outV":"13","_inV":"128","_label":"followed_by"},{"weight":3,"_id":"274","_type":"edge","_outV":"5","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2740","_type":"edge","_outV":"13","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"2741","_type":"edge","_outV":"13","_inV":"212","_label":"followed_by"},{"weight":2,"_id":"2742","_type":"edge","_outV":"13","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2743","_type":"edge","_outV":"13","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"2744","_type":"edge","_outV":"13","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"2745","_type":"edge","_outV":"13","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"2746","_type":"edge","_outV":"13","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"2747","_type":"edge","_outV":"13","_inV":"92","_label":"followed_by"},{"weight":5,"_id":"2748","_type":"edge","_outV":"13","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2749","_type":"edge","_outV":"13","_inV":"81","_label":"followed_by"},{"weight":40,"_id":"275","_type":"edge","_outV":"5","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"2750","_type":"edge","_outV":"13","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"2751","_type":"edge","_outV":"13","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"2752","_type":"edge","_outV":"13","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"2753","_type":"edge","_outV":"13","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2754","_type":"edge","_outV":"297","_inV":"188","_label":"followed_by"},{"weight":8,"_id":"2755","_type":"edge","_outV":"15","_inV":"19","_label":"followed_by"},{"weight":22,"_id":"2756","_type":"edge","_outV":"15","_inV":"56","_label":"followed_by"},{"weight":17,"_id":"2757","_type":"edge","_outV":"15","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"2758","_type":"edge","_outV":"15","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"2759","_type":"edge","_outV":"15","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"276","_type":"edge","_outV":"5","_inV":"1","_label":"followed_by"},{"weight":2,"_id":"2760","_type":"edge","_outV":"15","_inV":"23","_label":"followed_by"},{"weight":23,"_id":"2761","_type":"edge","_outV":"15","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"2762","_type":"edge","_outV":"15","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2763","_type":"edge","_outV":"15","_inV":"46","_label":"followed_by"},{"weight":7,"_id":"2764","_type":"edge","_outV":"15","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"2765","_type":"edge","_outV":"15","_inV":"59","_label":"followed_by"},{"weight":18,"_id":"2766","_type":"edge","_outV":"15","_inV":"58","_label":"followed_by"},{"weight":25,"_id":"2767","_type":"edge","_outV":"15","_inV":"54","_label":"followed_by"},{"weight":24,"_id":"2768","_type":"edge","_outV":"15","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"2769","_type":"edge","_outV":"15","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"277","_type":"edge","_outV":"5","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"2770","_type":"edge","_outV":"15","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"2771","_type":"edge","_outV":"15","_inV":"13","_label":"followed_by"},{"weight":14,"_id":"2772","_type":"edge","_outV":"15","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"2773","_type":"edge","_outV":"15","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"2774","_type":"edge","_outV":"15","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"2775","_type":"edge","_outV":"15","_inV":"9","_label":"followed_by"},{"weight":17,"_id":"2776","_type":"edge","_outV":"15","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2777","_type":"edge","_outV":"15","_inV":"55","_label":"followed_by"},{"weight":3,"_id":"2778","_type":"edge","_outV":"15","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2779","_type":"edge","_outV":"15","_inV":"52","_label":"followed_by"},{"weight":3,"_id":"278","_type":"edge","_outV":"5","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"2780","_type":"edge","_outV":"15","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"2781","_type":"edge","_outV":"15","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"2782","_type":"edge","_outV":"15","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"2783","_type":"edge","_outV":"15","_inV":"202","_label":"followed_by"},{"weight":3,"_id":"2784","_type":"edge","_outV":"15","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"2785","_type":"edge","_outV":"15","_inV":"74","_label":"followed_by"},{"weight":7,"_id":"2786","_type":"edge","_outV":"15","_inV":"69","_label":"followed_by"},{"weight":10,"_id":"2787","_type":"edge","_outV":"15","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2788","_type":"edge","_outV":"15","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2789","_type":"edge","_outV":"15","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"279","_type":"edge","_outV":"5","_inV":"133","_label":"followed_by"},{"weight":3,"_id":"2790","_type":"edge","_outV":"15","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"2791","_type":"edge","_outV":"15","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2792","_type":"edge","_outV":"15","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"2793","_type":"edge","_outV":"15","_inV":"294","_label":"followed_by"},{"weight":3,"_id":"2794","_type":"edge","_outV":"15","_inV":"99","_label":"followed_by"},{"weight":10,"_id":"2795","_type":"edge","_outV":"15","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"2796","_type":"edge","_outV":"15","_inV":"63","_label":"followed_by"},{"weight":3,"_id":"2797","_type":"edge","_outV":"15","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"2798","_type":"edge","_outV":"15","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"2799","_type":"edge","_outV":"15","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"28","_type":"edge","_outV":"9","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"280","_type":"edge","_outV":"5","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"2800","_type":"edge","_outV":"15","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"2801","_type":"edge","_outV":"15","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"2802","_type":"edge","_outV":"15","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"2803","_type":"edge","_outV":"15","_inV":"14","_label":"followed_by"},{"weight":8,"_id":"2804","_type":"edge","_outV":"15","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"2805","_type":"edge","_outV":"15","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"2806","_type":"edge","_outV":"15","_inV":"10","_label":"followed_by"},{"weight":26,"_id":"2807","_type":"edge","_outV":"15","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"2808","_type":"edge","_outV":"15","_inV":"78","_label":"followed_by"},{"weight":3,"_id":"2809","_type":"edge","_outV":"15","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"281","_type":"edge","_outV":"5","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"2810","_type":"edge","_outV":"15","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"2811","_type":"edge","_outV":"15","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"2812","_type":"edge","_outV":"15","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2813","_type":"edge","_outV":"15","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"2814","_type":"edge","_outV":"15","_inV":"53","_label":"followed_by"},{"weight":4,"_id":"2815","_type":"edge","_outV":"15","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"2816","_type":"edge","_outV":"15","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2817","_type":"edge","_outV":"15","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2818","_type":"edge","_outV":"15","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"2819","_type":"edge","_outV":"15","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"282","_type":"edge","_outV":"5","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"2820","_type":"edge","_outV":"15","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"2821","_type":"edge","_outV":"15","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2822","_type":"edge","_outV":"15","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"2823","_type":"edge","_outV":"15","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"2824","_type":"edge","_outV":"15","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"2825","_type":"edge","_outV":"15","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"2826","_type":"edge","_outV":"15","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"2827","_type":"edge","_outV":"15","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"2828","_type":"edge","_outV":"15","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"2829","_type":"edge","_outV":"298","_inV":"108","_label":"followed_by"},{"weight":3,"_id":"283","_type":"edge","_outV":"5","_inV":"13","_label":"followed_by"},{"weight":8,"_id":"2830","_type":"edge","_outV":"101","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"2831","_type":"edge","_outV":"101","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"2832","_type":"edge","_outV":"101","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"2833","_type":"edge","_outV":"101","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"2834","_type":"edge","_outV":"101","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"2835","_type":"edge","_outV":"101","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"2836","_type":"edge","_outV":"101","_inV":"89","_label":"followed_by"},{"weight":6,"_id":"2837","_type":"edge","_outV":"101","_inV":"83","_label":"followed_by"},{"weight":8,"_id":"2838","_type":"edge","_outV":"101","_inV":"130","_label":"followed_by"},{"weight":8,"_id":"2839","_type":"edge","_outV":"101","_inV":"49","_label":"followed_by"},{"weight":19,"_id":"284","_type":"edge","_outV":"5","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"2840","_type":"edge","_outV":"101","_inV":"9","_label":"followed_by"},{"weight":18,"_id":"2841","_type":"edge","_outV":"101","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"2842","_type":"edge","_outV":"101","_inV":"51","_label":"followed_by"},{"weight":6,"_id":"2843","_type":"edge","_outV":"101","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"2844","_type":"edge","_outV":"101","_inV":"14","_label":"followed_by"},{"weight":21,"_id":"2845","_type":"edge","_outV":"101","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"2846","_type":"edge","_outV":"101","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"2847","_type":"edge","_outV":"101","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"2848","_type":"edge","_outV":"101","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2849","_type":"edge","_outV":"101","_inV":"209","_label":"followed_by"},{"weight":10,"_id":"285","_type":"edge","_outV":"5","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2850","_type":"edge","_outV":"101","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"2851","_type":"edge","_outV":"101","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2852","_type":"edge","_outV":"101","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"2853","_type":"edge","_outV":"101","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"2854","_type":"edge","_outV":"101","_inV":"99","_label":"followed_by"},{"weight":18,"_id":"2855","_type":"edge","_outV":"101","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"2856","_type":"edge","_outV":"101","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"2857","_type":"edge","_outV":"101","_inV":"179","_label":"followed_by"},{"weight":1,"_id":"2858","_type":"edge","_outV":"101","_inV":"59","_label":"followed_by"},{"weight":17,"_id":"2859","_type":"edge","_outV":"101","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"286","_type":"edge","_outV":"5","_inV":"160","_label":"followed_by"},{"weight":24,"_id":"2860","_type":"edge","_outV":"101","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"2861","_type":"edge","_outV":"101","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"2862","_type":"edge","_outV":"101","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"2863","_type":"edge","_outV":"101","_inV":"134","_label":"followed_by"},{"weight":16,"_id":"2864","_type":"edge","_outV":"101","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"2865","_type":"edge","_outV":"101","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"2866","_type":"edge","_outV":"101","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"2867","_type":"edge","_outV":"101","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"2868","_type":"edge","_outV":"101","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2869","_type":"edge","_outV":"101","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"287","_type":"edge","_outV":"5","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"2870","_type":"edge","_outV":"101","_inV":"210","_label":"followed_by"},{"weight":9,"_id":"2871","_type":"edge","_outV":"101","_inV":"87","_label":"followed_by"},{"weight":6,"_id":"2872","_type":"edge","_outV":"101","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"2873","_type":"edge","_outV":"101","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"2874","_type":"edge","_outV":"101","_inV":"127","_label":"followed_by"},{"weight":8,"_id":"2875","_type":"edge","_outV":"101","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"2876","_type":"edge","_outV":"101","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"2877","_type":"edge","_outV":"101","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"2878","_type":"edge","_outV":"101","_inV":"299","_label":"followed_by"},{"weight":3,"_id":"2879","_type":"edge","_outV":"101","_inV":"74","_label":"followed_by"},{"weight":16,"_id":"288","_type":"edge","_outV":"5","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"2880","_type":"edge","_outV":"101","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2881","_type":"edge","_outV":"101","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"2882","_type":"edge","_outV":"101","_inV":"67","_label":"followed_by"},{"weight":2,"_id":"2883","_type":"edge","_outV":"101","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"2884","_type":"edge","_outV":"101","_inV":"114","_label":"followed_by"},{"weight":7,"_id":"2885","_type":"edge","_outV":"101","_inV":"81","_label":"followed_by"},{"weight":4,"_id":"2886","_type":"edge","_outV":"101","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"2887","_type":"edge","_outV":"101","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2888","_type":"edge","_outV":"101","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"2889","_type":"edge","_outV":"101","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"289","_type":"edge","_outV":"5","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2890","_type":"edge","_outV":"101","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2891","_type":"edge","_outV":"101","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"2892","_type":"edge","_outV":"101","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"2893","_type":"edge","_outV":"101","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"2894","_type":"edge","_outV":"101","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"2895","_type":"edge","_outV":"101","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"2896","_type":"edge","_outV":"101","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2897","_type":"edge","_outV":"118","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"2898","_type":"edge","_outV":"118","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2899","_type":"edge","_outV":"118","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"29","_type":"edge","_outV":"9","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"290","_type":"edge","_outV":"5","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"2900","_type":"edge","_outV":"118","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"2901","_type":"edge","_outV":"118","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"2902","_type":"edge","_outV":"118","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"2903","_type":"edge","_outV":"118","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"2904","_type":"edge","_outV":"118","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"2905","_type":"edge","_outV":"118","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2906","_type":"edge","_outV":"118","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2907","_type":"edge","_outV":"118","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2908","_type":"edge","_outV":"118","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2909","_type":"edge","_outV":"118","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"291","_type":"edge","_outV":"5","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"2910","_type":"edge","_outV":"118","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"2911","_type":"edge","_outV":"118","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"2912","_type":"edge","_outV":"118","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2913","_type":"edge","_outV":"118","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"2914","_type":"edge","_outV":"118","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2915","_type":"edge","_outV":"118","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"2916","_type":"edge","_outV":"78","_inV":"24","_label":"followed_by"},{"weight":10,"_id":"2917","_type":"edge","_outV":"78","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"2918","_type":"edge","_outV":"78","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"2919","_type":"edge","_outV":"78","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"292","_type":"edge","_outV":"5","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"2920","_type":"edge","_outV":"78","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"2921","_type":"edge","_outV":"78","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"2922","_type":"edge","_outV":"78","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"2923","_type":"edge","_outV":"78","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"2924","_type":"edge","_outV":"78","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"2925","_type":"edge","_outV":"78","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"2926","_type":"edge","_outV":"78","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"2927","_type":"edge","_outV":"78","_inV":"121","_label":"followed_by"},{"weight":17,"_id":"2928","_type":"edge","_outV":"78","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"2929","_type":"edge","_outV":"78","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"293","_type":"edge","_outV":"5","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"2930","_type":"edge","_outV":"78","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"2931","_type":"edge","_outV":"78","_inV":"189","_label":"followed_by"},{"weight":11,"_id":"2932","_type":"edge","_outV":"78","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"2933","_type":"edge","_outV":"78","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"2934","_type":"edge","_outV":"78","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"2935","_type":"edge","_outV":"78","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"2936","_type":"edge","_outV":"78","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"2937","_type":"edge","_outV":"78","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"2938","_type":"edge","_outV":"78","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"2939","_type":"edge","_outV":"78","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"294","_type":"edge","_outV":"5","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"2940","_type":"edge","_outV":"78","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"2941","_type":"edge","_outV":"78","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"2942","_type":"edge","_outV":"78","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"2943","_type":"edge","_outV":"78","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"2944","_type":"edge","_outV":"78","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"2945","_type":"edge","_outV":"78","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"2946","_type":"edge","_outV":"78","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2947","_type":"edge","_outV":"78","_inV":"106","_label":"followed_by"},{"weight":16,"_id":"2948","_type":"edge","_outV":"78","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"2949","_type":"edge","_outV":"78","_inV":"212","_label":"followed_by"},{"weight":13,"_id":"295","_type":"edge","_outV":"5","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"2950","_type":"edge","_outV":"78","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"2951","_type":"edge","_outV":"78","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"2952","_type":"edge","_outV":"78","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"2953","_type":"edge","_outV":"78","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"2954","_type":"edge","_outV":"78","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"2955","_type":"edge","_outV":"78","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"2956","_type":"edge","_outV":"78","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"2957","_type":"edge","_outV":"78","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"2958","_type":"edge","_outV":"78","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"2959","_type":"edge","_outV":"78","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"296","_type":"edge","_outV":"5","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"2960","_type":"edge","_outV":"78","_inV":"83","_label":"followed_by"},{"weight":8,"_id":"2961","_type":"edge","_outV":"78","_inV":"30","_label":"followed_by"},{"weight":3,"_id":"2962","_type":"edge","_outV":"78","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"2963","_type":"edge","_outV":"78","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"2964","_type":"edge","_outV":"78","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"2965","_type":"edge","_outV":"78","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"2966","_type":"edge","_outV":"78","_inV":"71","_label":"followed_by"},{"weight":10,"_id":"2967","_type":"edge","_outV":"78","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"2968","_type":"edge","_outV":"78","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"2969","_type":"edge","_outV":"78","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"297","_type":"edge","_outV":"5","_inV":"161","_label":"followed_by"},{"weight":1,"_id":"2970","_type":"edge","_outV":"78","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"2971","_type":"edge","_outV":"78","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"2972","_type":"edge","_outV":"255","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"2973","_type":"edge","_outV":"255","_inV":"163","_label":"followed_by"},{"weight":1,"_id":"2974","_type":"edge","_outV":"300","_inV":"301","_label":"followed_by"},{"weight":1,"_id":"2975","_type":"edge","_outV":"200","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"2976","_type":"edge","_outV":"8","_inV":"302","_label":"followed_by"},{"weight":1,"_id":"2977","_type":"edge","_outV":"8","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"2978","_type":"edge","_outV":"8","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"2979","_type":"edge","_outV":"265","_inV":"249","_label":"followed_by"},{"weight":1,"_id":"298","_type":"edge","_outV":"5","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"2980","_type":"edge","_outV":"265","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"2981","_type":"edge","_outV":"14","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"2982","_type":"edge","_outV":"14","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"2983","_type":"edge","_outV":"14","_inV":"53","_label":"followed_by"},{"weight":55,"_id":"2984","_type":"edge","_outV":"14","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"2985","_type":"edge","_outV":"14","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"2986","_type":"edge","_outV":"14","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"2987","_type":"edge","_outV":"14","_inV":"153","_label":"followed_by"},{"weight":26,"_id":"2988","_type":"edge","_outV":"14","_inV":"72","_label":"followed_by"},{"weight":17,"_id":"2989","_type":"edge","_outV":"14","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"299","_type":"edge","_outV":"5","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"2990","_type":"edge","_outV":"14","_inV":"9","_label":"followed_by"},{"weight":13,"_id":"2991","_type":"edge","_outV":"14","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"2992","_type":"edge","_outV":"14","_inV":"46","_label":"followed_by"},{"weight":15,"_id":"2993","_type":"edge","_outV":"14","_inV":"51","_label":"followed_by"},{"weight":28,"_id":"2994","_type":"edge","_outV":"14","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"2995","_type":"edge","_outV":"14","_inV":"202","_label":"followed_by"},{"weight":6,"_id":"2996","_type":"edge","_outV":"14","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"2997","_type":"edge","_outV":"14","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"2998","_type":"edge","_outV":"14","_inV":"58","_label":"followed_by"},{"weight":8,"_id":"2999","_type":"edge","_outV":"14","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3","_type":"edge","_outV":"1","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"30","_type":"edge","_outV":"9","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"300","_type":"edge","_outV":"5","_inV":"38","_label":"followed_by"},{"weight":12,"_id":"3000","_type":"edge","_outV":"14","_inV":"100","_label":"followed_by"},{"weight":26,"_id":"3001","_type":"edge","_outV":"14","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"3002","_type":"edge","_outV":"14","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"3003","_type":"edge","_outV":"14","_inV":"104","_label":"followed_by"},{"weight":6,"_id":"3004","_type":"edge","_outV":"14","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3005","_type":"edge","_outV":"14","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3006","_type":"edge","_outV":"14","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3007","_type":"edge","_outV":"14","_inV":"103","_label":"followed_by"},{"weight":8,"_id":"3008","_type":"edge","_outV":"14","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3009","_type":"edge","_outV":"14","_inV":"101","_label":"followed_by"},{"weight":11,"_id":"301","_type":"edge","_outV":"5","_inV":"29","_label":"followed_by"},{"weight":8,"_id":"3010","_type":"edge","_outV":"14","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"3011","_type":"edge","_outV":"14","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3012","_type":"edge","_outV":"14","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3013","_type":"edge","_outV":"14","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3014","_type":"edge","_outV":"14","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3015","_type":"edge","_outV":"14","_inV":"155","_label":"followed_by"},{"weight":2,"_id":"3016","_type":"edge","_outV":"14","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3017","_type":"edge","_outV":"14","_inV":"18","_label":"followed_by"},{"weight":11,"_id":"3018","_type":"edge","_outV":"14","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3019","_type":"edge","_outV":"14","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"302","_type":"edge","_outV":"5","_inV":"163","_label":"followed_by"},{"weight":27,"_id":"3020","_type":"edge","_outV":"14","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"3021","_type":"edge","_outV":"14","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"3022","_type":"edge","_outV":"14","_inV":"85","_label":"followed_by"},{"weight":8,"_id":"3023","_type":"edge","_outV":"14","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"3024","_type":"edge","_outV":"14","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"3025","_type":"edge","_outV":"14","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3026","_type":"edge","_outV":"14","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"3027","_type":"edge","_outV":"14","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"3028","_type":"edge","_outV":"14","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3029","_type":"edge","_outV":"14","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"303","_type":"edge","_outV":"5","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"3030","_type":"edge","_outV":"14","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3031","_type":"edge","_outV":"14","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"3032","_type":"edge","_outV":"14","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"3033","_type":"edge","_outV":"14","_inV":"5","_label":"followed_by"},{"weight":29,"_id":"3034","_type":"edge","_outV":"14","_inV":"91","_label":"followed_by"},{"weight":6,"_id":"3035","_type":"edge","_outV":"14","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"3036","_type":"edge","_outV":"14","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"3037","_type":"edge","_outV":"14","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3038","_type":"edge","_outV":"14","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3039","_type":"edge","_outV":"14","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"304","_type":"edge","_outV":"5","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3040","_type":"edge","_outV":"14","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"3041","_type":"edge","_outV":"14","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3042","_type":"edge","_outV":"14","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3043","_type":"edge","_outV":"14","_inV":"172","_label":"followed_by"},{"weight":5,"_id":"3044","_type":"edge","_outV":"14","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3045","_type":"edge","_outV":"14","_inV":"173","_label":"followed_by"},{"weight":5,"_id":"3046","_type":"edge","_outV":"14","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"3047","_type":"edge","_outV":"14","_inV":"35","_label":"followed_by"},{"weight":13,"_id":"3048","_type":"edge","_outV":"153","_inV":"3","_label":"followed_by"},{"weight":14,"_id":"3049","_type":"edge","_outV":"153","_inV":"74","_label":"followed_by"},{"weight":6,"_id":"305","_type":"edge","_outV":"5","_inV":"164","_label":"followed_by"},{"weight":13,"_id":"3050","_type":"edge","_outV":"153","_inV":"4","_label":"followed_by"},{"weight":31,"_id":"3051","_type":"edge","_outV":"153","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"3052","_type":"edge","_outV":"153","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3053","_type":"edge","_outV":"153","_inV":"48","_label":"followed_by"},{"weight":40,"_id":"3054","_type":"edge","_outV":"153","_inV":"114","_label":"followed_by"},{"weight":9,"_id":"3055","_type":"edge","_outV":"153","_inV":"5","_label":"followed_by"},{"weight":24,"_id":"3056","_type":"edge","_outV":"153","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"3057","_type":"edge","_outV":"153","_inV":"27","_label":"followed_by"},{"weight":6,"_id":"3058","_type":"edge","_outV":"153","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"3059","_type":"edge","_outV":"153","_inV":"1","_label":"followed_by"},{"weight":1,"_id":"306","_type":"edge","_outV":"5","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3060","_type":"edge","_outV":"153","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3061","_type":"edge","_outV":"153","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"3062","_type":"edge","_outV":"153","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"3063","_type":"edge","_outV":"153","_inV":"145","_label":"followed_by"},{"weight":2,"_id":"3064","_type":"edge","_outV":"153","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"3065","_type":"edge","_outV":"153","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"3066","_type":"edge","_outV":"153","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"3067","_type":"edge","_outV":"153","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"3068","_type":"edge","_outV":"153","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"3069","_type":"edge","_outV":"153","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"307","_type":"edge","_outV":"5","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"3070","_type":"edge","_outV":"153","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"3071","_type":"edge","_outV":"153","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"3072","_type":"edge","_outV":"153","_inV":"12","_label":"followed_by"},{"weight":18,"_id":"3073","_type":"edge","_outV":"153","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3074","_type":"edge","_outV":"153","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3075","_type":"edge","_outV":"153","_inV":"263","_label":"followed_by"},{"weight":1,"_id":"3076","_type":"edge","_outV":"153","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"3077","_type":"edge","_outV":"153","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"3078","_type":"edge","_outV":"153","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"3079","_type":"edge","_outV":"153","_inV":"24","_label":"followed_by"},{"weight":7,"_id":"308","_type":"edge","_outV":"5","_inV":"165","_label":"followed_by"},{"weight":13,"_id":"3080","_type":"edge","_outV":"153","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"3081","_type":"edge","_outV":"153","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3082","_type":"edge","_outV":"153","_inV":"42","_label":"followed_by"},{"weight":6,"_id":"3083","_type":"edge","_outV":"153","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"3084","_type":"edge","_outV":"153","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"3085","_type":"edge","_outV":"153","_inV":"94","_label":"followed_by"},{"weight":4,"_id":"3086","_type":"edge","_outV":"153","_inV":"32","_label":"followed_by"},{"weight":18,"_id":"3087","_type":"edge","_outV":"153","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3088","_type":"edge","_outV":"153","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3089","_type":"edge","_outV":"153","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"309","_type":"edge","_outV":"5","_inV":"92","_label":"followed_by"},{"weight":2,"_id":"3090","_type":"edge","_outV":"153","_inV":"289","_label":"followed_by"},{"weight":8,"_id":"3091","_type":"edge","_outV":"153","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"3092","_type":"edge","_outV":"153","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"3093","_type":"edge","_outV":"153","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3094","_type":"edge","_outV":"153","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3095","_type":"edge","_outV":"153","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"3096","_type":"edge","_outV":"153","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"3097","_type":"edge","_outV":"153","_inV":"19","_label":"followed_by"},{"weight":15,"_id":"3098","_type":"edge","_outV":"153","_inV":"65","_label":"followed_by"},{"weight":14,"_id":"3099","_type":"edge","_outV":"153","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"31","_type":"edge","_outV":"9","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"310","_type":"edge","_outV":"5","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"3100","_type":"edge","_outV":"153","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"3101","_type":"edge","_outV":"153","_inV":"80","_label":"followed_by"},{"weight":5,"_id":"3102","_type":"edge","_outV":"153","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"3103","_type":"edge","_outV":"153","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"3104","_type":"edge","_outV":"153","_inV":"99","_label":"followed_by"},{"weight":30,"_id":"3105","_type":"edge","_outV":"153","_inV":"124","_label":"followed_by"},{"weight":12,"_id":"3106","_type":"edge","_outV":"153","_inV":"162","_label":"followed_by"},{"weight":9,"_id":"3107","_type":"edge","_outV":"153","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3108","_type":"edge","_outV":"153","_inV":"13","_label":"followed_by"},{"weight":17,"_id":"3109","_type":"edge","_outV":"153","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"311","_type":"edge","_outV":"5","_inV":"166","_label":"followed_by"},{"weight":12,"_id":"3110","_type":"edge","_outV":"153","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"3111","_type":"edge","_outV":"153","_inV":"212","_label":"followed_by"},{"weight":1,"_id":"3112","_type":"edge","_outV":"153","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3113","_type":"edge","_outV":"153","_inV":"303","_label":"followed_by"},{"weight":7,"_id":"3114","_type":"edge","_outV":"153","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3115","_type":"edge","_outV":"153","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"3116","_type":"edge","_outV":"153","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3117","_type":"edge","_outV":"153","_inV":"61","_label":"followed_by"},{"weight":5,"_id":"3118","_type":"edge","_outV":"153","_inV":"46","_label":"followed_by"},{"weight":8,"_id":"3119","_type":"edge","_outV":"153","_inV":"213","_label":"followed_by"},{"weight":7,"_id":"312","_type":"edge","_outV":"34","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3120","_type":"edge","_outV":"153","_inV":"155","_label":"followed_by"},{"weight":11,"_id":"3121","_type":"edge","_outV":"153","_inV":"204","_label":"followed_by"},{"weight":11,"_id":"3122","_type":"edge","_outV":"153","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"3123","_type":"edge","_outV":"153","_inV":"264","_label":"followed_by"},{"weight":2,"_id":"3124","_type":"edge","_outV":"153","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3125","_type":"edge","_outV":"153","_inV":"69","_label":"followed_by"},{"weight":12,"_id":"3126","_type":"edge","_outV":"153","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"3127","_type":"edge","_outV":"153","_inV":"201","_label":"followed_by"},{"weight":2,"_id":"3128","_type":"edge","_outV":"153","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3129","_type":"edge","_outV":"153","_inV":"185","_label":"followed_by"},{"weight":22,"_id":"313","_type":"edge","_outV":"34","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3130","_type":"edge","_outV":"153","_inV":"140","_label":"followed_by"},{"weight":4,"_id":"3131","_type":"edge","_outV":"153","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"3132","_type":"edge","_outV":"153","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"3133","_type":"edge","_outV":"153","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"3134","_type":"edge","_outV":"153","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"3135","_type":"edge","_outV":"153","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3136","_type":"edge","_outV":"153","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3137","_type":"edge","_outV":"153","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"3138","_type":"edge","_outV":"304","_inV":"186","_label":"followed_by"},{"weight":402,"_id":"3139","_type":"edge","_outV":"19","_inV":"187","_label":"followed_by"},{"weight":2,"_id":"314","_type":"edge","_outV":"34","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3140","_type":"edge","_outV":"19","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3141","_type":"edge","_outV":"19","_inV":"60","_label":"followed_by"},{"weight":4,"_id":"3142","_type":"edge","_outV":"104","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"3143","_type":"edge","_outV":"104","_inV":"26","_label":"followed_by"},{"weight":24,"_id":"3144","_type":"edge","_outV":"104","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"3145","_type":"edge","_outV":"104","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"3146","_type":"edge","_outV":"104","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"3147","_type":"edge","_outV":"104","_inV":"15","_label":"followed_by"},{"weight":19,"_id":"3148","_type":"edge","_outV":"104","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3149","_type":"edge","_outV":"104","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"315","_type":"edge","_outV":"34","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"3150","_type":"edge","_outV":"104","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3151","_type":"edge","_outV":"104","_inV":"82","_label":"followed_by"},{"weight":5,"_id":"3152","_type":"edge","_outV":"104","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"3153","_type":"edge","_outV":"104","_inV":"121","_label":"followed_by"},{"weight":6,"_id":"3154","_type":"edge","_outV":"104","_inV":"101","_label":"followed_by"},{"weight":17,"_id":"3155","_type":"edge","_outV":"104","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"3156","_type":"edge","_outV":"104","_inV":"14","_label":"followed_by"},{"weight":17,"_id":"3157","_type":"edge","_outV":"104","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3158","_type":"edge","_outV":"104","_inV":"196","_label":"followed_by"},{"weight":9,"_id":"3159","_type":"edge","_outV":"104","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"316","_type":"edge","_outV":"34","_inV":"167","_label":"followed_by"},{"weight":14,"_id":"3160","_type":"edge","_outV":"104","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"3161","_type":"edge","_outV":"104","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3162","_type":"edge","_outV":"104","_inV":"83","_label":"followed_by"},{"weight":11,"_id":"3163","_type":"edge","_outV":"104","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3164","_type":"edge","_outV":"104","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3165","_type":"edge","_outV":"104","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3166","_type":"edge","_outV":"104","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3167","_type":"edge","_outV":"104","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3168","_type":"edge","_outV":"104","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"3169","_type":"edge","_outV":"104","_inV":"111","_label":"followed_by"},{"weight":12,"_id":"317","_type":"edge","_outV":"34","_inV":"60","_label":"followed_by"},{"weight":4,"_id":"3170","_type":"edge","_outV":"104","_inV":"106","_label":"followed_by"},{"weight":12,"_id":"3171","_type":"edge","_outV":"104","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3172","_type":"edge","_outV":"104","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3173","_type":"edge","_outV":"104","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3174","_type":"edge","_outV":"104","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"3175","_type":"edge","_outV":"104","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3176","_type":"edge","_outV":"104","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"3177","_type":"edge","_outV":"104","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"3178","_type":"edge","_outV":"104","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"3179","_type":"edge","_outV":"104","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"318","_type":"edge","_outV":"34","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"3180","_type":"edge","_outV":"104","_inV":"245","_label":"followed_by"},{"weight":1,"_id":"3181","_type":"edge","_outV":"104","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3182","_type":"edge","_outV":"104","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3183","_type":"edge","_outV":"104","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3184","_type":"edge","_outV":"104","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"3185","_type":"edge","_outV":"104","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3186","_type":"edge","_outV":"104","_inV":"223","_label":"followed_by"},{"weight":9,"_id":"3187","_type":"edge","_outV":"104","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"3188","_type":"edge","_outV":"104","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3189","_type":"edge","_outV":"104","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"319","_type":"edge","_outV":"34","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"3190","_type":"edge","_outV":"104","_inV":"21","_label":"followed_by"},{"weight":7,"_id":"3191","_type":"edge","_outV":"104","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3192","_type":"edge","_outV":"104","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3193","_type":"edge","_outV":"104","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"3194","_type":"edge","_outV":"104","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3195","_type":"edge","_outV":"104","_inV":"54","_label":"followed_by"},{"weight":4,"_id":"3196","_type":"edge","_outV":"104","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"3197","_type":"edge","_outV":"104","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"3198","_type":"edge","_outV":"104","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"3199","_type":"edge","_outV":"104","_inV":"33","_label":"followed_by"},{"weight":2,"_id":"32","_type":"edge","_outV":"9","_inV":"36","_label":"followed_by"},{"weight":4,"_id":"320","_type":"edge","_outV":"34","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"3200","_type":"edge","_outV":"104","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"3201","_type":"edge","_outV":"104","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3202","_type":"edge","_outV":"104","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"3203","_type":"edge","_outV":"229","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"3204","_type":"edge","_outV":"229","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3205","_type":"edge","_outV":"229","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3206","_type":"edge","_outV":"229","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"3207","_type":"edge","_outV":"229","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"3208","_type":"edge","_outV":"229","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3209","_type":"edge","_outV":"229","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"321","_type":"edge","_outV":"34","_inV":"168","_label":"followed_by"},{"weight":2,"_id":"3210","_type":"edge","_outV":"229","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"3211","_type":"edge","_outV":"229","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3212","_type":"edge","_outV":"229","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"3213","_type":"edge","_outV":"229","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3214","_type":"edge","_outV":"229","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"3215","_type":"edge","_outV":"229","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"3216","_type":"edge","_outV":"63","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"3217","_type":"edge","_outV":"63","_inV":"103","_label":"followed_by"},{"weight":6,"_id":"3218","_type":"edge","_outV":"63","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3219","_type":"edge","_outV":"63","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"322","_type":"edge","_outV":"34","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3220","_type":"edge","_outV":"63","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3221","_type":"edge","_outV":"63","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3222","_type":"edge","_outV":"63","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3223","_type":"edge","_outV":"63","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3224","_type":"edge","_outV":"63","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"3225","_type":"edge","_outV":"63","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3226","_type":"edge","_outV":"63","_inV":"32","_label":"followed_by"},{"weight":7,"_id":"3227","_type":"edge","_outV":"63","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3228","_type":"edge","_outV":"63","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3229","_type":"edge","_outV":"63","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"323","_type":"edge","_outV":"34","_inV":"2","_label":"followed_by"},{"weight":4,"_id":"3230","_type":"edge","_outV":"63","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3231","_type":"edge","_outV":"63","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3232","_type":"edge","_outV":"63","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3233","_type":"edge","_outV":"63","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3234","_type":"edge","_outV":"63","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3235","_type":"edge","_outV":"63","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3236","_type":"edge","_outV":"63","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"3237","_type":"edge","_outV":"63","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3238","_type":"edge","_outV":"63","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3239","_type":"edge","_outV":"63","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"324","_type":"edge","_outV":"34","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3240","_type":"edge","_outV":"63","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3241","_type":"edge","_outV":"63","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3242","_type":"edge","_outV":"63","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3243","_type":"edge","_outV":"63","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"3244","_type":"edge","_outV":"63","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3245","_type":"edge","_outV":"63","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3246","_type":"edge","_outV":"63","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"3247","_type":"edge","_outV":"63","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3248","_type":"edge","_outV":"63","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3249","_type":"edge","_outV":"63","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"325","_type":"edge","_outV":"34","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"3250","_type":"edge","_outV":"63","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"3251","_type":"edge","_outV":"63","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3252","_type":"edge","_outV":"63","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"3253","_type":"edge","_outV":"293","_inV":"305","_label":"followed_by"},{"weight":2,"_id":"3254","_type":"edge","_outV":"285","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3255","_type":"edge","_outV":"285","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3256","_type":"edge","_outV":"285","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3257","_type":"edge","_outV":"306","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"3258","_type":"edge","_outV":"146","_inV":"145","_label":"followed_by"},{"weight":1,"_id":"3259","_type":"edge","_outV":"146","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"326","_type":"edge","_outV":"34","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3260","_type":"edge","_outV":"287","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"3261","_type":"edge","_outV":"287","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3262","_type":"edge","_outV":"160","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"3263","_type":"edge","_outV":"160","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"3264","_type":"edge","_outV":"160","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"3265","_type":"edge","_outV":"160","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"3266","_type":"edge","_outV":"160","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3267","_type":"edge","_outV":"160","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"3268","_type":"edge","_outV":"160","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"3269","_type":"edge","_outV":"160","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"327","_type":"edge","_outV":"34","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3270","_type":"edge","_outV":"160","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3271","_type":"edge","_outV":"160","_inV":"12","_label":"followed_by"},{"weight":18,"_id":"3272","_type":"edge","_outV":"160","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"3273","_type":"edge","_outV":"160","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"3274","_type":"edge","_outV":"160","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"3275","_type":"edge","_outV":"160","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3276","_type":"edge","_outV":"160","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"3277","_type":"edge","_outV":"160","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3278","_type":"edge","_outV":"160","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3279","_type":"edge","_outV":"160","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"328","_type":"edge","_outV":"34","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3280","_type":"edge","_outV":"160","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3281","_type":"edge","_outV":"160","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"3282","_type":"edge","_outV":"160","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"3283","_type":"edge","_outV":"160","_inV":"180","_label":"followed_by"},{"weight":15,"_id":"3284","_type":"edge","_outV":"160","_inV":"65","_label":"followed_by"},{"weight":7,"_id":"3285","_type":"edge","_outV":"160","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"3286","_type":"edge","_outV":"160","_inV":"154","_label":"followed_by"},{"weight":14,"_id":"3287","_type":"edge","_outV":"160","_inV":"38","_label":"followed_by"},{"weight":10,"_id":"3288","_type":"edge","_outV":"160","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3289","_type":"edge","_outV":"160","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"329","_type":"edge","_outV":"34","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3290","_type":"edge","_outV":"160","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3291","_type":"edge","_outV":"160","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3292","_type":"edge","_outV":"160","_inV":"155","_label":"followed_by"},{"weight":8,"_id":"3293","_type":"edge","_outV":"160","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"3294","_type":"edge","_outV":"160","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3295","_type":"edge","_outV":"160","_inV":"214","_label":"followed_by"},{"weight":8,"_id":"3296","_type":"edge","_outV":"160","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3297","_type":"edge","_outV":"160","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"3298","_type":"edge","_outV":"160","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"3299","_type":"edge","_outV":"160","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"33","_type":"edge","_outV":"9","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"330","_type":"edge","_outV":"34","_inV":"58","_label":"followed_by"},{"weight":8,"_id":"3300","_type":"edge","_outV":"160","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3301","_type":"edge","_outV":"160","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"3302","_type":"edge","_outV":"160","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"3303","_type":"edge","_outV":"160","_inV":"151","_label":"followed_by"},{"weight":6,"_id":"3304","_type":"edge","_outV":"160","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3305","_type":"edge","_outV":"160","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"3306","_type":"edge","_outV":"160","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"3307","_type":"edge","_outV":"160","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3308","_type":"edge","_outV":"160","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3309","_type":"edge","_outV":"160","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"331","_type":"edge","_outV":"34","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"3310","_type":"edge","_outV":"160","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"3311","_type":"edge","_outV":"252","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3312","_type":"edge","_outV":"252","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3313","_type":"edge","_outV":"252","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3314","_type":"edge","_outV":"252","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3315","_type":"edge","_outV":"252","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3316","_type":"edge","_outV":"252","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3317","_type":"edge","_outV":"252","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3318","_type":"edge","_outV":"252","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3319","_type":"edge","_outV":"252","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"332","_type":"edge","_outV":"34","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"3320","_type":"edge","_outV":"252","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"3321","_type":"edge","_outV":"252","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3322","_type":"edge","_outV":"252","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3323","_type":"edge","_outV":"252","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3324","_type":"edge","_outV":"230","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3325","_type":"edge","_outV":"268","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3326","_type":"edge","_outV":"268","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3327","_type":"edge","_outV":"268","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3328","_type":"edge","_outV":"268","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3329","_type":"edge","_outV":"268","_inV":"307","_label":"followed_by"},{"weight":1,"_id":"333","_type":"edge","_outV":"34","_inV":"171","_label":"followed_by"},{"weight":2,"_id":"3330","_type":"edge","_outV":"155","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3331","_type":"edge","_outV":"155","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3332","_type":"edge","_outV":"155","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"3333","_type":"edge","_outV":"155","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3334","_type":"edge","_outV":"155","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3335","_type":"edge","_outV":"155","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3336","_type":"edge","_outV":"155","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3337","_type":"edge","_outV":"155","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3338","_type":"edge","_outV":"155","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3339","_type":"edge","_outV":"155","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"334","_type":"edge","_outV":"34","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3340","_type":"edge","_outV":"155","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3341","_type":"edge","_outV":"155","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"3342","_type":"edge","_outV":"155","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"3343","_type":"edge","_outV":"155","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3344","_type":"edge","_outV":"301","_inV":"308","_label":"followed_by"},{"weight":1,"_id":"3345","_type":"edge","_outV":"301","_inV":"143","_label":"followed_by"},{"weight":4,"_id":"3346","_type":"edge","_outV":"184","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3347","_type":"edge","_outV":"184","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"3348","_type":"edge","_outV":"184","_inV":"100","_label":"followed_by"},{"weight":5,"_id":"3349","_type":"edge","_outV":"184","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"335","_type":"edge","_outV":"34","_inV":"172","_label":"followed_by"},{"weight":2,"_id":"3350","_type":"edge","_outV":"184","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"3351","_type":"edge","_outV":"184","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"3352","_type":"edge","_outV":"184","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3353","_type":"edge","_outV":"184","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3354","_type":"edge","_outV":"184","_inV":"294","_label":"followed_by"},{"weight":21,"_id":"3355","_type":"edge","_outV":"184","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"3356","_type":"edge","_outV":"184","_inV":"101","_label":"followed_by"},{"weight":11,"_id":"3357","_type":"edge","_outV":"184","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"3358","_type":"edge","_outV":"184","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"3359","_type":"edge","_outV":"184","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"336","_type":"edge","_outV":"34","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"3360","_type":"edge","_outV":"184","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"3361","_type":"edge","_outV":"184","_inV":"98","_label":"followed_by"},{"weight":6,"_id":"3362","_type":"edge","_outV":"184","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3363","_type":"edge","_outV":"184","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3364","_type":"edge","_outV":"184","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3365","_type":"edge","_outV":"184","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"3366","_type":"edge","_outV":"184","_inV":"27","_label":"followed_by"},{"weight":6,"_id":"3367","_type":"edge","_outV":"184","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3368","_type":"edge","_outV":"184","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"3369","_type":"edge","_outV":"184","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"337","_type":"edge","_outV":"34","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3370","_type":"edge","_outV":"184","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"3371","_type":"edge","_outV":"184","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"3372","_type":"edge","_outV":"184","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3373","_type":"edge","_outV":"184","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"3374","_type":"edge","_outV":"184","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"3375","_type":"edge","_outV":"184","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3376","_type":"edge","_outV":"184","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"3377","_type":"edge","_outV":"184","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"3378","_type":"edge","_outV":"184","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"3379","_type":"edge","_outV":"184","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"338","_type":"edge","_outV":"34","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3380","_type":"edge","_outV":"184","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3381","_type":"edge","_outV":"184","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3382","_type":"edge","_outV":"184","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3383","_type":"edge","_outV":"184","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3384","_type":"edge","_outV":"184","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3385","_type":"edge","_outV":"184","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"3386","_type":"edge","_outV":"177","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3387","_type":"edge","_outV":"177","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"3388","_type":"edge","_outV":"177","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"3389","_type":"edge","_outV":"177","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"339","_type":"edge","_outV":"34","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"3390","_type":"edge","_outV":"177","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"3391","_type":"edge","_outV":"309","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3392","_type":"edge","_outV":"309","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"3393","_type":"edge","_outV":"309","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"3394","_type":"edge","_outV":"77","_inV":"271","_label":"followed_by"},{"weight":1,"_id":"3395","_type":"edge","_outV":"77","_inV":"311","_label":"followed_by"},{"weight":1,"_id":"3396","_type":"edge","_outV":"77","_inV":"260","_label":"followed_by"},{"weight":2,"_id":"3397","_type":"edge","_outV":"77","_inV":"269","_label":"followed_by"},{"weight":1,"_id":"3398","_type":"edge","_outV":"77","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"3399","_type":"edge","_outV":"77","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"34","_type":"edge","_outV":"9","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"340","_type":"edge","_outV":"34","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"3400","_type":"edge","_outV":"77","_inV":"108","_label":"followed_by"},{"weight":7,"_id":"3401","_type":"edge","_outV":"77","_inV":"54","_label":"followed_by"},{"weight":8,"_id":"3402","_type":"edge","_outV":"77","_inV":"58","_label":"followed_by"},{"weight":7,"_id":"3403","_type":"edge","_outV":"77","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3404","_type":"edge","_outV":"77","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"3405","_type":"edge","_outV":"77","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"3406","_type":"edge","_outV":"77","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3407","_type":"edge","_outV":"77","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"3408","_type":"edge","_outV":"77","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"3409","_type":"edge","_outV":"77","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"341","_type":"edge","_outV":"34","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3410","_type":"edge","_outV":"77","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3411","_type":"edge","_outV":"77","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3412","_type":"edge","_outV":"77","_inV":"81","_label":"followed_by"},{"weight":4,"_id":"3413","_type":"edge","_outV":"77","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3414","_type":"edge","_outV":"77","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3415","_type":"edge","_outV":"77","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3416","_type":"edge","_outV":"77","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3417","_type":"edge","_outV":"77","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"3418","_type":"edge","_outV":"77","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3419","_type":"edge","_outV":"77","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"342","_type":"edge","_outV":"34","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3420","_type":"edge","_outV":"77","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"3421","_type":"edge","_outV":"77","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"3422","_type":"edge","_outV":"77","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"3423","_type":"edge","_outV":"77","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3424","_type":"edge","_outV":"77","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"3425","_type":"edge","_outV":"77","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3426","_type":"edge","_outV":"77","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3427","_type":"edge","_outV":"77","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3428","_type":"edge","_outV":"77","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"3429","_type":"edge","_outV":"77","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"343","_type":"edge","_outV":"34","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"3430","_type":"edge","_outV":"312","_inV":"30","_label":"followed_by"},{"weight":8,"_id":"3431","_type":"edge","_outV":"58","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"3432","_type":"edge","_outV":"58","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"3433","_type":"edge","_outV":"58","_inV":"21","_label":"followed_by"},{"weight":5,"_id":"3434","_type":"edge","_outV":"58","_inV":"11","_label":"followed_by"},{"weight":8,"_id":"3435","_type":"edge","_outV":"58","_inV":"13","_label":"followed_by"},{"weight":10,"_id":"3436","_type":"edge","_outV":"58","_inV":"10","_label":"followed_by"},{"weight":6,"_id":"3437","_type":"edge","_outV":"58","_inV":"24","_label":"followed_by"},{"weight":42,"_id":"3438","_type":"edge","_outV":"58","_inV":"26","_label":"followed_by"},{"weight":8,"_id":"3439","_type":"edge","_outV":"58","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"344","_type":"edge","_outV":"34","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3440","_type":"edge","_outV":"58","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"3441","_type":"edge","_outV":"58","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"3442","_type":"edge","_outV":"58","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"3443","_type":"edge","_outV":"58","_inV":"39","_label":"followed_by"},{"weight":10,"_id":"3444","_type":"edge","_outV":"58","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"3445","_type":"edge","_outV":"58","_inV":"209","_label":"followed_by"},{"weight":4,"_id":"3446","_type":"edge","_outV":"58","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3447","_type":"edge","_outV":"58","_inV":"109","_label":"followed_by"},{"weight":8,"_id":"3448","_type":"edge","_outV":"58","_inV":"88","_label":"followed_by"},{"weight":6,"_id":"3449","_type":"edge","_outV":"58","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"345","_type":"edge","_outV":"34","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"3450","_type":"edge","_outV":"58","_inV":"273","_label":"followed_by"},{"weight":1,"_id":"3451","_type":"edge","_outV":"58","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"3452","_type":"edge","_outV":"58","_inV":"198","_label":"followed_by"},{"weight":6,"_id":"3453","_type":"edge","_outV":"58","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3454","_type":"edge","_outV":"58","_inV":"199","_label":"followed_by"},{"weight":12,"_id":"3455","_type":"edge","_outV":"58","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3456","_type":"edge","_outV":"58","_inV":"116","_label":"followed_by"},{"weight":5,"_id":"3457","_type":"edge","_outV":"58","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3458","_type":"edge","_outV":"58","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"3459","_type":"edge","_outV":"58","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"346","_type":"edge","_outV":"34","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"3460","_type":"edge","_outV":"58","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"3461","_type":"edge","_outV":"58","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3462","_type":"edge","_outV":"58","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"3463","_type":"edge","_outV":"58","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"3464","_type":"edge","_outV":"58","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"3465","_type":"edge","_outV":"58","_inV":"121","_label":"followed_by"},{"weight":14,"_id":"3466","_type":"edge","_outV":"58","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"3467","_type":"edge","_outV":"58","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3468","_type":"edge","_outV":"58","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"3469","_type":"edge","_outV":"58","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"347","_type":"edge","_outV":"34","_inV":"177","_label":"followed_by"},{"weight":3,"_id":"3470","_type":"edge","_outV":"58","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3471","_type":"edge","_outV":"58","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3472","_type":"edge","_outV":"58","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3473","_type":"edge","_outV":"58","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3474","_type":"edge","_outV":"58","_inV":"141","_label":"followed_by"},{"weight":11,"_id":"3475","_type":"edge","_outV":"58","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3476","_type":"edge","_outV":"58","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"3477","_type":"edge","_outV":"58","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3478","_type":"edge","_outV":"58","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"3479","_type":"edge","_outV":"58","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"348","_type":"edge","_outV":"178","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3480","_type":"edge","_outV":"58","_inV":"292","_label":"followed_by"},{"weight":8,"_id":"3481","_type":"edge","_outV":"58","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3482","_type":"edge","_outV":"58","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3483","_type":"edge","_outV":"58","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"3484","_type":"edge","_outV":"58","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"3485","_type":"edge","_outV":"58","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"3486","_type":"edge","_outV":"58","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3487","_type":"edge","_outV":"58","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"3488","_type":"edge","_outV":"58","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"3489","_type":"edge","_outV":"58","_inV":"248","_label":"followed_by"},{"weight":2,"_id":"349","_type":"edge","_outV":"178","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"3490","_type":"edge","_outV":"58","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"3491","_type":"edge","_outV":"58","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"3492","_type":"edge","_outV":"58","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"3493","_type":"edge","_outV":"58","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"3494","_type":"edge","_outV":"58","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"3495","_type":"edge","_outV":"58","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3496","_type":"edge","_outV":"58","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"3497","_type":"edge","_outV":"58","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"3498","_type":"edge","_outV":"58","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3499","_type":"edge","_outV":"58","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"35","_type":"edge","_outV":"9","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"350","_type":"edge","_outV":"178","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"3500","_type":"edge","_outV":"58","_inV":"119","_label":"followed_by"},{"weight":3,"_id":"3501","_type":"edge","_outV":"192","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"3502","_type":"edge","_outV":"192","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"3503","_type":"edge","_outV":"192","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3504","_type":"edge","_outV":"192","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"3505","_type":"edge","_outV":"192","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3506","_type":"edge","_outV":"192","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3507","_type":"edge","_outV":"223","_inV":"245","_label":"followed_by"},{"weight":2,"_id":"3508","_type":"edge","_outV":"223","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3509","_type":"edge","_outV":"223","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"351","_type":"edge","_outV":"178","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"3510","_type":"edge","_outV":"223","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3511","_type":"edge","_outV":"223","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"3512","_type":"edge","_outV":"223","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"3513","_type":"edge","_outV":"223","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3514","_type":"edge","_outV":"223","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3515","_type":"edge","_outV":"223","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"3516","_type":"edge","_outV":"223","_inV":"313","_label":"followed_by"},{"weight":1,"_id":"3517","_type":"edge","_outV":"223","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3518","_type":"edge","_outV":"223","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"3519","_type":"edge","_outV":"223","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"352","_type":"edge","_outV":"178","_inV":"179","_label":"followed_by"},{"weight":3,"_id":"3520","_type":"edge","_outV":"223","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"3521","_type":"edge","_outV":"223","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3522","_type":"edge","_outV":"223","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"3523","_type":"edge","_outV":"223","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3524","_type":"edge","_outV":"223","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3525","_type":"edge","_outV":"223","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"3526","_type":"edge","_outV":"223","_inV":"314","_label":"followed_by"},{"weight":1,"_id":"3527","_type":"edge","_outV":"223","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3528","_type":"edge","_outV":"223","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3529","_type":"edge","_outV":"223","_inV":"63","_label":"followed_by"},{"weight":6,"_id":"353","_type":"edge","_outV":"74","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3530","_type":"edge","_outV":"223","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3531","_type":"edge","_outV":"201","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"3532","_type":"edge","_outV":"201","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"3533","_type":"edge","_outV":"201","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3534","_type":"edge","_outV":"201","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3535","_type":"edge","_outV":"201","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3536","_type":"edge","_outV":"201","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3537","_type":"edge","_outV":"201","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3538","_type":"edge","_outV":"201","_inV":"136","_label":"followed_by"},{"weight":15,"_id":"3539","_type":"edge","_outV":"201","_inV":"94","_label":"followed_by"},{"weight":9,"_id":"354","_type":"edge","_outV":"74","_inV":"127","_label":"followed_by"},{"weight":11,"_id":"3540","_type":"edge","_outV":"201","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"3541","_type":"edge","_outV":"201","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"3542","_type":"edge","_outV":"201","_inV":"9","_label":"followed_by"},{"weight":3,"_id":"3543","_type":"edge","_outV":"201","_inV":"129","_label":"followed_by"},{"weight":4,"_id":"3544","_type":"edge","_outV":"201","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"3545","_type":"edge","_outV":"201","_inV":"92","_label":"followed_by"},{"weight":6,"_id":"3546","_type":"edge","_outV":"201","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"3547","_type":"edge","_outV":"201","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"3548","_type":"edge","_outV":"201","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"3549","_type":"edge","_outV":"201","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"355","_type":"edge","_outV":"74","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"3550","_type":"edge","_outV":"201","_inV":"66","_label":"followed_by"},{"weight":14,"_id":"3551","_type":"edge","_outV":"56","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"3552","_type":"edge","_outV":"56","_inV":"13","_label":"followed_by"},{"weight":16,"_id":"3553","_type":"edge","_outV":"56","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"3554","_type":"edge","_outV":"56","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"3555","_type":"edge","_outV":"56","_inV":"22","_label":"followed_by"},{"weight":21,"_id":"3556","_type":"edge","_outV":"56","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3557","_type":"edge","_outV":"56","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"3558","_type":"edge","_outV":"56","_inV":"207","_label":"followed_by"},{"weight":16,"_id":"3559","_type":"edge","_outV":"56","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"356","_type":"edge","_outV":"74","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3560","_type":"edge","_outV":"56","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"3561","_type":"edge","_outV":"56","_inV":"315","_label":"followed_by"},{"weight":6,"_id":"3562","_type":"edge","_outV":"56","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3563","_type":"edge","_outV":"56","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"3564","_type":"edge","_outV":"56","_inV":"19","_label":"followed_by"},{"weight":9,"_id":"3565","_type":"edge","_outV":"56","_inV":"12","_label":"followed_by"},{"weight":9,"_id":"3566","_type":"edge","_outV":"56","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3567","_type":"edge","_outV":"56","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"3568","_type":"edge","_outV":"56","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"3569","_type":"edge","_outV":"56","_inV":"23","_label":"followed_by"},{"weight":9,"_id":"357","_type":"edge","_outV":"74","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3570","_type":"edge","_outV":"56","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"3571","_type":"edge","_outV":"56","_inV":"26","_label":"followed_by"},{"weight":24,"_id":"3572","_type":"edge","_outV":"56","_inV":"32","_label":"followed_by"},{"weight":10,"_id":"3573","_type":"edge","_outV":"56","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"3574","_type":"edge","_outV":"56","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"3575","_type":"edge","_outV":"56","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3576","_type":"edge","_outV":"56","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3577","_type":"edge","_outV":"56","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"3578","_type":"edge","_outV":"56","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3579","_type":"edge","_outV":"56","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"358","_type":"edge","_outV":"74","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"3580","_type":"edge","_outV":"56","_inV":"189","_label":"followed_by"},{"weight":20,"_id":"3581","_type":"edge","_outV":"56","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"3582","_type":"edge","_outV":"56","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"3583","_type":"edge","_outV":"56","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3584","_type":"edge","_outV":"56","_inV":"38","_label":"followed_by"},{"weight":13,"_id":"3585","_type":"edge","_outV":"56","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3586","_type":"edge","_outV":"56","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"3587","_type":"edge","_outV":"56","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"3588","_type":"edge","_outV":"56","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"3589","_type":"edge","_outV":"56","_inV":"39","_label":"followed_by"},{"weight":11,"_id":"359","_type":"edge","_outV":"74","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"3590","_type":"edge","_outV":"56","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3591","_type":"edge","_outV":"56","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"3592","_type":"edge","_outV":"56","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3593","_type":"edge","_outV":"56","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3594","_type":"edge","_outV":"56","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3595","_type":"edge","_outV":"56","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3596","_type":"edge","_outV":"56","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"3597","_type":"edge","_outV":"56","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"3598","_type":"edge","_outV":"56","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3599","_type":"edge","_outV":"56","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"36","_type":"edge","_outV":"9","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"360","_type":"edge","_outV":"74","_inV":"148","_label":"followed_by"},{"weight":6,"_id":"3600","_type":"edge","_outV":"56","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"3601","_type":"edge","_outV":"56","_inV":"117","_label":"followed_by"},{"weight":3,"_id":"3602","_type":"edge","_outV":"56","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3603","_type":"edge","_outV":"56","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"3604","_type":"edge","_outV":"56","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3605","_type":"edge","_outV":"56","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"3606","_type":"edge","_outV":"56","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"3607","_type":"edge","_outV":"56","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3608","_type":"edge","_outV":"56","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3609","_type":"edge","_outV":"56","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"361","_type":"edge","_outV":"74","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"3610","_type":"edge","_outV":"56","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"3611","_type":"edge","_outV":"56","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3612","_type":"edge","_outV":"56","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3613","_type":"edge","_outV":"56","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"3614","_type":"edge","_outV":"56","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"3615","_type":"edge","_outV":"56","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"3616","_type":"edge","_outV":"56","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"3617","_type":"edge","_outV":"24","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3618","_type":"edge","_outV":"24","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"3619","_type":"edge","_outV":"24","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"362","_type":"edge","_outV":"74","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"3620","_type":"edge","_outV":"24","_inV":"4","_label":"followed_by"},{"weight":28,"_id":"3621","_type":"edge","_outV":"24","_inV":"54","_label":"followed_by"},{"weight":24,"_id":"3622","_type":"edge","_outV":"24","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"3623","_type":"edge","_outV":"24","_inV":"59","_label":"followed_by"},{"weight":7,"_id":"3624","_type":"edge","_outV":"24","_inV":"46","_label":"followed_by"},{"weight":17,"_id":"3625","_type":"edge","_outV":"24","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"3626","_type":"edge","_outV":"24","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"3627","_type":"edge","_outV":"24","_inV":"235","_label":"followed_by"},{"weight":9,"_id":"3628","_type":"edge","_outV":"24","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"3629","_type":"edge","_outV":"24","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"363","_type":"edge","_outV":"74","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"3630","_type":"edge","_outV":"24","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"3631","_type":"edge","_outV":"24","_inV":"94","_label":"followed_by"},{"weight":7,"_id":"3632","_type":"edge","_outV":"24","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3633","_type":"edge","_outV":"24","_inV":"21","_label":"followed_by"},{"weight":11,"_id":"3634","_type":"edge","_outV":"24","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"3635","_type":"edge","_outV":"24","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"3636","_type":"edge","_outV":"24","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"3637","_type":"edge","_outV":"24","_inV":"11","_label":"followed_by"},{"weight":18,"_id":"3638","_type":"edge","_outV":"24","_inV":"58","_label":"followed_by"},{"weight":13,"_id":"3639","_type":"edge","_outV":"24","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"364","_type":"edge","_outV":"74","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"3640","_type":"edge","_outV":"24","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"3641","_type":"edge","_outV":"24","_inV":"9","_label":"followed_by"},{"weight":5,"_id":"3642","_type":"edge","_outV":"24","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"3643","_type":"edge","_outV":"24","_inV":"316","_label":"followed_by"},{"weight":1,"_id":"3644","_type":"edge","_outV":"24","_inV":"52","_label":"followed_by"},{"weight":21,"_id":"3645","_type":"edge","_outV":"24","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3646","_type":"edge","_outV":"24","_inV":"55","_label":"followed_by"},{"weight":4,"_id":"3647","_type":"edge","_outV":"24","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3648","_type":"edge","_outV":"24","_inV":"49","_label":"followed_by"},{"weight":10,"_id":"3649","_type":"edge","_outV":"24","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"365","_type":"edge","_outV":"74","_inV":"122","_label":"followed_by"},{"weight":5,"_id":"3650","_type":"edge","_outV":"24","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3651","_type":"edge","_outV":"24","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"3652","_type":"edge","_outV":"24","_inV":"82","_label":"followed_by"},{"weight":14,"_id":"3653","_type":"edge","_outV":"24","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"3654","_type":"edge","_outV":"24","_inV":"12","_label":"followed_by"},{"weight":11,"_id":"3655","_type":"edge","_outV":"24","_inV":"104","_label":"followed_by"},{"weight":7,"_id":"3656","_type":"edge","_outV":"24","_inV":"68","_label":"followed_by"},{"weight":14,"_id":"3657","_type":"edge","_outV":"24","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"3658","_type":"edge","_outV":"24","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3659","_type":"edge","_outV":"24","_inV":"154","_label":"followed_by"},{"weight":38,"_id":"366","_type":"edge","_outV":"74","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3660","_type":"edge","_outV":"24","_inV":"155","_label":"followed_by"},{"weight":6,"_id":"3661","_type":"edge","_outV":"24","_inV":"112","_label":"followed_by"},{"weight":6,"_id":"3662","_type":"edge","_outV":"24","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"3663","_type":"edge","_outV":"24","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3664","_type":"edge","_outV":"24","_inV":"208","_label":"followed_by"},{"weight":34,"_id":"3665","_type":"edge","_outV":"24","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3666","_type":"edge","_outV":"24","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"3667","_type":"edge","_outV":"24","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"3668","_type":"edge","_outV":"24","_inV":"121","_label":"followed_by"},{"weight":3,"_id":"3669","_type":"edge","_outV":"24","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"367","_type":"edge","_outV":"74","_inV":"157","_label":"followed_by"},{"weight":4,"_id":"3670","_type":"edge","_outV":"24","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"3671","_type":"edge","_outV":"24","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"3672","_type":"edge","_outV":"24","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"3673","_type":"edge","_outV":"24","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3674","_type":"edge","_outV":"24","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"3675","_type":"edge","_outV":"24","_inV":"170","_label":"followed_by"},{"weight":4,"_id":"3676","_type":"edge","_outV":"24","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3677","_type":"edge","_outV":"24","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"3678","_type":"edge","_outV":"24","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3679","_type":"edge","_outV":"24","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"368","_type":"edge","_outV":"74","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"3680","_type":"edge","_outV":"24","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3681","_type":"edge","_outV":"24","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"3682","_type":"edge","_outV":"24","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"3683","_type":"edge","_outV":"24","_inV":"91","_label":"followed_by"},{"weight":5,"_id":"3684","_type":"edge","_outV":"24","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"3685","_type":"edge","_outV":"24","_inV":"106","_label":"followed_by"},{"weight":2,"_id":"3686","_type":"edge","_outV":"24","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3687","_type":"edge","_outV":"24","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"3688","_type":"edge","_outV":"24","_inV":"168","_label":"followed_by"},{"weight":9,"_id":"3689","_type":"edge","_outV":"24","_inV":"131","_label":"followed_by"},{"weight":4,"_id":"369","_type":"edge","_outV":"74","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"3690","_type":"edge","_outV":"24","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3691","_type":"edge","_outV":"24","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3692","_type":"edge","_outV":"24","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"3693","_type":"edge","_outV":"24","_inV":"254","_label":"followed_by"},{"weight":57,"_id":"3694","_type":"edge","_outV":"3","_inV":"5","_label":"followed_by"},{"weight":30,"_id":"3695","_type":"edge","_outV":"3","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"3696","_type":"edge","_outV":"3","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"3697","_type":"edge","_outV":"3","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"3698","_type":"edge","_outV":"3","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"3699","_type":"edge","_outV":"3","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"37","_type":"edge","_outV":"9","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"370","_type":"edge","_outV":"74","_inV":"53","_label":"followed_by"},{"weight":7,"_id":"3700","_type":"edge","_outV":"3","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"3701","_type":"edge","_outV":"3","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"3702","_type":"edge","_outV":"3","_inV":"317","_label":"followed_by"},{"weight":5,"_id":"3703","_type":"edge","_outV":"3","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"3704","_type":"edge","_outV":"3","_inV":"1","_label":"followed_by"},{"weight":2,"_id":"3705","_type":"edge","_outV":"3","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"3706","_type":"edge","_outV":"3","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"3707","_type":"edge","_outV":"3","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"3708","_type":"edge","_outV":"3","_inV":"318","_label":"followed_by"},{"weight":26,"_id":"3709","_type":"edge","_outV":"3","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"371","_type":"edge","_outV":"74","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"3710","_type":"edge","_outV":"3","_inV":"96","_label":"followed_by"},{"weight":15,"_id":"3711","_type":"edge","_outV":"3","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"3712","_type":"edge","_outV":"3","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"3713","_type":"edge","_outV":"3","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"3714","_type":"edge","_outV":"3","_inV":"215","_label":"followed_by"},{"weight":10,"_id":"3715","_type":"edge","_outV":"3","_inV":"127","_label":"followed_by"},{"weight":3,"_id":"3716","_type":"edge","_outV":"3","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"3717","_type":"edge","_outV":"3","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3718","_type":"edge","_outV":"3","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3719","_type":"edge","_outV":"3","_inV":"134","_label":"followed_by"},{"weight":3,"_id":"372","_type":"edge","_outV":"74","_inV":"50","_label":"followed_by"},{"weight":10,"_id":"3720","_type":"edge","_outV":"3","_inV":"25","_label":"followed_by"},{"weight":54,"_id":"3721","_type":"edge","_outV":"3","_inV":"125","_label":"followed_by"},{"weight":26,"_id":"3722","_type":"edge","_outV":"3","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"3723","_type":"edge","_outV":"3","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"3724","_type":"edge","_outV":"3","_inV":"145","_label":"followed_by"},{"weight":3,"_id":"3725","_type":"edge","_outV":"3","_inV":"319","_label":"followed_by"},{"weight":1,"_id":"3726","_type":"edge","_outV":"3","_inV":"12","_label":"followed_by"},{"weight":37,"_id":"3727","_type":"edge","_outV":"3","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"3728","_type":"edge","_outV":"3","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3729","_type":"edge","_outV":"3","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"373","_type":"edge","_outV":"74","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"3730","_type":"edge","_outV":"3","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"3731","_type":"edge","_outV":"3","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"3732","_type":"edge","_outV":"3","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"3733","_type":"edge","_outV":"3","_inV":"211","_label":"followed_by"},{"weight":13,"_id":"3734","_type":"edge","_outV":"3","_inV":"87","_label":"followed_by"},{"weight":4,"_id":"3735","_type":"edge","_outV":"3","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"3736","_type":"edge","_outV":"3","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3737","_type":"edge","_outV":"3","_inV":"320","_label":"followed_by"},{"weight":3,"_id":"3738","_type":"edge","_outV":"3","_inV":"61","_label":"followed_by"},{"weight":3,"_id":"3739","_type":"edge","_outV":"3","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"374","_type":"edge","_outV":"74","_inV":"103","_label":"followed_by"},{"weight":7,"_id":"3740","_type":"edge","_outV":"3","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"3741","_type":"edge","_outV":"3","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"3742","_type":"edge","_outV":"3","_inV":"315","_label":"followed_by"},{"weight":1,"_id":"3743","_type":"edge","_outV":"3","_inV":"261","_label":"followed_by"},{"weight":13,"_id":"3744","_type":"edge","_outV":"3","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"3745","_type":"edge","_outV":"3","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"3746","_type":"edge","_outV":"3","_inV":"38","_label":"followed_by"},{"weight":14,"_id":"3747","_type":"edge","_outV":"3","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"3748","_type":"edge","_outV":"3","_inV":"62","_label":"followed_by"},{"weight":8,"_id":"3749","_type":"edge","_outV":"3","_inV":"150","_label":"followed_by"},{"weight":88,"_id":"375","_type":"edge","_outV":"74","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3750","_type":"edge","_outV":"3","_inV":"309","_label":"followed_by"},{"weight":1,"_id":"3751","_type":"edge","_outV":"3","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"3752","_type":"edge","_outV":"3","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"3753","_type":"edge","_outV":"3","_inV":"321","_label":"followed_by"},{"weight":2,"_id":"3754","_type":"edge","_outV":"3","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"3755","_type":"edge","_outV":"3","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3756","_type":"edge","_outV":"3","_inV":"120","_label":"followed_by"},{"weight":5,"_id":"3757","_type":"edge","_outV":"3","_inV":"46","_label":"followed_by"},{"weight":5,"_id":"3758","_type":"edge","_outV":"3","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"3759","_type":"edge","_outV":"3","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"376","_type":"edge","_outV":"74","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3760","_type":"edge","_outV":"3","_inV":"81","_label":"followed_by"},{"weight":5,"_id":"3761","_type":"edge","_outV":"3","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"3762","_type":"edge","_outV":"3","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"3763","_type":"edge","_outV":"3","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"3764","_type":"edge","_outV":"3","_inV":"214","_label":"followed_by"},{"weight":2,"_id":"3765","_type":"edge","_outV":"3","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"3766","_type":"edge","_outV":"3","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"3767","_type":"edge","_outV":"3","_inV":"217","_label":"followed_by"},{"weight":5,"_id":"3768","_type":"edge","_outV":"3","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"3769","_type":"edge","_outV":"3","_inV":"193","_label":"followed_by"},{"weight":6,"_id":"377","_type":"edge","_outV":"74","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"3770","_type":"edge","_outV":"3","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3771","_type":"edge","_outV":"3","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"3772","_type":"edge","_outV":"3","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"3773","_type":"edge","_outV":"3","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3774","_type":"edge","_outV":"3","_inV":"240","_label":"followed_by"},{"weight":1,"_id":"3775","_type":"edge","_outV":"3","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"3776","_type":"edge","_outV":"3","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3777","_type":"edge","_outV":"3","_inV":"259","_label":"followed_by"},{"weight":2,"_id":"3778","_type":"edge","_outV":"168","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3779","_type":"edge","_outV":"168","_inV":"117","_label":"followed_by"},{"weight":6,"_id":"378","_type":"edge","_outV":"74","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3780","_type":"edge","_outV":"168","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"3781","_type":"edge","_outV":"168","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"3782","_type":"edge","_outV":"168","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"3783","_type":"edge","_outV":"168","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"3784","_type":"edge","_outV":"168","_inV":"169","_label":"followed_by"},{"weight":4,"_id":"3785","_type":"edge","_outV":"168","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"3786","_type":"edge","_outV":"168","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3787","_type":"edge","_outV":"168","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3788","_type":"edge","_outV":"168","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3789","_type":"edge","_outV":"168","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"379","_type":"edge","_outV":"74","_inV":"180","_label":"followed_by"},{"weight":21,"_id":"3790","_type":"edge","_outV":"88","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"3791","_type":"edge","_outV":"88","_inV":"53","_label":"followed_by"},{"weight":32,"_id":"3792","_type":"edge","_outV":"88","_inV":"100","_label":"followed_by"},{"weight":16,"_id":"3793","_type":"edge","_outV":"88","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"3794","_type":"edge","_outV":"88","_inV":"72","_label":"followed_by"},{"weight":16,"_id":"3795","_type":"edge","_outV":"88","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"3796","_type":"edge","_outV":"88","_inV":"14","_label":"followed_by"},{"weight":13,"_id":"3797","_type":"edge","_outV":"88","_inV":"56","_label":"followed_by"},{"weight":22,"_id":"3798","_type":"edge","_outV":"88","_inV":"73","_label":"followed_by"},{"weight":7,"_id":"3799","_type":"edge","_outV":"88","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"38","_type":"edge","_outV":"9","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"380","_type":"edge","_outV":"74","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"3800","_type":"edge","_outV":"88","_inV":"106","_label":"followed_by"},{"weight":9,"_id":"3801","_type":"edge","_outV":"88","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"3802","_type":"edge","_outV":"88","_inV":"39","_label":"followed_by"},{"weight":4,"_id":"3803","_type":"edge","_outV":"88","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"3804","_type":"edge","_outV":"88","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"3805","_type":"edge","_outV":"88","_inV":"152","_label":"followed_by"},{"weight":3,"_id":"3806","_type":"edge","_outV":"88","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3807","_type":"edge","_outV":"88","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"3808","_type":"edge","_outV":"88","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"3809","_type":"edge","_outV":"88","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"381","_type":"edge","_outV":"74","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"3810","_type":"edge","_outV":"88","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"3811","_type":"edge","_outV":"88","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"3812","_type":"edge","_outV":"88","_inV":"108","_label":"followed_by"},{"weight":8,"_id":"3813","_type":"edge","_outV":"88","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3814","_type":"edge","_outV":"88","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"3815","_type":"edge","_outV":"88","_inV":"62","_label":"followed_by"},{"weight":21,"_id":"3816","_type":"edge","_outV":"88","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3817","_type":"edge","_outV":"88","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3818","_type":"edge","_outV":"88","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3819","_type":"edge","_outV":"88","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"382","_type":"edge","_outV":"74","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3820","_type":"edge","_outV":"88","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3821","_type":"edge","_outV":"88","_inV":"322","_label":"followed_by"},{"weight":4,"_id":"3822","_type":"edge","_outV":"88","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"3823","_type":"edge","_outV":"88","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"3824","_type":"edge","_outV":"88","_inV":"223","_label":"followed_by"},{"weight":2,"_id":"3825","_type":"edge","_outV":"88","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"3826","_type":"edge","_outV":"88","_inV":"77","_label":"followed_by"},{"weight":4,"_id":"3827","_type":"edge","_outV":"88","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3828","_type":"edge","_outV":"88","_inV":"151","_label":"followed_by"},{"weight":6,"_id":"3829","_type":"edge","_outV":"88","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"383","_type":"edge","_outV":"74","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"3830","_type":"edge","_outV":"88","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"3831","_type":"edge","_outV":"88","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"3832","_type":"edge","_outV":"88","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"3833","_type":"edge","_outV":"88","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"3834","_type":"edge","_outV":"88","_inV":"137","_label":"followed_by"},{"weight":6,"_id":"3835","_type":"edge","_outV":"88","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"3836","_type":"edge","_outV":"88","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"3837","_type":"edge","_outV":"88","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3838","_type":"edge","_outV":"88","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"3839","_type":"edge","_outV":"261","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"384","_type":"edge","_outV":"74","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"3840","_type":"edge","_outV":"261","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3841","_type":"edge","_outV":"60","_inV":"10","_label":"followed_by"},{"weight":10,"_id":"3842","_type":"edge","_outV":"60","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"3843","_type":"edge","_outV":"60","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"3844","_type":"edge","_outV":"60","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3845","_type":"edge","_outV":"60","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"3846","_type":"edge","_outV":"60","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"3847","_type":"edge","_outV":"60","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"3848","_type":"edge","_outV":"60","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3849","_type":"edge","_outV":"60","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"385","_type":"edge","_outV":"74","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3850","_type":"edge","_outV":"60","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"3851","_type":"edge","_outV":"60","_inV":"181","_label":"followed_by"},{"weight":16,"_id":"3852","_type":"edge","_outV":"60","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"3853","_type":"edge","_outV":"60","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"3854","_type":"edge","_outV":"60","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3855","_type":"edge","_outV":"60","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3856","_type":"edge","_outV":"60","_inV":"29","_label":"followed_by"},{"weight":35,"_id":"3857","_type":"edge","_outV":"60","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3858","_type":"edge","_outV":"60","_inV":"123","_label":"followed_by"},{"weight":12,"_id":"3859","_type":"edge","_outV":"60","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"386","_type":"edge","_outV":"74","_inV":"29","_label":"followed_by"},{"weight":8,"_id":"3860","_type":"edge","_outV":"60","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3861","_type":"edge","_outV":"60","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"3862","_type":"edge","_outV":"60","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"3863","_type":"edge","_outV":"60","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"3864","_type":"edge","_outV":"60","_inV":"36","_label":"followed_by"},{"weight":11,"_id":"3865","_type":"edge","_outV":"60","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"3866","_type":"edge","_outV":"60","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3867","_type":"edge","_outV":"60","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"3868","_type":"edge","_outV":"60","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"3869","_type":"edge","_outV":"60","_inV":"280","_label":"followed_by"},{"weight":3,"_id":"387","_type":"edge","_outV":"74","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"3870","_type":"edge","_outV":"60","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3871","_type":"edge","_outV":"60","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"3872","_type":"edge","_outV":"60","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"3873","_type":"edge","_outV":"60","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"3874","_type":"edge","_outV":"60","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3875","_type":"edge","_outV":"60","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"3876","_type":"edge","_outV":"60","_inV":"172","_label":"followed_by"},{"weight":11,"_id":"3877","_type":"edge","_outV":"60","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"3878","_type":"edge","_outV":"51","_inV":"13","_label":"followed_by"},{"weight":12,"_id":"3879","_type":"edge","_outV":"51","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"388","_type":"edge","_outV":"74","_inV":"182","_label":"followed_by"},{"weight":12,"_id":"3880","_type":"edge","_outV":"51","_inV":"18","_label":"followed_by"},{"weight":16,"_id":"3881","_type":"edge","_outV":"51","_inV":"50","_label":"followed_by"},{"weight":12,"_id":"3882","_type":"edge","_outV":"51","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"3883","_type":"edge","_outV":"51","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"3884","_type":"edge","_outV":"51","_inV":"23","_label":"followed_by"},{"weight":14,"_id":"3885","_type":"edge","_outV":"51","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"3886","_type":"edge","_outV":"51","_inV":"55","_label":"followed_by"},{"weight":7,"_id":"3887","_type":"edge","_outV":"51","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"3888","_type":"edge","_outV":"51","_inV":"11","_label":"followed_by"},{"weight":4,"_id":"3889","_type":"edge","_outV":"51","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"389","_type":"edge","_outV":"74","_inV":"183","_label":"followed_by"},{"weight":9,"_id":"3890","_type":"edge","_outV":"51","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"3891","_type":"edge","_outV":"51","_inV":"25","_label":"followed_by"},{"weight":10,"_id":"3892","_type":"edge","_outV":"51","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"3893","_type":"edge","_outV":"51","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"3894","_type":"edge","_outV":"51","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"3895","_type":"edge","_outV":"51","_inV":"195","_label":"followed_by"},{"weight":1,"_id":"3896","_type":"edge","_outV":"51","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"3897","_type":"edge","_outV":"51","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"3898","_type":"edge","_outV":"51","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"3899","_type":"edge","_outV":"51","_inV":"290","_label":"followed_by"},{"weight":1,"_id":"39","_type":"edge","_outV":"9","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"390","_type":"edge","_outV":"74","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"3900","_type":"edge","_outV":"51","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"3901","_type":"edge","_outV":"51","_inV":"153","_label":"followed_by"},{"weight":9,"_id":"3902","_type":"edge","_outV":"51","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"3903","_type":"edge","_outV":"51","_inV":"103","_label":"followed_by"},{"weight":8,"_id":"3904","_type":"edge","_outV":"51","_inV":"68","_label":"followed_by"},{"weight":8,"_id":"3905","_type":"edge","_outV":"51","_inV":"112","_label":"followed_by"},{"weight":4,"_id":"3906","_type":"edge","_outV":"51","_inV":"121","_label":"followed_by"},{"weight":18,"_id":"3907","_type":"edge","_outV":"51","_inV":"32","_label":"followed_by"},{"weight":5,"_id":"3908","_type":"edge","_outV":"51","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"3909","_type":"edge","_outV":"51","_inV":"82","_label":"followed_by"},{"weight":9,"_id":"391","_type":"edge","_outV":"74","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"3910","_type":"edge","_outV":"51","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"3911","_type":"edge","_outV":"51","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"3912","_type":"edge","_outV":"51","_inV":"88","_label":"followed_by"},{"weight":15,"_id":"3913","_type":"edge","_outV":"51","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3914","_type":"edge","_outV":"51","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"3915","_type":"edge","_outV":"51","_inV":"70","_label":"followed_by"},{"weight":7,"_id":"3916","_type":"edge","_outV":"51","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"3917","_type":"edge","_outV":"51","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"3918","_type":"edge","_outV":"51","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"3919","_type":"edge","_outV":"51","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"392","_type":"edge","_outV":"74","_inV":"92","_label":"followed_by"},{"weight":7,"_id":"3920","_type":"edge","_outV":"51","_inV":"117","_label":"followed_by"},{"weight":4,"_id":"3921","_type":"edge","_outV":"51","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"3922","_type":"edge","_outV":"51","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3923","_type":"edge","_outV":"51","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"3924","_type":"edge","_outV":"51","_inV":"223","_label":"followed_by"},{"weight":3,"_id":"3925","_type":"edge","_outV":"51","_inV":"188","_label":"followed_by"},{"weight":7,"_id":"3926","_type":"edge","_outV":"51","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"3927","_type":"edge","_outV":"51","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"3928","_type":"edge","_outV":"51","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"3929","_type":"edge","_outV":"51","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"393","_type":"edge","_outV":"74","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"3930","_type":"edge","_outV":"51","_inV":"71","_label":"followed_by"},{"weight":7,"_id":"3931","_type":"edge","_outV":"51","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"3932","_type":"edge","_outV":"51","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"3933","_type":"edge","_outV":"51","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3934","_type":"edge","_outV":"51","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3935","_type":"edge","_outV":"51","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"3936","_type":"edge","_outV":"51","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"3937","_type":"edge","_outV":"51","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"3938","_type":"edge","_outV":"51","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"3939","_type":"edge","_outV":"51","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"394","_type":"edge","_outV":"74","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"3940","_type":"edge","_outV":"51","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"3941","_type":"edge","_outV":"51","_inV":"100","_label":"followed_by"},{"weight":12,"_id":"3942","_type":"edge","_outV":"138","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"3943","_type":"edge","_outV":"138","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"3944","_type":"edge","_outV":"138","_inV":"25","_label":"followed_by"},{"weight":4,"_id":"3945","_type":"edge","_outV":"138","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"3946","_type":"edge","_outV":"138","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"3947","_type":"edge","_outV":"138","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"3948","_type":"edge","_outV":"138","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"3949","_type":"edge","_outV":"138","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"395","_type":"edge","_outV":"74","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"3950","_type":"edge","_outV":"138","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"3951","_type":"edge","_outV":"138","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"3952","_type":"edge","_outV":"266","_inV":"264","_label":"followed_by"},{"weight":1,"_id":"3953","_type":"edge","_outV":"266","_inV":"251","_label":"followed_by"},{"weight":1,"_id":"3954","_type":"edge","_outV":"266","_inV":"249","_label":"followed_by"},{"weight":1,"_id":"3955","_type":"edge","_outV":"322","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"3956","_type":"edge","_outV":"106","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"3957","_type":"edge","_outV":"106","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"3958","_type":"edge","_outV":"106","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"3959","_type":"edge","_outV":"106","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"396","_type":"edge","_outV":"74","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"3960","_type":"edge","_outV":"106","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"3961","_type":"edge","_outV":"106","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"3962","_type":"edge","_outV":"106","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"3963","_type":"edge","_outV":"106","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"3964","_type":"edge","_outV":"106","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"3965","_type":"edge","_outV":"106","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"3966","_type":"edge","_outV":"106","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"3967","_type":"edge","_outV":"106","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"3968","_type":"edge","_outV":"106","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"3969","_type":"edge","_outV":"106","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"397","_type":"edge","_outV":"74","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"3970","_type":"edge","_outV":"106","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"3971","_type":"edge","_outV":"106","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"3972","_type":"edge","_outV":"106","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"3973","_type":"edge","_outV":"106","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3974","_type":"edge","_outV":"106","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"3975","_type":"edge","_outV":"106","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"3976","_type":"edge","_outV":"106","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"3977","_type":"edge","_outV":"106","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"3978","_type":"edge","_outV":"106","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"3979","_type":"edge","_outV":"106","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"398","_type":"edge","_outV":"74","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"3980","_type":"edge","_outV":"106","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"3981","_type":"edge","_outV":"106","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"3982","_type":"edge","_outV":"106","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"3983","_type":"edge","_outV":"106","_inV":"58","_label":"followed_by"},{"weight":4,"_id":"3984","_type":"edge","_outV":"106","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"3985","_type":"edge","_outV":"106","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"3986","_type":"edge","_outV":"106","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"3987","_type":"edge","_outV":"106","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"3988","_type":"edge","_outV":"106","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"3989","_type":"edge","_outV":"106","_inV":"39","_label":"followed_by"},{"weight":7,"_id":"399","_type":"edge","_outV":"74","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"3990","_type":"edge","_outV":"106","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"3991","_type":"edge","_outV":"106","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"3992","_type":"edge","_outV":"106","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"3993","_type":"edge","_outV":"106","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"3994","_type":"edge","_outV":"106","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"3995","_type":"edge","_outV":"106","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"3996","_type":"edge","_outV":"106","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"3997","_type":"edge","_outV":"247","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"3998","_type":"edge","_outV":"66","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"3999","_type":"edge","_outV":"66","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4","_type":"edge","_outV":"1","_inV":"6","_label":"followed_by"},{"weight":3,"_id":"40","_type":"edge","_outV":"44","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"400","_type":"edge","_outV":"74","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"4000","_type":"edge","_outV":"66","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4001","_type":"edge","_outV":"66","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"4002","_type":"edge","_outV":"66","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4003","_type":"edge","_outV":"66","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"4004","_type":"edge","_outV":"66","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4005","_type":"edge","_outV":"323","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"4006","_type":"edge","_outV":"225","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"4007","_type":"edge","_outV":"225","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4008","_type":"edge","_outV":"225","_inV":"226","_label":"followed_by"},{"weight":1,"_id":"4009","_type":"edge","_outV":"225","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"401","_type":"edge","_outV":"74","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"4010","_type":"edge","_outV":"320","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4011","_type":"edge","_outV":"292","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4012","_type":"edge","_outV":"292","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4013","_type":"edge","_outV":"292","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"4014","_type":"edge","_outV":"292","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4015","_type":"edge","_outV":"292","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4016","_type":"edge","_outV":"292","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4017","_type":"edge","_outV":"292","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4018","_type":"edge","_outV":"191","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4019","_type":"edge","_outV":"191","_inV":"31","_label":"followed_by"},{"weight":12,"_id":"402","_type":"edge","_outV":"38","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4020","_type":"edge","_outV":"191","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4021","_type":"edge","_outV":"191","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4022","_type":"edge","_outV":"191","_inV":"88","_label":"followed_by"},{"weight":12,"_id":"4023","_type":"edge","_outV":"185","_inV":"275","_label":"followed_by"},{"weight":1,"_id":"4024","_type":"edge","_outV":"173","_inV":"103","_label":"followed_by"},{"weight":5,"_id":"4025","_type":"edge","_outV":"173","_inV":"117","_label":"followed_by"},{"weight":7,"_id":"4026","_type":"edge","_outV":"173","_inV":"43","_label":"followed_by"},{"weight":3,"_id":"4027","_type":"edge","_outV":"173","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4028","_type":"edge","_outV":"173","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4029","_type":"edge","_outV":"173","_inV":"71","_label":"followed_by"},{"weight":9,"_id":"403","_type":"edge","_outV":"38","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"4030","_type":"edge","_outV":"173","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4031","_type":"edge","_outV":"173","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"4032","_type":"edge","_outV":"173","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4033","_type":"edge","_outV":"173","_inV":"166","_label":"followed_by"},{"weight":3,"_id":"4034","_type":"edge","_outV":"173","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"4035","_type":"edge","_outV":"173","_inV":"188","_label":"followed_by"},{"weight":3,"_id":"4036","_type":"edge","_outV":"173","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4037","_type":"edge","_outV":"173","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4038","_type":"edge","_outV":"173","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4039","_type":"edge","_outV":"173","_inV":"77","_label":"followed_by"},{"weight":3,"_id":"404","_type":"edge","_outV":"38","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4040","_type":"edge","_outV":"173","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4041","_type":"edge","_outV":"173","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4042","_type":"edge","_outV":"173","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4043","_type":"edge","_outV":"173","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"4044","_type":"edge","_outV":"173","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4045","_type":"edge","_outV":"173","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4046","_type":"edge","_outV":"173","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4047","_type":"edge","_outV":"173","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4048","_type":"edge","_outV":"173","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"4049","_type":"edge","_outV":"173","_inV":"37","_label":"followed_by"},{"weight":34,"_id":"405","_type":"edge","_outV":"38","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4050","_type":"edge","_outV":"173","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4051","_type":"edge","_outV":"173","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4052","_type":"edge","_outV":"173","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4053","_type":"edge","_outV":"173","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4054","_type":"edge","_outV":"173","_inV":"298","_label":"followed_by"},{"weight":2,"_id":"4055","_type":"edge","_outV":"173","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4056","_type":"edge","_outV":"173","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"4057","_type":"edge","_outV":"173","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"4058","_type":"edge","_outV":"109","_inV":"54","_label":"followed_by"},{"weight":10,"_id":"4059","_type":"edge","_outV":"109","_inV":"100","_label":"followed_by"},{"weight":19,"_id":"406","_type":"edge","_outV":"38","_inV":"104","_label":"followed_by"},{"weight":5,"_id":"4060","_type":"edge","_outV":"109","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4061","_type":"edge","_outV":"109","_inV":"49","_label":"followed_by"},{"weight":7,"_id":"4062","_type":"edge","_outV":"109","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4063","_type":"edge","_outV":"109","_inV":"91","_label":"followed_by"},{"weight":6,"_id":"4064","_type":"edge","_outV":"109","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4065","_type":"edge","_outV":"109","_inV":"80","_label":"followed_by"},{"weight":6,"_id":"4066","_type":"edge","_outV":"109","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4067","_type":"edge","_outV":"109","_inV":"155","_label":"followed_by"},{"weight":3,"_id":"4068","_type":"edge","_outV":"109","_inV":"63","_label":"followed_by"},{"weight":3,"_id":"4069","_type":"edge","_outV":"109","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"407","_type":"edge","_outV":"38","_inV":"170","_label":"followed_by"},{"weight":4,"_id":"4070","_type":"edge","_outV":"109","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"4071","_type":"edge","_outV":"109","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4072","_type":"edge","_outV":"109","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"4073","_type":"edge","_outV":"109","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4074","_type":"edge","_outV":"109","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"4075","_type":"edge","_outV":"109","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4076","_type":"edge","_outV":"109","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4077","_type":"edge","_outV":"109","_inV":"17","_label":"followed_by"},{"weight":7,"_id":"4078","_type":"edge","_outV":"109","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4079","_type":"edge","_outV":"109","_inV":"98","_label":"followed_by"},{"weight":6,"_id":"408","_type":"edge","_outV":"38","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4080","_type":"edge","_outV":"109","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"4081","_type":"edge","_outV":"109","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4082","_type":"edge","_outV":"109","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"4083","_type":"edge","_outV":"109","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4084","_type":"edge","_outV":"109","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4085","_type":"edge","_outV":"109","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4086","_type":"edge","_outV":"109","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"4087","_type":"edge","_outV":"109","_inV":"72","_label":"followed_by"},{"weight":5,"_id":"4088","_type":"edge","_outV":"109","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4089","_type":"edge","_outV":"109","_inV":"180","_label":"followed_by"},{"weight":10,"_id":"409","_type":"edge","_outV":"38","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"4090","_type":"edge","_outV":"109","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4091","_type":"edge","_outV":"109","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"4092","_type":"edge","_outV":"109","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4093","_type":"edge","_outV":"109","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4094","_type":"edge","_outV":"109","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4095","_type":"edge","_outV":"109","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4096","_type":"edge","_outV":"109","_inV":"39","_label":"followed_by"},{"weight":13,"_id":"4097","_type":"edge","_outV":"48","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4098","_type":"edge","_outV":"48","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4099","_type":"edge","_outV":"48","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"41","_type":"edge","_outV":"46","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"410","_type":"edge","_outV":"38","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"4100","_type":"edge","_outV":"48","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4101","_type":"edge","_outV":"48","_inV":"16","_label":"followed_by"},{"weight":33,"_id":"4102","_type":"edge","_outV":"48","_inV":"12","_label":"followed_by"},{"weight":5,"_id":"4103","_type":"edge","_outV":"48","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4104","_type":"edge","_outV":"48","_inV":"76","_label":"followed_by"},{"weight":4,"_id":"4105","_type":"edge","_outV":"48","_inV":"15","_label":"followed_by"},{"weight":8,"_id":"4106","_type":"edge","_outV":"48","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4107","_type":"edge","_outV":"48","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"4108","_type":"edge","_outV":"48","_inV":"13","_label":"followed_by"},{"weight":10,"_id":"4109","_type":"edge","_outV":"48","_inV":"14","_label":"followed_by"},{"weight":6,"_id":"411","_type":"edge","_outV":"38","_inV":"19","_label":"followed_by"},{"weight":6,"_id":"4110","_type":"edge","_outV":"48","_inV":"121","_label":"followed_by"},{"weight":8,"_id":"4111","_type":"edge","_outV":"48","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"4112","_type":"edge","_outV":"48","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"4113","_type":"edge","_outV":"48","_inV":"196","_label":"followed_by"},{"weight":16,"_id":"4114","_type":"edge","_outV":"48","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4115","_type":"edge","_outV":"48","_inV":"85","_label":"followed_by"},{"weight":9,"_id":"4116","_type":"edge","_outV":"48","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4117","_type":"edge","_outV":"48","_inV":"208","_label":"followed_by"},{"weight":6,"_id":"4118","_type":"edge","_outV":"48","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"4119","_type":"edge","_outV":"48","_inV":"189","_label":"followed_by"},{"weight":4,"_id":"412","_type":"edge","_outV":"38","_inV":"57","_label":"followed_by"},{"weight":16,"_id":"4120","_type":"edge","_outV":"48","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"4121","_type":"edge","_outV":"48","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4122","_type":"edge","_outV":"48","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"4123","_type":"edge","_outV":"48","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4124","_type":"edge","_outV":"48","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"4125","_type":"edge","_outV":"48","_inV":"181","_label":"followed_by"},{"weight":6,"_id":"4126","_type":"edge","_outV":"48","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4127","_type":"edge","_outV":"48","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"4128","_type":"edge","_outV":"48","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4129","_type":"edge","_outV":"48","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"413","_type":"edge","_outV":"38","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"4130","_type":"edge","_outV":"48","_inV":"71","_label":"followed_by"},{"weight":5,"_id":"4131","_type":"edge","_outV":"48","_inV":"117","_label":"followed_by"},{"weight":9,"_id":"4132","_type":"edge","_outV":"48","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4133","_type":"edge","_outV":"48","_inV":"257","_label":"followed_by"},{"weight":4,"_id":"4134","_type":"edge","_outV":"48","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4135","_type":"edge","_outV":"48","_inV":"79","_label":"followed_by"},{"weight":7,"_id":"4136","_type":"edge","_outV":"48","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4137","_type":"edge","_outV":"48","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"4138","_type":"edge","_outV":"48","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4139","_type":"edge","_outV":"48","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"414","_type":"edge","_outV":"38","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"4140","_type":"edge","_outV":"48","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4141","_type":"edge","_outV":"48","_inV":"31","_label":"followed_by"},{"weight":4,"_id":"4142","_type":"edge","_outV":"48","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4143","_type":"edge","_outV":"48","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4144","_type":"edge","_outV":"48","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"4145","_type":"edge","_outV":"48","_inV":"292","_label":"followed_by"},{"weight":1,"_id":"4146","_type":"edge","_outV":"218","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4147","_type":"edge","_outV":"218","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4148","_type":"edge","_outV":"218","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"4149","_type":"edge","_outV":"218","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"415","_type":"edge","_outV":"38","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4150","_type":"edge","_outV":"218","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4151","_type":"edge","_outV":"218","_inV":"13","_label":"followed_by"},{"weight":18,"_id":"4152","_type":"edge","_outV":"54","_inV":"18","_label":"followed_by"},{"weight":7,"_id":"4153","_type":"edge","_outV":"54","_inV":"15","_label":"followed_by"},{"weight":17,"_id":"4154","_type":"edge","_outV":"54","_inV":"50","_label":"followed_by"},{"weight":6,"_id":"4155","_type":"edge","_outV":"54","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"4156","_type":"edge","_outV":"54","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"4157","_type":"edge","_outV":"54","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"4158","_type":"edge","_outV":"54","_inV":"46","_label":"followed_by"},{"weight":16,"_id":"4159","_type":"edge","_outV":"54","_inV":"13","_label":"followed_by"},{"weight":11,"_id":"416","_type":"edge","_outV":"38","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4160","_type":"edge","_outV":"54","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"4161","_type":"edge","_outV":"54","_inV":"234","_label":"followed_by"},{"weight":3,"_id":"4162","_type":"edge","_outV":"54","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"4163","_type":"edge","_outV":"54","_inV":"207","_label":"followed_by"},{"weight":1,"_id":"4164","_type":"edge","_outV":"54","_inV":"120","_label":"followed_by"},{"weight":17,"_id":"4165","_type":"edge","_outV":"54","_inV":"12","_label":"followed_by"},{"weight":6,"_id":"4166","_type":"edge","_outV":"54","_inV":"21","_label":"followed_by"},{"weight":8,"_id":"4167","_type":"edge","_outV":"54","_inV":"24","_label":"followed_by"},{"weight":17,"_id":"4168","_type":"edge","_outV":"54","_inV":"26","_label":"followed_by"},{"weight":36,"_id":"4169","_type":"edge","_outV":"54","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"417","_type":"edge","_outV":"38","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4170","_type":"edge","_outV":"54","_inV":"20","_label":"followed_by"},{"weight":3,"_id":"4171","_type":"edge","_outV":"54","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4172","_type":"edge","_outV":"54","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"4173","_type":"edge","_outV":"54","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4174","_type":"edge","_outV":"54","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4175","_type":"edge","_outV":"54","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"4176","_type":"edge","_outV":"54","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4177","_type":"edge","_outV":"54","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4178","_type":"edge","_outV":"54","_inV":"25","_label":"followed_by"},{"weight":27,"_id":"4179","_type":"edge","_outV":"54","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"418","_type":"edge","_outV":"38","_inV":"49","_label":"followed_by"},{"weight":18,"_id":"4180","_type":"edge","_outV":"54","_inV":"68","_label":"followed_by"},{"weight":22,"_id":"4181","_type":"edge","_outV":"54","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4182","_type":"edge","_outV":"54","_inV":"3","_label":"followed_by"},{"weight":21,"_id":"4183","_type":"edge","_outV":"54","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4184","_type":"edge","_outV":"54","_inV":"85","_label":"followed_by"},{"weight":11,"_id":"4185","_type":"edge","_outV":"54","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4186","_type":"edge","_outV":"54","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"4187","_type":"edge","_outV":"54","_inV":"196","_label":"followed_by"},{"weight":11,"_id":"4188","_type":"edge","_outV":"54","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4189","_type":"edge","_outV":"54","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"419","_type":"edge","_outV":"38","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"4190","_type":"edge","_outV":"54","_inV":"42","_label":"followed_by"},{"weight":8,"_id":"4191","_type":"edge","_outV":"54","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"4192","_type":"edge","_outV":"54","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"4193","_type":"edge","_outV":"54","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"4194","_type":"edge","_outV":"54","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"4195","_type":"edge","_outV":"54","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"4196","_type":"edge","_outV":"54","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4197","_type":"edge","_outV":"54","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"4198","_type":"edge","_outV":"54","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"4199","_type":"edge","_outV":"54","_inV":"88","_label":"followed_by"},{"weight":5,"_id":"42","_type":"edge","_outV":"46","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"420","_type":"edge","_outV":"38","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4200","_type":"edge","_outV":"54","_inV":"104","_label":"followed_by"},{"weight":7,"_id":"4201","_type":"edge","_outV":"54","_inV":"64","_label":"followed_by"},{"weight":9,"_id":"4202","_type":"edge","_outV":"54","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4203","_type":"edge","_outV":"54","_inV":"126","_label":"followed_by"},{"weight":2,"_id":"4204","_type":"edge","_outV":"54","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4205","_type":"edge","_outV":"54","_inV":"223","_label":"followed_by"},{"weight":5,"_id":"4206","_type":"edge","_outV":"54","_inV":"117","_label":"followed_by"},{"weight":4,"_id":"4207","_type":"edge","_outV":"54","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4208","_type":"edge","_outV":"54","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4209","_type":"edge","_outV":"54","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"421","_type":"edge","_outV":"38","_inV":"68","_label":"followed_by"},{"weight":6,"_id":"4210","_type":"edge","_outV":"54","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4211","_type":"edge","_outV":"54","_inV":"136","_label":"followed_by"},{"weight":1,"_id":"4212","_type":"edge","_outV":"54","_inV":"248","_label":"followed_by"},{"weight":1,"_id":"4213","_type":"edge","_outV":"54","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"4214","_type":"edge","_outV":"54","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4215","_type":"edge","_outV":"54","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"4216","_type":"edge","_outV":"54","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"4217","_type":"edge","_outV":"54","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4218","_type":"edge","_outV":"54","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"4219","_type":"edge","_outV":"54","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"422","_type":"edge","_outV":"38","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4220","_type":"edge","_outV":"54","_inV":"131","_label":"followed_by"},{"weight":1,"_id":"4221","_type":"edge","_outV":"54","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4222","_type":"edge","_outV":"54","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4223","_type":"edge","_outV":"324","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4224","_type":"edge","_outV":"325","_inV":"326","_label":"followed_by"},{"weight":1,"_id":"4225","_type":"edge","_outV":"317","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4226","_type":"edge","_outV":"52","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"4227","_type":"edge","_outV":"52","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4228","_type":"edge","_outV":"52","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"4229","_type":"edge","_outV":"52","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"423","_type":"edge","_outV":"38","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"4230","_type":"edge","_outV":"52","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4231","_type":"edge","_outV":"52","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4232","_type":"edge","_outV":"52","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4233","_type":"edge","_outV":"52","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4234","_type":"edge","_outV":"52","_inV":"23","_label":"followed_by"},{"weight":13,"_id":"4235","_type":"edge","_outV":"10","_inV":"56","_label":"followed_by"},{"weight":7,"_id":"4236","_type":"edge","_outV":"10","_inV":"27","_label":"followed_by"},{"weight":11,"_id":"4237","_type":"edge","_outV":"10","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"4238","_type":"edge","_outV":"10","_inV":"80","_label":"followed_by"},{"weight":9,"_id":"4239","_type":"edge","_outV":"10","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"424","_type":"edge","_outV":"38","_inV":"12","_label":"followed_by"},{"weight":21,"_id":"4240","_type":"edge","_outV":"10","_inV":"100","_label":"followed_by"},{"weight":5,"_id":"4241","_type":"edge","_outV":"10","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"4242","_type":"edge","_outV":"10","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"4243","_type":"edge","_outV":"10","_inV":"48","_label":"followed_by"},{"weight":13,"_id":"4244","_type":"edge","_outV":"10","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"4245","_type":"edge","_outV":"10","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"4246","_type":"edge","_outV":"10","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4247","_type":"edge","_outV":"10","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4248","_type":"edge","_outV":"10","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"4249","_type":"edge","_outV":"10","_inV":"235","_label":"followed_by"},{"weight":2,"_id":"425","_type":"edge","_outV":"38","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4250","_type":"edge","_outV":"10","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"4251","_type":"edge","_outV":"10","_inV":"252","_label":"followed_by"},{"weight":3,"_id":"4252","_type":"edge","_outV":"10","_inV":"89","_label":"followed_by"},{"weight":12,"_id":"4253","_type":"edge","_outV":"10","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"4254","_type":"edge","_outV":"10","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4255","_type":"edge","_outV":"10","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4256","_type":"edge","_outV":"10","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4257","_type":"edge","_outV":"10","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4258","_type":"edge","_outV":"10","_inV":"160","_label":"followed_by"},{"weight":10,"_id":"4259","_type":"edge","_outV":"10","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"426","_type":"edge","_outV":"38","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"4260","_type":"edge","_outV":"10","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"4261","_type":"edge","_outV":"10","_inV":"202","_label":"followed_by"},{"weight":5,"_id":"4262","_type":"edge","_outV":"10","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4263","_type":"edge","_outV":"10","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4264","_type":"edge","_outV":"10","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"4265","_type":"edge","_outV":"10","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4266","_type":"edge","_outV":"10","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"4267","_type":"edge","_outV":"10","_inV":"69","_label":"followed_by"},{"weight":8,"_id":"4268","_type":"edge","_outV":"10","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"4269","_type":"edge","_outV":"10","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"427","_type":"edge","_outV":"38","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"4270","_type":"edge","_outV":"10","_inV":"154","_label":"followed_by"},{"weight":7,"_id":"4271","_type":"edge","_outV":"10","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"4272","_type":"edge","_outV":"10","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4273","_type":"edge","_outV":"10","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"4274","_type":"edge","_outV":"10","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"4275","_type":"edge","_outV":"10","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"4276","_type":"edge","_outV":"10","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4277","_type":"edge","_outV":"10","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4278","_type":"edge","_outV":"10","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4279","_type":"edge","_outV":"10","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"428","_type":"edge","_outV":"38","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"4280","_type":"edge","_outV":"10","_inV":"152","_label":"followed_by"},{"weight":6,"_id":"4281","_type":"edge","_outV":"10","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"4282","_type":"edge","_outV":"10","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"4283","_type":"edge","_outV":"10","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4284","_type":"edge","_outV":"10","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4285","_type":"edge","_outV":"10","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"4286","_type":"edge","_outV":"10","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"4287","_type":"edge","_outV":"10","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"4288","_type":"edge","_outV":"10","_inV":"108","_label":"followed_by"},{"weight":4,"_id":"4289","_type":"edge","_outV":"10","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"429","_type":"edge","_outV":"38","_inV":"112","_label":"followed_by"},{"weight":5,"_id":"4290","_type":"edge","_outV":"10","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"4291","_type":"edge","_outV":"10","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4292","_type":"edge","_outV":"10","_inV":"115","_label":"followed_by"},{"weight":3,"_id":"4293","_type":"edge","_outV":"10","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4294","_type":"edge","_outV":"10","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4295","_type":"edge","_outV":"135","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"4296","_type":"edge","_outV":"135","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"4297","_type":"edge","_outV":"135","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4298","_type":"edge","_outV":"135","_inV":"25","_label":"followed_by"},{"weight":15,"_id":"4299","_type":"edge","_outV":"110","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"43","_type":"edge","_outV":"46","_inV":"47","_label":"followed_by"},{"weight":4,"_id":"430","_type":"edge","_outV":"38","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4300","_type":"edge","_outV":"110","_inV":"5","_label":"followed_by"},{"weight":7,"_id":"4301","_type":"edge","_outV":"110","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"4302","_type":"edge","_outV":"110","_inV":"76","_label":"followed_by"},{"weight":5,"_id":"4303","_type":"edge","_outV":"110","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4304","_type":"edge","_outV":"110","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4305","_type":"edge","_outV":"110","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"4306","_type":"edge","_outV":"110","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"4307","_type":"edge","_outV":"110","_inV":"179","_label":"followed_by"},{"weight":5,"_id":"4308","_type":"edge","_outV":"110","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"4309","_type":"edge","_outV":"110","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"431","_type":"edge","_outV":"38","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"4310","_type":"edge","_outV":"110","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4311","_type":"edge","_outV":"110","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4312","_type":"edge","_outV":"110","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4313","_type":"edge","_outV":"110","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4314","_type":"edge","_outV":"110","_inV":"147","_label":"followed_by"},{"weight":1,"_id":"4315","_type":"edge","_outV":"110","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4316","_type":"edge","_outV":"110","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"4317","_type":"edge","_outV":"110","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4318","_type":"edge","_outV":"110","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"4319","_type":"edge","_outV":"110","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"432","_type":"edge","_outV":"38","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"4320","_type":"edge","_outV":"110","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4321","_type":"edge","_outV":"110","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"4322","_type":"edge","_outV":"110","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4323","_type":"edge","_outV":"110","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4324","_type":"edge","_outV":"110","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4325","_type":"edge","_outV":"110","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4326","_type":"edge","_outV":"110","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"4327","_type":"edge","_outV":"110","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4328","_type":"edge","_outV":"110","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4329","_type":"edge","_outV":"110","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"433","_type":"edge","_outV":"38","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4330","_type":"edge","_outV":"110","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"4331","_type":"edge","_outV":"110","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"4332","_type":"edge","_outV":"62","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4333","_type":"edge","_outV":"62","_inV":"134","_label":"followed_by"},{"weight":3,"_id":"4334","_type":"edge","_outV":"62","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4335","_type":"edge","_outV":"62","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"4336","_type":"edge","_outV":"62","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"4337","_type":"edge","_outV":"62","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4338","_type":"edge","_outV":"62","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4339","_type":"edge","_outV":"62","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"434","_type":"edge","_outV":"38","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"4340","_type":"edge","_outV":"62","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"4341","_type":"edge","_outV":"62","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"4342","_type":"edge","_outV":"62","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4343","_type":"edge","_outV":"62","_inV":"127","_label":"followed_by"},{"weight":12,"_id":"4344","_type":"edge","_outV":"62","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"4345","_type":"edge","_outV":"62","_inV":"181","_label":"followed_by"},{"weight":8,"_id":"4346","_type":"edge","_outV":"62","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"4347","_type":"edge","_outV":"62","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4348","_type":"edge","_outV":"62","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4349","_type":"edge","_outV":"62","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"435","_type":"edge","_outV":"38","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4350","_type":"edge","_outV":"62","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"4351","_type":"edge","_outV":"62","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"4352","_type":"edge","_outV":"62","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"4353","_type":"edge","_outV":"62","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"4354","_type":"edge","_outV":"62","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"4355","_type":"edge","_outV":"62","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4356","_type":"edge","_outV":"62","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"4357","_type":"edge","_outV":"62","_inV":"64","_label":"followed_by"},{"weight":11,"_id":"4358","_type":"edge","_outV":"62","_inV":"88","_label":"followed_by"},{"weight":5,"_id":"4359","_type":"edge","_outV":"62","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"436","_type":"edge","_outV":"38","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4360","_type":"edge","_outV":"62","_inV":"18","_label":"followed_by"},{"weight":6,"_id":"4361","_type":"edge","_outV":"62","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4362","_type":"edge","_outV":"62","_inV":"80","_label":"followed_by"},{"weight":5,"_id":"4363","_type":"edge","_outV":"62","_inV":"76","_label":"followed_by"},{"weight":16,"_id":"4364","_type":"edge","_outV":"62","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4365","_type":"edge","_outV":"62","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4366","_type":"edge","_outV":"62","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4367","_type":"edge","_outV":"62","_inV":"69","_label":"followed_by"},{"weight":8,"_id":"4368","_type":"edge","_outV":"62","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"4369","_type":"edge","_outV":"62","_inV":"203","_label":"followed_by"},{"weight":1,"_id":"437","_type":"edge","_outV":"38","_inV":"187","_label":"followed_by"},{"weight":1,"_id":"4370","_type":"edge","_outV":"62","_inV":"223","_label":"followed_by"},{"weight":8,"_id":"4371","_type":"edge","_outV":"62","_inV":"36","_label":"followed_by"},{"weight":4,"_id":"4372","_type":"edge","_outV":"62","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4373","_type":"edge","_outV":"62","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"4374","_type":"edge","_outV":"62","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"4375","_type":"edge","_outV":"62","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"4376","_type":"edge","_outV":"62","_inV":"257","_label":"followed_by"},{"weight":3,"_id":"4377","_type":"edge","_outV":"62","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4378","_type":"edge","_outV":"62","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"4379","_type":"edge","_outV":"62","_inV":"77","_label":"followed_by"},{"weight":7,"_id":"438","_type":"edge","_outV":"38","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4380","_type":"edge","_outV":"62","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4381","_type":"edge","_outV":"62","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"4382","_type":"edge","_outV":"62","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4383","_type":"edge","_outV":"62","_inV":"1","_label":"followed_by"},{"weight":5,"_id":"4384","_type":"edge","_outV":"62","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4385","_type":"edge","_outV":"62","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4386","_type":"edge","_outV":"62","_inV":"292","_label":"followed_by"},{"weight":2,"_id":"4387","_type":"edge","_outV":"62","_inV":"28","_label":"followed_by"},{"weight":3,"_id":"4388","_type":"edge","_outV":"62","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4389","_type":"edge","_outV":"62","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"439","_type":"edge","_outV":"38","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"4390","_type":"edge","_outV":"40","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4391","_type":"edge","_outV":"40","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"4392","_type":"edge","_outV":"40","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"4393","_type":"edge","_outV":"40","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"4394","_type":"edge","_outV":"40","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"4395","_type":"edge","_outV":"40","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"4396","_type":"edge","_outV":"40","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4397","_type":"edge","_outV":"40","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"4398","_type":"edge","_outV":"40","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"4399","_type":"edge","_outV":"40","_inV":"192","_label":"followed_by"},{"weight":2,"_id":"44","_type":"edge","_outV":"46","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"440","_type":"edge","_outV":"38","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"4400","_type":"edge","_outV":"40","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"4401","_type":"edge","_outV":"40","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4402","_type":"edge","_outV":"40","_inV":"104","_label":"followed_by"},{"weight":4,"_id":"4403","_type":"edge","_outV":"40","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4404","_type":"edge","_outV":"40","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4405","_type":"edge","_outV":"40","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4406","_type":"edge","_outV":"40","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"4407","_type":"edge","_outV":"271","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4408","_type":"edge","_outV":"271","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"4409","_type":"edge","_outV":"271","_inV":"309","_label":"followed_by"},{"weight":3,"_id":"441","_type":"edge","_outV":"38","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"4410","_type":"edge","_outV":"327","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4411","_type":"edge","_outV":"327","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4412","_type":"edge","_outV":"327","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"4413","_type":"edge","_outV":"198","_inV":"170","_label":"followed_by"},{"weight":6,"_id":"4414","_type":"edge","_outV":"198","_inV":"224","_label":"followed_by"},{"weight":2,"_id":"4415","_type":"edge","_outV":"198","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"4416","_type":"edge","_outV":"198","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4417","_type":"edge","_outV":"198","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4418","_type":"edge","_outV":"198","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"4419","_type":"edge","_outV":"198","_inV":"273","_label":"followed_by"},{"weight":2,"_id":"442","_type":"edge","_outV":"38","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"4420","_type":"edge","_outV":"198","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4421","_type":"edge","_outV":"198","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"4422","_type":"edge","_outV":"198","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"4423","_type":"edge","_outV":"212","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4424","_type":"edge","_outV":"212","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4425","_type":"edge","_outV":"212","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4426","_type":"edge","_outV":"212","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4427","_type":"edge","_outV":"212","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4428","_type":"edge","_outV":"299","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"4429","_type":"edge","_outV":"299","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"443","_type":"edge","_outV":"38","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4430","_type":"edge","_outV":"299","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4431","_type":"edge","_outV":"308","_inV":"295","_label":"followed_by"},{"weight":1,"_id":"4432","_type":"edge","_outV":"308","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4433","_type":"edge","_outV":"302","_inV":"328","_label":"followed_by"},{"weight":1,"_id":"4434","_type":"edge","_outV":"302","_inV":"308","_label":"followed_by"},{"weight":1,"_id":"4435","_type":"edge","_outV":"113","_inV":"225","_label":"followed_by"},{"weight":19,"_id":"4436","_type":"edge","_outV":"113","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"4437","_type":"edge","_outV":"113","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4438","_type":"edge","_outV":"113","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"4439","_type":"edge","_outV":"113","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"444","_type":"edge","_outV":"38","_inV":"189","_label":"followed_by"},{"weight":3,"_id":"4440","_type":"edge","_outV":"113","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"4441","_type":"edge","_outV":"113","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"4442","_type":"edge","_outV":"113","_inV":"127","_label":"followed_by"},{"weight":4,"_id":"4443","_type":"edge","_outV":"113","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4444","_type":"edge","_outV":"113","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"4445","_type":"edge","_outV":"113","_inV":"57","_label":"followed_by"},{"weight":6,"_id":"4446","_type":"edge","_outV":"113","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4447","_type":"edge","_outV":"113","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"4448","_type":"edge","_outV":"113","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4449","_type":"edge","_outV":"113","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"445","_type":"edge","_outV":"38","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"4450","_type":"edge","_outV":"113","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4451","_type":"edge","_outV":"113","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4452","_type":"edge","_outV":"163","_inV":"161","_label":"followed_by"},{"weight":1,"_id":"4453","_type":"edge","_outV":"163","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4454","_type":"edge","_outV":"163","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"4455","_type":"edge","_outV":"163","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"4456","_type":"edge","_outV":"329","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"4457","_type":"edge","_outV":"272","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4458","_type":"edge","_outV":"272","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4459","_type":"edge","_outV":"272","_inV":"48","_label":"followed_by"},{"weight":7,"_id":"446","_type":"edge","_outV":"38","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4460","_type":"edge","_outV":"272","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4461","_type":"edge","_outV":"311","_inV":"249","_label":"followed_by"},{"weight":2,"_id":"4462","_type":"edge","_outV":"202","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"4463","_type":"edge","_outV":"202","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4464","_type":"edge","_outV":"202","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"4465","_type":"edge","_outV":"202","_inV":"22","_label":"followed_by"},{"weight":5,"_id":"4466","_type":"edge","_outV":"202","_inV":"24","_label":"followed_by"},{"weight":6,"_id":"4467","_type":"edge","_outV":"202","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"4468","_type":"edge","_outV":"202","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4469","_type":"edge","_outV":"202","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"447","_type":"edge","_outV":"38","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"4470","_type":"edge","_outV":"202","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4471","_type":"edge","_outV":"202","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4472","_type":"edge","_outV":"202","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4473","_type":"edge","_outV":"202","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4474","_type":"edge","_outV":"202","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4475","_type":"edge","_outV":"202","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"4476","_type":"edge","_outV":"202","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4477","_type":"edge","_outV":"202","_inV":"290","_label":"followed_by"},{"weight":1,"_id":"4478","_type":"edge","_outV":"202","_inV":"56","_label":"followed_by"},{"weight":10,"_id":"4479","_type":"edge","_outV":"202","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"448","_type":"edge","_outV":"38","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"4480","_type":"edge","_outV":"202","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"4481","_type":"edge","_outV":"202","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"4482","_type":"edge","_outV":"202","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"4483","_type":"edge","_outV":"202","_inV":"118","_label":"followed_by"},{"weight":2,"_id":"4484","_type":"edge","_outV":"202","_inV":"42","_label":"followed_by"},{"weight":4,"_id":"4485","_type":"edge","_outV":"202","_inV":"79","_label":"followed_by"},{"weight":4,"_id":"4486","_type":"edge","_outV":"202","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4487","_type":"edge","_outV":"202","_inV":"64","_label":"followed_by"},{"weight":4,"_id":"4488","_type":"edge","_outV":"202","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4489","_type":"edge","_outV":"202","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"449","_type":"edge","_outV":"38","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4490","_type":"edge","_outV":"202","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"4491","_type":"edge","_outV":"202","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4492","_type":"edge","_outV":"202","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"4493","_type":"edge","_outV":"202","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4494","_type":"edge","_outV":"202","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"4495","_type":"edge","_outV":"202","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4496","_type":"edge","_outV":"202","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"4497","_type":"edge","_outV":"202","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4498","_type":"edge","_outV":"202","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"4499","_type":"edge","_outV":"202","_inV":"254","_label":"followed_by"},{"weight":3,"_id":"45","_type":"edge","_outV":"46","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"450","_type":"edge","_outV":"38","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"4500","_type":"edge","_outV":"202","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4501","_type":"edge","_outV":"202","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4502","_type":"edge","_outV":"202","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4503","_type":"edge","_outV":"202","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"4504","_type":"edge","_outV":"202","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4505","_type":"edge","_outV":"202","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"4506","_type":"edge","_outV":"202","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4507","_type":"edge","_outV":"244","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4508","_type":"edge","_outV":"244","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4509","_type":"edge","_outV":"244","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"451","_type":"edge","_outV":"38","_inV":"191","_label":"followed_by"},{"weight":5,"_id":"4510","_type":"edge","_outV":"105","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"4511","_type":"edge","_outV":"105","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"4512","_type":"edge","_outV":"105","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4513","_type":"edge","_outV":"105","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"4514","_type":"edge","_outV":"105","_inV":"42","_label":"followed_by"},{"weight":10,"_id":"4515","_type":"edge","_outV":"105","_inV":"109","_label":"followed_by"},{"weight":3,"_id":"4516","_type":"edge","_outV":"105","_inV":"85","_label":"followed_by"},{"weight":6,"_id":"4517","_type":"edge","_outV":"105","_inV":"14","_label":"followed_by"},{"weight":5,"_id":"4518","_type":"edge","_outV":"105","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4519","_type":"edge","_outV":"105","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"452","_type":"edge","_outV":"38","_inV":"192","_label":"followed_by"},{"weight":6,"_id":"4520","_type":"edge","_outV":"105","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"4521","_type":"edge","_outV":"105","_inV":"10","_label":"followed_by"},{"weight":12,"_id":"4522","_type":"edge","_outV":"105","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"4523","_type":"edge","_outV":"105","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"4524","_type":"edge","_outV":"105","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4525","_type":"edge","_outV":"105","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"4526","_type":"edge","_outV":"105","_inV":"189","_label":"followed_by"},{"weight":10,"_id":"4527","_type":"edge","_outV":"105","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4528","_type":"edge","_outV":"105","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"4529","_type":"edge","_outV":"105","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"453","_type":"edge","_outV":"38","_inV":"40","_label":"followed_by"},{"weight":2,"_id":"4530","_type":"edge","_outV":"105","_inV":"97","_label":"followed_by"},{"weight":3,"_id":"4531","_type":"edge","_outV":"105","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4532","_type":"edge","_outV":"105","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"4533","_type":"edge","_outV":"105","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4534","_type":"edge","_outV":"105","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4535","_type":"edge","_outV":"105","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4536","_type":"edge","_outV":"105","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"4537","_type":"edge","_outV":"105","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4538","_type":"edge","_outV":"105","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"4539","_type":"edge","_outV":"105","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"454","_type":"edge","_outV":"38","_inV":"10","_label":"followed_by"},{"weight":2,"_id":"4540","_type":"edge","_outV":"105","_inV":"71","_label":"followed_by"},{"weight":6,"_id":"4541","_type":"edge","_outV":"105","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4542","_type":"edge","_outV":"105","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4543","_type":"edge","_outV":"105","_inV":"269","_label":"followed_by"},{"weight":10,"_id":"4544","_type":"edge","_outV":"105","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"4545","_type":"edge","_outV":"105","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"4546","_type":"edge","_outV":"105","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"4547","_type":"edge","_outV":"105","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"4548","_type":"edge","_outV":"105","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4549","_type":"edge","_outV":"105","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"455","_type":"edge","_outV":"139","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"4550","_type":"edge","_outV":"105","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4551","_type":"edge","_outV":"105","_inV":"43","_label":"followed_by"},{"weight":3,"_id":"4552","_type":"edge","_outV":"105","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"4553","_type":"edge","_outV":"105","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4554","_type":"edge","_outV":"105","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4555","_type":"edge","_outV":"105","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4556","_type":"edge","_outV":"105","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"4557","_type":"edge","_outV":"105","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4558","_type":"edge","_outV":"105","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4559","_type":"edge","_outV":"305","_inV":"207","_label":"followed_by"},{"weight":8,"_id":"456","_type":"edge","_outV":"139","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"4560","_type":"edge","_outV":"254","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4561","_type":"edge","_outV":"254","_inV":"173","_label":"followed_by"},{"weight":4,"_id":"4562","_type":"edge","_outV":"254","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4563","_type":"edge","_outV":"254","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4564","_type":"edge","_outV":"254","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"4565","_type":"edge","_outV":"254","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"4566","_type":"edge","_outV":"254","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"4567","_type":"edge","_outV":"254","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4568","_type":"edge","_outV":"254","_inV":"184","_label":"followed_by"},{"weight":2,"_id":"4569","_type":"edge","_outV":"254","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"457","_type":"edge","_outV":"139","_inV":"28","_label":"followed_by"},{"weight":4,"_id":"4570","_type":"edge","_outV":"254","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4571","_type":"edge","_outV":"254","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"4572","_type":"edge","_outV":"254","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4573","_type":"edge","_outV":"254","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"4574","_type":"edge","_outV":"254","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"4575","_type":"edge","_outV":"254","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4576","_type":"edge","_outV":"254","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4577","_type":"edge","_outV":"254","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"4578","_type":"edge","_outV":"254","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4579","_type":"edge","_outV":"254","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"458","_type":"edge","_outV":"139","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"4580","_type":"edge","_outV":"254","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4581","_type":"edge","_outV":"254","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"4582","_type":"edge","_outV":"254","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4583","_type":"edge","_outV":"254","_inV":"26","_label":"followed_by"},{"weight":177,"_id":"4584","_type":"edge","_outV":"85","_inV":"83","_label":"followed_by"},{"weight":66,"_id":"4585","_type":"edge","_outV":"85","_inV":"49","_label":"followed_by"},{"weight":36,"_id":"4586","_type":"edge","_outV":"85","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"4587","_type":"edge","_outV":"85","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"4588","_type":"edge","_outV":"85","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"4589","_type":"edge","_outV":"85","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"459","_type":"edge","_outV":"139","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"4590","_type":"edge","_outV":"85","_inV":"120","_label":"followed_by"},{"weight":33,"_id":"4591","_type":"edge","_outV":"85","_inV":"91","_label":"followed_by"},{"weight":8,"_id":"4592","_type":"edge","_outV":"85","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"4593","_type":"edge","_outV":"85","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4594","_type":"edge","_outV":"85","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4595","_type":"edge","_outV":"85","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"4596","_type":"edge","_outV":"85","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4597","_type":"edge","_outV":"85","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4598","_type":"edge","_outV":"85","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4599","_type":"edge","_outV":"85","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"46","_type":"edge","_outV":"46","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"460","_type":"edge","_outV":"139","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4600","_type":"edge","_outV":"85","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"4601","_type":"edge","_outV":"85","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"4602","_type":"edge","_outV":"85","_inV":"134","_label":"followed_by"},{"weight":10,"_id":"4603","_type":"edge","_outV":"85","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"4604","_type":"edge","_outV":"85","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"4605","_type":"edge","_outV":"85","_inV":"33","_label":"followed_by"},{"weight":5,"_id":"4606","_type":"edge","_outV":"85","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4607","_type":"edge","_outV":"85","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"4608","_type":"edge","_outV":"85","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"4609","_type":"edge","_outV":"85","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"461","_type":"edge","_outV":"139","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"4610","_type":"edge","_outV":"85","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4611","_type":"edge","_outV":"85","_inV":"69","_label":"followed_by"},{"weight":4,"_id":"4612","_type":"edge","_outV":"85","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"4613","_type":"edge","_outV":"85","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4614","_type":"edge","_outV":"85","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"4615","_type":"edge","_outV":"85","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"4616","_type":"edge","_outV":"85","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4617","_type":"edge","_outV":"85","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4618","_type":"edge","_outV":"85","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4619","_type":"edge","_outV":"85","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"462","_type":"edge","_outV":"139","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"4620","_type":"edge","_outV":"154","_inV":"159","_label":"followed_by"},{"weight":5,"_id":"4621","_type":"edge","_outV":"154","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4622","_type":"edge","_outV":"154","_inV":"15","_label":"followed_by"},{"weight":6,"_id":"4623","_type":"edge","_outV":"154","_inV":"110","_label":"followed_by"},{"weight":4,"_id":"4624","_type":"edge","_outV":"154","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4625","_type":"edge","_outV":"154","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"4626","_type":"edge","_outV":"154","_inV":"101","_label":"followed_by"},{"weight":5,"_id":"4627","_type":"edge","_outV":"154","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4628","_type":"edge","_outV":"154","_inV":"98","_label":"followed_by"},{"weight":11,"_id":"4629","_type":"edge","_outV":"154","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"463","_type":"edge","_outV":"193","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"4630","_type":"edge","_outV":"154","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"4631","_type":"edge","_outV":"154","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4632","_type":"edge","_outV":"154","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4633","_type":"edge","_outV":"154","_inV":"26","_label":"followed_by"},{"weight":26,"_id":"4634","_type":"edge","_outV":"154","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"4635","_type":"edge","_outV":"154","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4636","_type":"edge","_outV":"154","_inV":"129","_label":"followed_by"},{"weight":19,"_id":"4637","_type":"edge","_outV":"154","_inV":"85","_label":"followed_by"},{"weight":11,"_id":"4638","_type":"edge","_outV":"154","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"4639","_type":"edge","_outV":"154","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"464","_type":"edge","_outV":"193","_inV":"84","_label":"followed_by"},{"weight":10,"_id":"4640","_type":"edge","_outV":"154","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"4641","_type":"edge","_outV":"154","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4642","_type":"edge","_outV":"154","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"4643","_type":"edge","_outV":"154","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4644","_type":"edge","_outV":"154","_inV":"38","_label":"followed_by"},{"weight":8,"_id":"4645","_type":"edge","_outV":"154","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"4646","_type":"edge","_outV":"154","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4647","_type":"edge","_outV":"154","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4648","_type":"edge","_outV":"154","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4649","_type":"edge","_outV":"154","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"465","_type":"edge","_outV":"193","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"4650","_type":"edge","_outV":"154","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4651","_type":"edge","_outV":"154","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"4652","_type":"edge","_outV":"154","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4653","_type":"edge","_outV":"154","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"4654","_type":"edge","_outV":"154","_inV":"27","_label":"followed_by"},{"weight":16,"_id":"4655","_type":"edge","_outV":"154","_inV":"88","_label":"followed_by"},{"weight":13,"_id":"4656","_type":"edge","_outV":"154","_inV":"30","_label":"followed_by"},{"weight":7,"_id":"4657","_type":"edge","_outV":"154","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4658","_type":"edge","_outV":"154","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"4659","_type":"edge","_outV":"154","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"466","_type":"edge","_outV":"193","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4660","_type":"edge","_outV":"154","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"4661","_type":"edge","_outV":"154","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4662","_type":"edge","_outV":"154","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"4663","_type":"edge","_outV":"154","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"4664","_type":"edge","_outV":"154","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4665","_type":"edge","_outV":"154","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4666","_type":"edge","_outV":"154","_inV":"239","_label":"followed_by"},{"weight":5,"_id":"4667","_type":"edge","_outV":"154","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4668","_type":"edge","_outV":"154","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4669","_type":"edge","_outV":"154","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"467","_type":"edge","_outV":"194","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4670","_type":"edge","_outV":"154","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"4671","_type":"edge","_outV":"154","_inV":"37","_label":"followed_by"},{"weight":17,"_id":"4672","_type":"edge","_outV":"33","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4673","_type":"edge","_outV":"33","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"4674","_type":"edge","_outV":"33","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"4675","_type":"edge","_outV":"33","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"4676","_type":"edge","_outV":"33","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"4677","_type":"edge","_outV":"33","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4678","_type":"edge","_outV":"33","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4679","_type":"edge","_outV":"33","_inV":"116","_label":"followed_by"},{"weight":3,"_id":"468","_type":"edge","_outV":"195","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"4680","_type":"edge","_outV":"33","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"4681","_type":"edge","_outV":"33","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"4682","_type":"edge","_outV":"33","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"4683","_type":"edge","_outV":"33","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4684","_type":"edge","_outV":"33","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"4685","_type":"edge","_outV":"33","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"4686","_type":"edge","_outV":"33","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"4687","_type":"edge","_outV":"33","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"4688","_type":"edge","_outV":"33","_inV":"191","_label":"followed_by"},{"weight":2,"_id":"4689","_type":"edge","_outV":"33","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"469","_type":"edge","_outV":"195","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"4690","_type":"edge","_outV":"33","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4691","_type":"edge","_outV":"33","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"4692","_type":"edge","_outV":"33","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4693","_type":"edge","_outV":"33","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"4694","_type":"edge","_outV":"33","_inV":"117","_label":"followed_by"},{"weight":5,"_id":"4695","_type":"edge","_outV":"111","_inV":"98","_label":"followed_by"},{"weight":10,"_id":"4696","_type":"edge","_outV":"111","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"4697","_type":"edge","_outV":"111","_inV":"198","_label":"followed_by"},{"weight":3,"_id":"4698","_type":"edge","_outV":"111","_inV":"273","_label":"followed_by"},{"weight":2,"_id":"4699","_type":"edge","_outV":"111","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"47","_type":"edge","_outV":"46","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"470","_type":"edge","_outV":"195","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"4700","_type":"edge","_outV":"111","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"4701","_type":"edge","_outV":"111","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"4702","_type":"edge","_outV":"111","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"4703","_type":"edge","_outV":"111","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"4704","_type":"edge","_outV":"111","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4705","_type":"edge","_outV":"111","_inV":"8","_label":"followed_by"},{"weight":3,"_id":"4706","_type":"edge","_outV":"111","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4707","_type":"edge","_outV":"111","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4708","_type":"edge","_outV":"111","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4709","_type":"edge","_outV":"111","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"471","_type":"edge","_outV":"98","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4710","_type":"edge","_outV":"111","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4711","_type":"edge","_outV":"111","_inV":"42","_label":"followed_by"},{"weight":45,"_id":"4712","_type":"edge","_outV":"186","_inV":"134","_label":"followed_by"},{"weight":31,"_id":"4713","_type":"edge","_outV":"186","_inV":"165","_label":"followed_by"},{"weight":55,"_id":"4714","_type":"edge","_outV":"186","_inV":"148","_label":"followed_by"},{"weight":6,"_id":"4715","_type":"edge","_outV":"186","_inV":"89","_label":"followed_by"},{"weight":58,"_id":"4716","_type":"edge","_outV":"186","_inV":"70","_label":"followed_by"},{"weight":58,"_id":"4717","_type":"edge","_outV":"186","_inV":"201","_label":"followed_by"},{"weight":6,"_id":"4718","_type":"edge","_outV":"186","_inV":"5","_label":"followed_by"},{"weight":6,"_id":"4719","_type":"edge","_outV":"186","_inV":"129","_label":"followed_by"},{"weight":2,"_id":"472","_type":"edge","_outV":"98","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"4720","_type":"edge","_outV":"186","_inV":"46","_label":"followed_by"},{"weight":4,"_id":"4721","_type":"edge","_outV":"186","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4722","_type":"edge","_outV":"186","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4723","_type":"edge","_outV":"186","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"4724","_type":"edge","_outV":"186","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"4725","_type":"edge","_outV":"186","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4726","_type":"edge","_outV":"186","_inV":"139","_label":"followed_by"},{"weight":2,"_id":"4727","_type":"edge","_outV":"186","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"4728","_type":"edge","_outV":"186","_inV":"29","_label":"followed_by"},{"weight":6,"_id":"4729","_type":"edge","_outV":"186","_inV":"149","_label":"followed_by"},{"weight":6,"_id":"473","_type":"edge","_outV":"98","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"4730","_type":"edge","_outV":"186","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"4731","_type":"edge","_outV":"186","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4732","_type":"edge","_outV":"186","_inV":"122","_label":"followed_by"},{"weight":8,"_id":"4733","_type":"edge","_outV":"186","_inV":"138","_label":"followed_by"},{"weight":4,"_id":"4734","_type":"edge","_outV":"186","_inV":"41","_label":"followed_by"},{"weight":4,"_id":"4735","_type":"edge","_outV":"186","_inV":"28","_label":"followed_by"},{"weight":8,"_id":"4736","_type":"edge","_outV":"186","_inV":"158","_label":"followed_by"},{"weight":3,"_id":"4737","_type":"edge","_outV":"186","_inV":"130","_label":"followed_by"},{"weight":3,"_id":"4738","_type":"edge","_outV":"186","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"4739","_type":"edge","_outV":"186","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"474","_type":"edge","_outV":"98","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4740","_type":"edge","_outV":"186","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"4741","_type":"edge","_outV":"186","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"4742","_type":"edge","_outV":"186","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"4743","_type":"edge","_outV":"186","_inV":"66","_label":"followed_by"},{"weight":1,"_id":"4744","_type":"edge","_outV":"186","_inV":"176","_label":"followed_by"},{"weight":4,"_id":"4745","_type":"edge","_outV":"294","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4746","_type":"edge","_outV":"294","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"4747","_type":"edge","_outV":"241","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"4748","_type":"edge","_outV":"37","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"4749","_type":"edge","_outV":"37","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"475","_type":"edge","_outV":"98","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"4750","_type":"edge","_outV":"37","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"4751","_type":"edge","_outV":"37","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"4752","_type":"edge","_outV":"37","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4753","_type":"edge","_outV":"37","_inV":"83","_label":"followed_by"},{"weight":6,"_id":"4754","_type":"edge","_outV":"37","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4755","_type":"edge","_outV":"37","_inV":"36","_label":"followed_by"},{"weight":5,"_id":"4756","_type":"edge","_outV":"37","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4757","_type":"edge","_outV":"37","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"4758","_type":"edge","_outV":"37","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"4759","_type":"edge","_outV":"37","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"476","_type":"edge","_outV":"98","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4760","_type":"edge","_outV":"37","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"4761","_type":"edge","_outV":"37","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"4762","_type":"edge","_outV":"37","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"4763","_type":"edge","_outV":"37","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"4764","_type":"edge","_outV":"37","_inV":"91","_label":"followed_by"},{"weight":30,"_id":"4765","_type":"edge","_outV":"114","_inV":"26","_label":"followed_by"},{"weight":9,"_id":"4766","_type":"edge","_outV":"114","_inV":"122","_label":"followed_by"},{"weight":13,"_id":"4767","_type":"edge","_outV":"114","_inV":"74","_label":"followed_by"},{"weight":6,"_id":"4768","_type":"edge","_outV":"114","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4769","_type":"edge","_outV":"114","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"477","_type":"edge","_outV":"98","_inV":"22","_label":"followed_by"},{"weight":4,"_id":"4770","_type":"edge","_outV":"114","_inV":"19","_label":"followed_by"},{"weight":3,"_id":"4771","_type":"edge","_outV":"114","_inV":"13","_label":"followed_by"},{"weight":25,"_id":"4772","_type":"edge","_outV":"114","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"4773","_type":"edge","_outV":"114","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"4774","_type":"edge","_outV":"114","_inV":"252","_label":"followed_by"},{"weight":5,"_id":"4775","_type":"edge","_outV":"114","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"4776","_type":"edge","_outV":"114","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"4777","_type":"edge","_outV":"114","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"4778","_type":"edge","_outV":"114","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"4779","_type":"edge","_outV":"114","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"478","_type":"edge","_outV":"98","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4780","_type":"edge","_outV":"114","_inV":"157","_label":"followed_by"},{"weight":1,"_id":"4781","_type":"edge","_outV":"114","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"4782","_type":"edge","_outV":"114","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4783","_type":"edge","_outV":"114","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"4784","_type":"edge","_outV":"114","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4785","_type":"edge","_outV":"114","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4786","_type":"edge","_outV":"114","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"4787","_type":"edge","_outV":"114","_inV":"159","_label":"followed_by"},{"weight":2,"_id":"4788","_type":"edge","_outV":"114","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"4789","_type":"edge","_outV":"114","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"479","_type":"edge","_outV":"98","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"4790","_type":"edge","_outV":"114","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4791","_type":"edge","_outV":"114","_inV":"134","_label":"followed_by"},{"weight":5,"_id":"4792","_type":"edge","_outV":"114","_inV":"32","_label":"followed_by"},{"weight":17,"_id":"4793","_type":"edge","_outV":"114","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4794","_type":"edge","_outV":"114","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"4795","_type":"edge","_outV":"114","_inV":"215","_label":"followed_by"},{"weight":8,"_id":"4796","_type":"edge","_outV":"114","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"4797","_type":"edge","_outV":"114","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"4798","_type":"edge","_outV":"114","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4799","_type":"edge","_outV":"114","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"48","_type":"edge","_outV":"46","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"480","_type":"edge","_outV":"98","_inV":"27","_label":"followed_by"},{"weight":5,"_id":"4800","_type":"edge","_outV":"114","_inV":"59","_label":"followed_by"},{"weight":10,"_id":"4801","_type":"edge","_outV":"114","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"4802","_type":"edge","_outV":"114","_inV":"72","_label":"followed_by"},{"weight":8,"_id":"4803","_type":"edge","_outV":"114","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"4804","_type":"edge","_outV":"114","_inV":"111","_label":"followed_by"},{"weight":4,"_id":"4805","_type":"edge","_outV":"114","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"4806","_type":"edge","_outV":"114","_inV":"80","_label":"followed_by"},{"weight":14,"_id":"4807","_type":"edge","_outV":"114","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"4808","_type":"edge","_outV":"114","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"4809","_type":"edge","_outV":"114","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"481","_type":"edge","_outV":"98","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4810","_type":"edge","_outV":"114","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"4811","_type":"edge","_outV":"114","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"4812","_type":"edge","_outV":"114","_inV":"211","_label":"followed_by"},{"weight":11,"_id":"4813","_type":"edge","_outV":"114","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"4814","_type":"edge","_outV":"114","_inV":"162","_label":"followed_by"},{"weight":7,"_id":"4815","_type":"edge","_outV":"114","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"4816","_type":"edge","_outV":"114","_inV":"104","_label":"followed_by"},{"weight":9,"_id":"4817","_type":"edge","_outV":"114","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"4818","_type":"edge","_outV":"114","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"4819","_type":"edge","_outV":"114","_inV":"242","_label":"followed_by"},{"weight":8,"_id":"482","_type":"edge","_outV":"98","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4820","_type":"edge","_outV":"114","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"4821","_type":"edge","_outV":"114","_inV":"171","_label":"followed_by"},{"weight":2,"_id":"4822","_type":"edge","_outV":"114","_inV":"213","_label":"followed_by"},{"weight":2,"_id":"4823","_type":"edge","_outV":"114","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4824","_type":"edge","_outV":"114","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4825","_type":"edge","_outV":"114","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"4826","_type":"edge","_outV":"114","_inV":"330","_label":"followed_by"},{"weight":3,"_id":"4827","_type":"edge","_outV":"114","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"4828","_type":"edge","_outV":"114","_inV":"90","_label":"followed_by"},{"weight":6,"_id":"4829","_type":"edge","_outV":"114","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"483","_type":"edge","_outV":"98","_inV":"39","_label":"followed_by"},{"weight":5,"_id":"4830","_type":"edge","_outV":"114","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"4831","_type":"edge","_outV":"114","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"4832","_type":"edge","_outV":"114","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"4833","_type":"edge","_outV":"114","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4834","_type":"edge","_outV":"114","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"4835","_type":"edge","_outV":"114","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"4836","_type":"edge","_outV":"114","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"4837","_type":"edge","_outV":"114","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4838","_type":"edge","_outV":"114","_inV":"185","_label":"followed_by"},{"weight":2,"_id":"4839","_type":"edge","_outV":"114","_inV":"236","_label":"followed_by"},{"weight":2,"_id":"484","_type":"edge","_outV":"98","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"4840","_type":"edge","_outV":"114","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"4841","_type":"edge","_outV":"114","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"4842","_type":"edge","_outV":"114","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"4843","_type":"edge","_outV":"114","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"4844","_type":"edge","_outV":"119","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"4845","_type":"edge","_outV":"119","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"4846","_type":"edge","_outV":"119","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4847","_type":"edge","_outV":"119","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4848","_type":"edge","_outV":"119","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"4849","_type":"edge","_outV":"119","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"485","_type":"edge","_outV":"98","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4850","_type":"edge","_outV":"119","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4851","_type":"edge","_outV":"119","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4852","_type":"edge","_outV":"119","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"4853","_type":"edge","_outV":"35","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"4854","_type":"edge","_outV":"35","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"4855","_type":"edge","_outV":"35","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"4856","_type":"edge","_outV":"35","_inV":"69","_label":"followed_by"},{"weight":3,"_id":"4857","_type":"edge","_outV":"35","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"4858","_type":"edge","_outV":"35","_inV":"41","_label":"followed_by"},{"weight":4,"_id":"4859","_type":"edge","_outV":"35","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"486","_type":"edge","_outV":"98","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"4860","_type":"edge","_outV":"35","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"4861","_type":"edge","_outV":"35","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"4862","_type":"edge","_outV":"35","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"4863","_type":"edge","_outV":"35","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"4864","_type":"edge","_outV":"35","_inV":"92","_label":"followed_by"},{"weight":4,"_id":"4865","_type":"edge","_outV":"35","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"4866","_type":"edge","_outV":"35","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4867","_type":"edge","_outV":"35","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"4868","_type":"edge","_outV":"35","_inV":"258","_label":"followed_by"},{"weight":1,"_id":"4869","_type":"edge","_outV":"35","_inV":"85","_label":"followed_by"},{"weight":4,"_id":"487","_type":"edge","_outV":"98","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"4870","_type":"edge","_outV":"100","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"4871","_type":"edge","_outV":"100","_inV":"39","_label":"followed_by"},{"weight":9,"_id":"4872","_type":"edge","_outV":"100","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"4873","_type":"edge","_outV":"100","_inV":"46","_label":"followed_by"},{"weight":6,"_id":"4874","_type":"edge","_outV":"100","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4875","_type":"edge","_outV":"100","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4876","_type":"edge","_outV":"100","_inV":"11","_label":"followed_by"},{"weight":8,"_id":"4877","_type":"edge","_outV":"100","_inV":"50","_label":"followed_by"},{"weight":19,"_id":"4878","_type":"edge","_outV":"100","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"4879","_type":"edge","_outV":"100","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"488","_type":"edge","_outV":"98","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"4880","_type":"edge","_outV":"100","_inV":"19","_label":"followed_by"},{"weight":20,"_id":"4881","_type":"edge","_outV":"100","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4882","_type":"edge","_outV":"100","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"4883","_type":"edge","_outV":"100","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"4884","_type":"edge","_outV":"100","_inV":"54","_label":"followed_by"},{"weight":11,"_id":"4885","_type":"edge","_outV":"100","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"4886","_type":"edge","_outV":"100","_inV":"22","_label":"followed_by"},{"weight":15,"_id":"4887","_type":"edge","_outV":"100","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"4888","_type":"edge","_outV":"100","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"4889","_type":"edge","_outV":"100","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"489","_type":"edge","_outV":"98","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"4890","_type":"edge","_outV":"100","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"4891","_type":"edge","_outV":"100","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"4892","_type":"edge","_outV":"100","_inV":"26","_label":"followed_by"},{"weight":7,"_id":"4893","_type":"edge","_outV":"100","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"4894","_type":"edge","_outV":"100","_inV":"20","_label":"followed_by"},{"weight":14,"_id":"4895","_type":"edge","_outV":"100","_inV":"42","_label":"followed_by"},{"weight":15,"_id":"4896","_type":"edge","_outV":"100","_inV":"101","_label":"followed_by"},{"weight":13,"_id":"4897","_type":"edge","_outV":"100","_inV":"121","_label":"followed_by"},{"weight":21,"_id":"4898","_type":"edge","_outV":"100","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4899","_type":"edge","_outV":"100","_inV":"76","_label":"followed_by"},{"weight":10,"_id":"49","_type":"edge","_outV":"46","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"490","_type":"edge","_outV":"98","_inV":"110","_label":"followed_by"},{"weight":11,"_id":"4900","_type":"edge","_outV":"100","_inV":"32","_label":"followed_by"},{"weight":10,"_id":"4901","_type":"edge","_outV":"100","_inV":"112","_label":"followed_by"},{"weight":12,"_id":"4902","_type":"edge","_outV":"100","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"4903","_type":"edge","_outV":"100","_inV":"120","_label":"followed_by"},{"weight":8,"_id":"4904","_type":"edge","_outV":"100","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"4905","_type":"edge","_outV":"100","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"4906","_type":"edge","_outV":"100","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4907","_type":"edge","_outV":"100","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"4908","_type":"edge","_outV":"100","_inV":"189","_label":"followed_by"},{"weight":4,"_id":"4909","_type":"edge","_outV":"100","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"491","_type":"edge","_outV":"98","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"4910","_type":"edge","_outV":"100","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"4911","_type":"edge","_outV":"100","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"4912","_type":"edge","_outV":"100","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"4913","_type":"edge","_outV":"100","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"4914","_type":"edge","_outV":"100","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"4915","_type":"edge","_outV":"100","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"4916","_type":"edge","_outV":"100","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4917","_type":"edge","_outV":"100","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4918","_type":"edge","_outV":"100","_inV":"163","_label":"followed_by"},{"weight":2,"_id":"4919","_type":"edge","_outV":"100","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"492","_type":"edge","_outV":"98","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"4920","_type":"edge","_outV":"100","_inV":"114","_label":"followed_by"},{"weight":5,"_id":"4921","_type":"edge","_outV":"100","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"4922","_type":"edge","_outV":"100","_inV":"283","_label":"followed_by"},{"weight":8,"_id":"4923","_type":"edge","_outV":"100","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"4924","_type":"edge","_outV":"100","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"4925","_type":"edge","_outV":"100","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"4926","_type":"edge","_outV":"100","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4927","_type":"edge","_outV":"100","_inV":"167","_label":"followed_by"},{"weight":2,"_id":"4928","_type":"edge","_outV":"100","_inV":"124","_label":"followed_by"},{"weight":3,"_id":"4929","_type":"edge","_outV":"100","_inV":"79","_label":"followed_by"},{"weight":5,"_id":"493","_type":"edge","_outV":"98","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"4930","_type":"edge","_outV":"100","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"4931","_type":"edge","_outV":"100","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"4932","_type":"edge","_outV":"100","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"4933","_type":"edge","_outV":"100","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"4934","_type":"edge","_outV":"100","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"4935","_type":"edge","_outV":"100","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"4936","_type":"edge","_outV":"100","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"4937","_type":"edge","_outV":"277","_inV":"3","_label":"followed_by"},{"weight":6,"_id":"4938","_type":"edge","_outV":"86","_inV":"38","_label":"followed_by"},{"weight":5,"_id":"4939","_type":"edge","_outV":"86","_inV":"215","_label":"followed_by"},{"weight":18,"_id":"494","_type":"edge","_outV":"98","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"4940","_type":"edge","_outV":"86","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"4941","_type":"edge","_outV":"86","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4942","_type":"edge","_outV":"86","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"4943","_type":"edge","_outV":"86","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"4944","_type":"edge","_outV":"86","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"4945","_type":"edge","_outV":"86","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"4946","_type":"edge","_outV":"86","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"4947","_type":"edge","_outV":"86","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"4948","_type":"edge","_outV":"86","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"4949","_type":"edge","_outV":"86","_inV":"64","_label":"followed_by"},{"weight":7,"_id":"495","_type":"edge","_outV":"98","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"4950","_type":"edge","_outV":"86","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"4951","_type":"edge","_outV":"86","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"4952","_type":"edge","_outV":"86","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"4953","_type":"edge","_outV":"86","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"4954","_type":"edge","_outV":"86","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4955","_type":"edge","_outV":"307","_inV":"244","_label":"followed_by"},{"weight":1,"_id":"4956","_type":"edge","_outV":"331","_inV":"309","_label":"followed_by"},{"weight":1,"_id":"4957","_type":"edge","_outV":"332","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"4958","_type":"edge","_outV":"207","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"4959","_type":"edge","_outV":"207","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"496","_type":"edge","_outV":"98","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"4960","_type":"edge","_outV":"207","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"4961","_type":"edge","_outV":"207","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"4962","_type":"edge","_outV":"207","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"4963","_type":"edge","_outV":"207","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"4964","_type":"edge","_outV":"207","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"4965","_type":"edge","_outV":"207","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"4966","_type":"edge","_outV":"207","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4967","_type":"edge","_outV":"207","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"4968","_type":"edge","_outV":"207","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"4969","_type":"edge","_outV":"236","_inV":"9","_label":"followed_by"},{"weight":8,"_id":"497","_type":"edge","_outV":"98","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"4970","_type":"edge","_outV":"236","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"4971","_type":"edge","_outV":"236","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"4972","_type":"edge","_outV":"236","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"4973","_type":"edge","_outV":"236","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"4974","_type":"edge","_outV":"236","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"4975","_type":"edge","_outV":"236","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"4976","_type":"edge","_outV":"236","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"4977","_type":"edge","_outV":"236","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"4978","_type":"edge","_outV":"236","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"4979","_type":"edge","_outV":"236","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"498","_type":"edge","_outV":"98","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"4980","_type":"edge","_outV":"236","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"4981","_type":"edge","_outV":"236","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"4982","_type":"edge","_outV":"236","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"4983","_type":"edge","_outV":"236","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"4984","_type":"edge","_outV":"236","_inV":"166","_label":"followed_by"},{"weight":1,"_id":"4985","_type":"edge","_outV":"30","_inV":"333","_label":"followed_by"},{"weight":2,"_id":"4986","_type":"edge","_outV":"30","_inV":"54","_label":"followed_by"},{"weight":18,"_id":"4987","_type":"edge","_outV":"30","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"4988","_type":"edge","_outV":"30","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"4989","_type":"edge","_outV":"30","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"499","_type":"edge","_outV":"98","_inV":"91","_label":"followed_by"},{"weight":7,"_id":"4990","_type":"edge","_outV":"30","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"4991","_type":"edge","_outV":"30","_inV":"63","_label":"followed_by"},{"weight":10,"_id":"4992","_type":"edge","_outV":"30","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"4993","_type":"edge","_outV":"30","_inV":"51","_label":"followed_by"},{"weight":4,"_id":"4994","_type":"edge","_outV":"30","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"4995","_type":"edge","_outV":"30","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"4996","_type":"edge","_outV":"30","_inV":"62","_label":"followed_by"},{"weight":11,"_id":"4997","_type":"edge","_outV":"30","_inV":"104","_label":"followed_by"},{"weight":6,"_id":"4998","_type":"edge","_outV":"30","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"4999","_type":"edge","_outV":"30","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"5","_type":"edge","_outV":"7","_inV":"8","_label":"followed_by"},{"weight":4,"_id":"50","_type":"edge","_outV":"46","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"500","_type":"edge","_outV":"98","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5000","_type":"edge","_outV":"30","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5001","_type":"edge","_outV":"30","_inV":"151","_label":"followed_by"},{"weight":7,"_id":"5002","_type":"edge","_outV":"30","_inV":"56","_label":"followed_by"},{"weight":4,"_id":"5003","_type":"edge","_outV":"30","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5004","_type":"edge","_outV":"30","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"5005","_type":"edge","_outV":"30","_inV":"168","_label":"followed_by"},{"weight":2,"_id":"5006","_type":"edge","_outV":"30","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"5007","_type":"edge","_outV":"30","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"5008","_type":"edge","_outV":"30","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"5009","_type":"edge","_outV":"30","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"501","_type":"edge","_outV":"98","_inV":"197","_label":"followed_by"},{"weight":2,"_id":"5010","_type":"edge","_outV":"30","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"5011","_type":"edge","_outV":"30","_inV":"17","_label":"followed_by"},{"weight":4,"_id":"5012","_type":"edge","_outV":"30","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5013","_type":"edge","_outV":"30","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"5014","_type":"edge","_outV":"30","_inV":"202","_label":"followed_by"},{"weight":6,"_id":"5015","_type":"edge","_outV":"30","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5016","_type":"edge","_outV":"30","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"5017","_type":"edge","_outV":"30","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5018","_type":"edge","_outV":"30","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5019","_type":"edge","_outV":"30","_inV":"191","_label":"followed_by"},{"weight":5,"_id":"502","_type":"edge","_outV":"98","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"5020","_type":"edge","_outV":"30","_inV":"254","_label":"followed_by"},{"weight":4,"_id":"5021","_type":"edge","_outV":"30","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"5022","_type":"edge","_outV":"30","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5023","_type":"edge","_outV":"30","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5024","_type":"edge","_outV":"30","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5025","_type":"edge","_outV":"30","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"5026","_type":"edge","_outV":"30","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"5027","_type":"edge","_outV":"30","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"5028","_type":"edge","_outV":"303","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5029","_type":"edge","_outV":"47","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"503","_type":"edge","_outV":"98","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"5030","_type":"edge","_outV":"47","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5031","_type":"edge","_outV":"47","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5032","_type":"edge","_outV":"47","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5033","_type":"edge","_outV":"47","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5034","_type":"edge","_outV":"47","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5035","_type":"edge","_outV":"47","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5036","_type":"edge","_outV":"47","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"5037","_type":"edge","_outV":"276","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5038","_type":"edge","_outV":"291","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5039","_type":"edge","_outV":"291","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"504","_type":"edge","_outV":"98","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"5040","_type":"edge","_outV":"209","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5041","_type":"edge","_outV":"209","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5042","_type":"edge","_outV":"209","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5043","_type":"edge","_outV":"209","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5044","_type":"edge","_outV":"209","_inV":"149","_label":"followed_by"},{"weight":3,"_id":"5045","_type":"edge","_outV":"209","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5046","_type":"edge","_outV":"209","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5047","_type":"edge","_outV":"209","_inV":"20","_label":"followed_by"},{"weight":2,"_id":"5048","_type":"edge","_outV":"209","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5049","_type":"edge","_outV":"209","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"505","_type":"edge","_outV":"98","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5050","_type":"edge","_outV":"209","_inV":"224","_label":"followed_by"},{"weight":3,"_id":"5051","_type":"edge","_outV":"209","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5052","_type":"edge","_outV":"209","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"5053","_type":"edge","_outV":"209","_inV":"219","_label":"followed_by"},{"weight":1,"_id":"5054","_type":"edge","_outV":"209","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5055","_type":"edge","_outV":"209","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5056","_type":"edge","_outV":"209","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5057","_type":"edge","_outV":"257","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5058","_type":"edge","_outV":"257","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5059","_type":"edge","_outV":"257","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"506","_type":"edge","_outV":"98","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5060","_type":"edge","_outV":"257","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5061","_type":"edge","_outV":"257","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5062","_type":"edge","_outV":"257","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5063","_type":"edge","_outV":"128","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"5064","_type":"edge","_outV":"128","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5065","_type":"edge","_outV":"128","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5066","_type":"edge","_outV":"128","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5067","_type":"edge","_outV":"128","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5068","_type":"edge","_outV":"128","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"5069","_type":"edge","_outV":"128","_inV":"114","_label":"followed_by"},{"weight":4,"_id":"507","_type":"edge","_outV":"98","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5070","_type":"edge","_outV":"128","_inV":"21","_label":"followed_by"},{"weight":9,"_id":"5071","_type":"edge","_outV":"4","_inV":"50","_label":"followed_by"},{"weight":26,"_id":"5072","_type":"edge","_outV":"4","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"5073","_type":"edge","_outV":"4","_inV":"18","_label":"followed_by"},{"weight":9,"_id":"5074","_type":"edge","_outV":"4","_inV":"24","_label":"followed_by"},{"weight":63,"_id":"5075","_type":"edge","_outV":"4","_inV":"23","_label":"followed_by"},{"weight":12,"_id":"5076","_type":"edge","_outV":"4","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"5077","_type":"edge","_outV":"4","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"5078","_type":"edge","_outV":"4","_inV":"11","_label":"followed_by"},{"weight":18,"_id":"5079","_type":"edge","_outV":"4","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"508","_type":"edge","_outV":"98","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5080","_type":"edge","_outV":"4","_inV":"22","_label":"followed_by"},{"weight":2,"_id":"5081","_type":"edge","_outV":"4","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"5082","_type":"edge","_outV":"4","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5083","_type":"edge","_outV":"4","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5084","_type":"edge","_outV":"4","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5085","_type":"edge","_outV":"4","_inV":"15","_label":"followed_by"},{"weight":4,"_id":"5086","_type":"edge","_outV":"4","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5087","_type":"edge","_outV":"4","_inV":"121","_label":"followed_by"},{"weight":7,"_id":"5088","_type":"edge","_outV":"4","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5089","_type":"edge","_outV":"4","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"509","_type":"edge","_outV":"98","_inV":"49","_label":"followed_by"},{"weight":77,"_id":"5090","_type":"edge","_outV":"4","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5091","_type":"edge","_outV":"4","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"5092","_type":"edge","_outV":"4","_inV":"42","_label":"followed_by"},{"weight":4,"_id":"5093","_type":"edge","_outV":"4","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"5094","_type":"edge","_outV":"4","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"5095","_type":"edge","_outV":"4","_inV":"181","_label":"followed_by"},{"weight":2,"_id":"5096","_type":"edge","_outV":"4","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5097","_type":"edge","_outV":"4","_inV":"122","_label":"followed_by"},{"weight":3,"_id":"5098","_type":"edge","_outV":"4","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5099","_type":"edge","_outV":"4","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"51","_type":"edge","_outV":"46","_inV":"52","_label":"followed_by"},{"weight":3,"_id":"510","_type":"edge","_outV":"98","_inV":"71","_label":"followed_by"},{"weight":3,"_id":"5100","_type":"edge","_outV":"4","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5101","_type":"edge","_outV":"4","_inV":"110","_label":"followed_by"},{"weight":6,"_id":"5102","_type":"edge","_outV":"4","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5103","_type":"edge","_outV":"4","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5104","_type":"edge","_outV":"4","_inV":"84","_label":"followed_by"},{"weight":9,"_id":"5105","_type":"edge","_outV":"4","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5106","_type":"edge","_outV":"4","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"5107","_type":"edge","_outV":"4","_inV":"114","_label":"followed_by"},{"weight":8,"_id":"5108","_type":"edge","_outV":"4","_inV":"30","_label":"followed_by"},{"weight":8,"_id":"5109","_type":"edge","_outV":"4","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"511","_type":"edge","_outV":"98","_inV":"124","_label":"followed_by"},{"weight":4,"_id":"5110","_type":"edge","_outV":"4","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"5111","_type":"edge","_outV":"4","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5112","_type":"edge","_outV":"4","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"5113","_type":"edge","_outV":"4","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5114","_type":"edge","_outV":"4","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5115","_type":"edge","_outV":"4","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5116","_type":"edge","_outV":"4","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5117","_type":"edge","_outV":"4","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"5118","_type":"edge","_outV":"4","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"5119","_type":"edge","_outV":"4","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"512","_type":"edge","_outV":"98","_inV":"200","_label":"followed_by"},{"weight":5,"_id":"5120","_type":"edge","_outV":"4","_inV":"40","_label":"followed_by"},{"weight":3,"_id":"5121","_type":"edge","_outV":"4","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"5122","_type":"edge","_outV":"4","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5123","_type":"edge","_outV":"4","_inV":"292","_label":"followed_by"},{"weight":3,"_id":"5124","_type":"edge","_outV":"222","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"5125","_type":"edge","_outV":"222","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5126","_type":"edge","_outV":"222","_inV":"59","_label":"followed_by"},{"weight":10,"_id":"5127","_type":"edge","_outV":"222","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"5128","_type":"edge","_outV":"222","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5129","_type":"edge","_outV":"222","_inV":"4","_label":"followed_by"},{"weight":4,"_id":"513","_type":"edge","_outV":"98","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5130","_type":"edge","_outV":"222","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5131","_type":"edge","_outV":"222","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5132","_type":"edge","_outV":"222","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5133","_type":"edge","_outV":"222","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5134","_type":"edge","_outV":"222","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5135","_type":"edge","_outV":"334","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5136","_type":"edge","_outV":"125","_inV":"22","_label":"followed_by"},{"weight":6,"_id":"5137","_type":"edge","_outV":"125","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5138","_type":"edge","_outV":"125","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5139","_type":"edge","_outV":"125","_inV":"24","_label":"followed_by"},{"weight":3,"_id":"514","_type":"edge","_outV":"98","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5140","_type":"edge","_outV":"125","_inV":"23","_label":"followed_by"},{"weight":2,"_id":"5141","_type":"edge","_outV":"125","_inV":"15","_label":"followed_by"},{"weight":11,"_id":"5142","_type":"edge","_outV":"125","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"5143","_type":"edge","_outV":"125","_inV":"133","_label":"followed_by"},{"weight":87,"_id":"5144","_type":"edge","_outV":"125","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5145","_type":"edge","_outV":"125","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5146","_type":"edge","_outV":"125","_inV":"16","_label":"followed_by"},{"weight":69,"_id":"5147","_type":"edge","_outV":"125","_inV":"153","_label":"followed_by"},{"weight":4,"_id":"5148","_type":"edge","_outV":"125","_inV":"3","_label":"followed_by"},{"weight":16,"_id":"5149","_type":"edge","_outV":"125","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"515","_type":"edge","_outV":"98","_inV":"188","_label":"followed_by"},{"weight":7,"_id":"5150","_type":"edge","_outV":"125","_inV":"70","_label":"followed_by"},{"weight":6,"_id":"5151","_type":"edge","_outV":"125","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5152","_type":"edge","_outV":"125","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"5153","_type":"edge","_outV":"125","_inV":"122","_label":"followed_by"},{"weight":10,"_id":"5154","_type":"edge","_outV":"125","_inV":"114","_label":"followed_by"},{"weight":20,"_id":"5155","_type":"edge","_outV":"125","_inV":"164","_label":"followed_by"},{"weight":22,"_id":"5156","_type":"edge","_outV":"125","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5157","_type":"edge","_outV":"125","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"5158","_type":"edge","_outV":"125","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"5159","_type":"edge","_outV":"125","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"516","_type":"edge","_outV":"98","_inV":"201","_label":"followed_by"},{"weight":2,"_id":"5160","_type":"edge","_outV":"71","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5161","_type":"edge","_outV":"71","_inV":"87","_label":"followed_by"},{"weight":9,"_id":"5162","_type":"edge","_outV":"71","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"5163","_type":"edge","_outV":"71","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5164","_type":"edge","_outV":"71","_inV":"184","_label":"followed_by"},{"weight":5,"_id":"5165","_type":"edge","_outV":"71","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"5166","_type":"edge","_outV":"71","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5167","_type":"edge","_outV":"71","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5168","_type":"edge","_outV":"71","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5169","_type":"edge","_outV":"71","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"517","_type":"edge","_outV":"98","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5170","_type":"edge","_outV":"71","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"5171","_type":"edge","_outV":"71","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5172","_type":"edge","_outV":"71","_inV":"53","_label":"followed_by"},{"weight":6,"_id":"5173","_type":"edge","_outV":"71","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"5174","_type":"edge","_outV":"71","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5175","_type":"edge","_outV":"71","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"5176","_type":"edge","_outV":"71","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"5177","_type":"edge","_outV":"71","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5178","_type":"edge","_outV":"71","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"5179","_type":"edge","_outV":"71","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"518","_type":"edge","_outV":"98","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5180","_type":"edge","_outV":"71","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5181","_type":"edge","_outV":"71","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"5182","_type":"edge","_outV":"71","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5183","_type":"edge","_outV":"71","_inV":"39","_label":"followed_by"},{"weight":18,"_id":"5184","_type":"edge","_outV":"99","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5185","_type":"edge","_outV":"99","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"5186","_type":"edge","_outV":"99","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5187","_type":"edge","_outV":"99","_inV":"121","_label":"followed_by"},{"weight":1,"_id":"5188","_type":"edge","_outV":"99","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5189","_type":"edge","_outV":"99","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"519","_type":"edge","_outV":"203","_inV":"204","_label":"followed_by"},{"weight":1,"_id":"5190","_type":"edge","_outV":"99","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"5191","_type":"edge","_outV":"99","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5192","_type":"edge","_outV":"99","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5193","_type":"edge","_outV":"99","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5194","_type":"edge","_outV":"99","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5195","_type":"edge","_outV":"99","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"5196","_type":"edge","_outV":"99","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"5197","_type":"edge","_outV":"99","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5198","_type":"edge","_outV":"99","_inV":"170","_label":"followed_by"},{"weight":3,"_id":"5199","_type":"edge","_outV":"99","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"52","_type":"edge","_outV":"46","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"520","_type":"edge","_outV":"203","_inV":"96","_label":"followed_by"},{"weight":19,"_id":"5200","_type":"edge","_outV":"99","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5201","_type":"edge","_outV":"99","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"5202","_type":"edge","_outV":"99","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5203","_type":"edge","_outV":"99","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5204","_type":"edge","_outV":"99","_inV":"69","_label":"followed_by"},{"weight":6,"_id":"5205","_type":"edge","_outV":"99","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5206","_type":"edge","_outV":"99","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5207","_type":"edge","_outV":"99","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5208","_type":"edge","_outV":"99","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5209","_type":"edge","_outV":"99","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"521","_type":"edge","_outV":"205","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"5210","_type":"edge","_outV":"99","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5211","_type":"edge","_outV":"99","_inV":"211","_label":"followed_by"},{"weight":1,"_id":"5212","_type":"edge","_outV":"99","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5213","_type":"edge","_outV":"99","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5214","_type":"edge","_outV":"99","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5215","_type":"edge","_outV":"99","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"5216","_type":"edge","_outV":"99","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5217","_type":"edge","_outV":"99","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5218","_type":"edge","_outV":"99","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"5219","_type":"edge","_outV":"99","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"522","_type":"edge","_outV":"120","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5220","_type":"edge","_outV":"99","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5221","_type":"edge","_outV":"99","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"5222","_type":"edge","_outV":"216","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"5223","_type":"edge","_outV":"216","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5224","_type":"edge","_outV":"216","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"5225","_type":"edge","_outV":"216","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"5226","_type":"edge","_outV":"216","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"5227","_type":"edge","_outV":"216","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"5228","_type":"edge","_outV":"216","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5229","_type":"edge","_outV":"216","_inV":"64","_label":"followed_by"},{"weight":5,"_id":"523","_type":"edge","_outV":"120","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"5230","_type":"edge","_outV":"216","_inV":"215","_label":"followed_by"},{"weight":4,"_id":"5231","_type":"edge","_outV":"214","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"5232","_type":"edge","_outV":"214","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5233","_type":"edge","_outV":"214","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"5234","_type":"edge","_outV":"214","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"5235","_type":"edge","_outV":"214","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"5236","_type":"edge","_outV":"214","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"5237","_type":"edge","_outV":"32","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5238","_type":"edge","_outV":"32","_inV":"4","_label":"followed_by"},{"weight":28,"_id":"5239","_type":"edge","_outV":"32","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"524","_type":"edge","_outV":"120","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"5240","_type":"edge","_outV":"32","_inV":"82","_label":"followed_by"},{"weight":33,"_id":"5241","_type":"edge","_outV":"32","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"5242","_type":"edge","_outV":"32","_inV":"15","_label":"followed_by"},{"weight":22,"_id":"5243","_type":"edge","_outV":"32","_inV":"56","_label":"followed_by"},{"weight":19,"_id":"5244","_type":"edge","_outV":"32","_inV":"17","_label":"followed_by"},{"weight":27,"_id":"5245","_type":"edge","_outV":"32","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5246","_type":"edge","_outV":"32","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"5247","_type":"edge","_outV":"32","_inV":"103","_label":"followed_by"},{"weight":32,"_id":"5248","_type":"edge","_outV":"32","_inV":"104","_label":"followed_by"},{"weight":12,"_id":"5249","_type":"edge","_outV":"32","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"525","_type":"edge","_outV":"120","_inV":"12","_label":"followed_by"},{"weight":7,"_id":"5250","_type":"edge","_outV":"32","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"5251","_type":"edge","_outV":"32","_inV":"14","_label":"followed_by"},{"weight":17,"_id":"5252","_type":"edge","_outV":"32","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5253","_type":"edge","_outV":"32","_inV":"68","_label":"followed_by"},{"weight":11,"_id":"5254","_type":"edge","_outV":"32","_inV":"57","_label":"followed_by"},{"weight":23,"_id":"5255","_type":"edge","_outV":"32","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5256","_type":"edge","_outV":"32","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"5257","_type":"edge","_outV":"32","_inV":"18","_label":"followed_by"},{"weight":11,"_id":"5258","_type":"edge","_outV":"32","_inV":"100","_label":"followed_by"},{"weight":16,"_id":"5259","_type":"edge","_outV":"32","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"526","_type":"edge","_outV":"120","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5260","_type":"edge","_outV":"32","_inV":"50","_label":"followed_by"},{"weight":16,"_id":"5261","_type":"edge","_outV":"32","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5262","_type":"edge","_outV":"32","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"5263","_type":"edge","_outV":"32","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5264","_type":"edge","_outV":"32","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"5265","_type":"edge","_outV":"32","_inV":"189","_label":"followed_by"},{"weight":16,"_id":"5266","_type":"edge","_outV":"32","_inV":"73","_label":"followed_by"},{"weight":12,"_id":"5267","_type":"edge","_outV":"32","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5268","_type":"edge","_outV":"32","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"5269","_type":"edge","_outV":"32","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"527","_type":"edge","_outV":"120","_inV":"145","_label":"followed_by"},{"weight":2,"_id":"5270","_type":"edge","_outV":"32","_inV":"109","_label":"followed_by"},{"weight":6,"_id":"5271","_type":"edge","_outV":"32","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"5272","_type":"edge","_outV":"32","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"5273","_type":"edge","_outV":"32","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"5274","_type":"edge","_outV":"32","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5275","_type":"edge","_outV":"32","_inV":"78","_label":"followed_by"},{"weight":10,"_id":"5276","_type":"edge","_outV":"32","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5277","_type":"edge","_outV":"32","_inV":"306","_label":"followed_by"},{"weight":2,"_id":"5278","_type":"edge","_outV":"32","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"5279","_type":"edge","_outV":"32","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"528","_type":"edge","_outV":"120","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5280","_type":"edge","_outV":"32","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"5281","_type":"edge","_outV":"32","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5282","_type":"edge","_outV":"32","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"5283","_type":"edge","_outV":"32","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5284","_type":"edge","_outV":"32","_inV":"267","_label":"followed_by"},{"weight":1,"_id":"5285","_type":"edge","_outV":"32","_inV":"71","_label":"followed_by"},{"weight":4,"_id":"5286","_type":"edge","_outV":"32","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"5287","_type":"edge","_outV":"32","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5288","_type":"edge","_outV":"32","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"5289","_type":"edge","_outV":"32","_inV":"253","_label":"followed_by"},{"weight":13,"_id":"529","_type":"edge","_outV":"120","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5290","_type":"edge","_outV":"32","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5291","_type":"edge","_outV":"32","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"5292","_type":"edge","_outV":"32","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5293","_type":"edge","_outV":"32","_inV":"118","_label":"followed_by"},{"weight":3,"_id":"5294","_type":"edge","_outV":"32","_inV":"137","_label":"followed_by"},{"weight":6,"_id":"5295","_type":"edge","_outV":"32","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5296","_type":"edge","_outV":"32","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5297","_type":"edge","_outV":"32","_inV":"174","_label":"followed_by"},{"weight":2,"_id":"5298","_type":"edge","_outV":"321","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"5299","_type":"edge","_outV":"170","_inV":"18","_label":"followed_by"},{"weight":4,"_id":"53","_type":"edge","_outV":"46","_inV":"13","_label":"followed_by"},{"weight":7,"_id":"530","_type":"edge","_outV":"120","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5300","_type":"edge","_outV":"170","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"5301","_type":"edge","_outV":"170","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5302","_type":"edge","_outV":"170","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"5303","_type":"edge","_outV":"170","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"5304","_type":"edge","_outV":"170","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5305","_type":"edge","_outV":"170","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"5306","_type":"edge","_outV":"170","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"5307","_type":"edge","_outV":"170","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5308","_type":"edge","_outV":"170","_inV":"222","_label":"followed_by"},{"weight":5,"_id":"5309","_type":"edge","_outV":"170","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"531","_type":"edge","_outV":"120","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"5310","_type":"edge","_outV":"170","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"5311","_type":"edge","_outV":"170","_inV":"111","_label":"followed_by"},{"weight":7,"_id":"5312","_type":"edge","_outV":"170","_inV":"101","_label":"followed_by"},{"weight":3,"_id":"5313","_type":"edge","_outV":"170","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5314","_type":"edge","_outV":"170","_inV":"198","_label":"followed_by"},{"weight":1,"_id":"5315","_type":"edge","_outV":"170","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"5316","_type":"edge","_outV":"170","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5317","_type":"edge","_outV":"170","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5318","_type":"edge","_outV":"170","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5319","_type":"edge","_outV":"170","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"532","_type":"edge","_outV":"120","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5320","_type":"edge","_outV":"170","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5321","_type":"edge","_outV":"170","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5322","_type":"edge","_outV":"170","_inV":"269","_label":"followed_by"},{"weight":2,"_id":"5323","_type":"edge","_outV":"170","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"5324","_type":"edge","_outV":"170","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5325","_type":"edge","_outV":"170","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5326","_type":"edge","_outV":"170","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5327","_type":"edge","_outV":"238","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5328","_type":"edge","_outV":"238","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5329","_type":"edge","_outV":"238","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"533","_type":"edge","_outV":"120","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5330","_type":"edge","_outV":"238","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5331","_type":"edge","_outV":"238","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5332","_type":"edge","_outV":"238","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5333","_type":"edge","_outV":"165","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"5334","_type":"edge","_outV":"165","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5335","_type":"edge","_outV":"165","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"5336","_type":"edge","_outV":"165","_inV":"134","_label":"followed_by"},{"weight":23,"_id":"5337","_type":"edge","_outV":"165","_inV":"125","_label":"followed_by"},{"weight":4,"_id":"5338","_type":"edge","_outV":"165","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"5339","_type":"edge","_outV":"165","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"534","_type":"edge","_outV":"120","_inV":"206","_label":"followed_by"},{"weight":28,"_id":"5340","_type":"edge","_outV":"165","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5341","_type":"edge","_outV":"165","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5342","_type":"edge","_outV":"165","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"5343","_type":"edge","_outV":"165","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5344","_type":"edge","_outV":"165","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"5345","_type":"edge","_outV":"165","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5346","_type":"edge","_outV":"165","_inV":"268","_label":"followed_by"},{"weight":21,"_id":"5347","_type":"edge","_outV":"165","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5348","_type":"edge","_outV":"165","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5349","_type":"edge","_outV":"165","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"535","_type":"edge","_outV":"120","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"5350","_type":"edge","_outV":"165","_inV":"232","_label":"followed_by"},{"weight":10,"_id":"5351","_type":"edge","_outV":"165","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"5352","_type":"edge","_outV":"165","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5353","_type":"edge","_outV":"165","_inV":"136","_label":"followed_by"},{"weight":4,"_id":"5354","_type":"edge","_outV":"165","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"5355","_type":"edge","_outV":"165","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5356","_type":"edge","_outV":"165","_inV":"164","_label":"followed_by"},{"weight":6,"_id":"5357","_type":"edge","_outV":"165","_inV":"138","_label":"followed_by"},{"weight":3,"_id":"5358","_type":"edge","_outV":"165","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"5359","_type":"edge","_outV":"132","_inV":"21","_label":"followed_by"},{"weight":8,"_id":"536","_type":"edge","_outV":"120","_inV":"98","_label":"followed_by"},{"weight":3,"_id":"5360","_type":"edge","_outV":"132","_inV":"150","_label":"followed_by"},{"weight":5,"_id":"5361","_type":"edge","_outV":"132","_inV":"164","_label":"followed_by"},{"weight":2,"_id":"5362","_type":"edge","_outV":"132","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"5363","_type":"edge","_outV":"132","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5364","_type":"edge","_outV":"132","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"5365","_type":"edge","_outV":"132","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5366","_type":"edge","_outV":"132","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"5367","_type":"edge","_outV":"132","_inV":"3","_label":"followed_by"},{"weight":3,"_id":"5368","_type":"edge","_outV":"132","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5369","_type":"edge","_outV":"132","_inV":"135","_label":"followed_by"},{"weight":1,"_id":"537","_type":"edge","_outV":"120","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"5370","_type":"edge","_outV":"132","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5371","_type":"edge","_outV":"132","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"5372","_type":"edge","_outV":"132","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5373","_type":"edge","_outV":"132","_inV":"87","_label":"followed_by"},{"weight":34,"_id":"5374","_type":"edge","_outV":"69","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5375","_type":"edge","_outV":"69","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5376","_type":"edge","_outV":"69","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"5377","_type":"edge","_outV":"69","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"5378","_type":"edge","_outV":"69","_inV":"26","_label":"followed_by"},{"weight":4,"_id":"5379","_type":"edge","_outV":"69","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"538","_type":"edge","_outV":"120","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5380","_type":"edge","_outV":"69","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5381","_type":"edge","_outV":"69","_inV":"290","_label":"followed_by"},{"weight":4,"_id":"5382","_type":"edge","_outV":"69","_inV":"16","_label":"followed_by"},{"weight":2,"_id":"5383","_type":"edge","_outV":"69","_inV":"25","_label":"followed_by"},{"weight":20,"_id":"5384","_type":"edge","_outV":"69","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5385","_type":"edge","_outV":"69","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5386","_type":"edge","_outV":"69","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5387","_type":"edge","_outV":"69","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5388","_type":"edge","_outV":"69","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5389","_type":"edge","_outV":"69","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"539","_type":"edge","_outV":"120","_inV":"48","_label":"followed_by"},{"weight":5,"_id":"5390","_type":"edge","_outV":"69","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5391","_type":"edge","_outV":"69","_inV":"54","_label":"followed_by"},{"weight":5,"_id":"5392","_type":"edge","_outV":"69","_inV":"110","_label":"followed_by"},{"weight":8,"_id":"5393","_type":"edge","_outV":"69","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5394","_type":"edge","_outV":"69","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"5395","_type":"edge","_outV":"69","_inV":"120","_label":"followed_by"},{"weight":59,"_id":"5396","_type":"edge","_outV":"69","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"5397","_type":"edge","_outV":"69","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5398","_type":"edge","_outV":"69","_inV":"103","_label":"followed_by"},{"weight":5,"_id":"5399","_type":"edge","_outV":"69","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"54","_type":"edge","_outV":"46","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"540","_type":"edge","_outV":"120","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"5400","_type":"edge","_outV":"69","_inV":"91","_label":"followed_by"},{"weight":8,"_id":"5401","_type":"edge","_outV":"69","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5402","_type":"edge","_outV":"69","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5403","_type":"edge","_outV":"69","_inV":"83","_label":"followed_by"},{"weight":11,"_id":"5404","_type":"edge","_outV":"69","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5405","_type":"edge","_outV":"69","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5406","_type":"edge","_outV":"69","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5407","_type":"edge","_outV":"69","_inV":"102","_label":"followed_by"},{"weight":2,"_id":"5408","_type":"edge","_outV":"69","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5409","_type":"edge","_outV":"69","_inV":"106","_label":"followed_by"},{"weight":6,"_id":"541","_type":"edge","_outV":"120","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5410","_type":"edge","_outV":"69","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"5411","_type":"edge","_outV":"69","_inV":"286","_label":"followed_by"},{"weight":1,"_id":"5412","_type":"edge","_outV":"69","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"5413","_type":"edge","_outV":"69","_inV":"238","_label":"followed_by"},{"weight":3,"_id":"5414","_type":"edge","_outV":"69","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"5415","_type":"edge","_outV":"69","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"5416","_type":"edge","_outV":"69","_inV":"34","_label":"followed_by"},{"weight":2,"_id":"5417","_type":"edge","_outV":"69","_inV":"89","_label":"followed_by"},{"weight":6,"_id":"5418","_type":"edge","_outV":"69","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"5419","_type":"edge","_outV":"69","_inV":"28","_label":"followed_by"},{"weight":7,"_id":"542","_type":"edge","_outV":"120","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5420","_type":"edge","_outV":"69","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5421","_type":"edge","_outV":"335","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5422","_type":"edge","_outV":"102","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5423","_type":"edge","_outV":"102","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5424","_type":"edge","_outV":"102","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5425","_type":"edge","_outV":"102","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5426","_type":"edge","_outV":"102","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"5427","_type":"edge","_outV":"143","_inV":"300","_label":"followed_by"},{"weight":1,"_id":"5428","_type":"edge","_outV":"143","_inV":"142","_label":"followed_by"},{"weight":1,"_id":"5429","_type":"edge","_outV":"315","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"543","_type":"edge","_outV":"120","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"5430","_type":"edge","_outV":"315","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5431","_type":"edge","_outV":"217","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"5432","_type":"edge","_outV":"217","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"5433","_type":"edge","_outV":"217","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5434","_type":"edge","_outV":"217","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5435","_type":"edge","_outV":"217","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"5436","_type":"edge","_outV":"217","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5437","_type":"edge","_outV":"217","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5438","_type":"edge","_outV":"217","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"5439","_type":"edge","_outV":"239","_inV":"18","_label":"followed_by"},{"weight":5,"_id":"544","_type":"edge","_outV":"120","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"5440","_type":"edge","_outV":"239","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5441","_type":"edge","_outV":"239","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"5442","_type":"edge","_outV":"239","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5443","_type":"edge","_outV":"239","_inV":"27","_label":"followed_by"},{"weight":8,"_id":"5444","_type":"edge","_outV":"288","_inV":"154","_label":"followed_by"},{"weight":11,"_id":"5445","_type":"edge","_outV":"231","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"5446","_type":"edge","_outV":"231","_inV":"5","_label":"followed_by"},{"weight":4,"_id":"5447","_type":"edge","_outV":"231","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"5448","_type":"edge","_outV":"231","_inV":"165","_label":"followed_by"},{"weight":3,"_id":"5449","_type":"edge","_outV":"231","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"545","_type":"edge","_outV":"120","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5450","_type":"edge","_outV":"231","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"5451","_type":"edge","_outV":"231","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5452","_type":"edge","_outV":"231","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"5453","_type":"edge","_outV":"79","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5454","_type":"edge","_outV":"79","_inV":"118","_label":"followed_by"},{"weight":4,"_id":"5455","_type":"edge","_outV":"79","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"5456","_type":"edge","_outV":"79","_inV":"58","_label":"followed_by"},{"weight":4,"_id":"5457","_type":"edge","_outV":"79","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5458","_type":"edge","_outV":"79","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"5459","_type":"edge","_outV":"79","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"546","_type":"edge","_outV":"120","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5460","_type":"edge","_outV":"79","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"5461","_type":"edge","_outV":"79","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"5462","_type":"edge","_outV":"79","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"5463","_type":"edge","_outV":"79","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"5464","_type":"edge","_outV":"79","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5465","_type":"edge","_outV":"79","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5466","_type":"edge","_outV":"79","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"5467","_type":"edge","_outV":"79","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5468","_type":"edge","_outV":"79","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"5469","_type":"edge","_outV":"79","_inV":"27","_label":"followed_by"},{"weight":12,"_id":"547","_type":"edge","_outV":"120","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"5470","_type":"edge","_outV":"79","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5471","_type":"edge","_outV":"79","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5472","_type":"edge","_outV":"79","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"5473","_type":"edge","_outV":"79","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5474","_type":"edge","_outV":"79","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5475","_type":"edge","_outV":"79","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"5476","_type":"edge","_outV":"79","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5477","_type":"edge","_outV":"79","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"5478","_type":"edge","_outV":"79","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"5479","_type":"edge","_outV":"79","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"548","_type":"edge","_outV":"120","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"5480","_type":"edge","_outV":"79","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"5481","_type":"edge","_outV":"79","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5482","_type":"edge","_outV":"79","_inV":"172","_label":"followed_by"},{"weight":1,"_id":"5483","_type":"edge","_outV":"79","_inV":"192","_label":"followed_by"},{"weight":1,"_id":"5484","_type":"edge","_outV":"79","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"5485","_type":"edge","_outV":"79","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5486","_type":"edge","_outV":"79","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"5487","_type":"edge","_outV":"79","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"5488","_type":"edge","_outV":"79","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5489","_type":"edge","_outV":"79","_inV":"175","_label":"followed_by"},{"weight":3,"_id":"549","_type":"edge","_outV":"120","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"5490","_type":"edge","_outV":"79","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5491","_type":"edge","_outV":"79","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"5492","_type":"edge","_outV":"79","_inV":"40","_label":"followed_by"},{"weight":4,"_id":"5493","_type":"edge","_outV":"131","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5494","_type":"edge","_outV":"131","_inV":"287","_label":"followed_by"},{"weight":1,"_id":"5495","_type":"edge","_outV":"131","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"5496","_type":"edge","_outV":"131","_inV":"250","_label":"followed_by"},{"weight":1,"_id":"5497","_type":"edge","_outV":"131","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"5498","_type":"edge","_outV":"131","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"5499","_type":"edge","_outV":"131","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"55","_type":"edge","_outV":"46","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"550","_type":"edge","_outV":"120","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5500","_type":"edge","_outV":"131","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5501","_type":"edge","_outV":"131","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"5502","_type":"edge","_outV":"131","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5503","_type":"edge","_outV":"131","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5504","_type":"edge","_outV":"131","_inV":"27","_label":"followed_by"},{"weight":4,"_id":"5505","_type":"edge","_outV":"131","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"5506","_type":"edge","_outV":"131","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5507","_type":"edge","_outV":"131","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5508","_type":"edge","_outV":"131","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5509","_type":"edge","_outV":"131","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"551","_type":"edge","_outV":"120","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5510","_type":"edge","_outV":"131","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5511","_type":"edge","_outV":"131","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5512","_type":"edge","_outV":"131","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"5513","_type":"edge","_outV":"131","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5514","_type":"edge","_outV":"131","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"5515","_type":"edge","_outV":"131","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5516","_type":"edge","_outV":"328","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5517","_type":"edge","_outV":"43","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5518","_type":"edge","_outV":"43","_inV":"27","_label":"followed_by"},{"weight":7,"_id":"5519","_type":"edge","_outV":"43","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"552","_type":"edge","_outV":"120","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"5520","_type":"edge","_outV":"43","_inV":"236","_label":"followed_by"},{"weight":3,"_id":"5521","_type":"edge","_outV":"43","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"5522","_type":"edge","_outV":"43","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5523","_type":"edge","_outV":"43","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5524","_type":"edge","_outV":"43","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5525","_type":"edge","_outV":"43","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"5526","_type":"edge","_outV":"43","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"5527","_type":"edge","_outV":"43","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5528","_type":"edge","_outV":"43","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5529","_type":"edge","_outV":"43","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"553","_type":"edge","_outV":"120","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5530","_type":"edge","_outV":"43","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5531","_type":"edge","_outV":"43","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"5532","_type":"edge","_outV":"43","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5533","_type":"edge","_outV":"43","_inV":"119","_label":"followed_by"},{"weight":1,"_id":"5534","_type":"edge","_outV":"43","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5535","_type":"edge","_outV":"43","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5536","_type":"edge","_outV":"333","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"5537","_type":"edge","_outV":"126","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5538","_type":"edge","_outV":"126","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"5539","_type":"edge","_outV":"126","_inV":"245","_label":"followed_by"},{"weight":6,"_id":"554","_type":"edge","_outV":"120","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5540","_type":"edge","_outV":"126","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5541","_type":"edge","_outV":"126","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"5542","_type":"edge","_outV":"126","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5543","_type":"edge","_outV":"126","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5544","_type":"edge","_outV":"126","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5545","_type":"edge","_outV":"126","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5546","_type":"edge","_outV":"166","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5547","_type":"edge","_outV":"166","_inV":"262","_label":"followed_by"},{"weight":1,"_id":"5548","_type":"edge","_outV":"166","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"5549","_type":"edge","_outV":"166","_inV":"93","_label":"followed_by"},{"weight":1,"_id":"555","_type":"edge","_outV":"120","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5550","_type":"edge","_outV":"166","_inV":"216","_label":"followed_by"},{"weight":1,"_id":"5551","_type":"edge","_outV":"166","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"5552","_type":"edge","_outV":"166","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5553","_type":"edge","_outV":"166","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5554","_type":"edge","_outV":"166","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"5555","_type":"edge","_outV":"162","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"5556","_type":"edge","_outV":"162","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"5557","_type":"edge","_outV":"162","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5558","_type":"edge","_outV":"162","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"5559","_type":"edge","_outV":"162","_inV":"65","_label":"followed_by"},{"weight":6,"_id":"556","_type":"edge","_outV":"120","_inV":"208","_label":"followed_by"},{"weight":4,"_id":"5560","_type":"edge","_outV":"162","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"5561","_type":"edge","_outV":"162","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"5562","_type":"edge","_outV":"162","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5563","_type":"edge","_outV":"162","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5564","_type":"edge","_outV":"162","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"5565","_type":"edge","_outV":"162","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5566","_type":"edge","_outV":"162","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"5567","_type":"edge","_outV":"162","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5568","_type":"edge","_outV":"162","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5569","_type":"edge","_outV":"316","_inV":"80","_label":"followed_by"},{"weight":2,"_id":"557","_type":"edge","_outV":"120","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"5570","_type":"edge","_outV":"42","_inV":"82","_label":"followed_by"},{"weight":16,"_id":"5571","_type":"edge","_outV":"42","_inV":"56","_label":"followed_by"},{"weight":13,"_id":"5572","_type":"edge","_outV":"42","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"5573","_type":"edge","_outV":"42","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5574","_type":"edge","_outV":"42","_inV":"59","_label":"followed_by"},{"weight":6,"_id":"5575","_type":"edge","_outV":"42","_inV":"57","_label":"followed_by"},{"weight":4,"_id":"5576","_type":"edge","_outV":"42","_inV":"121","_label":"followed_by"},{"weight":11,"_id":"5577","_type":"edge","_outV":"42","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"5578","_type":"edge","_outV":"42","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5579","_type":"edge","_outV":"42","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"558","_type":"edge","_outV":"120","_inV":"82","_label":"followed_by"},{"weight":5,"_id":"5580","_type":"edge","_outV":"42","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5581","_type":"edge","_outV":"42","_inV":"68","_label":"followed_by"},{"weight":3,"_id":"5582","_type":"edge","_outV":"42","_inV":"108","_label":"followed_by"},{"weight":7,"_id":"5583","_type":"edge","_outV":"42","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5584","_type":"edge","_outV":"42","_inV":"196","_label":"followed_by"},{"weight":1,"_id":"5585","_type":"edge","_outV":"42","_inV":"32","_label":"followed_by"},{"weight":6,"_id":"5586","_type":"edge","_outV":"42","_inV":"54","_label":"followed_by"},{"weight":6,"_id":"5587","_type":"edge","_outV":"42","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"5588","_type":"edge","_outV":"42","_inV":"63","_label":"followed_by"},{"weight":6,"_id":"5589","_type":"edge","_outV":"42","_inV":"73","_label":"followed_by"},{"weight":12,"_id":"559","_type":"edge","_outV":"120","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"5590","_type":"edge","_outV":"42","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5591","_type":"edge","_outV":"42","_inV":"189","_label":"followed_by"},{"weight":2,"_id":"5592","_type":"edge","_outV":"42","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"5593","_type":"edge","_outV":"42","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5594","_type":"edge","_outV":"42","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"5595","_type":"edge","_outV":"42","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5596","_type":"edge","_outV":"42","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"5597","_type":"edge","_outV":"42","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5598","_type":"edge","_outV":"42","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5599","_type":"edge","_outV":"42","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"56","_type":"edge","_outV":"46","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"560","_type":"edge","_outV":"120","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5600","_type":"edge","_outV":"42","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5601","_type":"edge","_outV":"42","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"5602","_type":"edge","_outV":"42","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"5603","_type":"edge","_outV":"42","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"5604","_type":"edge","_outV":"42","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5605","_type":"edge","_outV":"42","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"5606","_type":"edge","_outV":"42","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5607","_type":"edge","_outV":"42","_inV":"169","_label":"followed_by"},{"weight":3,"_id":"5608","_type":"edge","_outV":"42","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"5609","_type":"edge","_outV":"42","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"561","_type":"edge","_outV":"120","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5610","_type":"edge","_outV":"42","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5611","_type":"edge","_outV":"42","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"5612","_type":"edge","_outV":"42","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"5613","_type":"edge","_outV":"42","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"5614","_type":"edge","_outV":"42","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"5615","_type":"edge","_outV":"42","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5616","_type":"edge","_outV":"42","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5617","_type":"edge","_outV":"42","_inV":"150","_label":"followed_by"},{"weight":4,"_id":"5618","_type":"edge","_outV":"42","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5619","_type":"edge","_outV":"42","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"562","_type":"edge","_outV":"120","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5620","_type":"edge","_outV":"42","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5621","_type":"edge","_outV":"22","_inV":"4","_label":"followed_by"},{"weight":3,"_id":"5622","_type":"edge","_outV":"22","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"5623","_type":"edge","_outV":"22","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5624","_type":"edge","_outV":"22","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5625","_type":"edge","_outV":"22","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"5626","_type":"edge","_outV":"22","_inV":"100","_label":"followed_by"},{"weight":6,"_id":"5627","_type":"edge","_outV":"22","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5628","_type":"edge","_outV":"22","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5629","_type":"edge","_outV":"22","_inV":"39","_label":"followed_by"},{"weight":3,"_id":"563","_type":"edge","_outV":"120","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"5630","_type":"edge","_outV":"22","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"5631","_type":"edge","_outV":"22","_inV":"120","_label":"followed_by"},{"weight":4,"_id":"5632","_type":"edge","_outV":"22","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"5633","_type":"edge","_outV":"22","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"5634","_type":"edge","_outV":"22","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5635","_type":"edge","_outV":"22","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"5636","_type":"edge","_outV":"22","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"5637","_type":"edge","_outV":"22","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"5638","_type":"edge","_outV":"22","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5639","_type":"edge","_outV":"22","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"564","_type":"edge","_outV":"120","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5640","_type":"edge","_outV":"22","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5641","_type":"edge","_outV":"22","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"5642","_type":"edge","_outV":"22","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5643","_type":"edge","_outV":"22","_inV":"98","_label":"followed_by"},{"weight":2,"_id":"5644","_type":"edge","_outV":"22","_inV":"59","_label":"followed_by"},{"weight":3,"_id":"5645","_type":"edge","_outV":"22","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5646","_type":"edge","_outV":"22","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5647","_type":"edge","_outV":"22","_inV":"142","_label":"followed_by"},{"weight":1,"_id":"5648","_type":"edge","_outV":"22","_inV":"302","_label":"followed_by"},{"weight":1,"_id":"5649","_type":"edge","_outV":"22","_inV":"301","_label":"followed_by"},{"weight":15,"_id":"565","_type":"edge","_outV":"120","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"5650","_type":"edge","_outV":"169","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5651","_type":"edge","_outV":"169","_inV":"60","_label":"followed_by"},{"weight":3,"_id":"5652","_type":"edge","_outV":"169","_inV":"77","_label":"followed_by"},{"weight":2,"_id":"5653","_type":"edge","_outV":"169","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"5654","_type":"edge","_outV":"169","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5655","_type":"edge","_outV":"169","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"5656","_type":"edge","_outV":"169","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5657","_type":"edge","_outV":"169","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"5658","_type":"edge","_outV":"169","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"5659","_type":"edge","_outV":"169","_inV":"79","_label":"followed_by"},{"weight":17,"_id":"566","_type":"edge","_outV":"120","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"5660","_type":"edge","_outV":"169","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"5661","_type":"edge","_outV":"169","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"5662","_type":"edge","_outV":"169","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"5663","_type":"edge","_outV":"169","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5664","_type":"edge","_outV":"169","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5665","_type":"edge","_outV":"169","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5666","_type":"edge","_outV":"167","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"5667","_type":"edge","_outV":"167","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5668","_type":"edge","_outV":"167","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"5669","_type":"edge","_outV":"167","_inV":"34","_label":"followed_by"},{"weight":6,"_id":"567","_type":"edge","_outV":"120","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5670","_type":"edge","_outV":"167","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5671","_type":"edge","_outV":"167","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5672","_type":"edge","_outV":"167","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5673","_type":"edge","_outV":"167","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5674","_type":"edge","_outV":"167","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"5675","_type":"edge","_outV":"167","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5676","_type":"edge","_outV":"167","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5677","_type":"edge","_outV":"167","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"5678","_type":"edge","_outV":"167","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5679","_type":"edge","_outV":"167","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"568","_type":"edge","_outV":"120","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"5680","_type":"edge","_outV":"167","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5681","_type":"edge","_outV":"167","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5682","_type":"edge","_outV":"167","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5683","_type":"edge","_outV":"167","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5684","_type":"edge","_outV":"167","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"5685","_type":"edge","_outV":"167","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5686","_type":"edge","_outV":"167","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5687","_type":"edge","_outV":"167","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"5688","_type":"edge","_outV":"159","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"5689","_type":"edge","_outV":"159","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"569","_type":"edge","_outV":"120","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"5690","_type":"edge","_outV":"159","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"5691","_type":"edge","_outV":"159","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5692","_type":"edge","_outV":"159","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5693","_type":"edge","_outV":"159","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5694","_type":"edge","_outV":"159","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5695","_type":"edge","_outV":"330","_inV":"266","_label":"followed_by"},{"weight":1,"_id":"5696","_type":"edge","_outV":"330","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5697","_type":"edge","_outV":"156","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"5698","_type":"edge","_outV":"156","_inV":"38","_label":"followed_by"},{"weight":6,"_id":"5699","_type":"edge","_outV":"20","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"57","_type":"edge","_outV":"46","_inV":"55","_label":"followed_by"},{"weight":6,"_id":"570","_type":"edge","_outV":"120","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"5700","_type":"edge","_outV":"20","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"5701","_type":"edge","_outV":"20","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5702","_type":"edge","_outV":"20","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"5703","_type":"edge","_outV":"20","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"5704","_type":"edge","_outV":"20","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5705","_type":"edge","_outV":"20","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"5706","_type":"edge","_outV":"20","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"5707","_type":"edge","_outV":"20","_inV":"58","_label":"followed_by"},{"weight":3,"_id":"5708","_type":"edge","_outV":"20","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"5709","_type":"edge","_outV":"20","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"571","_type":"edge","_outV":"120","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5710","_type":"edge","_outV":"20","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"5711","_type":"edge","_outV":"20","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"5712","_type":"edge","_outV":"20","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5713","_type":"edge","_outV":"20","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"5714","_type":"edge","_outV":"20","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"5715","_type":"edge","_outV":"20","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"5716","_type":"edge","_outV":"20","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"5717","_type":"edge","_outV":"20","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5718","_type":"edge","_outV":"20","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"5719","_type":"edge","_outV":"20","_inV":"273","_label":"followed_by"},{"weight":9,"_id":"572","_type":"edge","_outV":"120","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5720","_type":"edge","_outV":"20","_inV":"199","_label":"followed_by"},{"weight":1,"_id":"5721","_type":"edge","_outV":"20","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5722","_type":"edge","_outV":"20","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"5723","_type":"edge","_outV":"20","_inV":"222","_label":"followed_by"},{"weight":1,"_id":"5724","_type":"edge","_outV":"20","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5725","_type":"edge","_outV":"20","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"5726","_type":"edge","_outV":"20","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"5727","_type":"edge","_outV":"20","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"5728","_type":"edge","_outV":"20","_inV":"173","_label":"followed_by"},{"weight":3,"_id":"5729","_type":"edge","_outV":"274","_inV":"96","_label":"followed_by"},{"weight":18,"_id":"573","_type":"edge","_outV":"120","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"5730","_type":"edge","_outV":"274","_inV":"123","_label":"followed_by"},{"weight":11,"_id":"5731","_type":"edge","_outV":"129","_inV":"25","_label":"followed_by"},{"weight":13,"_id":"5732","_type":"edge","_outV":"129","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"5733","_type":"edge","_outV":"129","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"5734","_type":"edge","_outV":"129","_inV":"52","_label":"followed_by"},{"weight":2,"_id":"5735","_type":"edge","_outV":"129","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"5736","_type":"edge","_outV":"129","_inV":"55","_label":"followed_by"},{"weight":1,"_id":"5737","_type":"edge","_outV":"129","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"5738","_type":"edge","_outV":"129","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5739","_type":"edge","_outV":"129","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"574","_type":"edge","_outV":"120","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"5740","_type":"edge","_outV":"129","_inV":"130","_label":"followed_by"},{"weight":12,"_id":"5741","_type":"edge","_outV":"129","_inV":"13","_label":"followed_by"},{"weight":5,"_id":"5742","_type":"edge","_outV":"129","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"5743","_type":"edge","_outV":"129","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5744","_type":"edge","_outV":"129","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"5745","_type":"edge","_outV":"129","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"5746","_type":"edge","_outV":"129","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5747","_type":"edge","_outV":"129","_inV":"197","_label":"followed_by"},{"weight":3,"_id":"5748","_type":"edge","_outV":"129","_inV":"222","_label":"followed_by"},{"weight":3,"_id":"5749","_type":"edge","_outV":"129","_inV":"111","_label":"followed_by"},{"weight":1,"_id":"575","_type":"edge","_outV":"120","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"5750","_type":"edge","_outV":"129","_inV":"199","_label":"followed_by"},{"weight":21,"_id":"5751","_type":"edge","_outV":"129","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"5752","_type":"edge","_outV":"129","_inV":"74","_label":"followed_by"},{"weight":8,"_id":"5753","_type":"edge","_outV":"129","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"5754","_type":"edge","_outV":"129","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"5755","_type":"edge","_outV":"129","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"5756","_type":"edge","_outV":"129","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"5757","_type":"edge","_outV":"129","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5758","_type":"edge","_outV":"129","_inV":"163","_label":"followed_by"},{"weight":6,"_id":"5759","_type":"edge","_outV":"129","_inV":"5","_label":"followed_by"},{"weight":7,"_id":"576","_type":"edge","_outV":"120","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"5760","_type":"edge","_outV":"129","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"5761","_type":"edge","_outV":"129","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5762","_type":"edge","_outV":"129","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5763","_type":"edge","_outV":"129","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"5764","_type":"edge","_outV":"129","_inV":"164","_label":"followed_by"},{"weight":8,"_id":"5765","_type":"edge","_outV":"76","_inV":"215","_label":"followed_by"},{"weight":6,"_id":"5766","_type":"edge","_outV":"76","_inV":"100","_label":"followed_by"},{"weight":67,"_id":"5767","_type":"edge","_outV":"76","_inV":"69","_label":"followed_by"},{"weight":30,"_id":"5768","_type":"edge","_outV":"76","_inV":"49","_label":"followed_by"},{"weight":17,"_id":"5769","_type":"edge","_outV":"76","_inV":"98","_label":"followed_by"},{"weight":9,"_id":"577","_type":"edge","_outV":"120","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"5770","_type":"edge","_outV":"76","_inV":"154","_label":"followed_by"},{"weight":12,"_id":"5771","_type":"edge","_outV":"76","_inV":"82","_label":"followed_by"},{"weight":3,"_id":"5772","_type":"edge","_outV":"76","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5773","_type":"edge","_outV":"76","_inV":"51","_label":"followed_by"},{"weight":13,"_id":"5774","_type":"edge","_outV":"76","_inV":"63","_label":"followed_by"},{"weight":11,"_id":"5775","_type":"edge","_outV":"76","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"5776","_type":"edge","_outV":"76","_inV":"121","_label":"followed_by"},{"weight":5,"_id":"5777","_type":"edge","_outV":"76","_inV":"54","_label":"followed_by"},{"weight":9,"_id":"5778","_type":"edge","_outV":"76","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"5779","_type":"edge","_outV":"76","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"578","_type":"edge","_outV":"120","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5780","_type":"edge","_outV":"76","_inV":"130","_label":"followed_by"},{"weight":11,"_id":"5781","_type":"edge","_outV":"76","_inV":"60","_label":"followed_by"},{"weight":5,"_id":"5782","_type":"edge","_outV":"76","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"5783","_type":"edge","_outV":"76","_inV":"179","_label":"followed_by"},{"weight":6,"_id":"5784","_type":"edge","_outV":"76","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"5785","_type":"edge","_outV":"76","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"5786","_type":"edge","_outV":"76","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"5787","_type":"edge","_outV":"76","_inV":"3","_label":"followed_by"},{"weight":5,"_id":"5788","_type":"edge","_outV":"76","_inV":"196","_label":"followed_by"},{"weight":3,"_id":"5789","_type":"edge","_outV":"76","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"579","_type":"edge","_outV":"120","_inV":"133","_label":"followed_by"},{"weight":2,"_id":"5790","_type":"edge","_outV":"76","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"5791","_type":"edge","_outV":"76","_inV":"50","_label":"followed_by"},{"weight":36,"_id":"5792","_type":"edge","_outV":"76","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"5793","_type":"edge","_outV":"76","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5794","_type":"edge","_outV":"76","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"5795","_type":"edge","_outV":"76","_inV":"4","_label":"followed_by"},{"weight":4,"_id":"5796","_type":"edge","_outV":"76","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5797","_type":"edge","_outV":"76","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"5798","_type":"edge","_outV":"76","_inV":"120","_label":"followed_by"},{"weight":3,"_id":"5799","_type":"edge","_outV":"76","_inV":"208","_label":"followed_by"},{"weight":2,"_id":"58","_type":"edge","_outV":"46","_inV":"17","_label":"followed_by"},{"weight":11,"_id":"580","_type":"edge","_outV":"120","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"5800","_type":"edge","_outV":"76","_inV":"108","_label":"followed_by"},{"weight":5,"_id":"5801","_type":"edge","_outV":"76","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"5802","_type":"edge","_outV":"76","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5803","_type":"edge","_outV":"76","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"5804","_type":"edge","_outV":"76","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"5805","_type":"edge","_outV":"76","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"5806","_type":"edge","_outV":"76","_inV":"227","_label":"followed_by"},{"weight":6,"_id":"5807","_type":"edge","_outV":"76","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"5808","_type":"edge","_outV":"76","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"5809","_type":"edge","_outV":"76","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"581","_type":"edge","_outV":"120","_inV":"180","_label":"followed_by"},{"weight":1,"_id":"5810","_type":"edge","_outV":"76","_inV":"106","_label":"followed_by"},{"weight":4,"_id":"5811","_type":"edge","_outV":"76","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"5812","_type":"edge","_outV":"76","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"5813","_type":"edge","_outV":"76","_inV":"286","_label":"followed_by"},{"weight":4,"_id":"5814","_type":"edge","_outV":"76","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"5815","_type":"edge","_outV":"76","_inV":"128","_label":"followed_by"},{"weight":1,"_id":"5816","_type":"edge","_outV":"76","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"5817","_type":"edge","_outV":"76","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5818","_type":"edge","_outV":"76","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"5819","_type":"edge","_outV":"76","_inV":"150","_label":"followed_by"},{"weight":11,"_id":"582","_type":"edge","_outV":"120","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"5820","_type":"edge","_outV":"76","_inV":"14","_label":"followed_by"},{"weight":4,"_id":"5821","_type":"edge","_outV":"76","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"5822","_type":"edge","_outV":"76","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"5823","_type":"edge","_outV":"76","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"5824","_type":"edge","_outV":"76","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"5825","_type":"edge","_outV":"76","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"5826","_type":"edge","_outV":"76","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"5827","_type":"edge","_outV":"76","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"5828","_type":"edge","_outV":"76","_inV":"38","_label":"followed_by"},{"weight":4,"_id":"5829","_type":"edge","_outV":"76","_inV":"28","_label":"followed_by"},{"weight":2,"_id":"583","_type":"edge","_outV":"120","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"5830","_type":"edge","_outV":"76","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"5831","_type":"edge","_outV":"76","_inV":"254","_label":"followed_by"},{"weight":1,"_id":"5832","_type":"edge","_outV":"76","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"5833","_type":"edge","_outV":"76","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"5834","_type":"edge","_outV":"76","_inV":"174","_label":"followed_by"},{"weight":1,"_id":"5835","_type":"edge","_outV":"76","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"5836","_type":"edge","_outV":"258","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"5837","_type":"edge","_outV":"258","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5838","_type":"edge","_outV":"258","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"5839","_type":"edge","_outV":"258","_inV":"140","_label":"followed_by"},{"weight":8,"_id":"584","_type":"edge","_outV":"120","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5840","_type":"edge","_outV":"258","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"5841","_type":"edge","_outV":"326","_inV":"194","_label":"followed_by"},{"weight":3,"_id":"5842","_type":"edge","_outV":"61","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"5843","_type":"edge","_outV":"61","_inV":"336","_label":"followed_by"},{"weight":3,"_id":"5844","_type":"edge","_outV":"61","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5845","_type":"edge","_outV":"61","_inV":"268","_label":"followed_by"},{"weight":1,"_id":"5846","_type":"edge","_outV":"61","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"5847","_type":"edge","_outV":"61","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"5848","_type":"edge","_outV":"61","_inV":"65","_label":"followed_by"},{"weight":2,"_id":"5849","_type":"edge","_outV":"61","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"585","_type":"edge","_outV":"120","_inV":"211","_label":"followed_by"},{"weight":1,"_id":"5850","_type":"edge","_outV":"61","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5851","_type":"edge","_outV":"61","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"5852","_type":"edge","_outV":"61","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5853","_type":"edge","_outV":"61","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"5854","_type":"edge","_outV":"61","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"5855","_type":"edge","_outV":"61","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"5856","_type":"edge","_outV":"61","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"5857","_type":"edge","_outV":"61","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"5858","_type":"edge","_outV":"61","_inV":"35","_label":"followed_by"},{"weight":10,"_id":"5859","_type":"edge","_outV":"96","_inV":"89","_label":"followed_by"},{"weight":2,"_id":"586","_type":"edge","_outV":"120","_inV":"62","_label":"followed_by"},{"weight":219,"_id":"5860","_type":"edge","_outV":"96","_inV":"148","_label":"followed_by"},{"weight":14,"_id":"5861","_type":"edge","_outV":"96","_inV":"74","_label":"followed_by"},{"weight":4,"_id":"5862","_type":"edge","_outV":"96","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"5863","_type":"edge","_outV":"96","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"5864","_type":"edge","_outV":"96","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"5865","_type":"edge","_outV":"96","_inV":"83","_label":"followed_by"},{"weight":96,"_id":"5866","_type":"edge","_outV":"96","_inV":"21","_label":"followed_by"},{"weight":116,"_id":"5867","_type":"edge","_outV":"96","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"5868","_type":"edge","_outV":"96","_inV":"145","_label":"followed_by"},{"weight":4,"_id":"5869","_type":"edge","_outV":"96","_inV":"178","_label":"followed_by"},{"weight":1,"_id":"587","_type":"edge","_outV":"120","_inV":"212","_label":"followed_by"},{"weight":159,"_id":"5870","_type":"edge","_outV":"96","_inV":"134","_label":"followed_by"},{"weight":4,"_id":"5871","_type":"edge","_outV":"96","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"5872","_type":"edge","_outV":"96","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5873","_type":"edge","_outV":"96","_inV":"104","_label":"followed_by"},{"weight":41,"_id":"5874","_type":"edge","_outV":"96","_inV":"130","_label":"followed_by"},{"weight":6,"_id":"5875","_type":"edge","_outV":"96","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"5876","_type":"edge","_outV":"96","_inV":"98","_label":"followed_by"},{"weight":18,"_id":"5877","_type":"edge","_outV":"96","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"5878","_type":"edge","_outV":"96","_inV":"100","_label":"followed_by"},{"weight":22,"_id":"5879","_type":"edge","_outV":"96","_inV":"5","_label":"followed_by"},{"weight":4,"_id":"588","_type":"edge","_outV":"120","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"5880","_type":"edge","_outV":"96","_inV":"133","_label":"followed_by"},{"weight":15,"_id":"5881","_type":"edge","_outV":"96","_inV":"62","_label":"followed_by"},{"weight":9,"_id":"5882","_type":"edge","_outV":"96","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"5883","_type":"edge","_outV":"96","_inV":"327","_label":"followed_by"},{"weight":1,"_id":"5884","_type":"edge","_outV":"96","_inV":"147","_label":"followed_by"},{"weight":20,"_id":"5885","_type":"edge","_outV":"96","_inV":"125","_label":"followed_by"},{"weight":15,"_id":"5886","_type":"edge","_outV":"96","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"5887","_type":"edge","_outV":"96","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5888","_type":"edge","_outV":"96","_inV":"171","_label":"followed_by"},{"weight":3,"_id":"5889","_type":"edge","_outV":"96","_inV":"289","_label":"followed_by"},{"weight":2,"_id":"589","_type":"edge","_outV":"120","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"5890","_type":"edge","_outV":"96","_inV":"154","_label":"followed_by"},{"weight":7,"_id":"5891","_type":"edge","_outV":"96","_inV":"141","_label":"followed_by"},{"weight":8,"_id":"5892","_type":"edge","_outV":"96","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"5893","_type":"edge","_outV":"96","_inV":"109","_label":"followed_by"},{"weight":4,"_id":"5894","_type":"edge","_outV":"96","_inV":"49","_label":"followed_by"},{"weight":51,"_id":"5895","_type":"edge","_outV":"96","_inV":"70","_label":"followed_by"},{"weight":5,"_id":"5896","_type":"edge","_outV":"96","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"5897","_type":"edge","_outV":"96","_inV":"82","_label":"followed_by"},{"weight":23,"_id":"5898","_type":"edge","_outV":"96","_inV":"149","_label":"followed_by"},{"weight":2,"_id":"5899","_type":"edge","_outV":"96","_inV":"159","_label":"followed_by"},{"weight":1,"_id":"59","_type":"edge","_outV":"46","_inV":"39","_label":"followed_by"},{"weight":6,"_id":"590","_type":"edge","_outV":"120","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"5900","_type":"edge","_outV":"96","_inV":"281","_label":"followed_by"},{"weight":1,"_id":"5901","_type":"edge","_outV":"96","_inV":"8","_label":"followed_by"},{"weight":4,"_id":"5902","_type":"edge","_outV":"96","_inV":"319","_label":"followed_by"},{"weight":1,"_id":"5903","_type":"edge","_outV":"96","_inV":"116","_label":"followed_by"},{"weight":26,"_id":"5904","_type":"edge","_outV":"96","_inV":"29","_label":"followed_by"},{"weight":15,"_id":"5905","_type":"edge","_outV":"96","_inV":"129","_label":"followed_by"},{"weight":10,"_id":"5906","_type":"edge","_outV":"96","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"5907","_type":"edge","_outV":"96","_inV":"233","_label":"followed_by"},{"weight":1,"_id":"5908","_type":"edge","_outV":"96","_inV":"323","_label":"followed_by"},{"weight":1,"_id":"5909","_type":"edge","_outV":"96","_inV":"209","_label":"followed_by"},{"weight":2,"_id":"591","_type":"edge","_outV":"120","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"5910","_type":"edge","_outV":"96","_inV":"183","_label":"followed_by"},{"weight":2,"_id":"5911","_type":"edge","_outV":"96","_inV":"115","_label":"followed_by"},{"weight":27,"_id":"5912","_type":"edge","_outV":"96","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"5913","_type":"edge","_outV":"96","_inV":"162","_label":"followed_by"},{"weight":6,"_id":"5914","_type":"edge","_outV":"96","_inV":"132","_label":"followed_by"},{"weight":2,"_id":"5915","_type":"edge","_outV":"96","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"5916","_type":"edge","_outV":"96","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"5917","_type":"edge","_outV":"96","_inV":"102","_label":"followed_by"},{"weight":1,"_id":"5918","_type":"edge","_outV":"96","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"5919","_type":"edge","_outV":"96","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"592","_type":"edge","_outV":"120","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"5920","_type":"edge","_outV":"96","_inV":"204","_label":"followed_by"},{"weight":2,"_id":"5921","_type":"edge","_outV":"96","_inV":"60","_label":"followed_by"},{"weight":11,"_id":"5922","_type":"edge","_outV":"96","_inV":"165","_label":"followed_by"},{"weight":30,"_id":"5923","_type":"edge","_outV":"96","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"5924","_type":"edge","_outV":"96","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"5925","_type":"edge","_outV":"96","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"5926","_type":"edge","_outV":"96","_inV":"135","_label":"followed_by"},{"weight":2,"_id":"5927","_type":"edge","_outV":"96","_inV":"92","_label":"followed_by"},{"weight":324,"_id":"5928","_type":"edge","_outV":"96","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"5929","_type":"edge","_outV":"96","_inV":"201","_label":"followed_by"},{"weight":4,"_id":"593","_type":"edge","_outV":"120","_inV":"144","_label":"followed_by"},{"weight":1,"_id":"5930","_type":"edge","_outV":"96","_inV":"279","_label":"followed_by"},{"weight":1,"_id":"5931","_type":"edge","_outV":"96","_inV":"304","_label":"followed_by"},{"weight":1,"_id":"5932","_type":"edge","_outV":"314","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"5933","_type":"edge","_outV":"50","_inV":"234","_label":"followed_by"},{"weight":29,"_id":"5934","_type":"edge","_outV":"50","_inV":"104","_label":"followed_by"},{"weight":12,"_id":"5935","_type":"edge","_outV":"50","_inV":"53","_label":"followed_by"},{"weight":8,"_id":"5936","_type":"edge","_outV":"50","_inV":"72","_label":"followed_by"},{"weight":19,"_id":"5937","_type":"edge","_outV":"50","_inV":"56","_label":"followed_by"},{"weight":19,"_id":"5938","_type":"edge","_outV":"50","_inV":"19","_label":"followed_by"},{"weight":4,"_id":"5939","_type":"edge","_outV":"50","_inV":"89","_label":"followed_by"},{"weight":7,"_id":"594","_type":"edge","_outV":"120","_inV":"204","_label":"followed_by"},{"weight":32,"_id":"5940","_type":"edge","_outV":"50","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"5941","_type":"edge","_outV":"50","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"5942","_type":"edge","_outV":"50","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"5943","_type":"edge","_outV":"50","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"5944","_type":"edge","_outV":"50","_inV":"207","_label":"followed_by"},{"weight":5,"_id":"5945","_type":"edge","_outV":"50","_inV":"49","_label":"followed_by"},{"weight":19,"_id":"5946","_type":"edge","_outV":"50","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"5947","_type":"edge","_outV":"50","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"5948","_type":"edge","_outV":"50","_inV":"39","_label":"followed_by"},{"weight":17,"_id":"5949","_type":"edge","_outV":"50","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"595","_type":"edge","_outV":"120","_inV":"165","_label":"followed_by"},{"weight":6,"_id":"5950","_type":"edge","_outV":"50","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"5951","_type":"edge","_outV":"50","_inV":"206","_label":"followed_by"},{"weight":7,"_id":"5952","_type":"edge","_outV":"50","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"5953","_type":"edge","_outV":"50","_inV":"47","_label":"followed_by"},{"weight":5,"_id":"5954","_type":"edge","_outV":"50","_inV":"27","_label":"followed_by"},{"weight":43,"_id":"5955","_type":"edge","_outV":"50","_inV":"17","_label":"followed_by"},{"weight":2,"_id":"5956","_type":"edge","_outV":"50","_inV":"9","_label":"followed_by"},{"weight":2,"_id":"5957","_type":"edge","_outV":"50","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"5958","_type":"edge","_outV":"50","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"5959","_type":"edge","_outV":"50","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"596","_type":"edge","_outV":"120","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"5960","_type":"edge","_outV":"50","_inV":"55","_label":"followed_by"},{"weight":5,"_id":"5961","_type":"edge","_outV":"50","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"5962","_type":"edge","_outV":"50","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"5963","_type":"edge","_outV":"50","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"5964","_type":"edge","_outV":"50","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"5965","_type":"edge","_outV":"50","_inV":"83","_label":"followed_by"},{"weight":13,"_id":"5966","_type":"edge","_outV":"50","_inV":"51","_label":"followed_by"},{"weight":15,"_id":"5967","_type":"edge","_outV":"50","_inV":"80","_label":"followed_by"},{"weight":7,"_id":"5968","_type":"edge","_outV":"50","_inV":"98","_label":"followed_by"},{"weight":9,"_id":"5969","_type":"edge","_outV":"50","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"597","_type":"edge","_outV":"120","_inV":"90","_label":"followed_by"},{"weight":7,"_id":"5970","_type":"edge","_outV":"50","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"5971","_type":"edge","_outV":"50","_inV":"324","_label":"followed_by"},{"weight":1,"_id":"5972","_type":"edge","_outV":"50","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"5973","_type":"edge","_outV":"50","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"5974","_type":"edge","_outV":"50","_inV":"196","_label":"followed_by"},{"weight":6,"_id":"5975","_type":"edge","_outV":"50","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"5976","_type":"edge","_outV":"50","_inV":"110","_label":"followed_by"},{"weight":5,"_id":"5977","_type":"edge","_outV":"50","_inV":"112","_label":"followed_by"},{"weight":9,"_id":"5978","_type":"edge","_outV":"50","_inV":"154","_label":"followed_by"},{"weight":9,"_id":"5979","_type":"edge","_outV":"50","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"598","_type":"edge","_outV":"120","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"5980","_type":"edge","_outV":"50","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"5981","_type":"edge","_outV":"50","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"5982","_type":"edge","_outV":"50","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"5983","_type":"edge","_outV":"50","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"5984","_type":"edge","_outV":"50","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"5985","_type":"edge","_outV":"50","_inV":"105","_label":"followed_by"},{"weight":5,"_id":"5986","_type":"edge","_outV":"50","_inV":"78","_label":"followed_by"},{"weight":6,"_id":"5987","_type":"edge","_outV":"50","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"5988","_type":"edge","_outV":"50","_inV":"65","_label":"followed_by"},{"weight":12,"_id":"5989","_type":"edge","_outV":"50","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"599","_type":"edge","_outV":"120","_inV":"214","_label":"followed_by"},{"weight":1,"_id":"5990","_type":"edge","_outV":"50","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"5991","_type":"edge","_outV":"50","_inV":"210","_label":"followed_by"},{"weight":2,"_id":"5992","_type":"edge","_outV":"50","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"5993","_type":"edge","_outV":"50","_inV":"108","_label":"followed_by"},{"weight":9,"_id":"5994","_type":"edge","_outV":"50","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"5995","_type":"edge","_outV":"50","_inV":"75","_label":"followed_by"},{"weight":8,"_id":"5996","_type":"edge","_outV":"50","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"5997","_type":"edge","_outV":"50","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"5998","_type":"edge","_outV":"50","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"5999","_type":"edge","_outV":"50","_inV":"243","_label":"followed_by"},{"weight":3,"_id":"6","_type":"edge","_outV":"9","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"60","_type":"edge","_outV":"46","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"600","_type":"edge","_outV":"120","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6000","_type":"edge","_outV":"50","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6001","_type":"edge","_outV":"50","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6002","_type":"edge","_outV":"50","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"6003","_type":"edge","_outV":"50","_inV":"151","_label":"followed_by"},{"weight":2,"_id":"6004","_type":"edge","_outV":"50","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6005","_type":"edge","_outV":"50","_inV":"169","_label":"followed_by"},{"weight":2,"_id":"6006","_type":"edge","_outV":"50","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6007","_type":"edge","_outV":"50","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6008","_type":"edge","_outV":"50","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"6009","_type":"edge","_outV":"50","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"601","_type":"edge","_outV":"120","_inV":"42","_label":"followed_by"},{"weight":2,"_id":"6010","_type":"edge","_outV":"50","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6011","_type":"edge","_outV":"50","_inV":"40","_label":"followed_by"},{"weight":6,"_id":"6012","_type":"edge","_outV":"204","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6013","_type":"edge","_outV":"204","_inV":"114","_label":"followed_by"},{"weight":10,"_id":"6014","_type":"edge","_outV":"204","_inV":"87","_label":"followed_by"},{"weight":6,"_id":"6015","_type":"edge","_outV":"204","_inV":"62","_label":"followed_by"},{"weight":6,"_id":"6016","_type":"edge","_outV":"204","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6017","_type":"edge","_outV":"204","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6018","_type":"edge","_outV":"204","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"6019","_type":"edge","_outV":"204","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"602","_type":"edge","_outV":"120","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"6020","_type":"edge","_outV":"204","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"6021","_type":"edge","_outV":"204","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"6022","_type":"edge","_outV":"204","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"6023","_type":"edge","_outV":"204","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6024","_type":"edge","_outV":"204","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6025","_type":"edge","_outV":"204","_inV":"81","_label":"followed_by"},{"weight":8,"_id":"6026","_type":"edge","_outV":"204","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"6027","_type":"edge","_outV":"204","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6028","_type":"edge","_outV":"204","_inV":"332","_label":"followed_by"},{"weight":4,"_id":"6029","_type":"edge","_outV":"204","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"603","_type":"edge","_outV":"120","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"6030","_type":"edge","_outV":"204","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6031","_type":"edge","_outV":"204","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6032","_type":"edge","_outV":"115","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6033","_type":"edge","_outV":"115","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"6034","_type":"edge","_outV":"115","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6035","_type":"edge","_outV":"115","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"6036","_type":"edge","_outV":"115","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6037","_type":"edge","_outV":"115","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6038","_type":"edge","_outV":"115","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6039","_type":"edge","_outV":"115","_inV":"105","_label":"followed_by"},{"weight":2,"_id":"604","_type":"edge","_outV":"120","_inV":"217","_label":"followed_by"},{"weight":1,"_id":"6040","_type":"edge","_outV":"115","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6041","_type":"edge","_outV":"115","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6042","_type":"edge","_outV":"115","_inV":"151","_label":"followed_by"},{"weight":2,"_id":"6043","_type":"edge","_outV":"115","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"6044","_type":"edge","_outV":"115","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6045","_type":"edge","_outV":"115","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"6046","_type":"edge","_outV":"115","_inV":"103","_label":"followed_by"},{"weight":4,"_id":"6047","_type":"edge","_outV":"115","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"6048","_type":"edge","_outV":"115","_inV":"79","_label":"followed_by"},{"weight":6,"_id":"6049","_type":"edge","_outV":"115","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"605","_type":"edge","_outV":"120","_inV":"193","_label":"followed_by"},{"weight":2,"_id":"6050","_type":"edge","_outV":"115","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6051","_type":"edge","_outV":"115","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"6052","_type":"edge","_outV":"115","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"6053","_type":"edge","_outV":"115","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6054","_type":"edge","_outV":"115","_inV":"43","_label":"followed_by"},{"weight":2,"_id":"6055","_type":"edge","_outV":"115","_inV":"173","_label":"followed_by"},{"weight":2,"_id":"6056","_type":"edge","_outV":"115","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6057","_type":"edge","_outV":"115","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6058","_type":"edge","_outV":"115","_inV":"117","_label":"followed_by"},{"weight":3,"_id":"6059","_type":"edge","_outV":"115","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"606","_type":"edge","_outV":"120","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"6060","_type":"edge","_outV":"115","_inV":"73","_label":"followed_by"},{"weight":2,"_id":"6061","_type":"edge","_outV":"115","_inV":"158","_label":"followed_by"},{"weight":2,"_id":"6062","_type":"edge","_outV":"115","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6063","_type":"edge","_outV":"115","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6064","_type":"edge","_outV":"115","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6065","_type":"edge","_outV":"115","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6066","_type":"edge","_outV":"115","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6067","_type":"edge","_outV":"296","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6068","_type":"edge","_outV":"296","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6069","_type":"edge","_outV":"296","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"607","_type":"edge","_outV":"182","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6070","_type":"edge","_outV":"296","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"6071","_type":"edge","_outV":"72","_inV":"24","_label":"followed_by"},{"weight":5,"_id":"6072","_type":"edge","_outV":"72","_inV":"11","_label":"followed_by"},{"weight":13,"_id":"6073","_type":"edge","_outV":"72","_inV":"13","_label":"followed_by"},{"weight":4,"_id":"6074","_type":"edge","_outV":"72","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"6075","_type":"edge","_outV":"72","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"6076","_type":"edge","_outV":"72","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"6077","_type":"edge","_outV":"72","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6078","_type":"edge","_outV":"72","_inV":"89","_label":"followed_by"},{"weight":15,"_id":"6079","_type":"edge","_outV":"72","_inV":"50","_label":"followed_by"},{"weight":3,"_id":"608","_type":"edge","_outV":"23","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"6080","_type":"edge","_outV":"72","_inV":"18","_label":"followed_by"},{"weight":24,"_id":"6081","_type":"edge","_outV":"72","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6082","_type":"edge","_outV":"72","_inV":"22","_label":"followed_by"},{"weight":9,"_id":"6083","_type":"edge","_outV":"72","_inV":"14","_label":"followed_by"},{"weight":3,"_id":"6084","_type":"edge","_outV":"72","_inV":"20","_label":"followed_by"},{"weight":6,"_id":"6085","_type":"edge","_outV":"72","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6086","_type":"edge","_outV":"72","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6087","_type":"edge","_outV":"72","_inV":"189","_label":"followed_by"},{"weight":12,"_id":"6088","_type":"edge","_outV":"72","_inV":"84","_label":"followed_by"},{"weight":9,"_id":"6089","_type":"edge","_outV":"72","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"609","_type":"edge","_outV":"23","_inV":"141","_label":"followed_by"},{"weight":1,"_id":"6090","_type":"edge","_outV":"72","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"6091","_type":"edge","_outV":"72","_inV":"112","_label":"followed_by"},{"weight":8,"_id":"6092","_type":"edge","_outV":"72","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6093","_type":"edge","_outV":"72","_inV":"109","_label":"followed_by"},{"weight":4,"_id":"6094","_type":"edge","_outV":"72","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"6095","_type":"edge","_outV":"72","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6096","_type":"edge","_outV":"72","_inV":"123","_label":"followed_by"},{"weight":2,"_id":"6097","_type":"edge","_outV":"72","_inV":"101","_label":"followed_by"},{"weight":8,"_id":"6098","_type":"edge","_outV":"72","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"6099","_type":"edge","_outV":"72","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"61","_type":"edge","_outV":"46","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"610","_type":"edge","_outV":"23","_inV":"94","_label":"followed_by"},{"weight":3,"_id":"6100","_type":"edge","_outV":"72","_inV":"103","_label":"followed_by"},{"weight":2,"_id":"6101","_type":"edge","_outV":"72","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6102","_type":"edge","_outV":"72","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6103","_type":"edge","_outV":"72","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"6104","_type":"edge","_outV":"72","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6105","_type":"edge","_outV":"72","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6106","_type":"edge","_outV":"72","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"6107","_type":"edge","_outV":"72","_inV":"65","_label":"followed_by"},{"weight":10,"_id":"6108","_type":"edge","_outV":"72","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6109","_type":"edge","_outV":"72","_inV":"121","_label":"followed_by"},{"weight":4,"_id":"611","_type":"edge","_outV":"23","_inV":"58","_label":"followed_by"},{"weight":24,"_id":"6110","_type":"edge","_outV":"72","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6111","_type":"edge","_outV":"72","_inV":"111","_label":"followed_by"},{"weight":9,"_id":"6112","_type":"edge","_outV":"72","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"6113","_type":"edge","_outV":"72","_inV":"114","_label":"followed_by"},{"weight":6,"_id":"6114","_type":"edge","_outV":"72","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6115","_type":"edge","_outV":"72","_inV":"155","_label":"followed_by"},{"weight":1,"_id":"6116","_type":"edge","_outV":"72","_inV":"97","_label":"followed_by"},{"weight":4,"_id":"6117","_type":"edge","_outV":"72","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6118","_type":"edge","_outV":"72","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"6119","_type":"edge","_outV":"72","_inV":"91","_label":"followed_by"},{"weight":10,"_id":"612","_type":"edge","_outV":"23","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6120","_type":"edge","_outV":"72","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6121","_type":"edge","_outV":"72","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"6122","_type":"edge","_outV":"72","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6123","_type":"edge","_outV":"72","_inV":"150","_label":"followed_by"},{"weight":3,"_id":"6124","_type":"edge","_outV":"72","_inV":"64","_label":"followed_by"},{"weight":3,"_id":"6125","_type":"edge","_outV":"72","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"6126","_type":"edge","_outV":"72","_inV":"4","_label":"followed_by"},{"weight":12,"_id":"6127","_type":"edge","_outV":"72","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6128","_type":"edge","_outV":"72","_inV":"337","_label":"followed_by"},{"weight":5,"_id":"6129","_type":"edge","_outV":"72","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"613","_type":"edge","_outV":"23","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"6130","_type":"edge","_outV":"72","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6131","_type":"edge","_outV":"72","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"6132","_type":"edge","_outV":"72","_inV":"83","_label":"followed_by"},{"weight":3,"_id":"6133","_type":"edge","_outV":"72","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6134","_type":"edge","_outV":"72","_inV":"217","_label":"followed_by"},{"weight":2,"_id":"6135","_type":"edge","_outV":"72","_inV":"37","_label":"followed_by"},{"weight":3,"_id":"6136","_type":"edge","_outV":"72","_inV":"35","_label":"followed_by"},{"weight":2,"_id":"6137","_type":"edge","_outV":"72","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"6138","_type":"edge","_outV":"72","_inV":"176","_label":"followed_by"},{"weight":1,"_id":"6139","_type":"edge","_outV":"72","_inV":"177","_label":"followed_by"},{"weight":6,"_id":"614","_type":"edge","_outV":"23","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6140","_type":"edge","_outV":"289","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6141","_type":"edge","_outV":"289","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6142","_type":"edge","_outV":"289","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"6143","_type":"edge","_outV":"289","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"6144","_type":"edge","_outV":"289","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"6145","_type":"edge","_outV":"289","_inV":"125","_label":"followed_by"},{"weight":7,"_id":"6146","_type":"edge","_outV":"36","_inV":"82","_label":"followed_by"},{"weight":25,"_id":"6147","_type":"edge","_outV":"36","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"6148","_type":"edge","_outV":"36","_inV":"84","_label":"followed_by"},{"weight":41,"_id":"6149","_type":"edge","_outV":"36","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"615","_type":"edge","_outV":"23","_inV":"50","_label":"followed_by"},{"weight":8,"_id":"6150","_type":"edge","_outV":"36","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6151","_type":"edge","_outV":"36","_inV":"153","_label":"followed_by"},{"weight":6,"_id":"6152","_type":"edge","_outV":"36","_inV":"19","_label":"followed_by"},{"weight":28,"_id":"6153","_type":"edge","_outV":"36","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"6154","_type":"edge","_outV":"36","_inV":"74","_label":"followed_by"},{"weight":5,"_id":"6155","_type":"edge","_outV":"36","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6156","_type":"edge","_outV":"36","_inV":"154","_label":"followed_by"},{"weight":5,"_id":"6157","_type":"edge","_outV":"36","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6158","_type":"edge","_outV":"36","_inV":"65","_label":"followed_by"},{"weight":4,"_id":"6159","_type":"edge","_outV":"36","_inV":"141","_label":"followed_by"},{"weight":2,"_id":"616","_type":"edge","_outV":"23","_inV":"78","_label":"followed_by"},{"weight":8,"_id":"6160","_type":"edge","_outV":"36","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6161","_type":"edge","_outV":"36","_inV":"94","_label":"followed_by"},{"weight":20,"_id":"6162","_type":"edge","_outV":"36","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6163","_type":"edge","_outV":"36","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6164","_type":"edge","_outV":"36","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6165","_type":"edge","_outV":"36","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6166","_type":"edge","_outV":"36","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6167","_type":"edge","_outV":"36","_inV":"149","_label":"followed_by"},{"weight":13,"_id":"6168","_type":"edge","_outV":"36","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6169","_type":"edge","_outV":"36","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"617","_type":"edge","_outV":"23","_inV":"207","_label":"followed_by"},{"weight":1,"_id":"6170","_type":"edge","_outV":"36","_inV":"134","_label":"followed_by"},{"weight":1,"_id":"6171","_type":"edge","_outV":"36","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6172","_type":"edge","_outV":"36","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6173","_type":"edge","_outV":"36","_inV":"183","_label":"followed_by"},{"weight":7,"_id":"6174","_type":"edge","_outV":"36","_inV":"60","_label":"followed_by"},{"weight":2,"_id":"6175","_type":"edge","_outV":"36","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6176","_type":"edge","_outV":"36","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6177","_type":"edge","_outV":"36","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6178","_type":"edge","_outV":"36","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6179","_type":"edge","_outV":"36","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"618","_type":"edge","_outV":"23","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"6180","_type":"edge","_outV":"36","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"6181","_type":"edge","_outV":"36","_inV":"81","_label":"followed_by"},{"weight":2,"_id":"6182","_type":"edge","_outV":"36","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"6183","_type":"edge","_outV":"36","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6184","_type":"edge","_outV":"36","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"6185","_type":"edge","_outV":"36","_inV":"173","_label":"followed_by"},{"weight":3,"_id":"6186","_type":"edge","_outV":"36","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6187","_type":"edge","_outV":"36","_inV":"258","_label":"followed_by"},{"weight":2,"_id":"6188","_type":"edge","_outV":"36","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"6189","_type":"edge","_outV":"36","_inV":"41","_label":"followed_by"},{"weight":6,"_id":"619","_type":"edge","_outV":"23","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6190","_type":"edge","_outV":"2","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"6191","_type":"edge","_outV":"2","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6192","_type":"edge","_outV":"313","_inV":"263","_label":"followed_by"},{"weight":1,"_id":"6193","_type":"edge","_outV":"232","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6194","_type":"edge","_outV":"232","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6195","_type":"edge","_outV":"232","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6196","_type":"edge","_outV":"232","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6197","_type":"edge","_outV":"232","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6198","_type":"edge","_outV":"220","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"6199","_type":"edge","_outV":"319","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"62","_type":"edge","_outV":"46","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"620","_type":"edge","_outV":"23","_inV":"218","_label":"followed_by"},{"weight":2,"_id":"6200","_type":"edge","_outV":"319","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"6201","_type":"edge","_outV":"319","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"6202","_type":"edge","_outV":"319","_inV":"21","_label":"followed_by"},{"weight":4,"_id":"6203","_type":"edge","_outV":"319","_inV":"148","_label":"followed_by"},{"weight":3,"_id":"6204","_type":"edge","_outV":"319","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6205","_type":"edge","_outV":"319","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6206","_type":"edge","_outV":"319","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6207","_type":"edge","_outV":"319","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"6208","_type":"edge","_outV":"319","_inV":"3","_label":"followed_by"},{"weight":4,"_id":"6209","_type":"edge","_outV":"319","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"621","_type":"edge","_outV":"23","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"6210","_type":"edge","_outV":"319","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6211","_type":"edge","_outV":"319","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6212","_type":"edge","_outV":"319","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6213","_type":"edge","_outV":"319","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"6214","_type":"edge","_outV":"319","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6215","_type":"edge","_outV":"319","_inV":"229","_label":"followed_by"},{"weight":1,"_id":"6216","_type":"edge","_outV":"337","_inV":"334","_label":"followed_by"},{"weight":1,"_id":"6217","_type":"edge","_outV":"336","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6218","_type":"edge","_outV":"117","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6219","_type":"edge","_outV":"117","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"622","_type":"edge","_outV":"23","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"6220","_type":"edge","_outV":"117","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"6221","_type":"edge","_outV":"117","_inV":"59","_label":"followed_by"},{"weight":33,"_id":"6222","_type":"edge","_outV":"117","_inV":"58","_label":"followed_by"},{"weight":5,"_id":"6223","_type":"edge","_outV":"117","_inV":"75","_label":"followed_by"},{"weight":1,"_id":"6224","_type":"edge","_outV":"117","_inV":"125","_label":"followed_by"},{"weight":2,"_id":"6225","_type":"edge","_outV":"117","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"6226","_type":"edge","_outV":"117","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6227","_type":"edge","_outV":"117","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6228","_type":"edge","_outV":"117","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6229","_type":"edge","_outV":"117","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"623","_type":"edge","_outV":"23","_inV":"13","_label":"followed_by"},{"weight":6,"_id":"6230","_type":"edge","_outV":"117","_inV":"27","_label":"followed_by"},{"weight":3,"_id":"6231","_type":"edge","_outV":"117","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"6232","_type":"edge","_outV":"117","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6233","_type":"edge","_outV":"117","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6234","_type":"edge","_outV":"117","_inV":"99","_label":"followed_by"},{"weight":3,"_id":"6235","_type":"edge","_outV":"117","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"6236","_type":"edge","_outV":"117","_inV":"73","_label":"followed_by"},{"weight":6,"_id":"6237","_type":"edge","_outV":"117","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6238","_type":"edge","_outV":"117","_inV":"257","_label":"followed_by"},{"weight":1,"_id":"6239","_type":"edge","_outV":"117","_inV":"118","_label":"followed_by"},{"weight":14,"_id":"624","_type":"edge","_outV":"23","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"6240","_type":"edge","_outV":"117","_inV":"39","_label":"followed_by"},{"weight":8,"_id":"6241","_type":"edge","_outV":"117","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"6242","_type":"edge","_outV":"117","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"6243","_type":"edge","_outV":"117","_inV":"103","_label":"followed_by"},{"weight":3,"_id":"6244","_type":"edge","_outV":"117","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6245","_type":"edge","_outV":"117","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"6246","_type":"edge","_outV":"117","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"6247","_type":"edge","_outV":"117","_inV":"48","_label":"followed_by"},{"weight":6,"_id":"6248","_type":"edge","_outV":"117","_inV":"202","_label":"followed_by"},{"weight":5,"_id":"6249","_type":"edge","_outV":"117","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"625","_type":"edge","_outV":"23","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6250","_type":"edge","_outV":"117","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6251","_type":"edge","_outV":"117","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6252","_type":"edge","_outV":"117","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6253","_type":"edge","_outV":"117","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"6254","_type":"edge","_outV":"117","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6255","_type":"edge","_outV":"117","_inV":"285","_label":"followed_by"},{"weight":1,"_id":"6256","_type":"edge","_outV":"117","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"6257","_type":"edge","_outV":"117","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6258","_type":"edge","_outV":"117","_inV":"63","_label":"followed_by"},{"weight":4,"_id":"6259","_type":"edge","_outV":"117","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"626","_type":"edge","_outV":"23","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6260","_type":"edge","_outV":"117","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6261","_type":"edge","_outV":"117","_inV":"236","_label":"followed_by"},{"weight":1,"_id":"6262","_type":"edge","_outV":"117","_inV":"140","_label":"followed_by"},{"weight":3,"_id":"6263","_type":"edge","_outV":"310","_inV":"165","_label":"followed_by"},{"weight":22,"_id":"6264","_type":"edge","_outV":"49","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6265","_type":"edge","_outV":"49","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"6266","_type":"edge","_outV":"49","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6267","_type":"edge","_outV":"49","_inV":"15","_label":"followed_by"},{"weight":51,"_id":"6268","_type":"edge","_outV":"49","_inV":"21","_label":"followed_by"},{"weight":3,"_id":"6269","_type":"edge","_outV":"49","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"627","_type":"edge","_outV":"23","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6270","_type":"edge","_outV":"49","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6271","_type":"edge","_outV":"49","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"6272","_type":"edge","_outV":"49","_inV":"252","_label":"followed_by"},{"weight":2,"_id":"6273","_type":"edge","_outV":"49","_inV":"11","_label":"followed_by"},{"weight":2,"_id":"6274","_type":"edge","_outV":"49","_inV":"234","_label":"followed_by"},{"weight":1,"_id":"6275","_type":"edge","_outV":"49","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"6276","_type":"edge","_outV":"49","_inV":"18","_label":"followed_by"},{"weight":168,"_id":"6277","_type":"edge","_outV":"49","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6278","_type":"edge","_outV":"49","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6279","_type":"edge","_outV":"49","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"628","_type":"edge","_outV":"23","_inV":"100","_label":"followed_by"},{"weight":3,"_id":"6280","_type":"edge","_outV":"49","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6281","_type":"edge","_outV":"49","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6282","_type":"edge","_outV":"49","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6283","_type":"edge","_outV":"49","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6284","_type":"edge","_outV":"49","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6285","_type":"edge","_outV":"49","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6286","_type":"edge","_outV":"49","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"6287","_type":"edge","_outV":"49","_inV":"145","_label":"followed_by"},{"weight":1,"_id":"6288","_type":"edge","_outV":"49","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"6289","_type":"edge","_outV":"49","_inV":"83","_label":"followed_by"},{"weight":10,"_id":"629","_type":"edge","_outV":"23","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6290","_type":"edge","_outV":"49","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6291","_type":"edge","_outV":"49","_inV":"85","_label":"followed_by"},{"weight":12,"_id":"6292","_type":"edge","_outV":"49","_inV":"33","_label":"followed_by"},{"weight":8,"_id":"6293","_type":"edge","_outV":"49","_inV":"113","_label":"followed_by"},{"weight":1,"_id":"6294","_type":"edge","_outV":"49","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"6295","_type":"edge","_outV":"49","_inV":"183","_label":"followed_by"},{"weight":3,"_id":"6296","_type":"edge","_outV":"49","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6297","_type":"edge","_outV":"49","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6298","_type":"edge","_outV":"49","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6299","_type":"edge","_outV":"49","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"63","_type":"edge","_outV":"46","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"630","_type":"edge","_outV":"23","_inV":"47","_label":"followed_by"},{"weight":1,"_id":"6300","_type":"edge","_outV":"49","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"6301","_type":"edge","_outV":"49","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"6302","_type":"edge","_outV":"49","_inV":"319","_label":"followed_by"},{"weight":2,"_id":"6303","_type":"edge","_outV":"49","_inV":"186","_label":"followed_by"},{"weight":3,"_id":"6304","_type":"edge","_outV":"49","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6305","_type":"edge","_outV":"123","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6306","_type":"edge","_outV":"123","_inV":"282","_label":"followed_by"},{"weight":1,"_id":"6307","_type":"edge","_outV":"123","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6308","_type":"edge","_outV":"123","_inV":"19","_label":"followed_by"},{"weight":10,"_id":"6309","_type":"edge","_outV":"123","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"631","_type":"edge","_outV":"23","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6310","_type":"edge","_outV":"123","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"6311","_type":"edge","_outV":"123","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6312","_type":"edge","_outV":"123","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"6313","_type":"edge","_outV":"123","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6314","_type":"edge","_outV":"123","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6315","_type":"edge","_outV":"123","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"6316","_type":"edge","_outV":"123","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6317","_type":"edge","_outV":"123","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6318","_type":"edge","_outV":"123","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"6319","_type":"edge","_outV":"21","_inV":"59","_label":"followed_by"},{"weight":11,"_id":"632","_type":"edge","_outV":"23","_inV":"80","_label":"followed_by"},{"weight":72,"_id":"6320","_type":"edge","_outV":"21","_inV":"96","_label":"followed_by"},{"weight":24,"_id":"6321","_type":"edge","_outV":"21","_inV":"319","_label":"followed_by"},{"weight":48,"_id":"6322","_type":"edge","_outV":"21","_inV":"148","_label":"followed_by"},{"weight":7,"_id":"6323","_type":"edge","_outV":"21","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6324","_type":"edge","_outV":"21","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"6325","_type":"edge","_outV":"21","_inV":"252","_label":"followed_by"},{"weight":2,"_id":"6326","_type":"edge","_outV":"21","_inV":"145","_label":"followed_by"},{"weight":3,"_id":"6327","_type":"edge","_outV":"21","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6328","_type":"edge","_outV":"21","_inV":"54","_label":"followed_by"},{"weight":1,"_id":"6329","_type":"edge","_outV":"21","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"633","_type":"edge","_outV":"23","_inV":"3","_label":"followed_by"},{"weight":12,"_id":"6330","_type":"edge","_outV":"21","_inV":"49","_label":"followed_by"},{"weight":5,"_id":"6331","_type":"edge","_outV":"21","_inV":"153","_label":"followed_by"},{"weight":3,"_id":"6332","_type":"edge","_outV":"21","_inV":"56","_label":"followed_by"},{"weight":32,"_id":"6333","_type":"edge","_outV":"21","_inV":"125","_label":"followed_by"},{"weight":34,"_id":"6334","_type":"edge","_outV":"21","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6335","_type":"edge","_outV":"21","_inV":"9","_label":"followed_by"},{"weight":24,"_id":"6336","_type":"edge","_outV":"21","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6337","_type":"edge","_outV":"21","_inV":"51","_label":"followed_by"},{"weight":11,"_id":"6338","_type":"edge","_outV":"21","_inV":"83","_label":"followed_by"},{"weight":9,"_id":"6339","_type":"edge","_outV":"21","_inV":"127","_label":"followed_by"},{"weight":8,"_id":"634","_type":"edge","_outV":"23","_inV":"51","_label":"followed_by"},{"weight":2,"_id":"6340","_type":"edge","_outV":"21","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"6341","_type":"edge","_outV":"21","_inV":"16","_label":"followed_by"},{"weight":4,"_id":"6342","_type":"edge","_outV":"21","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6343","_type":"edge","_outV":"21","_inV":"3","_label":"followed_by"},{"weight":6,"_id":"6344","_type":"edge","_outV":"21","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"6345","_type":"edge","_outV":"21","_inV":"209","_label":"followed_by"},{"weight":1,"_id":"6346","_type":"edge","_outV":"21","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6347","_type":"edge","_outV":"21","_inV":"338","_label":"followed_by"},{"weight":1,"_id":"6348","_type":"edge","_outV":"21","_inV":"281","_label":"followed_by"},{"weight":1,"_id":"6349","_type":"edge","_outV":"21","_inV":"114","_label":"followed_by"},{"weight":16,"_id":"635","_type":"edge","_outV":"23","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6350","_type":"edge","_outV":"21","_inV":"4","_label":"followed_by"},{"weight":8,"_id":"6351","_type":"edge","_outV":"21","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6352","_type":"edge","_outV":"21","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"6353","_type":"edge","_outV":"21","_inV":"32","_label":"followed_by"},{"weight":3,"_id":"6354","_type":"edge","_outV":"21","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6355","_type":"edge","_outV":"21","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6356","_type":"edge","_outV":"21","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6357","_type":"edge","_outV":"21","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6358","_type":"edge","_outV":"21","_inV":"50","_label":"followed_by"},{"weight":5,"_id":"6359","_type":"edge","_outV":"21","_inV":"141","_label":"followed_by"},{"weight":11,"_id":"636","_type":"edge","_outV":"23","_inV":"48","_label":"followed_by"},{"weight":1,"_id":"6360","_type":"edge","_outV":"21","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6361","_type":"edge","_outV":"21","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6362","_type":"edge","_outV":"21","_inV":"65","_label":"followed_by"},{"weight":20,"_id":"6363","_type":"edge","_outV":"21","_inV":"33","_label":"followed_by"},{"weight":28,"_id":"6364","_type":"edge","_outV":"21","_inV":"113","_label":"followed_by"},{"weight":4,"_id":"6365","_type":"edge","_outV":"21","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6366","_type":"edge","_outV":"21","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6367","_type":"edge","_outV":"21","_inV":"67","_label":"followed_by"},{"weight":7,"_id":"6368","_type":"edge","_outV":"21","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6369","_type":"edge","_outV":"21","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"637","_type":"edge","_outV":"23","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6370","_type":"edge","_outV":"21","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"6371","_type":"edge","_outV":"21","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6372","_type":"edge","_outV":"21","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6373","_type":"edge","_outV":"21","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6374","_type":"edge","_outV":"21","_inV":"292","_label":"followed_by"},{"weight":4,"_id":"6375","_type":"edge","_outV":"21","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6376","_type":"edge","_outV":"21","_inV":"286","_label":"followed_by"},{"weight":1,"_id":"6377","_type":"edge","_outV":"21","_inV":"329","_label":"followed_by"},{"weight":1,"_id":"6378","_type":"edge","_outV":"21","_inV":"37","_label":"followed_by"},{"weight":58,"_id":"6379","_type":"edge","_outV":"65","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"638","_type":"edge","_outV":"23","_inV":"9","_label":"followed_by"},{"weight":59,"_id":"6380","_type":"edge","_outV":"65","_inV":"23","_label":"followed_by"},{"weight":3,"_id":"6381","_type":"edge","_outV":"65","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6382","_type":"edge","_outV":"65","_inV":"36","_label":"followed_by"},{"weight":2,"_id":"6383","_type":"edge","_outV":"65","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6384","_type":"edge","_outV":"65","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"6385","_type":"edge","_outV":"65","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6386","_type":"edge","_outV":"65","_inV":"160","_label":"followed_by"},{"weight":2,"_id":"6387","_type":"edge","_outV":"65","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6388","_type":"edge","_outV":"65","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6389","_type":"edge","_outV":"65","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"639","_type":"edge","_outV":"23","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6390","_type":"edge","_outV":"65","_inV":"188","_label":"followed_by"},{"weight":2,"_id":"6391","_type":"edge","_outV":"65","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6392","_type":"edge","_outV":"65","_inV":"30","_label":"followed_by"},{"weight":2,"_id":"6393","_type":"edge","_outV":"136","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6394","_type":"edge","_outV":"136","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"6395","_type":"edge","_outV":"136","_inV":"29","_label":"followed_by"},{"weight":3,"_id":"6396","_type":"edge","_outV":"136","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6397","_type":"edge","_outV":"136","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6398","_type":"edge","_outV":"136","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6399","_type":"edge","_outV":"136","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"64","_type":"edge","_outV":"46","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"640","_type":"edge","_outV":"23","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"6400","_type":"edge","_outV":"136","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6401","_type":"edge","_outV":"134","_inV":"69","_label":"followed_by"},{"weight":18,"_id":"6402","_type":"edge","_outV":"134","_inV":"148","_label":"followed_by"},{"weight":4,"_id":"6403","_type":"edge","_outV":"134","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6404","_type":"edge","_outV":"134","_inV":"68","_label":"followed_by"},{"weight":5,"_id":"6405","_type":"edge","_outV":"134","_inV":"76","_label":"followed_by"},{"weight":7,"_id":"6406","_type":"edge","_outV":"134","_inV":"153","_label":"followed_by"},{"weight":24,"_id":"6407","_type":"edge","_outV":"134","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6408","_type":"edge","_outV":"134","_inV":"78","_label":"followed_by"},{"weight":5,"_id":"6409","_type":"edge","_outV":"134","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"641","_type":"edge","_outV":"23","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6410","_type":"edge","_outV":"134","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6411","_type":"edge","_outV":"134","_inV":"149","_label":"followed_by"},{"weight":10,"_id":"6412","_type":"edge","_outV":"134","_inV":"130","_label":"followed_by"},{"weight":18,"_id":"6413","_type":"edge","_outV":"134","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6414","_type":"edge","_outV":"134","_inV":"91","_label":"followed_by"},{"weight":4,"_id":"6415","_type":"edge","_outV":"134","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"6416","_type":"edge","_outV":"134","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6417","_type":"edge","_outV":"134","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6418","_type":"edge","_outV":"134","_inV":"36","_label":"followed_by"},{"weight":6,"_id":"6419","_type":"edge","_outV":"134","_inV":"94","_label":"followed_by"},{"weight":8,"_id":"642","_type":"edge","_outV":"23","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6420","_type":"edge","_outV":"134","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"6421","_type":"edge","_outV":"134","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6422","_type":"edge","_outV":"134","_inV":"116","_label":"followed_by"},{"weight":32,"_id":"6423","_type":"edge","_outV":"134","_inV":"70","_label":"followed_by"},{"weight":23,"_id":"6424","_type":"edge","_outV":"134","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"6425","_type":"edge","_outV":"134","_inV":"3","_label":"followed_by"},{"weight":8,"_id":"6426","_type":"edge","_outV":"134","_inV":"125","_label":"followed_by"},{"weight":31,"_id":"6427","_type":"edge","_outV":"134","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6428","_type":"edge","_outV":"134","_inV":"278","_label":"followed_by"},{"weight":1,"_id":"6429","_type":"edge","_outV":"134","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"643","_type":"edge","_outV":"23","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"6430","_type":"edge","_outV":"134","_inV":"113","_label":"followed_by"},{"weight":2,"_id":"6431","_type":"edge","_outV":"134","_inV":"5","_label":"followed_by"},{"weight":34,"_id":"6432","_type":"edge","_outV":"134","_inV":"165","_label":"followed_by"},{"weight":4,"_id":"6433","_type":"edge","_outV":"134","_inV":"132","_label":"followed_by"},{"weight":1,"_id":"6434","_type":"edge","_outV":"134","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6435","_type":"edge","_outV":"134","_inV":"137","_label":"followed_by"},{"weight":3,"_id":"6436","_type":"edge","_outV":"134","_inV":"140","_label":"followed_by"},{"weight":1,"_id":"6437","_type":"edge","_outV":"318","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6438","_type":"edge","_outV":"338","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"6439","_type":"edge","_outV":"284","_inV":"310","_label":"followed_by"},{"weight":1,"_id":"644","_type":"edge","_outV":"23","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6440","_type":"edge","_outV":"284","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"6441","_type":"edge","_outV":"187","_inV":"120","_label":"followed_by"},{"weight":7,"_id":"6442","_type":"edge","_outV":"187","_inV":"11","_label":"followed_by"},{"weight":47,"_id":"6443","_type":"edge","_outV":"187","_inV":"13","_label":"followed_by"},{"weight":9,"_id":"6444","_type":"edge","_outV":"187","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6445","_type":"edge","_outV":"187","_inV":"47","_label":"followed_by"},{"weight":5,"_id":"6446","_type":"edge","_outV":"187","_inV":"24","_label":"followed_by"},{"weight":5,"_id":"6447","_type":"edge","_outV":"187","_inV":"46","_label":"followed_by"},{"weight":3,"_id":"6448","_type":"edge","_outV":"187","_inV":"3","_label":"followed_by"},{"weight":16,"_id":"6449","_type":"edge","_outV":"187","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"645","_type":"edge","_outV":"23","_inV":"170","_label":"followed_by"},{"weight":8,"_id":"6450","_type":"edge","_outV":"187","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6451","_type":"edge","_outV":"187","_inV":"22","_label":"followed_by"},{"weight":10,"_id":"6452","_type":"edge","_outV":"187","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6453","_type":"edge","_outV":"187","_inV":"152","_label":"followed_by"},{"weight":1,"_id":"6454","_type":"edge","_outV":"187","_inV":"252","_label":"followed_by"},{"weight":12,"_id":"6455","_type":"edge","_outV":"187","_inV":"12","_label":"followed_by"},{"weight":8,"_id":"6456","_type":"edge","_outV":"187","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6457","_type":"edge","_outV":"187","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"6458","_type":"edge","_outV":"187","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6459","_type":"edge","_outV":"187","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"646","_type":"edge","_outV":"23","_inV":"68","_label":"followed_by"},{"weight":10,"_id":"6460","_type":"edge","_outV":"187","_inV":"15","_label":"followed_by"},{"weight":2,"_id":"6461","_type":"edge","_outV":"187","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"6462","_type":"edge","_outV":"187","_inV":"26","_label":"followed_by"},{"weight":26,"_id":"6463","_type":"edge","_outV":"187","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6464","_type":"edge","_outV":"187","_inV":"55","_label":"followed_by"},{"weight":9,"_id":"6465","_type":"edge","_outV":"187","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6466","_type":"edge","_outV":"187","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6467","_type":"edge","_outV":"187","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6468","_type":"edge","_outV":"187","_inV":"56","_label":"followed_by"},{"weight":1,"_id":"6469","_type":"edge","_outV":"187","_inV":"129","_label":"followed_by"},{"weight":6,"_id":"647","_type":"edge","_outV":"23","_inV":"112","_label":"followed_by"},{"weight":32,"_id":"6470","_type":"edge","_outV":"187","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6471","_type":"edge","_outV":"187","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6472","_type":"edge","_outV":"187","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"6473","_type":"edge","_outV":"187","_inV":"42","_label":"followed_by"},{"weight":5,"_id":"6474","_type":"edge","_outV":"187","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6475","_type":"edge","_outV":"187","_inV":"83","_label":"followed_by"},{"weight":2,"_id":"6476","_type":"edge","_outV":"187","_inV":"208","_label":"followed_by"},{"weight":3,"_id":"6477","_type":"edge","_outV":"187","_inV":"32","_label":"followed_by"},{"weight":9,"_id":"6478","_type":"edge","_outV":"187","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6479","_type":"edge","_outV":"187","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"648","_type":"edge","_outV":"23","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6480","_type":"edge","_outV":"187","_inV":"101","_label":"followed_by"},{"weight":9,"_id":"6481","_type":"edge","_outV":"187","_inV":"38","_label":"followed_by"},{"weight":7,"_id":"6482","_type":"edge","_outV":"187","_inV":"96","_label":"followed_by"},{"weight":6,"_id":"6483","_type":"edge","_outV":"187","_inV":"82","_label":"followed_by"},{"weight":34,"_id":"6484","_type":"edge","_outV":"187","_inV":"85","_label":"followed_by"},{"weight":5,"_id":"6485","_type":"edge","_outV":"187","_inV":"91","_label":"followed_by"},{"weight":3,"_id":"6486","_type":"edge","_outV":"187","_inV":"106","_label":"followed_by"},{"weight":16,"_id":"6487","_type":"edge","_outV":"187","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6488","_type":"edge","_outV":"187","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"6489","_type":"edge","_outV":"187","_inV":"73","_label":"followed_by"},{"weight":22,"_id":"649","_type":"edge","_outV":"23","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"6490","_type":"edge","_outV":"187","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6491","_type":"edge","_outV":"187","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"6492","_type":"edge","_outV":"187","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"6493","_type":"edge","_outV":"187","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6494","_type":"edge","_outV":"187","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6495","_type":"edge","_outV":"187","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"6496","_type":"edge","_outV":"187","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"6497","_type":"edge","_outV":"187","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"6498","_type":"edge","_outV":"187","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6499","_type":"edge","_outV":"187","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"65","_type":"edge","_outV":"46","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"650","_type":"edge","_outV":"23","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"6500","_type":"edge","_outV":"187","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6501","_type":"edge","_outV":"187","_inV":"215","_label":"followed_by"},{"weight":2,"_id":"6502","_type":"edge","_outV":"187","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"6503","_type":"edge","_outV":"187","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"6504","_type":"edge","_outV":"187","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6505","_type":"edge","_outV":"187","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6506","_type":"edge","_outV":"187","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"6507","_type":"edge","_outV":"187","_inV":"150","_label":"followed_by"},{"weight":3,"_id":"6508","_type":"edge","_outV":"187","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6509","_type":"edge","_outV":"187","_inV":"257","_label":"followed_by"},{"weight":15,"_id":"651","_type":"edge","_outV":"23","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6510","_type":"edge","_outV":"187","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6511","_type":"edge","_outV":"187","_inV":"115","_label":"followed_by"},{"weight":2,"_id":"6512","_type":"edge","_outV":"187","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"6513","_type":"edge","_outV":"187","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"6514","_type":"edge","_outV":"187","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6515","_type":"edge","_outV":"187","_inV":"118","_label":"followed_by"},{"weight":1,"_id":"6516","_type":"edge","_outV":"187","_inV":"169","_label":"followed_by"},{"weight":1,"_id":"6517","_type":"edge","_outV":"187","_inV":"31","_label":"followed_by"},{"weight":8,"_id":"6518","_type":"edge","_outV":"187","_inV":"28","_label":"followed_by"},{"weight":5,"_id":"6519","_type":"edge","_outV":"187","_inV":"229","_label":"followed_by"},{"weight":2,"_id":"652","_type":"edge","_outV":"23","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6520","_type":"edge","_outV":"187","_inV":"34","_label":"followed_by"},{"weight":5,"_id":"6521","_type":"edge","_outV":"187","_inV":"35","_label":"followed_by"},{"weight":4,"_id":"6522","_type":"edge","_outV":"187","_inV":"37","_label":"followed_by"},{"weight":1,"_id":"6523","_type":"edge","_outV":"187","_inV":"177","_label":"followed_by"},{"weight":2,"_id":"6524","_type":"edge","_outV":"211","_inV":"65","_label":"followed_by"},{"weight":3,"_id":"6525","_type":"edge","_outV":"211","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6526","_type":"edge","_outV":"211","_inV":"38","_label":"followed_by"},{"weight":2,"_id":"6527","_type":"edge","_outV":"211","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6528","_type":"edge","_outV":"211","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6529","_type":"edge","_outV":"211","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"653","_type":"edge","_outV":"23","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6530","_type":"edge","_outV":"211","_inV":"90","_label":"followed_by"},{"weight":2,"_id":"6531","_type":"edge","_outV":"242","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6532","_type":"edge","_outV":"242","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"6533","_type":"edge","_outV":"242","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6534","_type":"edge","_outV":"242","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6535","_type":"edge","_outV":"242","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6536","_type":"edge","_outV":"242","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6537","_type":"edge","_outV":"55","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"6538","_type":"edge","_outV":"55","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6539","_type":"edge","_outV":"55","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"654","_type":"edge","_outV":"23","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"6540","_type":"edge","_outV":"55","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6541","_type":"edge","_outV":"55","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6542","_type":"edge","_outV":"55","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6543","_type":"edge","_outV":"55","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6544","_type":"edge","_outV":"55","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6545","_type":"edge","_outV":"55","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6546","_type":"edge","_outV":"55","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6547","_type":"edge","_outV":"55","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6548","_type":"edge","_outV":"55","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6549","_type":"edge","_outV":"172","_inV":"72","_label":"followed_by"},{"weight":7,"_id":"655","_type":"edge","_outV":"23","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"6550","_type":"edge","_outV":"172","_inV":"148","_label":"followed_by"},{"weight":5,"_id":"6551","_type":"edge","_outV":"172","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"6552","_type":"edge","_outV":"172","_inV":"130","_label":"followed_by"},{"weight":2,"_id":"6553","_type":"edge","_outV":"172","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6554","_type":"edge","_outV":"172","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"6555","_type":"edge","_outV":"172","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6556","_type":"edge","_outV":"172","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6557","_type":"edge","_outV":"172","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"6558","_type":"edge","_outV":"172","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6559","_type":"edge","_outV":"172","_inV":"36","_label":"followed_by"},{"weight":3,"_id":"656","_type":"edge","_outV":"23","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6560","_type":"edge","_outV":"172","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6561","_type":"edge","_outV":"172","_inV":"13","_label":"followed_by"},{"weight":140,"_id":"6562","_type":"edge","_outV":"181","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6563","_type":"edge","_outV":"181","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"6564","_type":"edge","_outV":"181","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6565","_type":"edge","_outV":"181","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6566","_type":"edge","_outV":"181","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"6567","_type":"edge","_outV":"116","_inV":"96","_label":"followed_by"},{"weight":4,"_id":"6568","_type":"edge","_outV":"116","_inV":"85","_label":"followed_by"},{"weight":3,"_id":"6569","_type":"edge","_outV":"116","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"657","_type":"edge","_outV":"23","_inV":"215","_label":"followed_by"},{"weight":3,"_id":"6570","_type":"edge","_outV":"116","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6571","_type":"edge","_outV":"116","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6572","_type":"edge","_outV":"116","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6573","_type":"edge","_outV":"116","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6574","_type":"edge","_outV":"116","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6575","_type":"edge","_outV":"116","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6576","_type":"edge","_outV":"116","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6577","_type":"edge","_outV":"116","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6578","_type":"edge","_outV":"116","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6579","_type":"edge","_outV":"116","_inV":"18","_label":"followed_by"},{"weight":2,"_id":"658","_type":"edge","_outV":"23","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6580","_type":"edge","_outV":"116","_inV":"68","_label":"followed_by"},{"weight":2,"_id":"6581","_type":"edge","_outV":"116","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"6582","_type":"edge","_outV":"116","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6583","_type":"edge","_outV":"116","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6584","_type":"edge","_outV":"116","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6585","_type":"edge","_outV":"116","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"6586","_type":"edge","_outV":"116","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6587","_type":"edge","_outV":"116","_inV":"53","_label":"followed_by"},{"weight":2,"_id":"6588","_type":"edge","_outV":"116","_inV":"168","_label":"followed_by"},{"weight":1,"_id":"6589","_type":"edge","_outV":"116","_inV":"73","_label":"followed_by"},{"weight":3,"_id":"659","_type":"edge","_outV":"23","_inV":"108","_label":"followed_by"},{"weight":1,"_id":"6590","_type":"edge","_outV":"116","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"6591","_type":"edge","_outV":"116","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6592","_type":"edge","_outV":"116","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6593","_type":"edge","_outV":"116","_inV":"105","_label":"followed_by"},{"weight":6,"_id":"6594","_type":"edge","_outV":"127","_inV":"13","_label":"followed_by"},{"weight":30,"_id":"6595","_type":"edge","_outV":"127","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6596","_type":"edge","_outV":"127","_inV":"47","_label":"followed_by"},{"weight":17,"_id":"6597","_type":"edge","_outV":"127","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6598","_type":"edge","_outV":"127","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6599","_type":"edge","_outV":"127","_inV":"96","_label":"followed_by"},{"weight":3,"_id":"66","_type":"edge","_outV":"46","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"660","_type":"edge","_outV":"23","_inV":"210","_label":"followed_by"},{"weight":1,"_id":"6600","_type":"edge","_outV":"127","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6601","_type":"edge","_outV":"127","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6602","_type":"edge","_outV":"127","_inV":"23","_label":"followed_by"},{"weight":4,"_id":"6603","_type":"edge","_outV":"127","_inV":"10","_label":"followed_by"},{"weight":4,"_id":"6604","_type":"edge","_outV":"127","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6605","_type":"edge","_outV":"127","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6606","_type":"edge","_outV":"127","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6607","_type":"edge","_outV":"127","_inV":"59","_label":"followed_by"},{"weight":14,"_id":"6608","_type":"edge","_outV":"127","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"6609","_type":"edge","_outV":"127","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"661","_type":"edge","_outV":"23","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"6610","_type":"edge","_outV":"127","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6611","_type":"edge","_outV":"127","_inV":"65","_label":"followed_by"},{"weight":5,"_id":"6612","_type":"edge","_outV":"127","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6613","_type":"edge","_outV":"127","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6614","_type":"edge","_outV":"127","_inV":"72","_label":"followed_by"},{"weight":3,"_id":"6615","_type":"edge","_outV":"127","_inV":"162","_label":"followed_by"},{"weight":14,"_id":"6616","_type":"edge","_outV":"127","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6617","_type":"edge","_outV":"127","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6618","_type":"edge","_outV":"127","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6619","_type":"edge","_outV":"127","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"662","_type":"edge","_outV":"23","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6620","_type":"edge","_outV":"127","_inV":"165","_label":"followed_by"},{"weight":5,"_id":"6621","_type":"edge","_outV":"127","_inV":"64","_label":"followed_by"},{"weight":8,"_id":"6622","_type":"edge","_outV":"127","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"6623","_type":"edge","_outV":"127","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"6624","_type":"edge","_outV":"127","_inV":"213","_label":"followed_by"},{"weight":2,"_id":"6625","_type":"edge","_outV":"127","_inV":"133","_label":"followed_by"},{"weight":3,"_id":"6626","_type":"edge","_outV":"127","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6627","_type":"edge","_outV":"127","_inV":"321","_label":"followed_by"},{"weight":2,"_id":"6628","_type":"edge","_outV":"127","_inV":"150","_label":"followed_by"},{"weight":2,"_id":"6629","_type":"edge","_outV":"127","_inV":"84","_label":"followed_by"},{"weight":4,"_id":"663","_type":"edge","_outV":"23","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6630","_type":"edge","_outV":"127","_inV":"157","_label":"followed_by"},{"weight":2,"_id":"6631","_type":"edge","_outV":"127","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6632","_type":"edge","_outV":"127","_inV":"160","_label":"followed_by"},{"weight":3,"_id":"6633","_type":"edge","_outV":"127","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6634","_type":"edge","_outV":"127","_inV":"124","_label":"followed_by"},{"weight":3,"_id":"6635","_type":"edge","_outV":"127","_inV":"227","_label":"followed_by"},{"weight":2,"_id":"6636","_type":"edge","_outV":"127","_inV":"90","_label":"followed_by"},{"weight":4,"_id":"6637","_type":"edge","_outV":"127","_inV":"185","_label":"followed_by"},{"weight":1,"_id":"6638","_type":"edge","_outV":"127","_inV":"193","_label":"followed_by"},{"weight":1,"_id":"6639","_type":"edge","_outV":"127","_inV":"216","_label":"followed_by"},{"weight":2,"_id":"664","_type":"edge","_outV":"23","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"6640","_type":"edge","_outV":"127","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6641","_type":"edge","_outV":"127","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6642","_type":"edge","_outV":"127","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"6643","_type":"edge","_outV":"127","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6644","_type":"edge","_outV":"256","_inV":"325","_label":"followed_by"},{"weight":7,"_id":"6645","_type":"edge","_outV":"12","_inV":"72","_label":"followed_by"},{"weight":7,"_id":"6646","_type":"edge","_outV":"12","_inV":"58","_label":"followed_by"},{"weight":6,"_id":"6647","_type":"edge","_outV":"12","_inV":"57","_label":"followed_by"},{"weight":8,"_id":"6648","_type":"edge","_outV":"12","_inV":"54","_label":"followed_by"},{"weight":14,"_id":"6649","_type":"edge","_outV":"12","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"665","_type":"edge","_outV":"23","_inV":"117","_label":"followed_by"},{"weight":7,"_id":"6650","_type":"edge","_outV":"12","_inV":"100","_label":"followed_by"},{"weight":4,"_id":"6651","_type":"edge","_outV":"12","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6652","_type":"edge","_outV":"12","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"6653","_type":"edge","_outV":"12","_inV":"218","_label":"followed_by"},{"weight":2,"_id":"6654","_type":"edge","_outV":"12","_inV":"235","_label":"followed_by"},{"weight":1,"_id":"6655","_type":"edge","_outV":"12","_inV":"130","_label":"followed_by"},{"weight":9,"_id":"6656","_type":"edge","_outV":"12","_inV":"49","_label":"followed_by"},{"weight":3,"_id":"6657","_type":"edge","_outV":"12","_inV":"19","_label":"followed_by"},{"weight":9,"_id":"6658","_type":"edge","_outV":"12","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6659","_type":"edge","_outV":"12","_inV":"252","_label":"followed_by"},{"weight":1,"_id":"666","_type":"edge","_outV":"23","_inV":"151","_label":"followed_by"},{"weight":1,"_id":"6660","_type":"edge","_outV":"12","_inV":"206","_label":"followed_by"},{"weight":4,"_id":"6661","_type":"edge","_outV":"12","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"6662","_type":"edge","_outV":"12","_inV":"160","_label":"followed_by"},{"weight":167,"_id":"6663","_type":"edge","_outV":"12","_inV":"15","_label":"followed_by"},{"weight":3,"_id":"6664","_type":"edge","_outV":"12","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"6665","_type":"edge","_outV":"12","_inV":"202","_label":"followed_by"},{"weight":1,"_id":"6666","_type":"edge","_outV":"12","_inV":"5","_label":"followed_by"},{"weight":2,"_id":"6667","_type":"edge","_outV":"12","_inV":"9","_label":"followed_by"},{"weight":3,"_id":"6668","_type":"edge","_outV":"12","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6669","_type":"edge","_outV":"12","_inV":"3","_label":"followed_by"},{"weight":2,"_id":"667","_type":"edge","_outV":"23","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6670","_type":"edge","_outV":"12","_inV":"52","_label":"followed_by"},{"weight":1,"_id":"6671","_type":"edge","_outV":"12","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6672","_type":"edge","_outV":"12","_inV":"46","_label":"followed_by"},{"weight":2,"_id":"6673","_type":"edge","_outV":"12","_inV":"123","_label":"followed_by"},{"weight":4,"_id":"6674","_type":"edge","_outV":"12","_inV":"51","_label":"followed_by"},{"weight":3,"_id":"6675","_type":"edge","_outV":"12","_inV":"17","_label":"followed_by"},{"weight":5,"_id":"6676","_type":"edge","_outV":"12","_inV":"56","_label":"followed_by"},{"weight":5,"_id":"6677","_type":"edge","_outV":"12","_inV":"98","_label":"followed_by"},{"weight":4,"_id":"6678","_type":"edge","_outV":"12","_inV":"104","_label":"followed_by"},{"weight":3,"_id":"6679","_type":"edge","_outV":"12","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"668","_type":"edge","_outV":"23","_inV":"116","_label":"followed_by"},{"weight":2,"_id":"6680","_type":"edge","_outV":"12","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"6681","_type":"edge","_outV":"12","_inV":"82","_label":"followed_by"},{"weight":2,"_id":"6682","_type":"edge","_outV":"12","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6683","_type":"edge","_outV":"12","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6684","_type":"edge","_outV":"12","_inV":"48","_label":"followed_by"},{"weight":3,"_id":"6685","_type":"edge","_outV":"12","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"6686","_type":"edge","_outV":"12","_inV":"50","_label":"followed_by"},{"weight":83,"_id":"6687","_type":"edge","_outV":"12","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6688","_type":"edge","_outV":"12","_inV":"18","_label":"followed_by"},{"weight":6,"_id":"6689","_type":"edge","_outV":"12","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"669","_type":"edge","_outV":"23","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6690","_type":"edge","_outV":"12","_inV":"105","_label":"followed_by"},{"weight":14,"_id":"6691","_type":"edge","_outV":"12","_inV":"131","_label":"followed_by"},{"weight":2,"_id":"6692","_type":"edge","_outV":"141","_inV":"3","_label":"followed_by"},{"weight":8,"_id":"6693","_type":"edge","_outV":"141","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6694","_type":"edge","_outV":"141","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6695","_type":"edge","_outV":"141","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6696","_type":"edge","_outV":"141","_inV":"154","_label":"followed_by"},{"weight":2,"_id":"6697","_type":"edge","_outV":"141","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6698","_type":"edge","_outV":"141","_inV":"15","_label":"followed_by"},{"weight":5,"_id":"6699","_type":"edge","_outV":"141","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"67","_type":"edge","_outV":"46","_inV":"61","_label":"followed_by"},{"weight":2,"_id":"670","_type":"edge","_outV":"23","_inV":"188","_label":"followed_by"},{"weight":4,"_id":"6700","_type":"edge","_outV":"141","_inV":"13","_label":"followed_by"},{"weight":7,"_id":"6701","_type":"edge","_outV":"141","_inV":"25","_label":"followed_by"},{"weight":3,"_id":"6702","_type":"edge","_outV":"141","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"6703","_type":"edge","_outV":"141","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6704","_type":"edge","_outV":"141","_inV":"148","_label":"followed_by"},{"weight":2,"_id":"6705","_type":"edge","_outV":"141","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6706","_type":"edge","_outV":"141","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"6707","_type":"edge","_outV":"141","_inV":"67","_label":"followed_by"},{"weight":1,"_id":"6708","_type":"edge","_outV":"141","_inV":"57","_label":"followed_by"},{"weight":2,"_id":"6709","_type":"edge","_outV":"141","_inV":"164","_label":"followed_by"},{"weight":3,"_id":"671","_type":"edge","_outV":"23","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6710","_type":"edge","_outV":"141","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6711","_type":"edge","_outV":"141","_inV":"238","_label":"followed_by"},{"weight":1,"_id":"6712","_type":"edge","_outV":"141","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6713","_type":"edge","_outV":"141","_inV":"41","_label":"followed_by"},{"weight":3,"_id":"6714","_type":"edge","_outV":"53","_inV":"24","_label":"followed_by"},{"weight":6,"_id":"6715","_type":"edge","_outV":"53","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6716","_type":"edge","_outV":"53","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6717","_type":"edge","_outV":"53","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"6718","_type":"edge","_outV":"53","_inV":"25","_label":"followed_by"},{"weight":1,"_id":"6719","_type":"edge","_outV":"53","_inV":"89","_label":"followed_by"},{"weight":1,"_id":"672","_type":"edge","_outV":"23","_inV":"87","_label":"followed_by"},{"weight":2,"_id":"6720","_type":"edge","_outV":"53","_inV":"152","_label":"followed_by"},{"weight":2,"_id":"6721","_type":"edge","_outV":"53","_inV":"122","_label":"followed_by"},{"weight":1,"_id":"6722","_type":"edge","_outV":"53","_inV":"21","_label":"followed_by"},{"weight":6,"_id":"6723","_type":"edge","_outV":"53","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6724","_type":"edge","_outV":"53","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6725","_type":"edge","_outV":"53","_inV":"207","_label":"followed_by"},{"weight":2,"_id":"6726","_type":"edge","_outV":"53","_inV":"218","_label":"followed_by"},{"weight":1,"_id":"6727","_type":"edge","_outV":"53","_inV":"234","_label":"followed_by"},{"weight":4,"_id":"6728","_type":"edge","_outV":"53","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"6729","_type":"edge","_outV":"53","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"673","_type":"edge","_outV":"23","_inV":"30","_label":"followed_by"},{"weight":4,"_id":"6730","_type":"edge","_outV":"53","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"6731","_type":"edge","_outV":"53","_inV":"15","_label":"followed_by"},{"weight":1,"_id":"6732","_type":"edge","_outV":"53","_inV":"59","_label":"followed_by"},{"weight":2,"_id":"6733","_type":"edge","_outV":"53","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6734","_type":"edge","_outV":"53","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6735","_type":"edge","_outV":"53","_inV":"20","_label":"followed_by"},{"weight":1,"_id":"6736","_type":"edge","_outV":"53","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6737","_type":"edge","_outV":"53","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"6738","_type":"edge","_outV":"53","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6739","_type":"edge","_outV":"53","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"674","_type":"edge","_outV":"23","_inV":"24","_label":"followed_by"},{"weight":4,"_id":"6740","_type":"edge","_outV":"53","_inV":"121","_label":"followed_by"},{"weight":12,"_id":"6741","_type":"edge","_outV":"53","_inV":"103","_label":"followed_by"},{"weight":15,"_id":"6742","_type":"edge","_outV":"53","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"6743","_type":"edge","_outV":"53","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6744","_type":"edge","_outV":"53","_inV":"181","_label":"followed_by"},{"weight":3,"_id":"6745","_type":"edge","_outV":"53","_inV":"38","_label":"followed_by"},{"weight":10,"_id":"6746","_type":"edge","_outV":"53","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"6747","_type":"edge","_outV":"53","_inV":"73","_label":"followed_by"},{"weight":4,"_id":"6748","_type":"edge","_outV":"53","_inV":"88","_label":"followed_by"},{"weight":2,"_id":"6749","_type":"edge","_outV":"53","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"675","_type":"edge","_outV":"23","_inV":"175","_label":"followed_by"},{"weight":1,"_id":"6750","_type":"edge","_outV":"53","_inV":"99","_label":"followed_by"},{"weight":4,"_id":"6751","_type":"edge","_outV":"53","_inV":"26","_label":"followed_by"},{"weight":3,"_id":"6752","_type":"edge","_outV":"53","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"6753","_type":"edge","_outV":"53","_inV":"42","_label":"followed_by"},{"weight":6,"_id":"6754","_type":"edge","_outV":"53","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6755","_type":"edge","_outV":"53","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6756","_type":"edge","_outV":"53","_inV":"184","_label":"followed_by"},{"weight":1,"_id":"6757","_type":"edge","_outV":"53","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"6758","_type":"edge","_outV":"53","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6759","_type":"edge","_outV":"53","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"676","_type":"edge","_outV":"23","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6760","_type":"edge","_outV":"53","_inV":"115","_label":"followed_by"},{"weight":1,"_id":"6761","_type":"edge","_outV":"53","_inV":"71","_label":"followed_by"},{"weight":111,"_id":"6762","_type":"edge","_outV":"121","_inV":"184","_label":"followed_by"},{"weight":8,"_id":"6763","_type":"edge","_outV":"39","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"6764","_type":"edge","_outV":"39","_inV":"50","_label":"followed_by"},{"weight":7,"_id":"6765","_type":"edge","_outV":"39","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"6766","_type":"edge","_outV":"39","_inV":"72","_label":"followed_by"},{"weight":2,"_id":"6767","_type":"edge","_outV":"39","_inV":"100","_label":"followed_by"},{"weight":2,"_id":"6768","_type":"edge","_outV":"39","_inV":"21","_label":"followed_by"},{"weight":2,"_id":"6769","_type":"edge","_outV":"39","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"677","_type":"edge","_outV":"23","_inV":"137","_label":"followed_by"},{"weight":1,"_id":"6770","_type":"edge","_outV":"39","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"6771","_type":"edge","_outV":"39","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"6772","_type":"edge","_outV":"39","_inV":"11","_label":"followed_by"},{"weight":1,"_id":"6773","_type":"edge","_outV":"39","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"6774","_type":"edge","_outV":"39","_inV":"51","_label":"followed_by"},{"weight":1,"_id":"6775","_type":"edge","_outV":"39","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6776","_type":"edge","_outV":"39","_inV":"9","_label":"followed_by"},{"weight":1,"_id":"6777","_type":"edge","_outV":"39","_inV":"48","_label":"followed_by"},{"weight":2,"_id":"6778","_type":"edge","_outV":"39","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"6779","_type":"edge","_outV":"39","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"678","_type":"edge","_outV":"23","_inV":"191","_label":"followed_by"},{"weight":1,"_id":"6780","_type":"edge","_outV":"39","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"6781","_type":"edge","_outV":"39","_inV":"82","_label":"followed_by"},{"weight":4,"_id":"6782","_type":"edge","_outV":"39","_inV":"10","_label":"followed_by"},{"weight":5,"_id":"6783","_type":"edge","_outV":"39","_inV":"68","_label":"followed_by"},{"weight":10,"_id":"6784","_type":"edge","_outV":"39","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6785","_type":"edge","_outV":"39","_inV":"112","_label":"followed_by"},{"weight":3,"_id":"6786","_type":"edge","_outV":"39","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6787","_type":"edge","_outV":"39","_inV":"109","_label":"followed_by"},{"weight":2,"_id":"6788","_type":"edge","_outV":"39","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"6789","_type":"edge","_outV":"39","_inV":"99","_label":"followed_by"},{"weight":1,"_id":"679","_type":"edge","_outV":"23","_inV":"192","_label":"followed_by"},{"weight":1,"_id":"6790","_type":"edge","_outV":"39","_inV":"121","_label":"followed_by"},{"weight":2,"_id":"6791","_type":"edge","_outV":"39","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"6792","_type":"edge","_outV":"39","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6793","_type":"edge","_outV":"39","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6794","_type":"edge","_outV":"39","_inV":"227","_label":"followed_by"},{"weight":1,"_id":"6795","_type":"edge","_outV":"39","_inV":"88","_label":"followed_by"},{"weight":3,"_id":"6796","_type":"edge","_outV":"39","_inV":"97","_label":"followed_by"},{"weight":2,"_id":"6797","_type":"edge","_outV":"39","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"6798","_type":"edge","_outV":"39","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6799","_type":"edge","_outV":"39","_inV":"245","_label":"followed_by"},{"weight":7,"_id":"68","_type":"edge","_outV":"46","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"680","_type":"edge","_outV":"23","_inV":"190","_label":"followed_by"},{"weight":2,"_id":"6800","_type":"edge","_outV":"39","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6801","_type":"edge","_outV":"39","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"6802","_type":"edge","_outV":"39","_inV":"71","_label":"followed_by"},{"weight":2,"_id":"6803","_type":"edge","_outV":"39","_inV":"101","_label":"followed_by"},{"weight":2,"_id":"6804","_type":"edge","_outV":"39","_inV":"96","_label":"followed_by"},{"weight":2,"_id":"6805","_type":"edge","_outV":"39","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"6806","_type":"edge","_outV":"39","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"6807","_type":"edge","_outV":"39","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"6808","_type":"edge","_outV":"39","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6809","_type":"edge","_outV":"39","_inV":"221","_label":"followed_by"},{"weight":1,"_id":"681","_type":"edge","_outV":"23","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6810","_type":"edge","_outV":"39","_inV":"105","_label":"followed_by"},{"weight":1,"_id":"6811","_type":"edge","_outV":"39","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6812","_type":"edge","_outV":"39","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6813","_type":"edge","_outV":"39","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"6814","_type":"edge","_outV":"39","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6815","_type":"edge","_outV":"39","_inV":"86","_label":"followed_by"},{"weight":1,"_id":"6816","_type":"edge","_outV":"39","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"6817","_type":"edge","_outV":"39","_inV":"79","_label":"followed_by"},{"weight":3,"_id":"6818","_type":"edge","_outV":"39","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"6819","_type":"edge","_outV":"39","_inV":"43","_label":"followed_by"},{"weight":1,"_id":"682","_type":"edge","_outV":"219","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"6820","_type":"edge","_outV":"39","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"6821","_type":"edge","_outV":"39","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6822","_type":"edge","_outV":"39","_inV":"158","_label":"followed_by"},{"weight":4,"_id":"6823","_type":"edge","_outV":"64","_inV":"210","_label":"followed_by"},{"weight":6,"_id":"6824","_type":"edge","_outV":"64","_inV":"57","_label":"followed_by"},{"weight":5,"_id":"6825","_type":"edge","_outV":"64","_inV":"51","_label":"followed_by"},{"weight":7,"_id":"6826","_type":"edge","_outV":"64","_inV":"99","_label":"followed_by"},{"weight":8,"_id":"6827","_type":"edge","_outV":"64","_inV":"72","_label":"followed_by"},{"weight":4,"_id":"6828","_type":"edge","_outV":"64","_inV":"56","_label":"followed_by"},{"weight":6,"_id":"6829","_type":"edge","_outV":"64","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"683","_type":"edge","_outV":"219","_inV":"220","_label":"followed_by"},{"weight":1,"_id":"6830","_type":"edge","_outV":"64","_inV":"54","_label":"followed_by"},{"weight":7,"_id":"6831","_type":"edge","_outV":"64","_inV":"19","_label":"followed_by"},{"weight":67,"_id":"6832","_type":"edge","_outV":"64","_inV":"59","_label":"followed_by"},{"weight":7,"_id":"6833","_type":"edge","_outV":"64","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"6834","_type":"edge","_outV":"64","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"6835","_type":"edge","_outV":"64","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"6836","_type":"edge","_outV":"64","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"6837","_type":"edge","_outV":"64","_inV":"180","_label":"followed_by"},{"weight":2,"_id":"6838","_type":"edge","_outV":"64","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"6839","_type":"edge","_outV":"64","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"684","_type":"edge","_outV":"157","_inV":"53","_label":"followed_by"},{"weight":3,"_id":"6840","_type":"edge","_outV":"64","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6841","_type":"edge","_outV":"64","_inV":"110","_label":"followed_by"},{"weight":3,"_id":"6842","_type":"edge","_outV":"64","_inV":"80","_label":"followed_by"},{"weight":3,"_id":"6843","_type":"edge","_outV":"64","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"6844","_type":"edge","_outV":"64","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"6845","_type":"edge","_outV":"64","_inV":"68","_label":"followed_by"},{"weight":4,"_id":"6846","_type":"edge","_outV":"64","_inV":"48","_label":"followed_by"},{"weight":7,"_id":"6847","_type":"edge","_outV":"64","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6848","_type":"edge","_outV":"64","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6849","_type":"edge","_outV":"64","_inV":"242","_label":"followed_by"},{"weight":1,"_id":"685","_type":"edge","_outV":"157","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"6850","_type":"edge","_outV":"64","_inV":"112","_label":"followed_by"},{"weight":2,"_id":"6851","_type":"edge","_outV":"64","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6852","_type":"edge","_outV":"64","_inV":"299","_label":"followed_by"},{"weight":1,"_id":"6853","_type":"edge","_outV":"64","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6854","_type":"edge","_outV":"64","_inV":"105","_label":"followed_by"},{"weight":12,"_id":"6855","_type":"edge","_outV":"64","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"6856","_type":"edge","_outV":"64","_inV":"45","_label":"followed_by"},{"weight":1,"_id":"6857","_type":"edge","_outV":"64","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6858","_type":"edge","_outV":"64","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6859","_type":"edge","_outV":"64","_inV":"10","_label":"followed_by"},{"weight":3,"_id":"686","_type":"edge","_outV":"157","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6860","_type":"edge","_outV":"64","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6861","_type":"edge","_outV":"64","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6862","_type":"edge","_outV":"64","_inV":"223","_label":"followed_by"},{"weight":1,"_id":"6863","_type":"edge","_outV":"64","_inV":"75","_label":"followed_by"},{"weight":3,"_id":"6864","_type":"edge","_outV":"64","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"6865","_type":"edge","_outV":"64","_inV":"171","_label":"followed_by"},{"weight":1,"_id":"6866","_type":"edge","_outV":"64","_inV":"46","_label":"followed_by"},{"weight":6,"_id":"6867","_type":"edge","_outV":"64","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6868","_type":"edge","_outV":"64","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6869","_type":"edge","_outV":"64","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"687","_type":"edge","_outV":"157","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"6870","_type":"edge","_outV":"64","_inV":"104","_label":"followed_by"},{"weight":2,"_id":"6871","_type":"edge","_outV":"64","_inV":"31","_label":"followed_by"},{"weight":1,"_id":"6872","_type":"edge","_outV":"64","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6873","_type":"edge","_outV":"64","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"6874","_type":"edge","_outV":"64","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6875","_type":"edge","_outV":"64","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6876","_type":"edge","_outV":"64","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"6877","_type":"edge","_outV":"64","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6878","_type":"edge","_outV":"64","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"6879","_type":"edge","_outV":"64","_inV":"191","_label":"followed_by"},{"weight":1,"_id":"688","_type":"edge","_outV":"157","_inV":"24","_label":"followed_by"},{"weight":1,"_id":"6880","_type":"edge","_outV":"64","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6881","_type":"edge","_outV":"64","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6882","_type":"edge","_outV":"64","_inV":"190","_label":"followed_by"},{"weight":1,"_id":"6883","_type":"edge","_outV":"64","_inV":"272","_label":"followed_by"},{"weight":1,"_id":"6884","_type":"edge","_outV":"93","_inV":"124","_label":"followed_by"},{"weight":2,"_id":"6885","_type":"edge","_outV":"93","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6886","_type":"edge","_outV":"93","_inV":"90","_label":"followed_by"},{"weight":1,"_id":"6887","_type":"edge","_outV":"93","_inV":"215","_label":"followed_by"},{"weight":1,"_id":"6888","_type":"edge","_outV":"93","_inV":"76","_label":"followed_by"},{"weight":1,"_id":"6889","_type":"edge","_outV":"93","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"689","_type":"edge","_outV":"157","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6890","_type":"edge","_outV":"93","_inV":"259","_label":"followed_by"},{"weight":1,"_id":"6891","_type":"edge","_outV":"93","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"6892","_type":"edge","_outV":"93","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6893","_type":"edge","_outV":"93","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"6894","_type":"edge","_outV":"93","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6895","_type":"edge","_outV":"93","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6896","_type":"edge","_outV":"93","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6897","_type":"edge","_outV":"147","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6898","_type":"edge","_outV":"147","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"6899","_type":"edge","_outV":"147","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"69","_type":"edge","_outV":"46","_inV":"63","_label":"followed_by"},{"weight":1,"_id":"690","_type":"edge","_outV":"157","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"6900","_type":"edge","_outV":"133","_inV":"114","_label":"followed_by"},{"weight":1,"_id":"6901","_type":"edge","_outV":"133","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6902","_type":"edge","_outV":"133","_inV":"25","_label":"followed_by"},{"weight":2,"_id":"6903","_type":"edge","_outV":"133","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6904","_type":"edge","_outV":"133","_inV":"78","_label":"followed_by"},{"weight":1,"_id":"6905","_type":"edge","_outV":"133","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"6906","_type":"edge","_outV":"133","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"6907","_type":"edge","_outV":"133","_inV":"162","_label":"followed_by"},{"weight":2,"_id":"6908","_type":"edge","_outV":"133","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"6909","_type":"edge","_outV":"133","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"691","_type":"edge","_outV":"157","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6910","_type":"edge","_outV":"133","_inV":"164","_label":"followed_by"},{"weight":1,"_id":"6911","_type":"edge","_outV":"133","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"6912","_type":"edge","_outV":"133","_inV":"124","_label":"followed_by"},{"weight":1,"_id":"6913","_type":"edge","_outV":"133","_inV":"62","_label":"followed_by"},{"weight":2,"_id":"6914","_type":"edge","_outV":"133","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"6915","_type":"edge","_outV":"133","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"6916","_type":"edge","_outV":"133","_inV":"38","_label":"followed_by"},{"weight":3,"_id":"6917","_type":"edge","_outV":"133","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"6918","_type":"edge","_outV":"133","_inV":"61","_label":"followed_by"},{"weight":1,"_id":"6919","_type":"edge","_outV":"133","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"692","_type":"edge","_outV":"157","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"6920","_type":"edge","_outV":"133","_inV":"213","_label":"followed_by"},{"weight":1,"_id":"6921","_type":"edge","_outV":"133","_inV":"335","_label":"followed_by"},{"weight":1,"_id":"6922","_type":"edge","_outV":"133","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6923","_type":"edge","_outV":"270","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"6924","_type":"edge","_outV":"270","_inV":"284","_label":"followed_by"},{"weight":1,"_id":"6925","_type":"edge","_outV":"245","_inV":"98","_label":"followed_by"},{"weight":7,"_id":"6926","_type":"edge","_outV":"245","_inV":"126","_label":"followed_by"},{"weight":1,"_id":"6927","_type":"edge","_outV":"245","_inV":"108","_label":"followed_by"},{"weight":2,"_id":"6928","_type":"edge","_outV":"84","_inV":"289","_label":"followed_by"},{"weight":3,"_id":"6929","_type":"edge","_outV":"84","_inV":"112","_label":"followed_by"},{"weight":1,"_id":"693","_type":"edge","_outV":"157","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"6930","_type":"edge","_outV":"84","_inV":"96","_label":"followed_by"},{"weight":7,"_id":"6931","_type":"edge","_outV":"84","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6932","_type":"edge","_outV":"84","_inV":"125","_label":"followed_by"},{"weight":14,"_id":"6933","_type":"edge","_outV":"84","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"6934","_type":"edge","_outV":"84","_inV":"153","_label":"followed_by"},{"weight":5,"_id":"6935","_type":"edge","_outV":"84","_inV":"12","_label":"followed_by"},{"weight":3,"_id":"6936","_type":"edge","_outV":"84","_inV":"208","_label":"followed_by"},{"weight":1,"_id":"6937","_type":"edge","_outV":"84","_inV":"120","_label":"followed_by"},{"weight":1,"_id":"6938","_type":"edge","_outV":"84","_inV":"70","_label":"followed_by"},{"weight":3,"_id":"6939","_type":"edge","_outV":"84","_inV":"109","_label":"followed_by"},{"weight":3,"_id":"694","_type":"edge","_outV":"157","_inV":"90","_label":"followed_by"},{"weight":5,"_id":"6940","_type":"edge","_outV":"84","_inV":"4","_label":"followed_by"},{"weight":21,"_id":"6941","_type":"edge","_outV":"84","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"6942","_type":"edge","_outV":"84","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6943","_type":"edge","_outV":"84","_inV":"123","_label":"followed_by"},{"weight":3,"_id":"6944","_type":"edge","_outV":"84","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"6945","_type":"edge","_outV":"84","_inV":"114","_label":"followed_by"},{"weight":2,"_id":"6946","_type":"edge","_outV":"84","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"6947","_type":"edge","_outV":"84","_inV":"59","_label":"followed_by"},{"weight":4,"_id":"6948","_type":"edge","_outV":"84","_inV":"26","_label":"followed_by"},{"weight":5,"_id":"6949","_type":"edge","_outV":"84","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"695","_type":"edge","_outV":"157","_inV":"78","_label":"followed_by"},{"weight":4,"_id":"6950","_type":"edge","_outV":"84","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6951","_type":"edge","_outV":"84","_inV":"65","_label":"followed_by"},{"weight":7,"_id":"6952","_type":"edge","_outV":"84","_inV":"181","_label":"followed_by"},{"weight":15,"_id":"6953","_type":"edge","_outV":"84","_inV":"88","_label":"followed_by"},{"weight":4,"_id":"6954","_type":"edge","_outV":"84","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6955","_type":"edge","_outV":"84","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"6956","_type":"edge","_outV":"84","_inV":"10","_label":"followed_by"},{"weight":6,"_id":"6957","_type":"edge","_outV":"84","_inV":"31","_label":"followed_by"},{"weight":2,"_id":"6958","_type":"edge","_outV":"84","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"6959","_type":"edge","_outV":"84","_inV":"97","_label":"followed_by"},{"weight":1,"_id":"696","_type":"edge","_outV":"157","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"6960","_type":"edge","_outV":"84","_inV":"106","_label":"followed_by"},{"weight":3,"_id":"6961","_type":"edge","_outV":"84","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"6962","_type":"edge","_outV":"84","_inV":"56","_label":"followed_by"},{"weight":2,"_id":"6963","_type":"edge","_outV":"84","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"6964","_type":"edge","_outV":"84","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"6965","_type":"edge","_outV":"84","_inV":"312","_label":"followed_by"},{"weight":1,"_id":"6966","_type":"edge","_outV":"84","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"6967","_type":"edge","_outV":"84","_inV":"36","_label":"followed_by"},{"weight":8,"_id":"6968","_type":"edge","_outV":"84","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"6969","_type":"edge","_outV":"84","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"697","_type":"edge","_outV":"157","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"6970","_type":"edge","_outV":"84","_inV":"81","_label":"followed_by"},{"weight":1,"_id":"6971","_type":"edge","_outV":"84","_inV":"79","_label":"followed_by"},{"weight":1,"_id":"6972","_type":"edge","_outV":"84","_inV":"64","_label":"followed_by"},{"weight":2,"_id":"6973","_type":"edge","_outV":"84","_inV":"239","_label":"followed_by"},{"weight":1,"_id":"6974","_type":"edge","_outV":"84","_inV":"89","_label":"followed_by"},{"weight":4,"_id":"6975","_type":"edge","_outV":"84","_inV":"40","_label":"followed_by"},{"weight":1,"_id":"6976","_type":"edge","_outV":"84","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"6977","_type":"edge","_outV":"84","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"6978","_type":"edge","_outV":"175","_inV":"19","_label":"followed_by"},{"weight":7,"_id":"6979","_type":"edge","_outV":"175","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"698","_type":"edge","_outV":"157","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"6980","_type":"edge","_outV":"175","_inV":"62","_label":"followed_by"},{"weight":5,"_id":"6981","_type":"edge","_outV":"175","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"6982","_type":"edge","_outV":"175","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"6983","_type":"edge","_outV":"175","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"6984","_type":"edge","_outV":"175","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"6985","_type":"edge","_outV":"175","_inV":"12","_label":"followed_by"},{"weight":2,"_id":"6986","_type":"edge","_outV":"175","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"6987","_type":"edge","_outV":"175","_inV":"113","_label":"followed_by"},{"weight":3,"_id":"6988","_type":"edge","_outV":"175","_inV":"139","_label":"followed_by"},{"weight":1,"_id":"6989","_type":"edge","_outV":"175","_inV":"319","_label":"followed_by"},{"weight":10,"_id":"699","_type":"edge","_outV":"206","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"6990","_type":"edge","_outV":"175","_inV":"34","_label":"followed_by"},{"weight":1,"_id":"6991","_type":"edge","_outV":"175","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"6992","_type":"edge","_outV":"175","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"6993","_type":"edge","_outV":"175","_inV":"14","_label":"followed_by"},{"weight":1,"_id":"6994","_type":"edge","_outV":"197","_inV":"198","_label":"followed_by"},{"weight":2,"_id":"6995","_type":"edge","_outV":"197","_inV":"129","_label":"followed_by"},{"weight":4,"_id":"6996","_type":"edge","_outV":"197","_inV":"273","_label":"followed_by"},{"weight":3,"_id":"6997","_type":"edge","_outV":"197","_inV":"170","_label":"followed_by"},{"weight":2,"_id":"6998","_type":"edge","_outV":"197","_inV":"199","_label":"followed_by"},{"weight":4,"_id":"6999","_type":"edge","_outV":"197","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"7","_type":"edge","_outV":"9","_inV":"11","_label":"followed_by"},{"weight":3,"_id":"70","_type":"edge","_outV":"46","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"700","_type":"edge","_outV":"206","_inV":"5","_label":"followed_by"},{"weight":3,"_id":"7000","_type":"edge","_outV":"197","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"7001","_type":"edge","_outV":"197","_inV":"224","_label":"followed_by"},{"weight":1,"_id":"7002","_type":"edge","_outV":"197","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"7003","_type":"edge","_outV":"197","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"7004","_type":"edge","_outV":"197","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"7005","_type":"edge","_outV":"197","_inV":"65","_label":"followed_by"},{"weight":11,"_id":"7006","_type":"edge","_outV":"89","_inV":"127","_label":"followed_by"},{"weight":2,"_id":"7007","_type":"edge","_outV":"89","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"7008","_type":"edge","_outV":"89","_inV":"16","_label":"followed_by"},{"weight":1,"_id":"7009","_type":"edge","_outV":"89","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"701","_type":"edge","_outV":"206","_inV":"74","_label":"followed_by"},{"weight":3,"_id":"7010","_type":"edge","_outV":"89","_inV":"94","_label":"followed_by"},{"weight":2,"_id":"7011","_type":"edge","_outV":"89","_inV":"3","_label":"followed_by"},{"weight":7,"_id":"7012","_type":"edge","_outV":"89","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"7013","_type":"edge","_outV":"89","_inV":"12","_label":"followed_by"},{"weight":28,"_id":"7014","_type":"edge","_outV":"89","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"7015","_type":"edge","_outV":"89","_inV":"141","_label":"followed_by"},{"weight":3,"_id":"7016","_type":"edge","_outV":"89","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"7017","_type":"edge","_outV":"89","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"7018","_type":"edge","_outV":"89","_inV":"160","_label":"followed_by"},{"weight":1,"_id":"7019","_type":"edge","_outV":"89","_inV":"39","_label":"followed_by"},{"weight":2,"_id":"702","_type":"edge","_outV":"206","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"7020","_type":"edge","_outV":"89","_inV":"296","_label":"followed_by"},{"weight":9,"_id":"7021","_type":"edge","_outV":"89","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"7022","_type":"edge","_outV":"89","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"7023","_type":"edge","_outV":"89","_inV":"206","_label":"followed_by"},{"weight":1,"_id":"7024","_type":"edge","_outV":"89","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"7025","_type":"edge","_outV":"89","_inV":"129","_label":"followed_by"},{"weight":1,"_id":"7026","_type":"edge","_outV":"89","_inV":"149","_label":"followed_by"},{"weight":1,"_id":"7027","_type":"edge","_outV":"89","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"7028","_type":"edge","_outV":"89","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"7029","_type":"edge","_outV":"89","_inV":"4","_label":"followed_by"},{"weight":2,"_id":"703","_type":"edge","_outV":"206","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"7030","_type":"edge","_outV":"89","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"7031","_type":"edge","_outV":"89","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"7032","_type":"edge","_outV":"89","_inV":"140","_label":"followed_by"},{"weight":2,"_id":"7033","_type":"edge","_outV":"89","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"7034","_type":"edge","_outV":"89","_inV":"91","_label":"followed_by"},{"weight":2,"_id":"7035","_type":"edge","_outV":"89","_inV":"70","_label":"followed_by"},{"weight":2,"_id":"7036","_type":"edge","_outV":"89","_inV":"134","_label":"followed_by"},{"weight":2,"_id":"7037","_type":"edge","_outV":"89","_inV":"201","_label":"followed_by"},{"weight":1,"_id":"7038","_type":"edge","_outV":"89","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"7039","_type":"edge","_outV":"89","_inV":"165","_label":"followed_by"},{"weight":1,"_id":"704","_type":"edge","_outV":"206","_inV":"122","_label":"followed_by"},{"weight":2,"_id":"7040","_type":"edge","_outV":"269","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"7041","_type":"edge","_outV":"269","_inV":"297","_label":"followed_by"},{"weight":1,"_id":"7042","_type":"edge","_outV":"269","_inV":"330","_label":"followed_by"},{"weight":1,"_id":"7043","_type":"edge","_outV":"269","_inV":"331","_label":"followed_by"},{"weight":1,"_id":"7044","_type":"edge","_outV":"269","_inV":"270","_label":"followed_by"},{"weight":1,"_id":"7045","_type":"edge","_outV":"269","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"7046","_type":"edge","_outV":"269","_inV":"75","_label":"followed_by"},{"_id":"7047","_type":"edge","_outV":"65","_inV":"339","_label":"written_by"},{"_id":"7048","_type":"edge","_outV":"65","_inV":"340","_label":"sung_by"},{"_id":"7049","_type":"edge","_outV":"341","_inV":"342","_label":"written_by"},{"weight":1,"_id":"705","_type":"edge","_outV":"206","_inV":"24","_label":"followed_by"},{"_id":"7050","_type":"edge","_outV":"341","_inV":"342","_label":"sung_by"},{"_id":"7051","_type":"edge","_outV":"343","_inV":"344","_label":"written_by"},{"_id":"7052","_type":"edge","_outV":"343","_inV":"345","_label":"sung_by"},{"_id":"7053","_type":"edge","_outV":"73","_inV":"339","_label":"written_by"},{"_id":"7054","_type":"edge","_outV":"73","_inV":"340","_label":"sung_by"},{"_id":"7055","_type":"edge","_outV":"346","_inV":"339","_label":"written_by"},{"_id":"7056","_type":"edge","_outV":"346","_inV":"347","_label":"sung_by"},{"_id":"7057","_type":"edge","_outV":"140","_inV":"339","_label":"written_by"},{"_id":"7058","_type":"edge","_outV":"140","_inV":"340","_label":"sung_by"},{"_id":"7059","_type":"edge","_outV":"348","_inV":"342","_label":"written_by"},{"weight":2,"_id":"706","_type":"edge","_outV":"206","_inV":"3","_label":"followed_by"},{"_id":"7060","_type":"edge","_outV":"348","_inV":"342","_label":"sung_by"},{"_id":"7061","_type":"edge","_outV":"232","_inV":"339","_label":"written_by"},{"_id":"7062","_type":"edge","_outV":"232","_inV":"340","_label":"sung_by"},{"_id":"7063","_type":"edge","_outV":"4","_inV":"339","_label":"written_by"},{"_id":"7064","_type":"edge","_outV":"4","_inV":"340","_label":"sung_by"},{"_id":"7065","_type":"edge","_outV":"150","_inV":"339","_label":"written_by"},{"_id":"7066","_type":"edge","_outV":"150","_inV":"340","_label":"sung_by"},{"_id":"7067","_type":"edge","_outV":"349","_inV":"339","_label":"written_by"},{"_id":"7068","_type":"edge","_outV":"349","_inV":"340","_label":"sung_by"},{"_id":"7069","_type":"edge","_outV":"125","_inV":"339","_label":"written_by"},{"weight":1,"_id":"707","_type":"edge","_outV":"206","_inV":"27","_label":"followed_by"},{"_id":"7070","_type":"edge","_outV":"125","_inV":"340","_label":"sung_by"},{"_id":"7071","_type":"edge","_outV":"11","_inV":"350","_label":"written_by"},{"_id":"7072","_type":"edge","_outV":"11","_inV":"351","_label":"sung_by"},{"_id":"7073","_type":"edge","_outV":"167","_inV":"350","_label":"written_by"},{"_id":"7074","_type":"edge","_outV":"167","_inV":"352","_label":"sung_by"},{"_id":"7075","_type":"edge","_outV":"159","_inV":"339","_label":"written_by"},{"_id":"7076","_type":"edge","_outV":"159","_inV":"340","_label":"sung_by"},{"_id":"7077","_type":"edge","_outV":"353","_inV":"351","_label":"written_by"},{"_id":"7078","_type":"edge","_outV":"353","_inV":"351","_label":"sung_by"},{"_id":"7079","_type":"edge","_outV":"46","_inV":"339","_label":"written_by"},{"weight":1,"_id":"708","_type":"edge","_outV":"206","_inV":"22","_label":"followed_by"},{"_id":"7080","_type":"edge","_outV":"46","_inV":"354","_label":"sung_by"},{"_id":"7081","_type":"edge","_outV":"160","_inV":"339","_label":"written_by"},{"_id":"7082","_type":"edge","_outV":"160","_inV":"340","_label":"sung_by"},{"_id":"7083","_type":"edge","_outV":"100","_inV":"339","_label":"written_by"},{"_id":"7084","_type":"edge","_outV":"100","_inV":"340","_label":"sung_by"},{"_id":"7085","_type":"edge","_outV":"168","_inV":"339","_label":"written_by"},{"_id":"7086","_type":"edge","_outV":"168","_inV":"340","_label":"sung_by"},{"_id":"7087","_type":"edge","_outV":"355","_inV":"340","_label":"written_by"},{"_id":"7088","_type":"edge","_outV":"355","_inV":"342","_label":"sung_by"},{"_id":"7089","_type":"edge","_outV":"48","_inV":"339","_label":"written_by"},{"weight":1,"_id":"709","_type":"edge","_outV":"221","_inV":"53","_label":"followed_by"},{"_id":"7090","_type":"edge","_outV":"48","_inV":"340","_label":"sung_by"},{"_id":"7091","_type":"edge","_outV":"122","_inV":"339","_label":"written_by"},{"_id":"7092","_type":"edge","_outV":"122","_inV":"340","_label":"sung_by"},{"_id":"7093","_type":"edge","_outV":"68","_inV":"350","_label":"written_by"},{"_id":"7094","_type":"edge","_outV":"68","_inV":"351","_label":"sung_by"},{"_id":"7095","_type":"edge","_outV":"145","_inV":"342","_label":"written_by"},{"_id":"7096","_type":"edge","_outV":"145","_inV":"342","_label":"sung_by"},{"_id":"7097","_type":"edge","_outV":"119","_inV":"354","_label":"written_by"},{"_id":"7098","_type":"edge","_outV":"119","_inV":"354","_label":"sung_by"},{"_id":"7099","_type":"edge","_outV":"19","_inV":"339","_label":"written_by"},{"weight":1,"_id":"71","_type":"edge","_outV":"46","_inV":"65","_label":"followed_by"},{"weight":1,"_id":"710","_type":"edge","_outV":"221","_inV":"117","_label":"followed_by"},{"_id":"7100","_type":"edge","_outV":"19","_inV":"340","_label":"sung_by"},{"_id":"7101","_type":"edge","_outV":"129","_inV":"339","_label":"written_by"},{"_id":"7102","_type":"edge","_outV":"129","_inV":"340","_label":"sung_by"},{"_id":"7103","_type":"edge","_outV":"234","_inV":"356","_label":"written_by"},{"_id":"7104","_type":"edge","_outV":"234","_inV":"356","_label":"sung_by"},{"_id":"7105","_type":"edge","_outV":"357","_inV":"339","_label":"written_by"},{"_id":"7106","_type":"edge","_outV":"357","_inV":"354","_label":"sung_by"},{"_id":"7107","_type":"edge","_outV":"141","_inV":"339","_label":"written_by"},{"_id":"7108","_type":"edge","_outV":"141","_inV":"340","_label":"sung_by"},{"_id":"7109","_type":"edge","_outV":"358","_inV":"339","_label":"written_by"},{"weight":1,"_id":"711","_type":"edge","_outV":"80","_inV":"25","_label":"followed_by"},{"_id":"7110","_type":"edge","_outV":"358","_inV":"359","_label":"sung_by"},{"_id":"7111","_type":"edge","_outV":"360","_inV":"339","_label":"written_by"},{"_id":"7112","_type":"edge","_outV":"360","_inV":"340","_label":"sung_by"},{"_id":"7113","_type":"edge","_outV":"60","_inV":"339","_label":"written_by"},{"_id":"7114","_type":"edge","_outV":"60","_inV":"340","_label":"sung_by"},{"_id":"7115","_type":"edge","_outV":"361","_inV":"340","_label":"written_by"},{"_id":"7116","_type":"edge","_outV":"361","_inV":"340","_label":"sung_by"},{"_id":"7117","_type":"edge","_outV":"278","_inV":"340","_label":"written_by"},{"_id":"7118","_type":"edge","_outV":"278","_inV":"340","_label":"sung_by"},{"_id":"7119","_type":"edge","_outV":"39","_inV":"339","_label":"written_by"},{"weight":1,"_id":"712","_type":"edge","_outV":"80","_inV":"120","_label":"followed_by"},{"_id":"7120","_type":"edge","_outV":"39","_inV":"362","_label":"sung_by"},{"_id":"7121","_type":"edge","_outV":"89","_inV":"339","_label":"written_by"},{"_id":"7122","_type":"edge","_outV":"89","_inV":"340","_label":"sung_by"},{"_id":"7123","_type":"edge","_outV":"363","_inV":"339","_label":"written_by"},{"_id":"7124","_type":"edge","_outV":"363","_inV":"340","_label":"sung_by"},{"_id":"7125","_type":"edge","_outV":"57","_inV":"339","_label":"written_by"},{"_id":"7126","_type":"edge","_outV":"57","_inV":"340","_label":"sung_by"},{"_id":"7127","_type":"edge","_outV":"80","_inV":"339","_label":"written_by"},{"_id":"7128","_type":"edge","_outV":"80","_inV":"340","_label":"sung_by"},{"_id":"7129","_type":"edge","_outV":"364","_inV":"339","_label":"written_by"},{"weight":1,"_id":"713","_type":"edge","_outV":"80","_inV":"21","_label":"followed_by"},{"_id":"7130","_type":"edge","_outV":"364","_inV":"340","_label":"sung_by"},{"_id":"7131","_type":"edge","_outV":"183","_inV":"352","_label":"written_by"},{"_id":"7132","_type":"edge","_outV":"183","_inV":"352","_label":"sung_by"},{"_id":"7133","_type":"edge","_outV":"365","_inV":"342","_label":"written_by"},{"_id":"7134","_type":"edge","_outV":"365","_inV":"342","_label":"sung_by"},{"_id":"7135","_type":"edge","_outV":"108","_inV":"339","_label":"written_by"},{"_id":"7136","_type":"edge","_outV":"108","_inV":"340","_label":"sung_by"},{"_id":"7137","_type":"edge","_outV":"96","_inV":"342","_label":"written_by"},{"_id":"7138","_type":"edge","_outV":"96","_inV":"342","_label":"sung_by"},{"_id":"7139","_type":"edge","_outV":"366","_inV":"350","_label":"written_by"},{"weight":5,"_id":"714","_type":"edge","_outV":"80","_inV":"11","_label":"followed_by"},{"_id":"7140","_type":"edge","_outV":"366","_inV":"351","_label":"sung_by"},{"_id":"7141","_type":"edge","_outV":"158","_inV":"367","_label":"written_by"},{"_id":"7142","_type":"edge","_outV":"158","_inV":"368","_label":"sung_by"},{"_id":"7143","_type":"edge","_outV":"189","_inV":"350","_label":"written_by"},{"_id":"7144","_type":"edge","_outV":"189","_inV":"352","_label":"sung_by"},{"_id":"7145","_type":"edge","_outV":"369","_inV":"339","_label":"written_by"},{"_id":"7146","_type":"edge","_outV":"369","_inV":"339","_label":"sung_by"},{"_id":"7147","_type":"edge","_outV":"281","_inV":"339","_label":"written_by"},{"_id":"7148","_type":"edge","_outV":"281","_inV":"354","_label":"sung_by"},{"_id":"7149","_type":"edge","_outV":"370","_inV":"356","_label":"written_by"},{"weight":1,"_id":"715","_type":"edge","_outV":"80","_inV":"218","_label":"followed_by"},{"_id":"7150","_type":"edge","_outV":"370","_inV":"356","_label":"sung_by"},{"_id":"7151","_type":"edge","_outV":"371","_inV":"354","_label":"written_by"},{"_id":"7152","_type":"edge","_outV":"371","_inV":"354","_label":"sung_by"},{"_id":"7153","_type":"edge","_outV":"85","_inV":"350","_label":"written_by"},{"_id":"7154","_type":"edge","_outV":"85","_inV":"351","_label":"sung_by"},{"_id":"7155","_type":"edge","_outV":"43","_inV":"372","_label":"written_by"},{"_id":"7156","_type":"edge","_outV":"43","_inV":"373","_label":"sung_by"},{"_id":"7157","_type":"edge","_outV":"83","_inV":"339","_label":"written_by"},{"_id":"7158","_type":"edge","_outV":"83","_inV":"340","_label":"sung_by"},{"_id":"7159","_type":"edge","_outV":"106","_inV":"352","_label":"written_by"},{"weight":10,"_id":"716","_type":"edge","_outV":"80","_inV":"14","_label":"followed_by"},{"_id":"7160","_type":"edge","_outV":"106","_inV":"352","_label":"sung_by"},{"_id":"7161","_type":"edge","_outV":"38","_inV":"350","_label":"written_by"},{"_id":"7162","_type":"edge","_outV":"38","_inV":"351","_label":"sung_by"},{"_id":"7163","_type":"edge","_outV":"171","_inV":"339","_label":"written_by"},{"_id":"7164","_type":"edge","_outV":"171","_inV":"347","_label":"sung_by"},{"_id":"7165","_type":"edge","_outV":"81","_inV":"339","_label":"written_by"},{"_id":"7166","_type":"edge","_outV":"81","_inV":"340","_label":"sung_by"},{"_id":"7167","_type":"edge","_outV":"374","_inV":"339","_label":"written_by"},{"_id":"7168","_type":"edge","_outV":"374","_inV":"351","_label":"sung_by"},{"_id":"7169","_type":"edge","_outV":"154","_inV":"339","_label":"written_by"},{"weight":9,"_id":"717","_type":"edge","_outV":"80","_inV":"10","_label":"followed_by"},{"_id":"7170","_type":"edge","_outV":"154","_inV":"375","_label":"sung_by"},{"_id":"7171","_type":"edge","_outV":"104","_inV":"339","_label":"written_by"},{"_id":"7172","_type":"edge","_outV":"104","_inV":"376","_label":"sung_by"},{"_id":"7173","_type":"edge","_outV":"208","_inV":"377","_label":"written_by"},{"_id":"7174","_type":"edge","_outV":"208","_inV":"377","_label":"sung_by"},{"_id":"7175","_type":"edge","_outV":"221","_inV":"350","_label":"written_by"},{"_id":"7176","_type":"edge","_outV":"221","_inV":"352","_label":"sung_by"},{"_id":"7177","_type":"edge","_outV":"378","_inV":"342","_label":"written_by"},{"_id":"7178","_type":"edge","_outV":"378","_inV":"342","_label":"sung_by"},{"_id":"7179","_type":"edge","_outV":"379","_inV":"339","_label":"written_by"},{"weight":2,"_id":"718","_type":"edge","_outV":"80","_inV":"20","_label":"followed_by"},{"_id":"7180","_type":"edge","_outV":"379","_inV":"359","_label":"sung_by"},{"_id":"7181","_type":"edge","_outV":"49","_inV":"339","_label":"written_by"},{"_id":"7182","_type":"edge","_outV":"49","_inV":"340","_label":"sung_by"},{"_id":"7183","_type":"edge","_outV":"209","_inV":"380","_label":"written_by"},{"_id":"7184","_type":"edge","_outV":"209","_inV":"351","_label":"sung_by"},{"_id":"7185","_type":"edge","_outV":"64","_inV":"350","_label":"written_by"},{"_id":"7186","_type":"edge","_outV":"64","_inV":"381","_label":"sung_by"},{"_id":"7187","_type":"edge","_outV":"215","_inV":"339","_label":"written_by"},{"_id":"7188","_type":"edge","_outV":"215","_inV":"340","_label":"sung_by"},{"_id":"7189","_type":"edge","_outV":"9","_inV":"339","_label":"written_by"},{"weight":1,"_id":"719","_type":"edge","_outV":"80","_inV":"153","_label":"followed_by"},{"_id":"7190","_type":"edge","_outV":"9","_inV":"340","_label":"sung_by"},{"_id":"7191","_type":"edge","_outV":"63","_inV":"339","_label":"written_by"},{"_id":"7192","_type":"edge","_outV":"63","_inV":"340","_label":"sung_by"},{"_id":"7193","_type":"edge","_outV":"382","_inV":"339","_label":"written_by"},{"_id":"7194","_type":"edge","_outV":"382","_inV":"351","_label":"sung_by"},{"_id":"7195","_type":"edge","_outV":"70","_inV":"350","_label":"written_by"},{"_id":"7196","_type":"edge","_outV":"70","_inV":"351","_label":"sung_by"},{"_id":"7197","_type":"edge","_outV":"231","_inV":"350","_label":"written_by"},{"_id":"7198","_type":"edge","_outV":"231","_inV":"352","_label":"sung_by"},{"_id":"7199","_type":"edge","_outV":"174","_inV":"383","_label":"written_by"},{"weight":1,"_id":"72","_type":"edge","_outV":"46","_inV":"66","_label":"followed_by"},{"weight":2,"_id":"720","_type":"edge","_outV":"80","_inV":"22","_label":"followed_by"},{"_id":"7200","_type":"edge","_outV":"174","_inV":"354","_label":"sung_by"},{"_id":"7201","_type":"edge","_outV":"327","_inV":"339","_label":"written_by"},{"_id":"7202","_type":"edge","_outV":"327","_inV":"340","_label":"sung_by"},{"_id":"7203","_type":"edge","_outV":"98","_inV":"339","_label":"written_by"},{"_id":"7204","_type":"edge","_outV":"98","_inV":"339","_label":"sung_by"},{"_id":"7205","_type":"edge","_outV":"123","_inV":"384","_label":"written_by"},{"_id":"7206","_type":"edge","_outV":"123","_inV":"342","_label":"sung_by"},{"_id":"7207","_type":"edge","_outV":"50","_inV":"339","_label":"written_by"},{"_id":"7208","_type":"edge","_outV":"50","_inV":"351","_label":"sung_by"},{"_id":"7209","_type":"edge","_outV":"118","_inV":"350","_label":"written_by"},{"weight":1,"_id":"721","_type":"edge","_outV":"80","_inV":"13","_label":"followed_by"},{"_id":"7210","_type":"edge","_outV":"118","_inV":"352","_label":"sung_by"},{"_id":"7211","_type":"edge","_outV":"385","_inV":"342","_label":"written_by"},{"_id":"7212","_type":"edge","_outV":"385","_inV":"342","_label":"sung_by"},{"_id":"7213","_type":"edge","_outV":"386","_inV":"339","_label":"written_by"},{"_id":"7214","_type":"edge","_outV":"386","_inV":"340","_label":"sung_by"},{"_id":"7215","_type":"edge","_outV":"387","_inV":"384","_label":"written_by"},{"_id":"7216","_type":"edge","_outV":"387","_inV":"388","_label":"sung_by"},{"_id":"7217","_type":"edge","_outV":"389","_inV":"339","_label":"written_by"},{"_id":"7218","_type":"edge","_outV":"389","_inV":"340","_label":"sung_by"},{"_id":"7219","_type":"edge","_outV":"121","_inV":"350","_label":"written_by"},{"weight":1,"_id":"722","_type":"edge","_outV":"80","_inV":"3","_label":"followed_by"},{"_id":"7220","_type":"edge","_outV":"121","_inV":"351","_label":"sung_by"},{"_id":"7221","_type":"edge","_outV":"390","_inV":"339","_label":"written_by"},{"_id":"7222","_type":"edge","_outV":"390","_inV":"340","_label":"sung_by"},{"_id":"7223","_type":"edge","_outV":"195","_inV":"339","_label":"written_by"},{"_id":"7224","_type":"edge","_outV":"195","_inV":"391","_label":"sung_by"},{"_id":"7225","_type":"edge","_outV":"101","_inV":"350","_label":"written_by"},{"_id":"7226","_type":"edge","_outV":"101","_inV":"351","_label":"sung_by"},{"_id":"7227","_type":"edge","_outV":"236","_inV":"339","_label":"written_by"},{"_id":"7228","_type":"edge","_outV":"236","_inV":"340","_label":"sung_by"},{"_id":"7229","_type":"edge","_outV":"392","_inV":"351","_label":"written_by"},{"weight":18,"_id":"723","_type":"edge","_outV":"80","_inV":"68","_label":"followed_by"},{"_id":"7230","_type":"edge","_outV":"392","_inV":"351","_label":"sung_by"},{"_id":"7231","_type":"edge","_outV":"14","_inV":"350","_label":"written_by"},{"_id":"7232","_type":"edge","_outV":"14","_inV":"351","_label":"sung_by"},{"_id":"7233","_type":"edge","_outV":"202","_inV":"339","_label":"written_by"},{"_id":"7234","_type":"edge","_outV":"202","_inV":"340","_label":"sung_by"},{"_id":"7235","_type":"edge","_outV":"56","_inV":"339","_label":"written_by"},{"_id":"7236","_type":"edge","_outV":"56","_inV":"340","_label":"sung_by"},{"_id":"7237","_type":"edge","_outV":"181","_inV":"350","_label":"written_by"},{"_id":"7238","_type":"edge","_outV":"181","_inV":"351","_label":"sung_by"},{"_id":"7239","_type":"edge","_outV":"393","_inV":"339","_label":"written_by"},{"weight":2,"_id":"724","_type":"edge","_outV":"80","_inV":"85","_label":"followed_by"},{"_id":"7240","_type":"edge","_outV":"393","_inV":"394","_label":"sung_by"},{"_id":"7241","_type":"edge","_outV":"395","_inV":"352","_label":"written_by"},{"_id":"7242","_type":"edge","_outV":"395","_inV":"352","_label":"sung_by"},{"_id":"7243","_type":"edge","_outV":"24","_inV":"350","_label":"written_by"},{"_id":"7244","_type":"edge","_outV":"24","_inV":"351","_label":"sung_by"},{"_id":"7245","_type":"edge","_outV":"99","_inV":"339","_label":"written_by"},{"_id":"7246","_type":"edge","_outV":"99","_inV":"340","_label":"sung_by"},{"_id":"7247","_type":"edge","_outV":"396","_inV":"362","_label":"written_by"},{"_id":"7248","_type":"edge","_outV":"396","_inV":"362","_label":"sung_by"},{"_id":"7249","_type":"edge","_outV":"296","_inV":"342","_label":"written_by"},{"weight":2,"_id":"725","_type":"edge","_outV":"80","_inV":"103","_label":"followed_by"},{"_id":"7250","_type":"edge","_outV":"296","_inV":"342","_label":"sung_by"},{"_id":"7251","_type":"edge","_outV":"294","_inV":"339","_label":"written_by"},{"_id":"7252","_type":"edge","_outV":"294","_inV":"340","_label":"sung_by"},{"_id":"7253","_type":"edge","_outV":"259","_inV":"339","_label":"written_by"},{"_id":"7254","_type":"edge","_outV":"259","_inV":"340","_label":"sung_by"},{"_id":"7255","_type":"edge","_outV":"205","_inV":"339","_label":"written_by"},{"_id":"7256","_type":"edge","_outV":"205","_inV":"356","_label":"sung_by"},{"_id":"7257","_type":"edge","_outV":"290","_inV":"350","_label":"written_by"},{"_id":"7258","_type":"edge","_outV":"290","_inV":"351","_label":"sung_by"},{"_id":"7259","_type":"edge","_outV":"397","_inV":"342","_label":"written_by"},{"weight":3,"_id":"726","_type":"edge","_outV":"80","_inV":"109","_label":"followed_by"},{"_id":"7260","_type":"edge","_outV":"397","_inV":"342","_label":"sung_by"},{"_id":"7261","_type":"edge","_outV":"398","_inV":"339","_label":"written_by"},{"_id":"7262","_type":"edge","_outV":"398","_inV":"340","_label":"sung_by"},{"_id":"7263","_type":"edge","_outV":"103","_inV":"350","_label":"written_by"},{"_id":"7264","_type":"edge","_outV":"103","_inV":"351","_label":"sung_by"},{"_id":"7265","_type":"edge","_outV":"97","_inV":"350","_label":"written_by"},{"_id":"7266","_type":"edge","_outV":"97","_inV":"351","_label":"sung_by"},{"_id":"7267","_type":"edge","_outV":"399","_inV":"352","_label":"written_by"},{"_id":"7268","_type":"edge","_outV":"399","_inV":"352","_label":"sung_by"},{"_id":"7269","_type":"edge","_outV":"400","_inV":"401","_label":"written_by"},{"weight":6,"_id":"727","_type":"edge","_outV":"80","_inV":"112","_label":"followed_by"},{"_id":"7270","_type":"edge","_outV":"400","_inV":"354","_label":"sung_by"},{"_id":"7271","_type":"edge","_outV":"175","_inV":"339","_label":"written_by"},{"_id":"7272","_type":"edge","_outV":"175","_inV":"340","_label":"sung_by"},{"_id":"7273","_type":"edge","_outV":"402","_inV":"354","_label":"written_by"},{"_id":"7274","_type":"edge","_outV":"402","_inV":"354","_label":"sung_by"},{"_id":"7275","_type":"edge","_outV":"114","_inV":"351","_label":"written_by"},{"_id":"7276","_type":"edge","_outV":"114","_inV":"351","_label":"sung_by"},{"_id":"7277","_type":"edge","_outV":"182","_inV":"352","_label":"written_by"},{"_id":"7278","_type":"edge","_outV":"182","_inV":"352","_label":"sung_by"},{"_id":"7279","_type":"edge","_outV":"403","_inV":"340","_label":"written_by"},{"weight":3,"_id":"728","_type":"edge","_outV":"80","_inV":"24","_label":"followed_by"},{"_id":"7280","_type":"edge","_outV":"403","_inV":"342","_label":"sung_by"},{"_id":"7281","_type":"edge","_outV":"404","_inV":"356","_label":"written_by"},{"_id":"7282","_type":"edge","_outV":"404","_inV":"356","_label":"sung_by"},{"_id":"7283","_type":"edge","_outV":"148","_inV":"351","_label":"written_by"},{"_id":"7284","_type":"edge","_outV":"148","_inV":"405","_label":"sung_by"},{"_id":"7285","_type":"edge","_outV":"406","_inV":"342","_label":"written_by"},{"_id":"7286","_type":"edge","_outV":"406","_inV":"342","_label":"sung_by"},{"_id":"7287","_type":"edge","_outV":"109","_inV":"407","_label":"written_by"},{"_id":"7288","_type":"edge","_outV":"109","_inV":"354","_label":"sung_by"},{"_id":"7289","_type":"edge","_outV":"79","_inV":"350","_label":"written_by"},{"weight":5,"_id":"729","_type":"edge","_outV":"80","_inV":"18","_label":"followed_by"},{"_id":"7290","_type":"edge","_outV":"79","_inV":"408","_label":"sung_by"},{"_id":"7291","_type":"edge","_outV":"13","_inV":"339","_label":"written_by"},{"_id":"7292","_type":"edge","_outV":"13","_inV":"359","_label":"sung_by"},{"_id":"7293","_type":"edge","_outV":"409","_inV":"401","_label":"written_by"},{"_id":"7294","_type":"edge","_outV":"409","_inV":"354","_label":"sung_by"},{"_id":"7295","_type":"edge","_outV":"27","_inV":"339","_label":"written_by"},{"_id":"7296","_type":"edge","_outV":"27","_inV":"340","_label":"sung_by"},{"_id":"7297","_type":"edge","_outV":"410","_inV":"339","_label":"written_by"},{"_id":"7298","_type":"edge","_outV":"410","_inV":"354","_label":"sung_by"},{"_id":"7299","_type":"edge","_outV":"411","_inV":"339","_label":"written_by"},{"weight":4,"_id":"73","_type":"edge","_outV":"46","_inV":"4","_label":"followed_by"},{"weight":12,"_id":"730","_type":"edge","_outV":"80","_inV":"12","_label":"followed_by"},{"_id":"7300","_type":"edge","_outV":"411","_inV":"340","_label":"sung_by"},{"_id":"7301","_type":"edge","_outV":"267","_inV":"401","_label":"written_by"},{"_id":"7302","_type":"edge","_outV":"267","_inV":"412","_label":"sung_by"},{"_id":"7303","_type":"edge","_outV":"222","_inV":"339","_label":"written_by"},{"_id":"7304","_type":"edge","_outV":"222","_inV":"340","_label":"sung_by"},{"_id":"7305","_type":"edge","_outV":"413","_inV":"339","_label":"written_by"},{"_id":"7306","_type":"edge","_outV":"413","_inV":"340","_label":"sung_by"},{"_id":"7307","_type":"edge","_outV":"51","_inV":"339","_label":"written_by"},{"_id":"7308","_type":"edge","_outV":"51","_inV":"340","_label":"sung_by"},{"_id":"7309","_type":"edge","_outV":"219","_inV":"384","_label":"written_by"},{"weight":8,"_id":"731","_type":"edge","_outV":"80","_inV":"42","_label":"followed_by"},{"_id":"7310","_type":"edge","_outV":"219","_inV":"351","_label":"sung_by"},{"_id":"7311","_type":"edge","_outV":"36","_inV":"350","_label":"written_by"},{"_id":"7312","_type":"edge","_outV":"36","_inV":"351","_label":"sung_by"},{"_id":"7313","_type":"edge","_outV":"414","_inV":"339","_label":"written_by"},{"_id":"7314","_type":"edge","_outV":"414","_inV":"362","_label":"sung_by"},{"_id":"7315","_type":"edge","_outV":"240","_inV":"350","_label":"written_by"},{"_id":"7316","_type":"edge","_outV":"240","_inV":"351","_label":"sung_by"},{"_id":"7317","_type":"edge","_outV":"37","_inV":"339","_label":"written_by"},{"_id":"7318","_type":"edge","_outV":"37","_inV":"415","_label":"sung_by"},{"_id":"7319","_type":"edge","_outV":"82","_inV":"339","_label":"written_by"},{"weight":1,"_id":"732","_type":"edge","_outV":"80","_inV":"155","_label":"followed_by"},{"_id":"7320","_type":"edge","_outV":"82","_inV":"340","_label":"sung_by"},{"_id":"7321","_type":"edge","_outV":"84","_inV":"339","_label":"written_by"},{"_id":"7322","_type":"edge","_outV":"84","_inV":"340","_label":"sung_by"},{"_id":"7323","_type":"edge","_outV":"69","_inV":"339","_label":"written_by"},{"_id":"7324","_type":"edge","_outV":"69","_inV":"340","_label":"sung_by"},{"_id":"7325","_type":"edge","_outV":"288","_inV":"384","_label":"written_by"},{"_id":"7326","_type":"edge","_outV":"288","_inV":"342","_label":"sung_by"},{"_id":"7327","_type":"edge","_outV":"137","_inV":"339","_label":"written_by"},{"_id":"7328","_type":"edge","_outV":"137","_inV":"340","_label":"sung_by"},{"_id":"7329","_type":"edge","_outV":"149","_inV":"342","_label":"written_by"},{"weight":1,"_id":"733","_type":"edge","_outV":"80","_inV":"189","_label":"followed_by"},{"_id":"7330","_type":"edge","_outV":"149","_inV":"384","_label":"sung_by"},{"_id":"7331","_type":"edge","_outV":"105","_inV":"339","_label":"written_by"},{"_id":"7332","_type":"edge","_outV":"105","_inV":"340","_label":"sung_by"},{"_id":"7333","_type":"edge","_outV":"136","_inV":"416","_label":"written_by"},{"_id":"7334","_type":"edge","_outV":"136","_inV":"416","_label":"sung_by"},{"_id":"7335","_type":"edge","_outV":"417","_inV":"342","_label":"written_by"},{"_id":"7336","_type":"edge","_outV":"417","_inV":"342","_label":"sung_by"},{"_id":"7337","_type":"edge","_outV":"92","_inV":"339","_label":"written_by"},{"_id":"7338","_type":"edge","_outV":"92","_inV":"340","_label":"sung_by"},{"_id":"7339","_type":"edge","_outV":"94","_inV":"339","_label":"written_by"},{"weight":3,"_id":"734","_type":"edge","_outV":"80","_inV":"198","_label":"followed_by"},{"_id":"7340","_type":"edge","_outV":"94","_inV":"340","_label":"sung_by"},{"_id":"7341","_type":"edge","_outV":"418","_inV":"356","_label":"written_by"},{"_id":"7342","_type":"edge","_outV":"418","_inV":"356","_label":"sung_by"},{"_id":"7343","_type":"edge","_outV":"153","_inV":"367","_label":"written_by"},{"_id":"7344","_type":"edge","_outV":"153","_inV":"351","_label":"sung_by"},{"_id":"7345","_type":"edge","_outV":"59","_inV":"339","_label":"written_by"},{"_id":"7346","_type":"edge","_outV":"59","_inV":"340","_label":"sung_by"},{"_id":"7347","_type":"edge","_outV":"133","_inV":"367","_label":"written_by"},{"_id":"7348","_type":"edge","_outV":"133","_inV":"351","_label":"sung_by"},{"_id":"7349","_type":"edge","_outV":"196","_inV":"377","_label":"written_by"},{"weight":6,"_id":"735","_type":"edge","_outV":"80","_inV":"111","_label":"followed_by"},{"_id":"7350","_type":"edge","_outV":"196","_inV":"377","_label":"sung_by"},{"_id":"7351","_type":"edge","_outV":"184","_inV":"350","_label":"written_by"},{"_id":"7352","_type":"edge","_outV":"184","_inV":"351","_label":"sung_by"},{"_id":"7353","_type":"edge","_outV":"419","_inV":"356","_label":"written_by"},{"_id":"7354","_type":"edge","_outV":"419","_inV":"356","_label":"sung_by"},{"_id":"7355","_type":"edge","_outV":"420","_inV":"339","_label":"written_by"},{"_id":"7356","_type":"edge","_outV":"420","_inV":"340","_label":"sung_by"},{"_id":"7357","_type":"edge","_outV":"421","_inV":"384","_label":"written_by"},{"_id":"7358","_type":"edge","_outV":"421","_inV":"422","_label":"sung_by"},{"_id":"7359","_type":"edge","_outV":"91","_inV":"339","_label":"written_by"},{"weight":1,"_id":"736","_type":"edge","_outV":"80","_inV":"222","_label":"followed_by"},{"_id":"7360","_type":"edge","_outV":"91","_inV":"340","_label":"sung_by"},{"_id":"7361","_type":"edge","_outV":"423","_inV":"384","_label":"written_by"},{"_id":"7362","_type":"edge","_outV":"423","_inV":"422","_label":"sung_by"},{"_id":"7363","_type":"edge","_outV":"17","_inV":"339","_label":"written_by"},{"_id":"7364","_type":"edge","_outV":"17","_inV":"340","_label":"sung_by"},{"_id":"7365","_type":"edge","_outV":"424","_inV":"350","_label":"written_by"},{"_id":"7366","_type":"edge","_outV":"424","_inV":"351","_label":"sung_by"},{"_id":"7367","_type":"edge","_outV":"29","_inV":"350","_label":"written_by"},{"_id":"7368","_type":"edge","_outV":"29","_inV":"351","_label":"sung_by"},{"_id":"7369","_type":"edge","_outV":"425","_inV":"339","_label":"written_by"},{"weight":2,"_id":"737","_type":"edge","_outV":"80","_inV":"197","_label":"followed_by"},{"_id":"7370","_type":"edge","_outV":"425","_inV":"340","_label":"sung_by"},{"_id":"7371","_type":"edge","_outV":"170","_inV":"339","_label":"written_by"},{"_id":"7372","_type":"edge","_outV":"170","_inV":"340","_label":"sung_by"},{"_id":"7373","_type":"edge","_outV":"223","_inV":"352","_label":"written_by"},{"_id":"7374","_type":"edge","_outV":"223","_inV":"352","_label":"sung_by"},{"_id":"7375","_type":"edge","_outV":"87","_inV":"339","_label":"written_by"},{"_id":"7376","_type":"edge","_outV":"87","_inV":"340","_label":"sung_by"},{"_id":"7377","_type":"edge","_outV":"21","_inV":"339","_label":"written_by"},{"_id":"7378","_type":"edge","_outV":"21","_inV":"426","_label":"sung_by"},{"_id":"7379","_type":"edge","_outV":"193","_inV":"339","_label":"written_by"},{"weight":8,"_id":"738","_type":"edge","_outV":"80","_inV":"32","_label":"followed_by"},{"_id":"7380","_type":"edge","_outV":"193","_inV":"340","_label":"sung_by"},{"_id":"7381","_type":"edge","_outV":"176","_inV":"401","_label":"written_by"},{"_id":"7382","_type":"edge","_outV":"176","_inV":"354","_label":"sung_by"},{"_id":"7383","_type":"edge","_outV":"74","_inV":"339","_label":"written_by"},{"_id":"7384","_type":"edge","_outV":"74","_inV":"340","_label":"sung_by"},{"_id":"7385","_type":"edge","_outV":"427","_inV":"416","_label":"written_by"},{"_id":"7386","_type":"edge","_outV":"427","_inV":"416","_label":"sung_by"},{"_id":"7387","_type":"edge","_outV":"34","_inV":"428","_label":"written_by"},{"_id":"7388","_type":"edge","_outV":"34","_inV":"351","_label":"sung_by"},{"_id":"7389","_type":"edge","_outV":"429","_inV":"350","_label":"written_by"},{"weight":1,"_id":"739","_type":"edge","_outV":"80","_inV":"78","_label":"followed_by"},{"_id":"7390","_type":"edge","_outV":"429","_inV":"351","_label":"sung_by"},{"_id":"7391","_type":"edge","_outV":"52","_inV":"339","_label":"written_by"},{"_id":"7392","_type":"edge","_outV":"52","_inV":"340","_label":"sung_by"},{"_id":"7393","_type":"edge","_outV":"172","_inV":"339","_label":"written_by"},{"_id":"7394","_type":"edge","_outV":"172","_inV":"354","_label":"sung_by"},{"_id":"7395","_type":"edge","_outV":"35","_inV":"339","_label":"written_by"},{"_id":"7396","_type":"edge","_outV":"35","_inV":"430","_label":"sung_by"},{"_id":"7397","_type":"edge","_outV":"431","_inV":"350","_label":"written_by"},{"_id":"7398","_type":"edge","_outV":"431","_inV":"352","_label":"sung_by"},{"_id":"7399","_type":"edge","_outV":"432","_inV":"384","_label":"written_by"},{"weight":1,"_id":"74","_type":"edge","_outV":"46","_inV":"67","_label":"followed_by"},{"weight":9,"_id":"740","_type":"edge","_outV":"80","_inV":"88","_label":"followed_by"},{"_id":"7400","_type":"edge","_outV":"432","_inV":"351","_label":"sung_by"},{"_id":"7401","_type":"edge","_outV":"433","_inV":"434","_label":"written_by"},{"_id":"7402","_type":"edge","_outV":"433","_inV":"351","_label":"sung_by"},{"_id":"7403","_type":"edge","_outV":"435","_inV":"339","_label":"written_by"},{"_id":"7404","_type":"edge","_outV":"435","_inV":"340","_label":"sung_by"},{"_id":"7405","_type":"edge","_outV":"130","_inV":"339","_label":"written_by"},{"_id":"7406","_type":"edge","_outV":"130","_inV":"340","_label":"sung_by"},{"_id":"7407","_type":"edge","_outV":"436","_inV":"339","_label":"written_by"},{"_id":"7408","_type":"edge","_outV":"436","_inV":"339","_label":"sung_by"},{"_id":"7409","_type":"edge","_outV":"437","_inV":"339","_label":"written_by"},{"weight":1,"_id":"741","_type":"edge","_outV":"80","_inV":"180","_label":"followed_by"},{"_id":"7410","_type":"edge","_outV":"437","_inV":"340","_label":"sung_by"},{"_id":"7411","_type":"edge","_outV":"134","_inV":"339","_label":"written_by"},{"_id":"7412","_type":"edge","_outV":"134","_inV":"375","_label":"sung_by"},{"_id":"7413","_type":"edge","_outV":"75","_inV":"339","_label":"written_by"},{"_id":"7414","_type":"edge","_outV":"75","_inV":"340","_label":"sung_by"},{"_id":"7415","_type":"edge","_outV":"438","_inV":"342","_label":"written_by"},{"_id":"7416","_type":"edge","_outV":"438","_inV":"342","_label":"sung_by"},{"_id":"7417","_type":"edge","_outV":"439","_inV":"342","_label":"written_by"},{"_id":"7418","_type":"edge","_outV":"439","_inV":"342","_label":"sung_by"},{"_id":"7419","_type":"edge","_outV":"440","_inV":"356","_label":"written_by"},{"weight":1,"_id":"742","_type":"edge","_outV":"80","_inV":"181","_label":"followed_by"},{"_id":"7420","_type":"edge","_outV":"440","_inV":"356","_label":"sung_by"},{"_id":"7421","_type":"edge","_outV":"441","_inV":"442","_label":"written_by"},{"_id":"7422","_type":"edge","_outV":"441","_inV":"356","_label":"sung_by"},{"_id":"7423","_type":"edge","_outV":"443","_inV":"444","_label":"written_by"},{"_id":"7424","_type":"edge","_outV":"443","_inV":"351","_label":"sung_by"},{"_id":"7425","_type":"edge","_outV":"445","_inV":"446","_label":"written_by"},{"_id":"7426","_type":"edge","_outV":"445","_inV":"340","_label":"sung_by"},{"_id":"7427","_type":"edge","_outV":"165","_inV":"447","_label":"written_by"},{"_id":"7428","_type":"edge","_outV":"165","_inV":"351","_label":"sung_by"},{"_id":"7429","_type":"edge","_outV":"448","_inV":"449","_label":"written_by"},{"weight":2,"_id":"743","_type":"edge","_outV":"80","_inV":"121","_label":"followed_by"},{"_id":"7430","_type":"edge","_outV":"448","_inV":"351","_label":"sung_by"},{"_id":"7431","_type":"edge","_outV":"450","_inV":"451","_label":"written_by"},{"_id":"7432","_type":"edge","_outV":"450","_inV":"356","_label":"sung_by"},{"_id":"7433","_type":"edge","_outV":"452","_inV":"446","_label":"written_by"},{"_id":"7434","_type":"edge","_outV":"452","_inV":"453","_label":"sung_by"},{"_id":"7435","_type":"edge","_outV":"454","_inV":"451","_label":"written_by"},{"_id":"7436","_type":"edge","_outV":"454","_inV":"451","_label":"sung_by"},{"_id":"7437","_type":"edge","_outV":"455","_inV":"456","_label":"written_by"},{"_id":"7438","_type":"edge","_outV":"455","_inV":"457","_label":"sung_by"},{"_id":"7439","_type":"edge","_outV":"25","_inV":"458","_label":"written_by"},{"weight":2,"_id":"744","_type":"edge","_outV":"80","_inV":"58","_label":"followed_by"},{"_id":"7440","_type":"edge","_outV":"25","_inV":"351","_label":"sung_by"},{"_id":"7441","_type":"edge","_outV":"185","_inV":"459","_label":"written_by"},{"_id":"7442","_type":"edge","_outV":"185","_inV":"415","_label":"sung_by"},{"_id":"7443","_type":"edge","_outV":"163","_inV":"460","_label":"written_by"},{"_id":"7444","_type":"edge","_outV":"163","_inV":"461","_label":"sung_by"},{"_id":"7445","_type":"edge","_outV":"326","_inV":"462","_label":"written_by"},{"_id":"7446","_type":"edge","_outV":"326","_inV":"462","_label":"sung_by"},{"_id":"7447","_type":"edge","_outV":"463","_inV":"446","_label":"written_by"},{"_id":"7448","_type":"edge","_outV":"463","_inV":"340","_label":"sung_by"},{"_id":"7449","_type":"edge","_outV":"464","_inV":"447","_label":"written_by"},{"weight":4,"_id":"745","_type":"edge","_outV":"80","_inV":"97","_label":"followed_by"},{"_id":"7450","_type":"edge","_outV":"464","_inV":"447","_label":"sung_by"},{"_id":"7451","_type":"edge","_outV":"269","_inV":"447","_label":"written_by"},{"_id":"7452","_type":"edge","_outV":"269","_inV":"351","_label":"sung_by"},{"_id":"7453","_type":"edge","_outV":"465","_inV":"466","_label":"written_by"},{"_id":"7454","_type":"edge","_outV":"465","_inV":"467","_label":"sung_by"},{"_id":"7455","_type":"edge","_outV":"468","_inV":"446","_label":"written_by"},{"_id":"7456","_type":"edge","_outV":"468","_inV":"469","_label":"sung_by"},{"_id":"7457","_type":"edge","_outV":"470","_inV":"446","_label":"written_by"},{"_id":"7458","_type":"edge","_outV":"470","_inV":"469","_label":"sung_by"},{"_id":"7459","_type":"edge","_outV":"10","_inV":"471","_label":"written_by"},{"weight":1,"_id":"746","_type":"edge","_outV":"80","_inV":"15","_label":"followed_by"},{"_id":"7460","_type":"edge","_outV":"10","_inV":"351","_label":"sung_by"},{"_id":"7461","_type":"edge","_outV":"472","_inV":"446","_label":"written_by"},{"_id":"7462","_type":"edge","_outV":"472","_inV":"340","_label":"sung_by"},{"_id":"7463","_type":"edge","_outV":"152","_inV":"473","_label":"written_by"},{"_id":"7464","_type":"edge","_outV":"152","_inV":"474","_label":"sung_by"},{"_id":"7465","_type":"edge","_outV":"303","_inV":"475","_label":"written_by"},{"_id":"7466","_type":"edge","_outV":"303","_inV":"476","_label":"sung_by"},{"_id":"7467","_type":"edge","_outV":"477","_inV":"451","_label":"written_by"},{"_id":"7468","_type":"edge","_outV":"477","_inV":"356","_label":"sung_by"},{"_id":"7469","_type":"edge","_outV":"53","_inV":"478","_label":"written_by"},{"weight":2,"_id":"747","_type":"edge","_outV":"80","_inV":"64","_label":"followed_by"},{"_id":"7470","_type":"edge","_outV":"53","_inV":"340","_label":"sung_by"},{"_id":"7471","_type":"edge","_outV":"15","_inV":"479","_label":"written_by"},{"_id":"7472","_type":"edge","_outV":"15","_inV":"351","_label":"sung_by"},{"_id":"7473","_type":"edge","_outV":"321","_inV":"480","_label":"written_by"},{"_id":"7474","_type":"edge","_outV":"321","_inV":"351","_label":"sung_by"},{"_id":"7475","_type":"edge","_outV":"233","_inV":"481","_label":"written_by"},{"_id":"7476","_type":"edge","_outV":"233","_inV":"481","_label":"sung_by"},{"_id":"7477","_type":"edge","_outV":"482","_inV":"483","_label":"written_by"},{"_id":"7478","_type":"edge","_outV":"482","_inV":"484","_label":"sung_by"},{"_id":"7479","_type":"edge","_outV":"485","_inV":"486","_label":"written_by"},{"weight":1,"_id":"748","_type":"edge","_outV":"80","_inV":"223","_label":"followed_by"},{"_id":"7480","_type":"edge","_outV":"485","_inV":"340","_label":"sung_by"},{"_id":"7481","_type":"edge","_outV":"256","_inV":"462","_label":"written_by"},{"_id":"7482","_type":"edge","_outV":"256","_inV":"462","_label":"sung_by"},{"_id":"7483","_type":"edge","_outV":"487","_inV":"488","_label":"written_by"},{"_id":"7484","_type":"edge","_outV":"487","_inV":"469","_label":"sung_by"},{"_id":"7485","_type":"edge","_outV":"489","_inV":"442","_label":"written_by"},{"_id":"7486","_type":"edge","_outV":"489","_inV":"356","_label":"sung_by"},{"_id":"7487","_type":"edge","_outV":"254","_inV":"490","_label":"written_by"},{"_id":"7488","_type":"edge","_outV":"254","_inV":"354","_label":"sung_by"},{"_id":"7489","_type":"edge","_outV":"301","_inV":"491","_label":"written_by"},{"weight":2,"_id":"749","_type":"edge","_outV":"80","_inV":"56","_label":"followed_by"},{"_id":"7490","_type":"edge","_outV":"301","_inV":"469","_label":"sung_by"},{"_id":"7491","_type":"edge","_outV":"492","_inV":"446","_label":"written_by"},{"_id":"7492","_type":"edge","_outV":"492","_inV":"351","_label":"sung_by"},{"_id":"7493","_type":"edge","_outV":"156","_inV":"493","_label":"written_by"},{"_id":"7494","_type":"edge","_outV":"156","_inV":"340","_label":"sung_by"},{"_id":"7495","_type":"edge","_outV":"494","_inV":"495","_label":"written_by"},{"_id":"7496","_type":"edge","_outV":"494","_inV":"351","_label":"sung_by"},{"_id":"7497","_type":"edge","_outV":"496","_inV":"497","_label":"written_by"},{"_id":"7498","_type":"edge","_outV":"496","_inV":"498","_label":"sung_by"},{"_id":"7499","_type":"edge","_outV":"499","_inV":"469","_label":"written_by"},{"weight":2,"_id":"75","_type":"edge","_outV":"46","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"750","_type":"edge","_outV":"80","_inV":"48","_label":"followed_by"},{"_id":"7500","_type":"edge","_outV":"499","_inV":"469","_label":"sung_by"},{"_id":"7501","_type":"edge","_outV":"271","_inV":"447","_label":"written_by"},{"_id":"7502","_type":"edge","_outV":"271","_inV":"447","_label":"sung_by"},{"_id":"7503","_type":"edge","_outV":"337","_inV":"500","_label":"written_by"},{"_id":"7504","_type":"edge","_outV":"337","_inV":"501","_label":"sung_by"},{"_id":"7505","_type":"edge","_outV":"78","_inV":"446","_label":"written_by"},{"_id":"7506","_type":"edge","_outV":"78","_inV":"340","_label":"sung_by"},{"_id":"7507","_type":"edge","_outV":"502","_inV":"442","_label":"written_by"},{"_id":"7508","_type":"edge","_outV":"502","_inV":"356","_label":"sung_by"},{"_id":"7509","_type":"edge","_outV":"503","_inV":"451","_label":"written_by"},{"weight":2,"_id":"751","_type":"edge","_outV":"80","_inV":"106","_label":"followed_by"},{"_id":"7510","_type":"edge","_outV":"503","_inV":"451","_label":"sung_by"},{"_id":"7511","_type":"edge","_outV":"504","_inV":"505","_label":"written_by"},{"_id":"7512","_type":"edge","_outV":"504","_inV":"351","_label":"sung_by"},{"_id":"7513","_type":"edge","_outV":"506","_inV":"446","_label":"written_by"},{"_id":"7514","_type":"edge","_outV":"506","_inV":"340","_label":"sung_by"},{"_id":"7515","_type":"edge","_outV":"198","_inV":"446","_label":"written_by"},{"_id":"7516","_type":"edge","_outV":"198","_inV":"351","_label":"sung_by"},{"_id":"7517","_type":"edge","_outV":"212","_inV":"480","_label":"written_by"},{"_id":"7518","_type":"edge","_outV":"212","_inV":"507","_label":"sung_by"},{"_id":"7519","_type":"edge","_outV":"508","_inV":"447","_label":"written_by"},{"weight":1,"_id":"752","_type":"edge","_outV":"80","_inV":"116","_label":"followed_by"},{"_id":"7520","_type":"edge","_outV":"508","_inV":"447","_label":"sung_by"},{"_id":"7521","_type":"edge","_outV":"509","_inV":"510","_label":"written_by"},{"_id":"7522","_type":"edge","_outV":"509","_inV":"352","_label":"sung_by"},{"_id":"7523","_type":"edge","_outV":"135","_inV":"511","_label":"written_by"},{"_id":"7524","_type":"edge","_outV":"135","_inV":"340","_label":"sung_by"},{"_id":"7525","_type":"edge","_outV":"512","_inV":"446","_label":"written_by"},{"_id":"7526","_type":"edge","_outV":"512","_inV":"340","_label":"sung_by"},{"_id":"7527","_type":"edge","_outV":"180","_inV":"446","_label":"written_by"},{"_id":"7528","_type":"edge","_outV":"180","_inV":"340","_label":"sung_by"},{"_id":"7529","_type":"edge","_outV":"71","_inV":"447","_label":"written_by"},{"weight":7,"_id":"753","_type":"edge","_outV":"80","_inV":"188","_label":"followed_by"},{"_id":"7530","_type":"edge","_outV":"71","_inV":"351","_label":"sung_by"},{"_id":"7531","_type":"edge","_outV":"513","_inV":"514","_label":"written_by"},{"_id":"7532","_type":"edge","_outV":"513","_inV":"352","_label":"sung_by"},{"_id":"7533","_type":"edge","_outV":"515","_inV":"516","_label":"written_by"},{"_id":"7534","_type":"edge","_outV":"515","_inV":"467","_label":"sung_by"},{"_id":"7535","_type":"edge","_outV":"72","_inV":"446","_label":"written_by"},{"_id":"7536","_type":"edge","_outV":"72","_inV":"340","_label":"sung_by"},{"_id":"7537","_type":"edge","_outV":"517","_inV":"518","_label":"written_by"},{"_id":"7538","_type":"edge","_outV":"517","_inV":"356","_label":"sung_by"},{"_id":"7539","_type":"edge","_outV":"519","_inV":"447","_label":"written_by"},{"weight":3,"_id":"754","_type":"edge","_outV":"80","_inV":"117","_label":"followed_by"},{"_id":"7540","_type":"edge","_outV":"519","_inV":"447","_label":"sung_by"},{"_id":"7541","_type":"edge","_outV":"245","_inV":"520","_label":"written_by"},{"_id":"7542","_type":"edge","_outV":"245","_inV":"351","_label":"sung_by"},{"_id":"7543","_type":"edge","_outV":"365","_inV":"451","_label":"written_by"},{"_id":"7544","_type":"edge","_outV":"365","_inV":"340","_label":"sung_by"},{"_id":"7545","_type":"edge","_outV":"521","_inV":"446","_label":"written_by"},{"_id":"7546","_type":"edge","_outV":"521","_inV":"340","_label":"sung_by"},{"_id":"7547","_type":"edge","_outV":"522","_inV":"523","_label":"written_by"},{"_id":"7548","_type":"edge","_outV":"522","_inV":"354","_label":"sung_by"},{"_id":"7549","_type":"edge","_outV":"524","_inV":"446","_label":"written_by"},{"weight":1,"_id":"755","_type":"edge","_outV":"80","_inV":"31","_label":"followed_by"},{"_id":"7550","_type":"edge","_outV":"524","_inV":"525","_label":"sung_by"},{"_id":"7551","_type":"edge","_outV":"526","_inV":"527","_label":"written_by"},{"_id":"7552","_type":"edge","_outV":"526","_inV":"527","_label":"sung_by"},{"_id":"7553","_type":"edge","_outV":"18","_inV":"528","_label":"written_by"},{"_id":"7554","_type":"edge","_outV":"18","_inV":"351","_label":"sung_by"},{"_id":"7555","_type":"edge","_outV":"529","_inV":"530","_label":"written_by"},{"_id":"7556","_type":"edge","_outV":"529","_inV":"356","_label":"sung_by"},{"_id":"7557","_type":"edge","_outV":"531","_inV":"532","_label":"written_by"},{"_id":"7558","_type":"edge","_outV":"531","_inV":"533","_label":"sung_by"},{"_id":"7559","_type":"edge","_outV":"283","_inV":"534","_label":"written_by"},{"weight":1,"_id":"756","_type":"edge","_outV":"80","_inV":"79","_label":"followed_by"},{"_id":"7560","_type":"edge","_outV":"283","_inV":"351","_label":"sung_by"},{"_id":"7561","_type":"edge","_outV":"535","_inV":"536","_label":"written_by"},{"_id":"7562","_type":"edge","_outV":"535","_inV":"537","_label":"sung_by"},{"_id":"7563","_type":"edge","_outV":"538","_inV":"451","_label":"written_by"},{"_id":"7564","_type":"edge","_outV":"538","_inV":"356","_label":"sung_by"},{"_id":"7565","_type":"edge","_outV":"335","_inV":"447","_label":"written_by"},{"_id":"7566","_type":"edge","_outV":"335","_inV":"539","_label":"sung_by"},{"_id":"7567","_type":"edge","_outV":"315","_inV":"540","_label":"written_by"},{"_id":"7568","_type":"edge","_outV":"315","_inV":"351","_label":"sung_by"},{"_id":"7569","_type":"edge","_outV":"541","_inV":"542","_label":"written_by"},{"weight":1,"_id":"757","_type":"edge","_outV":"80","_inV":"101","_label":"followed_by"},{"_id":"7570","_type":"edge","_outV":"541","_inV":"351","_label":"sung_by"},{"_id":"7571","_type":"edge","_outV":"543","_inV":"544","_label":"written_by"},{"_id":"7572","_type":"edge","_outV":"543","_inV":"340","_label":"sung_by"},{"_id":"7573","_type":"edge","_outV":"545","_inV":"546","_label":"written_by"},{"_id":"7574","_type":"edge","_outV":"545","_inV":"351","_label":"sung_by"},{"_id":"7575","_type":"edge","_outV":"312","_inV":"480","_label":"written_by"},{"_id":"7576","_type":"edge","_outV":"312","_inV":"351","_label":"sung_by"},{"_id":"7577","_type":"edge","_outV":"547","_inV":"548","_label":"written_by"},{"_id":"7578","_type":"edge","_outV":"547","_inV":"354","_label":"sung_by"},{"_id":"7579","_type":"edge","_outV":"227","_inV":"549","_label":"written_by"},{"weight":1,"_id":"758","_type":"edge","_outV":"80","_inV":"77","_label":"followed_by"},{"_id":"7580","_type":"edge","_outV":"227","_inV":"351","_label":"sung_by"},{"_id":"7581","_type":"edge","_outV":"5","_inV":"446","_label":"written_by"},{"_id":"7582","_type":"edge","_outV":"5","_inV":"340","_label":"sung_by"},{"_id":"7583","_type":"edge","_outV":"550","_inV":"480","_label":"written_by"},{"_id":"7584","_type":"edge","_outV":"550","_inV":"451","_label":"sung_by"},{"_id":"7585","_type":"edge","_outV":"44","_inV":"551","_label":"written_by"},{"_id":"7586","_type":"edge","_outV":"44","_inV":"352","_label":"sung_by"},{"_id":"7587","_type":"edge","_outV":"120","_inV":"552","_label":"written_by"},{"_id":"7588","_type":"edge","_outV":"120","_inV":"553","_label":"sung_by"},{"_id":"7589","_type":"edge","_outV":"292","_inV":"554","_label":"written_by"},{"weight":1,"_id":"759","_type":"edge","_outV":"80","_inV":"43","_label":"followed_by"},{"_id":"7590","_type":"edge","_outV":"292","_inV":"476","_label":"sung_by"},{"_id":"7591","_type":"edge","_outV":"555","_inV":"556","_label":"written_by"},{"_id":"7592","_type":"edge","_outV":"555","_inV":"453","_label":"sung_by"},{"_id":"7593","_type":"edge","_outV":"336","_inV":"557","_label":"written_by"},{"_id":"7594","_type":"edge","_outV":"336","_inV":"340","_label":"sung_by"},{"_id":"7595","_type":"edge","_outV":"558","_inV":"559","_label":"written_by"},{"_id":"7596","_type":"edge","_outV":"558","_inV":"351","_label":"sung_by"},{"_id":"7597","_type":"edge","_outV":"284","_inV":"447","_label":"written_by"},{"_id":"7598","_type":"edge","_outV":"284","_inV":"447","_label":"sung_by"},{"_id":"7599","_type":"edge","_outV":"560","_inV":"561","_label":"written_by"},{"weight":2,"_id":"76","_type":"edge","_outV":"46","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"760","_type":"edge","_outV":"224","_inV":"68","_label":"followed_by"},{"_id":"7600","_type":"edge","_outV":"560","_inV":"351","_label":"sung_by"},{"_id":"7601","_type":"edge","_outV":"325","_inV":"462","_label":"written_by"},{"_id":"7602","_type":"edge","_outV":"325","_inV":"462","_label":"sung_by"},{"_id":"7603","_type":"edge","_outV":"161","_inV":"562","_label":"written_by"},{"_id":"7604","_type":"edge","_outV":"161","_inV":"356","_label":"sung_by"},{"_id":"7605","_type":"edge","_outV":"563","_inV":"564","_label":"written_by"},{"_id":"7606","_type":"edge","_outV":"563","_inV":"340","_label":"sung_by"},{"_id":"7607","_type":"edge","_outV":"260","_inV":"447","_label":"written_by"},{"_id":"7608","_type":"edge","_outV":"260","_inV":"447","_label":"sung_by"},{"_id":"7609","_type":"edge","_outV":"565","_inV":"566","_label":"written_by"},{"weight":1,"_id":"761","_type":"edge","_outV":"224","_inV":"111","_label":"followed_by"},{"_id":"7610","_type":"edge","_outV":"565","_inV":"567","_label":"sung_by"},{"_id":"7611","_type":"edge","_outV":"1","_inV":"527","_label":"written_by"},{"_id":"7612","_type":"edge","_outV":"1","_inV":"340","_label":"sung_by"},{"_id":"7613","_type":"edge","_outV":"132","_inV":"480","_label":"written_by"},{"_id":"7614","_type":"edge","_outV":"132","_inV":"461","_label":"sung_by"},{"_id":"7615","_type":"edge","_outV":"568","_inV":"569","_label":"written_by"},{"_id":"7616","_type":"edge","_outV":"568","_inV":"340","_label":"sung_by"},{"_id":"7617","_type":"edge","_outV":"151","_inV":"570","_label":"written_by"},{"_id":"7618","_type":"edge","_outV":"151","_inV":"352","_label":"sung_by"},{"_id":"7619","_type":"edge","_outV":"571","_inV":"572","_label":"written_by"},{"weight":1,"_id":"762","_type":"edge","_outV":"224","_inV":"198","_label":"followed_by"},{"_id":"7620","_type":"edge","_outV":"571","_inV":"340","_label":"sung_by"},{"_id":"7621","_type":"edge","_outV":"332","_inV":"573","_label":"written_by"},{"_id":"7622","_type":"edge","_outV":"332","_inV":"574","_label":"sung_by"},{"_id":"7623","_type":"edge","_outV":"575","_inV":"447","_label":"written_by"},{"_id":"7624","_type":"edge","_outV":"575","_inV":"447","_label":"sung_by"},{"_id":"7625","_type":"edge","_outV":"576","_inV":"520","_label":"written_by"},{"_id":"7626","_type":"edge","_outV":"576","_inV":"340","_label":"sung_by"},{"_id":"7627","_type":"edge","_outV":"247","_inV":"577","_label":"written_by"},{"_id":"7628","_type":"edge","_outV":"247","_inV":"340","_label":"sung_by"},{"_id":"7629","_type":"edge","_outV":"578","_inV":"579","_label":"written_by"},{"weight":2,"_id":"763","_type":"edge","_outV":"224","_inV":"197","_label":"followed_by"},{"_id":"7630","_type":"edge","_outV":"578","_inV":"340","_label":"sung_by"},{"_id":"7631","_type":"edge","_outV":"580","_inV":"581","_label":"written_by"},{"_id":"7632","_type":"edge","_outV":"580","_inV":"351","_label":"sung_by"},{"_id":"7633","_type":"edge","_outV":"582","_inV":"520","_label":"written_by"},{"_id":"7634","_type":"edge","_outV":"582","_inV":"351","_label":"sung_by"},{"_id":"7635","_type":"edge","_outV":"216","_inV":"583","_label":"written_by"},{"_id":"7636","_type":"edge","_outV":"216","_inV":"340","_label":"sung_by"},{"_id":"7637","_type":"edge","_outV":"584","_inV":"446","_label":"written_by"},{"_id":"7638","_type":"edge","_outV":"584","_inV":"585","_label":"sung_by"},{"_id":"7639","_type":"edge","_outV":"586","_inV":"587","_label":"written_by"},{"weight":1,"_id":"764","_type":"edge","_outV":"224","_inV":"58","_label":"followed_by"},{"_id":"7640","_type":"edge","_outV":"586","_inV":"352","_label":"sung_by"},{"_id":"7641","_type":"edge","_outV":"588","_inV":"520","_label":"written_by"},{"_id":"7642","_type":"edge","_outV":"588","_inV":"461","_label":"sung_by"},{"_id":"7643","_type":"edge","_outV":"589","_inV":"460","_label":"written_by"},{"_id":"7644","_type":"edge","_outV":"589","_inV":"340","_label":"sung_by"},{"_id":"7645","_type":"edge","_outV":"187","_inV":"446","_label":"written_by"},{"_id":"7646","_type":"edge","_outV":"187","_inV":"453","_label":"sung_by"},{"_id":"7647","_type":"edge","_outV":"590","_inV":"591","_label":"written_by"},{"_id":"7648","_type":"edge","_outV":"590","_inV":"340","_label":"sung_by"},{"_id":"7649","_type":"edge","_outV":"258","_inV":"592","_label":"written_by"},{"weight":1,"_id":"765","_type":"edge","_outV":"224","_inV":"209","_label":"followed_by"},{"_id":"7650","_type":"edge","_outV":"258","_inV":"340","_label":"sung_by"},{"_id":"7651","_type":"edge","_outV":"251","_inV":"447","_label":"written_by"},{"_id":"7652","_type":"edge","_outV":"251","_inV":"447","_label":"sung_by"},{"_id":"7653","_type":"edge","_outV":"593","_inV":"594","_label":"written_by"},{"_id":"7654","_type":"edge","_outV":"593","_inV":"340","_label":"sung_by"},{"_id":"7655","_type":"edge","_outV":"266","_inV":"447","_label":"written_by"},{"_id":"7656","_type":"edge","_outV":"266","_inV":"447","_label":"sung_by"},{"_id":"7657","_type":"edge","_outV":"595","_inV":"596","_label":"written_by"},{"_id":"7658","_type":"edge","_outV":"595","_inV":"356","_label":"sung_by"},{"_id":"7659","_type":"edge","_outV":"597","_inV":"598","_label":"written_by"},{"weight":5,"_id":"766","_type":"edge","_outV":"122","_inV":"120","_label":"followed_by"},{"_id":"7660","_type":"edge","_outV":"597","_inV":"356","_label":"sung_by"},{"_id":"7661","_type":"edge","_outV":"599","_inV":"600","_label":"written_by"},{"_id":"7662","_type":"edge","_outV":"599","_inV":"356","_label":"sung_by"},{"_id":"7663","_type":"edge","_outV":"601","_inV":"602","_label":"written_by"},{"_id":"7664","_type":"edge","_outV":"601","_inV":"476","_label":"sung_by"},{"_id":"7665","_type":"edge","_outV":"2","_inV":"525","_label":"written_by"},{"_id":"7666","_type":"edge","_outV":"2","_inV":"525","_label":"sung_by"},{"_id":"7667","_type":"edge","_outV":"603","_inV":"446","_label":"written_by"},{"_id":"7668","_type":"edge","_outV":"603","_inV":"340","_label":"sung_by"},{"_id":"7669","_type":"edge","_outV":"604","_inV":"605","_label":"written_by"},{"weight":11,"_id":"767","_type":"edge","_outV":"122","_inV":"23","_label":"followed_by"},{"_id":"7670","_type":"edge","_outV":"604","_inV":"351","_label":"sung_by"},{"_id":"7671","_type":"edge","_outV":"606","_inV":"480","_label":"written_by"},{"_id":"7672","_type":"edge","_outV":"606","_inV":"351","_label":"sung_by"},{"_id":"7673","_type":"edge","_outV":"62","_inV":"446","_label":"written_by"},{"_id":"7674","_type":"edge","_outV":"62","_inV":"340","_label":"sung_by"},{"_id":"7675","_type":"edge","_outV":"607","_inV":"446","_label":"written_by"},{"_id":"7676","_type":"edge","_outV":"607","_inV":"340","_label":"sung_by"},{"_id":"7677","_type":"edge","_outV":"608","_inV":"609","_label":"written_by"},{"_id":"7678","_type":"edge","_outV":"608","_inV":"476","_label":"sung_by"},{"_id":"7679","_type":"edge","_outV":"610","_inV":"611","_label":"written_by"},{"weight":18,"_id":"768","_type":"edge","_outV":"122","_inV":"26","_label":"followed_by"},{"_id":"7680","_type":"edge","_outV":"610","_inV":"356","_label":"sung_by"},{"_id":"7681","_type":"edge","_outV":"612","_inV":"447","_label":"written_by"},{"_id":"7682","_type":"edge","_outV":"612","_inV":"340","_label":"sung_by"},{"_id":"7683","_type":"edge","_outV":"613","_inV":"614","_label":"written_by"},{"_id":"7684","_type":"edge","_outV":"613","_inV":"356","_label":"sung_by"},{"_id":"7685","_type":"edge","_outV":"42","_inV":"615","_label":"written_by"},{"_id":"7686","_type":"edge","_outV":"42","_inV":"476","_label":"sung_by"},{"_id":"7687","_type":"edge","_outV":"616","_inV":"447","_label":"written_by"},{"_id":"7688","_type":"edge","_outV":"616","_inV":"340","_label":"sung_by"},{"_id":"7689","_type":"edge","_outV":"177","_inV":"592","_label":"written_by"},{"weight":3,"_id":"769","_type":"edge","_outV":"122","_inV":"15","_label":"followed_by"},{"_id":"7690","_type":"edge","_outV":"177","_inV":"415","_label":"sung_by"},{"_id":"7691","_type":"edge","_outV":"617","_inV":"618","_label":"written_by"},{"_id":"7692","_type":"edge","_outV":"617","_inV":"451","_label":"sung_by"},{"_id":"7693","_type":"edge","_outV":"619","_inV":"527","_label":"written_by"},{"_id":"7694","_type":"edge","_outV":"619","_inV":"527","_label":"sung_by"},{"_id":"7695","_type":"edge","_outV":"620","_inV":"446","_label":"written_by"},{"_id":"7696","_type":"edge","_outV":"620","_inV":"340","_label":"sung_by"},{"_id":"7697","_type":"edge","_outV":"310","_inV":"447","_label":"written_by"},{"_id":"7698","_type":"edge","_outV":"310","_inV":"447","_label":"sung_by"},{"_id":"7699","_type":"edge","_outV":"249","_inV":"447","_label":"written_by"},{"weight":1,"_id":"77","_type":"edge","_outV":"46","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"770","_type":"edge","_outV":"122","_inV":"89","_label":"followed_by"},{"_id":"7700","_type":"edge","_outV":"249","_inV":"447","_label":"sung_by"},{"_id":"7701","_type":"edge","_outV":"621","_inV":"622","_label":"written_by"},{"_id":"7702","_type":"edge","_outV":"621","_inV":"623","_label":"sung_by"},{"_id":"7703","_type":"edge","_outV":"166","_inV":"458","_label":"written_by"},{"_id":"7704","_type":"edge","_outV":"166","_inV":"351","_label":"sung_by"},{"_id":"7705","_type":"edge","_outV":"624","_inV":"446","_label":"written_by"},{"_id":"7706","_type":"edge","_outV":"624","_inV":"453","_label":"sung_by"},{"_id":"7707","_type":"edge","_outV":"625","_inV":"447","_label":"written_by"},{"_id":"7708","_type":"edge","_outV":"625","_inV":"354","_label":"sung_by"},{"_id":"7709","_type":"edge","_outV":"244","_inV":"598","_label":"written_by"},{"weight":2,"_id":"771","_type":"edge","_outV":"122","_inV":"78","_label":"followed_by"},{"_id":"7710","_type":"edge","_outV":"244","_inV":"351","_label":"sung_by"},{"_id":"7711","_type":"edge","_outV":"626","_inV":"442","_label":"written_by"},{"_id":"7712","_type":"edge","_outV":"626","_inV":"356","_label":"sung_by"},{"_id":"7713","_type":"edge","_outV":"298","_inV":"446","_label":"written_by"},{"_id":"7714","_type":"edge","_outV":"298","_inV":"351","_label":"sung_by"},{"_id":"7715","_type":"edge","_outV":"299","_inV":"627","_label":"written_by"},{"_id":"7716","_type":"edge","_outV":"299","_inV":"628","_label":"sung_by"},{"_id":"7717","_type":"edge","_outV":"385","_inV":"446","_label":"written_by"},{"_id":"7718","_type":"edge","_outV":"385","_inV":"453","_label":"sung_by"},{"_id":"7719","_type":"edge","_outV":"204","_inV":"447","_label":"written_by"},{"weight":1,"_id":"772","_type":"edge","_outV":"122","_inV":"39","_label":"followed_by"},{"_id":"7720","_type":"edge","_outV":"204","_inV":"340","_label":"sung_by"},{"_id":"7721","_type":"edge","_outV":"144","_inV":"629","_label":"written_by"},{"_id":"7722","_type":"edge","_outV":"144","_inV":"340","_label":"sung_by"},{"_id":"7723","_type":"edge","_outV":"630","_inV":"469","_label":"written_by"},{"_id":"7724","_type":"edge","_outV":"630","_inV":"469","_label":"sung_by"},{"_id":"7725","_type":"edge","_outV":"631","_inV":"632","_label":"written_by"},{"_id":"7726","_type":"edge","_outV":"631","_inV":"507","_label":"sung_by"},{"_id":"7727","_type":"edge","_outV":"633","_inV":"451","_label":"written_by"},{"_id":"7728","_type":"edge","_outV":"633","_inV":"451","_label":"sung_by"},{"_id":"7729","_type":"edge","_outV":"634","_inV":"635","_label":"written_by"},{"weight":9,"_id":"773","_type":"edge","_outV":"122","_inV":"4","_label":"followed_by"},{"_id":"7730","_type":"edge","_outV":"634","_inV":"351","_label":"sung_by"},{"_id":"7731","_type":"edge","_outV":"324","_inV":"458","_label":"written_by"},{"_id":"7732","_type":"edge","_outV":"324","_inV":"340","_label":"sung_by"},{"_id":"7733","_type":"edge","_outV":"636","_inV":"637","_label":"written_by"},{"_id":"7734","_type":"edge","_outV":"636","_inV":"351","_label":"sung_by"},{"_id":"7735","_type":"edge","_outV":"638","_inV":"451","_label":"written_by"},{"_id":"7736","_type":"edge","_outV":"638","_inV":"352","_label":"sung_by"},{"_id":"7737","_type":"edge","_outV":"220","_inV":"446","_label":"written_by"},{"_id":"7738","_type":"edge","_outV":"220","_inV":"340","_label":"sung_by"},{"_id":"7739","_type":"edge","_outV":"88","_inV":"520","_label":"written_by"},{"weight":3,"_id":"774","_type":"edge","_outV":"122","_inV":"153","_label":"followed_by"},{"_id":"7740","_type":"edge","_outV":"88","_inV":"553","_label":"sung_by"},{"_id":"7741","_type":"edge","_outV":"639","_inV":"640","_label":"written_by"},{"_id":"7742","_type":"edge","_outV":"639","_inV":"351","_label":"sung_by"},{"_id":"7743","_type":"edge","_outV":"641","_inV":"642","_label":"written_by"},{"_id":"7744","_type":"edge","_outV":"641","_inV":"462","_label":"sung_by"},{"_id":"7745","_type":"edge","_outV":"643","_inV":"644","_label":"written_by"},{"_id":"7746","_type":"edge","_outV":"643","_inV":"645","_label":"sung_by"},{"_id":"7747","_type":"edge","_outV":"257","_inV":"646","_label":"written_by"},{"_id":"7748","_type":"edge","_outV":"257","_inV":"381","_label":"sung_by"},{"_id":"7749","_type":"edge","_outV":"323","_inV":"481","_label":"written_by"},{"weight":1,"_id":"775","_type":"edge","_outV":"122","_inV":"13","_label":"followed_by"},{"_id":"7750","_type":"edge","_outV":"323","_inV":"481","_label":"sung_by"},{"_id":"7751","_type":"edge","_outV":"143","_inV":"469","_label":"written_by"},{"_id":"7752","_type":"edge","_outV":"143","_inV":"469","_label":"sung_by"},{"_id":"7753","_type":"edge","_outV":"647","_inV":"480","_label":"written_by"},{"_id":"7754","_type":"edge","_outV":"647","_inV":"340","_label":"sung_by"},{"_id":"7755","_type":"edge","_outV":"648","_inV":"451","_label":"written_by"},{"_id":"7756","_type":"edge","_outV":"648","_inV":"574","_label":"sung_by"},{"_id":"7757","_type":"edge","_outV":"306","_inV":"649","_label":"written_by"},{"_id":"7758","_type":"edge","_outV":"306","_inV":"354","_label":"sung_by"},{"_id":"7759","_type":"edge","_outV":"131","_inV":"447","_label":"written_by"},{"weight":12,"_id":"776","_type":"edge","_outV":"122","_inV":"114","_label":"followed_by"},{"_id":"7760","_type":"edge","_outV":"131","_inV":"453","_label":"sung_by"},{"_id":"7761","_type":"edge","_outV":"112","_inV":"650","_label":"written_by"},{"_id":"7762","_type":"edge","_outV":"112","_inV":"351","_label":"sung_by"},{"_id":"7763","_type":"edge","_outV":"264","_inV":"447","_label":"written_by"},{"_id":"7764","_type":"edge","_outV":"264","_inV":"447","_label":"sung_by"},{"_id":"7765","_type":"edge","_outV":"651","_inV":"652","_label":"written_by"},{"_id":"7766","_type":"edge","_outV":"651","_inV":"381","_label":"sung_by"},{"_id":"7767","_type":"edge","_outV":"653","_inV":"654","_label":"written_by"},{"_id":"7768","_type":"edge","_outV":"653","_inV":"356","_label":"sung_by"},{"_id":"7769","_type":"edge","_outV":"655","_inV":"469","_label":"written_by"},{"weight":7,"_id":"777","_type":"edge","_outV":"122","_inV":"21","_label":"followed_by"},{"_id":"7770","_type":"edge","_outV":"655","_inV":"469","_label":"sung_by"},{"_id":"7771","_type":"edge","_outV":"656","_inV":"657","_label":"written_by"},{"_id":"7772","_type":"edge","_outV":"656","_inV":"340","_label":"sung_by"},{"_id":"7773","_type":"edge","_outV":"22","_inV":"658","_label":"written_by"},{"_id":"7774","_type":"edge","_outV":"22","_inV":"351","_label":"sung_by"},{"_id":"7775","_type":"edge","_outV":"12","_inV":"659","_label":"written_by"},{"_id":"7776","_type":"edge","_outV":"12","_inV":"351","_label":"sung_by"},{"_id":"7777","_type":"edge","_outV":"660","_inV":"447","_label":"written_by"},{"_id":"7778","_type":"edge","_outV":"660","_inV":"351","_label":"sung_by"},{"_id":"7779","_type":"edge","_outV":"661","_inV":"447","_label":"written_by"},{"weight":3,"_id":"778","_type":"edge","_outV":"122","_inV":"49","_label":"followed_by"},{"_id":"7780","_type":"edge","_outV":"661","_inV":"340","_label":"sung_by"},{"_id":"7781","_type":"edge","_outV":"6","_inV":"527","_label":"written_by"},{"_id":"7782","_type":"edge","_outV":"6","_inV":"351","_label":"sung_by"},{"_id":"7783","_type":"edge","_outV":"197","_inV":"471","_label":"written_by"},{"_id":"7784","_type":"edge","_outV":"197","_inV":"351","_label":"sung_by"},{"_id":"7785","_type":"edge","_outV":"127","_inV":"662","_label":"written_by"},{"_id":"7786","_type":"edge","_outV":"127","_inV":"340","_label":"sung_by"},{"_id":"7787","_type":"edge","_outV":"663","_inV":"447","_label":"written_by"},{"_id":"7788","_type":"edge","_outV":"663","_inV":"447","_label":"sung_by"},{"_id":"7789","_type":"edge","_outV":"664","_inV":"520","_label":"written_by"},{"weight":1,"_id":"779","_type":"edge","_outV":"122","_inV":"164","_label":"followed_by"},{"_id":"7790","_type":"edge","_outV":"664","_inV":"340","_label":"sung_by"},{"_id":"7791","_type":"edge","_outV":"313","_inV":"644","_label":"written_by"},{"_id":"7792","_type":"edge","_outV":"313","_inV":"340","_label":"sung_by"},{"_id":"7793","_type":"edge","_outV":"665","_inV":"666","_label":"written_by"},{"_id":"7794","_type":"edge","_outV":"665","_inV":"666","_label":"sung_by"},{"_id":"7795","_type":"edge","_outV":"667","_inV":"668","_label":"written_by"},{"_id":"7796","_type":"edge","_outV":"667","_inV":"340","_label":"sung_by"},{"_id":"7797","_type":"edge","_outV":"334","_inV":"501","_label":"written_by"},{"_id":"7798","_type":"edge","_outV":"334","_inV":"501","_label":"sung_by"},{"_id":"7799","_type":"edge","_outV":"32","_inV":"478","_label":"written_by"},{"weight":1,"_id":"78","_type":"edge","_outV":"46","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"780","_type":"edge","_outV":"122","_inV":"225","_label":"followed_by"},{"_id":"7800","_type":"edge","_outV":"32","_inV":"351","_label":"sung_by"},{"_id":"7801","_type":"edge","_outV":"320","_inV":"669","_label":"written_by"},{"_id":"7802","_type":"edge","_outV":"320","_inV":"351","_label":"sung_by"},{"_id":"7803","_type":"edge","_outV":"207","_inV":"670","_label":"written_by"},{"_id":"7804","_type":"edge","_outV":"207","_inV":"356","_label":"sung_by"},{"_id":"7805","_type":"edge","_outV":"319","_inV":"446","_label":"written_by"},{"_id":"7806","_type":"edge","_outV":"319","_inV":"340","_label":"sung_by"},{"_id":"7807","_type":"edge","_outV":"3","_inV":"671","_label":"written_by"},{"_id":"7808","_type":"edge","_outV":"3","_inV":"351","_label":"sung_by"},{"_id":"7809","_type":"edge","_outV":"672","_inV":"623","_label":"written_by"},{"weight":2,"_id":"781","_type":"edge","_outV":"122","_inV":"27","_label":"followed_by"},{"_id":"7810","_type":"edge","_outV":"672","_inV":"623","_label":"sung_by"},{"_id":"7811","_type":"edge","_outV":"199","_inV":"673","_label":"written_by"},{"_id":"7812","_type":"edge","_outV":"199","_inV":"340","_label":"sung_by"},{"_id":"7813","_type":"edge","_outV":"8","_inV":"674","_label":"written_by"},{"_id":"7814","_type":"edge","_outV":"8","_inV":"351","_label":"sung_by"},{"_id":"7815","_type":"edge","_outV":"675","_inV":"650","_label":"written_by"},{"_id":"7816","_type":"edge","_outV":"675","_inV":"567","_label":"sung_by"},{"_id":"7817","_type":"edge","_outV":"676","_inV":"677","_label":"written_by"},{"_id":"7818","_type":"edge","_outV":"676","_inV":"351","_label":"sung_by"},{"_id":"7819","_type":"edge","_outV":"678","_inV":"679","_label":"written_by"},{"weight":1,"_id":"782","_type":"edge","_outV":"122","_inV":"226","_label":"followed_by"},{"_id":"7820","_type":"edge","_outV":"678","_inV":"351","_label":"sung_by"},{"_id":"7821","_type":"edge","_outV":"111","_inV":"446","_label":"written_by"},{"_id":"7822","_type":"edge","_outV":"111","_inV":"507","_label":"sung_by"},{"_id":"7823","_type":"edge","_outV":"680","_inV":"681","_label":"written_by"},{"_id":"7824","_type":"edge","_outV":"680","_inV":"340","_label":"sung_by"},{"_id":"7825","_type":"edge","_outV":"682","_inV":"683","_label":"written_by"},{"_id":"7826","_type":"edge","_outV":"682","_inV":"415","_label":"sung_by"},{"_id":"7827","_type":"edge","_outV":"684","_inV":"451","_label":"written_by"},{"_id":"7828","_type":"edge","_outV":"684","_inV":"340","_label":"sung_by"},{"_id":"7829","_type":"edge","_outV":"685","_inV":"686","_label":"written_by"},{"weight":1,"_id":"783","_type":"edge","_outV":"122","_inV":"12","_label":"followed_by"},{"_id":"7830","_type":"edge","_outV":"685","_inV":"340","_label":"sung_by"},{"_id":"7831","_type":"edge","_outV":"687","_inV":"688","_label":"written_by"},{"_id":"7832","_type":"edge","_outV":"687","_inV":"356","_label":"sung_by"},{"_id":"7833","_type":"edge","_outV":"689","_inV":"480","_label":"written_by"},{"_id":"7834","_type":"edge","_outV":"689","_inV":"415","_label":"sung_by"},{"_id":"7835","_type":"edge","_outV":"690","_inV":"691","_label":"written_by"},{"_id":"7836","_type":"edge","_outV":"690","_inV":"356","_label":"sung_by"},{"_id":"7837","_type":"edge","_outV":"692","_inV":"446","_label":"written_by"},{"_id":"7838","_type":"edge","_outV":"692","_inV":"340","_label":"sung_by"},{"_id":"7839","_type":"edge","_outV":"693","_inV":"694","_label":"written_by"},{"weight":1,"_id":"784","_type":"edge","_outV":"122","_inV":"53","_label":"followed_by"},{"_id":"7840","_type":"edge","_outV":"693","_inV":"623","_label":"sung_by"},{"_id":"7841","_type":"edge","_outV":"695","_inV":"596","_label":"written_by"},{"_id":"7842","_type":"edge","_outV":"695","_inV":"415","_label":"sung_by"},{"_id":"7843","_type":"edge","_outV":"696","_inV":"527","_label":"written_by"},{"_id":"7844","_type":"edge","_outV":"696","_inV":"527","_label":"sung_by"},{"_id":"7845","_type":"edge","_outV":"697","_inV":"446","_label":"written_by"},{"_id":"7846","_type":"edge","_outV":"697","_inV":"498","_label":"sung_by"},{"_id":"7847","_type":"edge","_outV":"26","_inV":"458","_label":"written_by"},{"_id":"7848","_type":"edge","_outV":"26","_inV":"351","_label":"sung_by"},{"_id":"7849","_type":"edge","_outV":"194","_inV":"462","_label":"written_by"},{"weight":1,"_id":"785","_type":"edge","_outV":"122","_inV":"24","_label":"followed_by"},{"_id":"7850","_type":"edge","_outV":"194","_inV":"462","_label":"sung_by"},{"_id":"7851","_type":"edge","_outV":"698","_inV":"447","_label":"written_by"},{"_id":"7852","_type":"edge","_outV":"698","_inV":"351","_label":"sung_by"},{"_id":"7853","_type":"edge","_outV":"20","_inV":"699","_label":"written_by"},{"_id":"7854","_type":"edge","_outV":"20","_inV":"351","_label":"sung_by"},{"_id":"7855","_type":"edge","_outV":"700","_inV":"701","_label":"written_by"},{"_id":"7856","_type":"edge","_outV":"700","_inV":"351","_label":"sung_by"},{"_id":"7857","_type":"edge","_outV":"93","_inV":"480","_label":"written_by"},{"_id":"7858","_type":"edge","_outV":"93","_inV":"453","_label":"sung_by"},{"_id":"7859","_type":"edge","_outV":"702","_inV":"447","_label":"written_by"},{"weight":4,"_id":"786","_type":"edge","_outV":"122","_inV":"25","_label":"followed_by"},{"_id":"7860","_type":"edge","_outV":"702","_inV":"447","_label":"sung_by"},{"_id":"7861","_type":"edge","_outV":"211","_inV":"480","_label":"written_by"},{"_id":"7862","_type":"edge","_outV":"211","_inV":"340","_label":"sung_by"},{"_id":"7863","_type":"edge","_outV":"703","_inV":"704","_label":"written_by"},{"_id":"7864","_type":"edge","_outV":"703","_inV":"567","_label":"sung_by"},{"_id":"7865","_type":"edge","_outV":"705","_inV":"706","_label":"written_by"},{"_id":"7866","_type":"edge","_outV":"705","_inV":"340","_label":"sung_by"},{"_id":"7867","_type":"edge","_outV":"707","_inV":"708","_label":"written_by"},{"_id":"7868","_type":"edge","_outV":"707","_inV":"457","_label":"sung_by"},{"_id":"7869","_type":"edge","_outV":"709","_inV":"579","_label":"written_by"},{"weight":3,"_id":"787","_type":"edge","_outV":"122","_inV":"9","_label":"followed_by"},{"_id":"7870","_type":"edge","_outV":"709","_inV":"351","_label":"sung_by"},{"_id":"7871","_type":"edge","_outV":"710","_inV":"557","_label":"written_by"},{"_id":"7872","_type":"edge","_outV":"710","_inV":"356","_label":"sung_by"},{"_id":"7873","_type":"edge","_outV":"711","_inV":"712","_label":"written_by"},{"_id":"7874","_type":"edge","_outV":"711","_inV":"340","_label":"sung_by"},{"_id":"7875","_type":"edge","_outV":"713","_inV":"714","_label":"written_by"},{"_id":"7876","_type":"edge","_outV":"713","_inV":"340","_label":"sung_by"},{"_id":"7877","_type":"edge","_outV":"715","_inV":"716","_label":"written_by"},{"_id":"7878","_type":"edge","_outV":"715","_inV":"340","_label":"sung_by"},{"_id":"7879","_type":"edge","_outV":"717","_inV":"718","_label":"written_by"},{"weight":1,"_id":"788","_type":"edge","_outV":"122","_inV":"72","_label":"followed_by"},{"_id":"7880","_type":"edge","_outV":"717","_inV":"356","_label":"sung_by"},{"_id":"7881","_type":"edge","_outV":"40","_inV":"520","_label":"written_by"},{"_id":"7882","_type":"edge","_outV":"40","_inV":"356","_label":"sung_by"},{"_id":"7883","_type":"edge","_outV":"76","_inV":"446","_label":"written_by"},{"_id":"7884","_type":"edge","_outV":"76","_inV":"351","_label":"sung_by"},{"_id":"7885","_type":"edge","_outV":"719","_inV":"632","_label":"written_by"},{"_id":"7886","_type":"edge","_outV":"719","_inV":"351","_label":"sung_by"},{"_id":"7887","_type":"edge","_outV":"720","_inV":"721","_label":"written_by"},{"_id":"7888","_type":"edge","_outV":"720","_inV":"351","_label":"sung_by"},{"_id":"7889","_type":"edge","_outV":"526","_inV":"527","_label":"written_by"},{"weight":1,"_id":"789","_type":"edge","_outV":"122","_inV":"54","_label":"followed_by"},{"_id":"7890","_type":"edge","_outV":"526","_inV":"527","_label":"sung_by"},{"_id":"7891","_type":"edge","_outV":"722","_inV":"704","_label":"written_by"},{"_id":"7892","_type":"edge","_outV":"722","_inV":"356","_label":"sung_by"},{"_id":"7893","_type":"edge","_outV":"723","_inV":"724","_label":"written_by"},{"_id":"7894","_type":"edge","_outV":"723","_inV":"351","_label":"sung_by"},{"_id":"7895","_type":"edge","_outV":"725","_inV":"469","_label":"written_by"},{"_id":"7896","_type":"edge","_outV":"725","_inV":"469","_label":"sung_by"},{"_id":"7897","_type":"edge","_outV":"128","_inV":"447","_label":"written_by"},{"_id":"7898","_type":"edge","_outV":"128","_inV":"726","_label":"sung_by"},{"_id":"7899","_type":"edge","_outV":"727","_inV":"442","_label":"written_by"},{"weight":1,"_id":"79","_type":"edge","_outV":"46","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"790","_type":"edge","_outV":"122","_inV":"19","_label":"followed_by"},{"_id":"7900","_type":"edge","_outV":"727","_inV":"356","_label":"sung_by"},{"_id":"7901","_type":"edge","_outV":"331","_inV":"447","_label":"written_by"},{"_id":"7902","_type":"edge","_outV":"331","_inV":"447","_label":"sung_by"},{"_id":"7903","_type":"edge","_outV":"728","_inV":"729","_label":"written_by"},{"_id":"7904","_type":"edge","_outV":"728","_inV":"356","_label":"sung_by"},{"_id":"7905","_type":"edge","_outV":"317","_inV":"730","_label":"written_by"},{"_id":"7906","_type":"edge","_outV":"317","_inV":"574","_label":"sung_by"},{"_id":"7907","_type":"edge","_outV":"731","_inV":"732","_label":"written_by"},{"_id":"7908","_type":"edge","_outV":"731","_inV":"351","_label":"sung_by"},{"_id":"7909","_type":"edge","_outV":"250","_inV":"447","_label":"written_by"},{"weight":3,"_id":"791","_type":"edge","_outV":"122","_inV":"157","_label":"followed_by"},{"_id":"7910","_type":"edge","_outV":"250","_inV":"447","_label":"sung_by"},{"_id":"7911","_type":"edge","_outV":"206","_inV":"650","_label":"written_by"},{"_id":"7912","_type":"edge","_outV":"206","_inV":"340","_label":"sung_by"},{"_id":"7913","_type":"edge","_outV":"733","_inV":"734","_label":"written_by"},{"_id":"7914","_type":"edge","_outV":"733","_inV":"340","_label":"sung_by"},{"_id":"7915","_type":"edge","_outV":"735","_inV":"527","_label":"written_by"},{"_id":"7916","_type":"edge","_outV":"735","_inV":"527","_label":"sung_by"},{"_id":"7917","_type":"edge","_outV":"736","_inV":"447","_label":"written_by"},{"_id":"7918","_type":"edge","_outV":"736","_inV":"447","_label":"sung_by"},{"_id":"7919","_type":"edge","_outV":"113","_inV":"737","_label":"written_by"},{"weight":1,"_id":"792","_type":"edge","_outV":"122","_inV":"127","_label":"followed_by"},{"_id":"7920","_type":"edge","_outV":"113","_inV":"476","_label":"sung_by"},{"_id":"7921","_type":"edge","_outV":"738","_inV":"739","_label":"written_by"},{"_id":"7922","_type":"edge","_outV":"738","_inV":"351","_label":"sung_by"},{"_id":"7923","_type":"edge","_outV":"740","_inV":"741","_label":"written_by"},{"_id":"7924","_type":"edge","_outV":"740","_inV":"574","_label":"sung_by"},{"_id":"7925","_type":"edge","_outV":"742","_inV":"451","_label":"written_by"},{"_id":"7926","_type":"edge","_outV":"742","_inV":"537","_label":"sung_by"},{"_id":"7927","_type":"edge","_outV":"33","_inV":"520","_label":"written_by"},{"_id":"7928","_type":"edge","_outV":"33","_inV":"351","_label":"sung_by"},{"_id":"7929","_type":"edge","_outV":"136","_inV":"743","_label":"written_by"},{"weight":1,"_id":"793","_type":"edge","_outV":"122","_inV":"55","_label":"followed_by"},{"_id":"7930","_type":"edge","_outV":"136","_inV":"416","_label":"sung_by"},{"_id":"7931","_type":"edge","_outV":"744","_inV":"745","_label":"written_by"},{"_id":"7932","_type":"edge","_outV":"744","_inV":"574","_label":"sung_by"},{"_id":"7933","_type":"edge","_outV":"746","_inV":"530","_label":"written_by"},{"_id":"7934","_type":"edge","_outV":"746","_inV":"415","_label":"sung_by"},{"_id":"7935","_type":"edge","_outV":"747","_inV":"748","_label":"written_by"},{"_id":"7936","_type":"edge","_outV":"747","_inV":"340","_label":"sung_by"},{"_id":"7937","_type":"edge","_outV":"228","_inV":"749","_label":"written_by"},{"_id":"7938","_type":"edge","_outV":"228","_inV":"340","_label":"sung_by"},{"_id":"7939","_type":"edge","_outV":"750","_inV":"751","_label":"written_by"},{"weight":1,"_id":"794","_type":"edge","_outV":"122","_inV":"195","_label":"followed_by"},{"_id":"7940","_type":"edge","_outV":"750","_inV":"340","_label":"sung_by"},{"_id":"7941","_type":"edge","_outV":"752","_inV":"446","_label":"written_by"},{"_id":"7942","_type":"edge","_outV":"752","_inV":"340","_label":"sung_by"},{"_id":"7943","_type":"edge","_outV":"272","_inV":"753","_label":"written_by"},{"_id":"7944","_type":"edge","_outV":"272","_inV":"351","_label":"sung_by"},{"_id":"7945","_type":"edge","_outV":"330","_inV":"447","_label":"written_by"},{"_id":"7946","_type":"edge","_outV":"330","_inV":"447","_label":"sung_by"},{"_id":"7947","_type":"edge","_outV":"754","_inV":"755","_label":"written_by"},{"_id":"7948","_type":"edge","_outV":"754","_inV":"527","_label":"sung_by"},{"_id":"7949","_type":"edge","_outV":"756","_inV":"446","_label":"written_by"},{"weight":1,"_id":"795","_type":"edge","_outV":"122","_inV":"82","_label":"followed_by"},{"_id":"7950","_type":"edge","_outV":"756","_inV":"340","_label":"sung_by"},{"_id":"7951","_type":"edge","_outV":"255","_inV":"757","_label":"written_by"},{"_id":"7952","_type":"edge","_outV":"255","_inV":"757","_label":"sung_by"},{"_id":"7953","_type":"edge","_outV":"139","_inV":"758","_label":"written_by"},{"_id":"7954","_type":"edge","_outV":"139","_inV":"340","_label":"sung_by"},{"_id":"7955","_type":"edge","_outV":"759","_inV":"760","_label":"written_by"},{"_id":"7956","_type":"edge","_outV":"759","_inV":"340","_label":"sung_by"},{"_id":"7957","_type":"edge","_outV":"761","_inV":"644","_label":"written_by"},{"_id":"7958","_type":"edge","_outV":"761","_inV":"340","_label":"sung_by"},{"_id":"7959","_type":"edge","_outV":"762","_inV":"763","_label":"written_by"},{"weight":4,"_id":"796","_type":"edge","_outV":"122","_inV":"50","_label":"followed_by"},{"_id":"7960","_type":"edge","_outV":"762","_inV":"356","_label":"sung_by"},{"_id":"7961","_type":"edge","_outV":"764","_inV":"765","_label":"written_by"},{"_id":"7962","_type":"edge","_outV":"764","_inV":"498","_label":"sung_by"},{"_id":"7963","_type":"edge","_outV":"766","_inV":"458","_label":"written_by"},{"_id":"7964","_type":"edge","_outV":"766","_inV":"340","_label":"sung_by"},{"_id":"7965","_type":"edge","_outV":"767","_inV":"447","_label":"written_by"},{"_id":"7966","_type":"edge","_outV":"767","_inV":"447","_label":"sung_by"},{"_id":"7967","_type":"edge","_outV":"768","_inV":"446","_label":"written_by"},{"_id":"7968","_type":"edge","_outV":"768","_inV":"340","_label":"sung_by"},{"_id":"7969","_type":"edge","_outV":"311","_inV":"447","_label":"written_by"},{"weight":2,"_id":"797","_type":"edge","_outV":"122","_inV":"99","_label":"followed_by"},{"_id":"7970","_type":"edge","_outV":"311","_inV":"447","_label":"sung_by"},{"_id":"7971","_type":"edge","_outV":"47","_inV":"769","_label":"written_by"},{"_id":"7972","_type":"edge","_outV":"47","_inV":"457","_label":"sung_by"},{"_id":"7973","_type":"edge","_outV":"275","_inV":"480","_label":"written_by"},{"_id":"7974","_type":"edge","_outV":"275","_inV":"415","_label":"sung_by"},{"_id":"7975","_type":"edge","_outV":"770","_inV":"447","_label":"written_by"},{"_id":"7976","_type":"edge","_outV":"770","_inV":"340","_label":"sung_by"},{"_id":"7977","_type":"edge","_outV":"164","_inV":"771","_label":"written_by"},{"_id":"7978","_type":"edge","_outV":"164","_inV":"476","_label":"sung_by"},{"_id":"7979","_type":"edge","_outV":"772","_inV":"773","_label":"written_by"},{"weight":1,"_id":"798","_type":"edge","_outV":"122","_inV":"91","_label":"followed_by"},{"_id":"7980","_type":"edge","_outV":"772","_inV":"574","_label":"sung_by"},{"_id":"7981","_type":"edge","_outV":"774","_inV":"775","_label":"written_by"},{"_id":"7982","_type":"edge","_outV":"774","_inV":"484","_label":"sung_by"},{"_id":"7983","_type":"edge","_outV":"776","_inV":"446","_label":"written_by"},{"_id":"7984","_type":"edge","_outV":"776","_inV":"356","_label":"sung_by"},{"_id":"7985","_type":"edge","_outV":"777","_inV":"446","_label":"written_by"},{"_id":"7986","_type":"edge","_outV":"777","_inV":"623","_label":"sung_by"},{"_id":"7987","_type":"edge","_outV":"778","_inV":"743","_label":"written_by"},{"_id":"7988","_type":"edge","_outV":"778","_inV":"416","_label":"sung_by"},{"_id":"7989","_type":"edge","_outV":"779","_inV":"478","_label":"written_by"},{"weight":1,"_id":"799","_type":"edge","_outV":"122","_inV":"70","_label":"followed_by"},{"_id":"7990","_type":"edge","_outV":"779","_inV":"453","_label":"sung_by"},{"_id":"7991","_type":"edge","_outV":"66","_inV":"447","_label":"written_by"},{"_id":"7992","_type":"edge","_outV":"66","_inV":"340","_label":"sung_by"},{"_id":"7993","_type":"edge","_outV":"780","_inV":"781","_label":"written_by"},{"_id":"7994","_type":"edge","_outV":"780","_inV":"351","_label":"sung_by"},{"_id":"7995","_type":"edge","_outV":"782","_inV":"783","_label":"written_by"},{"_id":"7996","_type":"edge","_outV":"782","_inV":"351","_label":"sung_by"},{"_id":"7997","_type":"edge","_outV":"784","_inV":"451","_label":"written_by"},{"_id":"7998","_type":"edge","_outV":"784","_inV":"451","_label":"sung_by"},{"_id":"7999","_type":"edge","_outV":"30","_inV":"785","_label":"written_by"},{"weight":3,"_id":"8","_type":"edge","_outV":"9","_inV":"12","_label":"followed_by"},{"weight":4,"_id":"80","_type":"edge","_outV":"46","_inV":"72","_label":"followed_by"},{"weight":1,"_id":"800","_type":"edge","_outV":"122","_inV":"84","_label":"followed_by"},{"_id":"8000","_type":"edge","_outV":"30","_inV":"476","_label":"sung_by"},{"_id":"8001","_type":"edge","_outV":"786","_inV":"787","_label":"written_by"},{"_id":"8002","_type":"edge","_outV":"786","_inV":"351","_label":"sung_by"},{"_id":"8003","_type":"edge","_outV":"31","_inV":"520","_label":"written_by"},{"_id":"8004","_type":"edge","_outV":"31","_inV":"351","_label":"sung_by"},{"_id":"8005","_type":"edge","_outV":"300","_inV":"469","_label":"written_by"},{"_id":"8006","_type":"edge","_outV":"300","_inV":"469","_label":"sung_by"},{"_id":"8007","_type":"edge","_outV":"287","_inV":"447","_label":"written_by"},{"_id":"8008","_type":"edge","_outV":"287","_inV":"447","_label":"sung_by"},{"_id":"8009","_type":"edge","_outV":"788","_inV":"789","_label":"written_by"},{"weight":7,"_id":"801","_type":"edge","_outV":"122","_inV":"65","_label":"followed_by"},{"_id":"8010","_type":"edge","_outV":"788","_inV":"415","_label":"sung_by"},{"_id":"8011","_type":"edge","_outV":"86","_inV":"490","_label":"written_by"},{"_id":"8012","_type":"edge","_outV":"86","_inV":"453","_label":"sung_by"},{"_id":"8013","_type":"edge","_outV":"214","_inV":"790","_label":"written_by"},{"_id":"8014","_type":"edge","_outV":"214","_inV":"340","_label":"sung_by"},{"_id":"8015","_type":"edge","_outV":"95","_inV":"791","_label":"written_by"},{"_id":"8016","_type":"edge","_outV":"95","_inV":"533","_label":"sung_by"},{"_id":"8017","_type":"edge","_outV":"792","_inV":"793","_label":"written_by"},{"_id":"8018","_type":"edge","_outV":"792","_inV":"415","_label":"sung_by"},{"_id":"8019","_type":"edge","_outV":"117","_inV":"447","_label":"written_by"},{"weight":2,"_id":"802","_type":"edge","_outV":"122","_inV":"80","_label":"followed_by"},{"_id":"8020","_type":"edge","_outV":"117","_inV":"351","_label":"sung_by"},{"_id":"8021","_type":"edge","_outV":"794","_inV":"446","_label":"written_by"},{"_id":"8022","_type":"edge","_outV":"794","_inV":"340","_label":"sung_by"},{"_id":"8023","_type":"edge","_outV":"146","_inV":"527","_label":"written_by"},{"_id":"8024","_type":"edge","_outV":"146","_inV":"356","_label":"sung_by"},{"_id":"8025","_type":"edge","_outV":"795","_inV":"796","_label":"written_by"},{"_id":"8026","_type":"edge","_outV":"795","_inV":"498","_label":"sung_by"},{"_id":"8027","_type":"edge","_outV":"242","_inV":"480","_label":"written_by"},{"_id":"8028","_type":"edge","_outV":"242","_inV":"354","_label":"sung_by"},{"_id":"8029","_type":"edge","_outV":"297","_inV":"447","_label":"written_by"},{"weight":1,"_id":"803","_type":"edge","_outV":"122","_inV":"180","_label":"followed_by"},{"_id":"8030","_type":"edge","_outV":"297","_inV":"447","_label":"sung_by"},{"_id":"8031","_type":"edge","_outV":"797","_inV":"446","_label":"written_by"},{"_id":"8032","_type":"edge","_outV":"797","_inV":"798","_label":"sung_by"},{"_id":"8033","_type":"edge","_outV":"238","_inV":"799","_label":"written_by"},{"_id":"8034","_type":"edge","_outV":"238","_inV":"351","_label":"sung_by"},{"_id":"8035","_type":"edge","_outV":"800","_inV":"446","_label":"written_by"},{"_id":"8036","_type":"edge","_outV":"800","_inV":"351","_label":"sung_by"},{"_id":"8037","_type":"edge","_outV":"801","_inV":"527","_label":"written_by"},{"_id":"8038","_type":"edge","_outV":"801","_inV":"527","_label":"sung_by"},{"_id":"8039","_type":"edge","_outV":"802","_inV":"803","_label":"written_by"},{"weight":4,"_id":"804","_type":"edge","_outV":"122","_inV":"38","_label":"followed_by"},{"_id":"8040","_type":"edge","_outV":"802","_inV":"340","_label":"sung_by"},{"_id":"8041","_type":"edge","_outV":"55","_inV":"804","_label":"written_by"},{"_id":"8042","_type":"edge","_outV":"55","_inV":"457","_label":"sung_by"},{"_id":"8043","_type":"edge","_outV":"805","_inV":"806","_label":"written_by"},{"_id":"8044","_type":"edge","_outV":"805","_inV":"356","_label":"sung_by"},{"_id":"8045","_type":"edge","_outV":"235","_inV":"807","_label":"written_by"},{"_id":"8046","_type":"edge","_outV":"235","_inV":"340","_label":"sung_by"},{"_id":"8047","_type":"edge","_outV":"808","_inV":"598","_label":"written_by"},{"_id":"8048","_type":"edge","_outV":"808","_inV":"351","_label":"sung_by"},{"weight":1,"_id":"805","_type":"edge","_outV":"122","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"806","_type":"edge","_outV":"122","_inV":"197","_label":"followed_by"},{"weight":1,"_id":"807","_type":"edge","_outV":"122","_inV":"22","_label":"followed_by"},{"weight":1,"_id":"808","_type":"edge","_outV":"122","_inV":"154","_label":"followed_by"},{"weight":1,"_id":"809","_type":"edge","_outV":"122","_inV":"162","_label":"followed_by"},{"weight":1,"_id":"81","_type":"edge","_outV":"46","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"810","_type":"edge","_outV":"122","_inV":"87","_label":"followed_by"},{"weight":1,"_id":"811","_type":"edge","_outV":"122","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"812","_type":"edge","_outV":"122","_inV":"83","_label":"followed_by"},{"weight":68,"_id":"813","_type":"edge","_outV":"171","_inV":"85","_label":"followed_by"},{"weight":1,"_id":"814","_type":"edge","_outV":"171","_inV":"155","_label":"followed_by"},{"weight":7,"_id":"815","_type":"edge","_outV":"171","_inV":"120","_label":"followed_by"},{"weight":11,"_id":"816","_type":"edge","_outV":"171","_inV":"21","_label":"followed_by"},{"weight":38,"_id":"817","_type":"edge","_outV":"171","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"818","_type":"edge","_outV":"171","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"819","_type":"edge","_outV":"171","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"82","_type":"edge","_outV":"46","_inV":"74","_label":"followed_by"},{"weight":1,"_id":"820","_type":"edge","_outV":"171","_inV":"153","_label":"followed_by"},{"weight":1,"_id":"821","_type":"edge","_outV":"171","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"822","_type":"edge","_outV":"171","_inV":"208","_label":"followed_by"},{"weight":24,"_id":"823","_type":"edge","_outV":"171","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"824","_type":"edge","_outV":"171","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"825","_type":"edge","_outV":"171","_inV":"196","_label":"followed_by"},{"weight":4,"_id":"826","_type":"edge","_outV":"171","_inV":"110","_label":"followed_by"},{"weight":1,"_id":"827","_type":"edge","_outV":"171","_inV":"18","_label":"followed_by"},{"weight":1,"_id":"828","_type":"edge","_outV":"171","_inV":"62","_label":"followed_by"},{"weight":1,"_id":"829","_type":"edge","_outV":"171","_inV":"109","_label":"followed_by"},{"weight":8,"_id":"83","_type":"edge","_outV":"46","_inV":"34","_label":"followed_by"},{"weight":10,"_id":"830","_type":"edge","_outV":"171","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"831","_type":"edge","_outV":"171","_inV":"189","_label":"followed_by"},{"weight":1,"_id":"832","_type":"edge","_outV":"171","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"833","_type":"edge","_outV":"171","_inV":"227","_label":"followed_by"},{"weight":20,"_id":"834","_type":"edge","_outV":"171","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"835","_type":"edge","_outV":"171","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"836","_type":"edge","_outV":"171","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"837","_type":"edge","_outV":"171","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"838","_type":"edge","_outV":"171","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"839","_type":"edge","_outV":"171","_inV":"98","_label":"followed_by"},{"weight":1,"_id":"84","_type":"edge","_outV":"46","_inV":"75","_label":"followed_by"},{"weight":2,"_id":"840","_type":"edge","_outV":"171","_inV":"116","_label":"followed_by"},{"weight":1,"_id":"841","_type":"edge","_outV":"171","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"842","_type":"edge","_outV":"171","_inV":"49","_label":"followed_by"},{"weight":1,"_id":"843","_type":"edge","_outV":"171","_inV":"106","_label":"followed_by"},{"weight":1,"_id":"844","_type":"edge","_outV":"171","_inV":"82","_label":"followed_by"},{"weight":11,"_id":"845","_type":"edge","_outV":"171","_inV":"14","_label":"followed_by"},{"weight":2,"_id":"846","_type":"edge","_outV":"171","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"847","_type":"edge","_outV":"171","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"848","_type":"edge","_outV":"171","_inV":"69","_label":"followed_by"},{"weight":2,"_id":"849","_type":"edge","_outV":"171","_inV":"36","_label":"followed_by"},{"weight":1,"_id":"85","_type":"edge","_outV":"46","_inV":"76","_label":"followed_by"},{"weight":2,"_id":"850","_type":"edge","_outV":"171","_inV":"167","_label":"followed_by"},{"weight":1,"_id":"851","_type":"edge","_outV":"171","_inV":"228","_label":"followed_by"},{"weight":4,"_id":"852","_type":"edge","_outV":"171","_inV":"28","_label":"followed_by"},{"weight":1,"_id":"853","_type":"edge","_outV":"171","_inV":"137","_label":"followed_by"},{"weight":2,"_id":"854","_type":"edge","_outV":"171","_inV":"34","_label":"followed_by"},{"weight":3,"_id":"855","_type":"edge","_outV":"171","_inV":"41","_label":"followed_by"},{"weight":2,"_id":"856","_type":"edge","_outV":"171","_inV":"172","_label":"followed_by"},{"weight":5,"_id":"857","_type":"edge","_outV":"171","_inV":"229","_label":"followed_by"},{"weight":5,"_id":"858","_type":"edge","_outV":"171","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"859","_type":"edge","_outV":"171","_inV":"46","_label":"followed_by"},{"weight":1,"_id":"86","_type":"edge","_outV":"46","_inV":"77","_label":"followed_by"},{"weight":1,"_id":"860","_type":"edge","_outV":"171","_inV":"37","_label":"followed_by"},{"weight":2,"_id":"861","_type":"edge","_outV":"189","_inV":"181","_label":"followed_by"},{"weight":6,"_id":"862","_type":"edge","_outV":"189","_inV":"32","_label":"followed_by"},{"weight":1,"_id":"863","_type":"edge","_outV":"189","_inV":"26","_label":"followed_by"},{"weight":2,"_id":"864","_type":"edge","_outV":"189","_inV":"14","_label":"followed_by"},{"weight":9,"_id":"865","_type":"edge","_outV":"189","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"866","_type":"edge","_outV":"189","_inV":"18","_label":"followed_by"},{"weight":3,"_id":"867","_type":"edge","_outV":"189","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"868","_type":"edge","_outV":"189","_inV":"83","_label":"followed_by"},{"weight":1,"_id":"869","_type":"edge","_outV":"189","_inV":"50","_label":"followed_by"},{"weight":4,"_id":"87","_type":"edge","_outV":"46","_inV":"78","_label":"followed_by"},{"weight":2,"_id":"870","_type":"edge","_outV":"189","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"871","_type":"edge","_outV":"189","_inV":"42","_label":"followed_by"},{"weight":1,"_id":"872","_type":"edge","_outV":"189","_inV":"91","_label":"followed_by"},{"weight":1,"_id":"873","_type":"edge","_outV":"189","_inV":"109","_label":"followed_by"},{"weight":1,"_id":"874","_type":"edge","_outV":"189","_inV":"27","_label":"followed_by"},{"weight":2,"_id":"875","_type":"edge","_outV":"189","_inV":"53","_label":"followed_by"},{"weight":1,"_id":"876","_type":"edge","_outV":"189","_inV":"103","_label":"followed_by"},{"weight":1,"_id":"877","_type":"edge","_outV":"189","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"878","_type":"edge","_outV":"189","_inV":"84","_label":"followed_by"},{"weight":1,"_id":"879","_type":"edge","_outV":"189","_inV":"30","_label":"followed_by"},{"weight":1,"_id":"88","_type":"edge","_outV":"46","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"880","_type":"edge","_outV":"189","_inV":"10","_label":"followed_by"},{"weight":1,"_id":"881","_type":"edge","_outV":"189","_inV":"63","_label":"followed_by"},{"weight":2,"_id":"882","_type":"edge","_outV":"189","_inV":"117","_label":"followed_by"},{"weight":2,"_id":"883","_type":"edge","_outV":"189","_inV":"188","_label":"followed_by"},{"weight":1,"_id":"884","_type":"edge","_outV":"189","_inV":"71","_label":"followed_by"},{"weight":1,"_id":"885","_type":"edge","_outV":"140","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"886","_type":"edge","_outV":"140","_inV":"13","_label":"followed_by"},{"weight":2,"_id":"887","_type":"edge","_outV":"140","_inV":"64","_label":"followed_by"},{"weight":1,"_id":"888","_type":"edge","_outV":"140","_inV":"87","_label":"followed_by"},{"weight":5,"_id":"889","_type":"edge","_outV":"140","_inV":"120","_label":"followed_by"},{"weight":2,"_id":"89","_type":"edge","_outV":"46","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"890","_type":"edge","_outV":"140","_inV":"79","_label":"followed_by"},{"weight":2,"_id":"891","_type":"edge","_outV":"140","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"892","_type":"edge","_outV":"140","_inV":"33","_label":"followed_by"},{"weight":1,"_id":"893","_type":"edge","_outV":"140","_inV":"84","_label":"followed_by"},{"weight":3,"_id":"894","_type":"edge","_outV":"140","_inV":"164","_label":"followed_by"},{"weight":4,"_id":"895","_type":"edge","_outV":"140","_inV":"29","_label":"followed_by"},{"weight":5,"_id":"896","_type":"edge","_outV":"140","_inV":"153","_label":"followed_by"},{"weight":2,"_id":"897","_type":"edge","_outV":"140","_inV":"50","_label":"followed_by"},{"weight":1,"_id":"898","_type":"edge","_outV":"140","_inV":"68","_label":"followed_by"},{"weight":1,"_id":"899","_type":"edge","_outV":"140","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"9","_type":"edge","_outV":"9","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"90","_type":"edge","_outV":"46","_inV":"80","_label":"followed_by"},{"weight":1,"_id":"900","_type":"edge","_outV":"174","_inV":"173","_label":"followed_by"},{"weight":5,"_id":"901","_type":"edge","_outV":"174","_inV":"58","_label":"followed_by"},{"weight":2,"_id":"902","_type":"edge","_outV":"174","_inV":"60","_label":"followed_by"},{"weight":1,"_id":"903","_type":"edge","_outV":"174","_inV":"117","_label":"followed_by"},{"weight":1,"_id":"904","_type":"edge","_outV":"174","_inV":"54","_label":"followed_by"},{"weight":2,"_id":"905","_type":"edge","_outV":"174","_inV":"35","_label":"followed_by"},{"weight":1,"_id":"906","_type":"edge","_outV":"174","_inV":"27","_label":"followed_by"},{"weight":1,"_id":"907","_type":"edge","_outV":"174","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"908","_type":"edge","_outV":"174","_inV":"158","_label":"followed_by"},{"weight":1,"_id":"909","_type":"edge","_outV":"174","_inV":"175","_label":"followed_by"},{"weight":2,"_id":"91","_type":"edge","_outV":"46","_inV":"81","_label":"followed_by"},{"weight":3,"_id":"910","_type":"edge","_outV":"91","_inV":"3","_label":"followed_by"},{"weight":1,"_id":"911","_type":"edge","_outV":"91","_inV":"125","_label":"followed_by"},{"weight":59,"_id":"912","_type":"edge","_outV":"91","_inV":"13","_label":"followed_by"},{"weight":3,"_id":"913","_type":"edge","_outV":"91","_inV":"25","_label":"followed_by"},{"weight":5,"_id":"914","_type":"edge","_outV":"91","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"915","_type":"edge","_outV":"91","_inV":"4","_label":"followed_by"},{"weight":1,"_id":"916","_type":"edge","_outV":"91","_inV":"12","_label":"followed_by"},{"weight":1,"_id":"917","_type":"edge","_outV":"91","_inV":"32","_label":"followed_by"},{"weight":4,"_id":"918","_type":"edge","_outV":"91","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"919","_type":"edge","_outV":"91","_inV":"230","_label":"followed_by"},{"weight":2,"_id":"92","_type":"edge","_outV":"46","_inV":"82","_label":"followed_by"},{"weight":1,"_id":"920","_type":"edge","_outV":"91","_inV":"26","_label":"followed_by"},{"weight":1,"_id":"921","_type":"edge","_outV":"91","_inV":"59","_label":"followed_by"},{"weight":1,"_id":"922","_type":"edge","_outV":"91","_inV":"99","_label":"followed_by"},{"weight":2,"_id":"923","_type":"edge","_outV":"91","_inV":"76","_label":"followed_by"},{"weight":3,"_id":"924","_type":"edge","_outV":"91","_inV":"153","_label":"followed_by"},{"weight":192,"_id":"925","_type":"edge","_outV":"91","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"926","_type":"edge","_outV":"91","_inV":"114","_label":"followed_by"},{"weight":3,"_id":"927","_type":"edge","_outV":"91","_inV":"181","_label":"followed_by"},{"weight":1,"_id":"928","_type":"edge","_outV":"91","_inV":"101","_label":"followed_by"},{"weight":1,"_id":"929","_type":"edge","_outV":"91","_inV":"116","_label":"followed_by"},{"weight":4,"_id":"93","_type":"edge","_outV":"46","_inV":"83","_label":"followed_by"},{"weight":4,"_id":"930","_type":"edge","_outV":"91","_inV":"183","_label":"followed_by"},{"weight":1,"_id":"931","_type":"edge","_outV":"91","_inV":"29","_label":"followed_by"},{"weight":1,"_id":"932","_type":"edge","_outV":"91","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"933","_type":"edge","_outV":"91","_inV":"5","_label":"followed_by"},{"weight":1,"_id":"934","_type":"edge","_outV":"91","_inV":"69","_label":"followed_by"},{"weight":1,"_id":"935","_type":"edge","_outV":"91","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"936","_type":"edge","_outV":"91","_inV":"231","_label":"followed_by"},{"weight":1,"_id":"937","_type":"edge","_outV":"91","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"938","_type":"edge","_outV":"91","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"939","_type":"edge","_outV":"91","_inV":"41","_label":"followed_by"},{"weight":1,"_id":"94","_type":"edge","_outV":"46","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"940","_type":"edge","_outV":"91","_inV":"186","_label":"followed_by"},{"weight":1,"_id":"941","_type":"edge","_outV":"67","_inV":"96","_label":"followed_by"},{"weight":1,"_id":"942","_type":"edge","_outV":"67","_inV":"74","_label":"followed_by"},{"weight":2,"_id":"943","_type":"edge","_outV":"67","_inV":"23","_label":"followed_by"},{"weight":1,"_id":"944","_type":"edge","_outV":"67","_inV":"128","_label":"followed_by"},{"weight":2,"_id":"945","_type":"edge","_outV":"67","_inV":"21","_label":"followed_by"},{"weight":1,"_id":"946","_type":"edge","_outV":"67","_inV":"61","_label":"followed_by"},{"weight":7,"_id":"947","_type":"edge","_outV":"67","_inV":"94","_label":"followed_by"},{"weight":1,"_id":"948","_type":"edge","_outV":"67","_inV":"148","_label":"followed_by"},{"weight":1,"_id":"949","_type":"edge","_outV":"67","_inV":"32","_label":"followed_by"},{"weight":2,"_id":"95","_type":"edge","_outV":"46","_inV":"84","_label":"followed_by"},{"weight":2,"_id":"950","_type":"edge","_outV":"67","_inV":"29","_label":"followed_by"},{"weight":2,"_id":"951","_type":"edge","_outV":"67","_inV":"19","_label":"followed_by"},{"weight":2,"_id":"952","_type":"edge","_outV":"67","_inV":"49","_label":"followed_by"},{"weight":4,"_id":"953","_type":"edge","_outV":"67","_inV":"134","_label":"followed_by"},{"weight":10,"_id":"954","_type":"edge","_outV":"67","_inV":"130","_label":"followed_by"},{"weight":1,"_id":"955","_type":"edge","_outV":"67","_inV":"75","_label":"followed_by"},{"weight":5,"_id":"956","_type":"edge","_outV":"67","_inV":"125","_label":"followed_by"},{"weight":1,"_id":"957","_type":"edge","_outV":"67","_inV":"57","_label":"followed_by"},{"weight":1,"_id":"958","_type":"edge","_outV":"67","_inV":"88","_label":"followed_by"},{"weight":1,"_id":"959","_type":"edge","_outV":"67","_inV":"110","_label":"followed_by"},{"weight":2,"_id":"96","_type":"edge","_outV":"46","_inV":"85","_label":"followed_by"},{"weight":2,"_id":"960","_type":"edge","_outV":"67","_inV":"13","_label":"followed_by"},{"weight":1,"_id":"961","_type":"edge","_outV":"67","_inV":"59","_label":"followed_by"},{"weight":5,"_id":"962","_type":"edge","_outV":"67","_inV":"5","_label":"followed_by"},{"weight":15,"_id":"963","_type":"edge","_outV":"67","_inV":"165","_label":"followed_by"},{"weight":10,"_id":"964","_type":"edge","_outV":"67","_inV":"127","_label":"followed_by"},{"weight":1,"_id":"965","_type":"edge","_outV":"67","_inV":"150","_label":"followed_by"},{"weight":1,"_id":"966","_type":"edge","_outV":"67","_inV":"123","_label":"followed_by"},{"weight":1,"_id":"967","_type":"edge","_outV":"67","_inV":"232","_label":"followed_by"},{"weight":1,"_id":"968","_type":"edge","_outV":"67","_inV":"62","_label":"followed_by"},{"weight":3,"_id":"969","_type":"edge","_outV":"67","_inV":"92","_label":"followed_by"},{"weight":1,"_id":"97","_type":"edge","_outV":"46","_inV":"38","_label":"followed_by"},{"weight":1,"_id":"970","_type":"edge","_outV":"67","_inV":"70","_label":"followed_by"},{"weight":1,"_id":"971","_type":"edge","_outV":"233","_inV":"62","_label":"followed_by"},{"weight":4,"_id":"972","_type":"edge","_outV":"11","_inV":"57","_label":"followed_by"},{"weight":3,"_id":"973","_type":"edge","_outV":"11","_inV":"59","_label":"followed_by"},{"weight":4,"_id":"974","_type":"edge","_outV":"11","_inV":"53","_label":"followed_by"},{"weight":15,"_id":"975","_type":"edge","_outV":"11","_inV":"54","_label":"followed_by"},{"weight":3,"_id":"976","_type":"edge","_outV":"11","_inV":"56","_label":"followed_by"},{"weight":3,"_id":"977","_type":"edge","_outV":"11","_inV":"48","_label":"followed_by"},{"weight":4,"_id":"978","_type":"edge","_outV":"11","_inV":"72","_label":"followed_by"},{"weight":9,"_id":"979","_type":"edge","_outV":"11","_inV":"19","_label":"followed_by"},{"weight":1,"_id":"98","_type":"edge","_outV":"46","_inV":"86","_label":"followed_by"},{"weight":3,"_id":"980","_type":"edge","_outV":"11","_inV":"4","_label":"followed_by"},{"weight":6,"_id":"981","_type":"edge","_outV":"11","_inV":"58","_label":"followed_by"},{"weight":1,"_id":"982","_type":"edge","_outV":"11","_inV":"46","_label":"followed_by"},{"weight":7,"_id":"983","_type":"edge","_outV":"11","_inV":"234","_label":"followed_by"},{"weight":2,"_id":"984","_type":"edge","_outV":"11","_inV":"235","_label":"followed_by"},{"weight":4,"_id":"985","_type":"edge","_outV":"11","_inV":"207","_label":"followed_by"},{"weight":3,"_id":"986","_type":"edge","_outV":"11","_inV":"39","_label":"followed_by"},{"weight":1,"_id":"987","_type":"edge","_outV":"11","_inV":"50","_label":"followed_by"},{"weight":2,"_id":"988","_type":"edge","_outV":"11","_inV":"104","_label":"followed_by"},{"weight":1,"_id":"989","_type":"edge","_outV":"11","_inV":"49","_label":"followed_by"},{"weight":2,"_id":"99","_type":"edge","_outV":"46","_inV":"87","_label":"followed_by"},{"weight":3,"_id":"990","_type":"edge","_outV":"11","_inV":"17","_label":"followed_by"},{"weight":1,"_id":"991","_type":"edge","_outV":"11","_inV":"100","_label":"followed_by"},{"weight":1,"_id":"992","_type":"edge","_outV":"11","_inV":"24","_label":"followed_by"},{"weight":2,"_id":"993","_type":"edge","_outV":"11","_inV":"170","_label":"followed_by"},{"weight":1,"_id":"994","_type":"edge","_outV":"11","_inV":"73","_label":"followed_by"},{"weight":1,"_id":"995","_type":"edge","_outV":"11","_inV":"173","_label":"followed_by"},{"weight":1,"_id":"996","_type":"edge","_outV":"11","_inV":"236","_label":"followed_by"},{"weight":3,"_id":"997","_type":"edge","_outV":"11","_inV":"202","_label":"followed_by"},{"weight":2,"_id":"998","_type":"edge","_outV":"11","_inV":"80","_label":"followed_by"},{"weight":4,"_id":"999","_type":"edge","_outV":"11","_inV":"115","_label":"followed_by"}]} \ No newline at end of file diff --git a/blueprints-test/src/test/java/com/tinkerpop/blueprints/impls/tg/TinkerMetadataWriterTest.java b/blueprints-test/src/test/java/com/tinkerpop/blueprints/impls/tg/TinkerMetadataWriterTest.java index 1473dade..64a2f90e 100644 --- a/blueprints-test/src/test/java/com/tinkerpop/blueprints/impls/tg/TinkerMetadataWriterTest.java +++ b/blueprints-test/src/test/java/com/tinkerpop/blueprints/impls/tg/TinkerMetadataWriterTest.java @@ -5,9 +5,7 @@ import com.tinkerpop.blueprints.Vertex; import junit.framework.TestCase; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.InputStream; +import java.io.*; /** * @author Victor Su diff --git a/blueprints-test/src/test/java/com/tinkerpop/blueprints/util/io/gml/GMLWriterTest.java b/blueprints-test/src/test/java/com/tinkerpop/blueprints/util/io/gml/GMLWriterTest.java index 18774db7..f80c9be2 100644 --- a/blueprints-test/src/test/java/com/tinkerpop/blueprints/util/io/gml/GMLWriterTest.java +++ b/blueprints-test/src/test/java/com/tinkerpop/blueprints/util/io/gml/GMLWriterTest.java @@ -30,11 +30,11 @@ public void testNormal() throws Exception { w.setNormalize(true); w.outputGraph(bos); - String actual = bos.toString(); - String expected = streamToByteArray(GMLWriterTest.class.getResourceAsStream("writer.gml")); + String actual = bos.toString().replace("\r", ""); + String expected = streamToByteArray(GMLWriterTest.class.getResourceAsStream("writer.gml")).replace("\r", ""); // ignore carriage return character...not really relevant to the test - assertEquals(expected.replace("\r", ""), actual.replace("\r", "")); + assertEquals(expected, actual); } @@ -48,11 +48,11 @@ public void testUseIds() throws Exception { w.setUseId(true); w.outputGraph(bos); - String actual = bos.toString(); - String expected = streamToByteArray(GMLWriterTest.class.getResourceAsStream("writer2.gml")); + String actual = bos.toString().replace("\r", ""); + String expected = streamToByteArray(GMLWriterTest.class.getResourceAsStream("writer2.gml")).replace("\r", ""); // ignore carriage return character...not really relevant to the test - assertEquals(expected.replace("\r", ""), actual.replace("\r", "")); + assertEquals(expected, actual); } diff --git a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/impls/tg/example-tinkergraph-metadata.dat b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/impls/tg/example-tinkergraph-metadata.dat index a9cc9063..0e68d9c1 100644 Binary files a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/impls/tg/example-tinkergraph-metadata.dat and b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/impls/tg/example-tinkergraph-metadata.dat differ diff --git a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer.gml b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer.gml index 16910679..e032dd0d 100644 --- a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer.gml +++ b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer.gml @@ -12,8 +12,8 @@ graph [ node [ id 3 blueprintsId "3" - escape_property "Node 3 \"with quote\"" label "Node 3" + escape_property "Node 3 \"with quote\"" ] edge [ source 1 diff --git a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer2.gml b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer2.gml index 56bc59c2..3d153ae8 100644 --- a/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer2.gml +++ b/blueprints-test/src/test/resources/com/tinkerpop/blueprints/util/io/gml/writer2.gml @@ -9,8 +9,8 @@ graph [ ] node [ id 3 - escape_property "Node 3 \"with quote\"" label "Node 3" + escape_property "Node 3 \"with quote\"" ] edge [ source 1 diff --git a/pom.xml b/pom.xml index 65603f66..66321300 100644 --- a/pom.xml +++ b/pom.xml @@ -100,26 +100,6 @@ - - maven-enforcer-plugin - 1.3.1 - - - enforce-all - - enforce - - - - - - [1.6,1.8) - - - - - - org.apache.maven.plugins maven-javadoc-plugin @@ -154,8 +134,8 @@ maven-compiler-plugin 2.5.1 - 1.6 - 1.6 + 1.7 + 1.7