diff --git a/src/backend/distributed/planner/multi_planner.c b/src/backend/distributed/planner/multi_planner.c index d81776541..0ba89afce 100644 --- a/src/backend/distributed/planner/multi_planner.c +++ b/src/backend/distributed/planner/multi_planner.c @@ -26,11 +26,14 @@ #include "executor/executor.h" #include "nodes/makefuncs.h" #include "nodes/nodeFuncs.h" +#include "parser/parsetree.h" +#include "optimizer/pathnode.h" #include "optimizer/planner.h" #include "utils/memutils.h" static List *relationRestrictionContextList = NIL; +static List *joinRestrictionContextList = NIL; /* create custom scan methods for separate executors */ static CustomScanMethods RealTimeCustomScanMethods = { @@ -57,7 +60,10 @@ static CustomScanMethods DelayedErrorCustomScanMethods = { /* local function forward declarations */ static PlannedStmt * CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query, ParamListInfo boundParams, - RelationRestrictionContext *restrictionContext); + RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext); +static void AssignRTEIdentities(Query *queryTree); +static void AssignRTEIdentity(RangeTblEntry *rangeTableEntry, int rteIdentifier); static Node * SerializeMultiPlan(struct MultiPlan *multiPlan); static MultiPlan * DeserializeMultiPlan(Node *node); static PlannedStmt * FinalizePlan(PlannedStmt *localPlan, MultiPlan *multiPlan); @@ -65,9 +71,11 @@ static PlannedStmt * FinalizeNonRouterPlan(PlannedStmt *localPlan, MultiPlan *mu CustomScan *customScan); static PlannedStmt * FinalizeRouterPlan(PlannedStmt *localPlan, CustomScan *customScan); static void CheckNodeIsDumpable(Node *node); -static RelationRestrictionContext * CreateAndPushRestrictionContext(void); +static List * CopyPlanParamList(List *originalPlanParamList); +static void CreateAndPushPlannerContexts(void); static RelationRestrictionContext * CurrentRestrictionContext(void); -static void PopRestrictionContext(void); +static JoinRestrictionContext * CurrentJoinRestrictionContext(void); +static void PopRestrictionContexts(void); static bool HasUnresolvedExternParamsWalker(Node *expression, ParamListInfo boundParams); @@ -78,7 +86,8 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) PlannedStmt *result = NULL; bool needsDistributedPlanning = NeedsDistributedPlanning(parse); Query *originalQuery = NULL; - RelationRestrictionContext *restrictionContext = NULL; + RelationRestrictionContext *relationRestrictionContext = NULL; + JoinRestrictionContext *joinRestrictionContext = NULL; /* * standard_planner scribbles on it's input, but for deparsing we need the @@ -88,30 +97,14 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) { originalQuery = copyObject(parse); - /* - * We implement INSERT INTO .. SELECT by pushing down the SELECT to - * each shard. To compute that we use the router planner, by adding - * an "uninstantiated" constraint that the partition column be equal to a - * certain value. standard_planner() distributes that constraint to - * the baserestrictinfos to all the tables where it knows how to push - * the restriction safely. An example is that the tables that are - * connected via equi joins. - * - * The router planner then iterates over the target table's shards, - * for each we replace the "uninstantiated" restriction, with one that - * PruneShardList() handles, and then generate a query for that - * individual shard. If any of the involved tables don't prune down - * to a single shard, or if the pruned shards aren't colocated, - * we error out. - */ - if (InsertSelectQuery(parse)) - { - AddUninstantiatedPartitionRestriction(parse); - } + AssignRTEIdentities(parse); } /* create a restriction context and put it at the end if context list */ - restrictionContext = CreateAndPushRestrictionContext(); + CreateAndPushPlannerContexts(); + + relationRestrictionContext = CurrentRestrictionContext(); + joinRestrictionContext = CurrentJoinRestrictionContext(); PG_TRY(); { @@ -125,23 +118,75 @@ multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams) if (needsDistributedPlanning) { result = CreateDistributedPlan(result, originalQuery, parse, - boundParams, restrictionContext); + boundParams, relationRestrictionContext, + joinRestrictionContext); } } PG_CATCH(); { - PopRestrictionContext(); + PopRestrictionContexts(); PG_RE_THROW(); } PG_END_TRY(); /* remove the context from the context list */ - PopRestrictionContext(); + PopRestrictionContexts(); return result; } +/* + * To be able to track individual RTEs through postgres' query + * planning, we need to be able to figure out whether an RTE is + * actually a copy of another, rather than a different one. We + * simply number the RTEs starting from 1. + * + * Note that we're only interested in RTE_RELATIONs and thus assigning + * identifiers to those RTEs only. + */ +void +AssignRTEIdentities(Query *queryTree) +{ + List *rangeTableList = NIL; + ListCell *rangeTableCell = NULL; + int rteIdentifier = 1; + + /* extract range table entries for simple relations only */ + ExtractRangeTableEntryWalker((Node *) queryTree, &rangeTableList); + + foreach(rangeTableCell, rangeTableList) + { + RangeTblEntry *rangeTableEntry = (RangeTblEntry *) lfirst(rangeTableCell); + + if (rangeTableEntry->rtekind != RTE_RELATION) + { + continue; + } + + AssignRTEIdentity(rangeTableEntry, rteIdentifier++); + } +} + + +/* + * To be able to track RTEs through postgres' query planning, which copies and + * duplicate, and modifies them, we sometimes need to figure out whether two + * RTEs are copies of the same original RTE. For that we, hackishly, use a + * field normally unused in RTE_RELATION RTEs. + * + * The assigned identifier better be unique within a plantree. + */ +static void +AssignRTEIdentity(RangeTblEntry *rangeTableEntry, int rteIdentifier) +{ + Assert(rangeTableEntry->rtekind == RTE_RELATION); + Assert(rangeTableEntry->values_lists == NIL); + + rangeTableEntry->values_lists = list_make1_int(rteIdentifier); +} + + /* * IsModifyCommand returns true if the query performs modifications, false * otherwise. @@ -187,7 +232,8 @@ IsModifyMultiPlan(MultiPlan *multiPlan) static PlannedStmt * CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query, ParamListInfo boundParams, - RelationRestrictionContext *restrictionContext) + RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext) { MultiPlan *distributedPlan = NULL; PlannedStmt *resultPlan = NULL; @@ -201,7 +247,9 @@ CreateDistributedPlan(PlannedStmt *localPlan, Query *originalQuery, Query *query if (IsModifyCommand(query)) { /* modifications are always routed through the same planner/executor */ - distributedPlan = CreateModifyPlan(originalQuery, query, restrictionContext); + distributedPlan = CreateModifyPlan(originalQuery, query, restrictionContext, + joinRestrictionContext); + Assert(distributedPlan); } else @@ -566,6 +614,37 @@ CheckNodeIsDumpable(Node *node) } +/* + * multi_join_restriction_hook is a hook called by postgresql standard planner + * to notify us about various planning information regarding joins. We use + * it to learn about the joining column. + */ +void +multi_join_restriction_hook(PlannerInfo *root, + RelOptInfo *joinrel, + RelOptInfo *outerrel, + RelOptInfo *innerrel, + JoinType jointype, + JoinPathExtraData *extra) +{ + JoinRestrictionContext *joinContext = NULL; + JoinRestriction *joinRestriction = palloc0(sizeof(JoinRestriction)); + List *restrictInfoList = NIL; + + restrictInfoList = extra->restrictlist; + joinContext = CurrentJoinRestrictionContext(); + Assert(joinContext != NULL); + + joinRestriction->joinType = jointype; + joinRestriction->joinRestrictInfoList = restrictInfoList; + joinRestriction->plannerInfo = root; + + + joinContext->joinRestrictionList = + lappend(joinContext->joinRestrictionList, joinRestriction); +} + + /* * multi_relation_restriction_hook is a hook called by postgresql standard planner * to notify us about various planning information regarding a relation. We use @@ -599,8 +678,16 @@ multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index relationRestriction->relOptInfo = relOptInfo; relationRestriction->distributedRelation = distributedTable; relationRestriction->plannerInfo = root; + relationRestriction->parentPlannerInfo = root->parent_root; relationRestriction->prunedShardIntervalList = NIL; + /* see comments on GetVarFromAssignedParam() */ + if (relationRestriction->parentPlannerInfo) + { + relationRestriction->parentPlannerParamList = + CopyPlanParamList(root->parent_root->plan_params); + } + restrictionContext->hasDistributedRelation |= distributedTable; restrictionContext->hasLocalRelation |= localTable; @@ -621,23 +708,65 @@ multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index } +/* GetRTEIdentity returns the identity assigned with AssignRTEIdentity. */ +int +GetRTEIdentity(RangeTblEntry *rte) +{ + Assert(rte->rtekind == RTE_RELATION); + Assert(IsA(rte->values_lists, IntList)); + Assert(list_length(rte->values_lists) == 1); + + return linitial_int(rte->values_lists); +} + + /* - * CreateAndPushRestrictionContext creates a new restriction context, inserts it to the - * beginning of the context list, and returns the newly created context. + * CopyPlanParamList deep copies the input PlannerParamItem list and returns the newly + * allocated list. + * Note that we cannot use copyObject() function directly since there is no support for + * copying PlannerParamItem structs. */ -static RelationRestrictionContext * -CreateAndPushRestrictionContext(void) +static List * +CopyPlanParamList(List *originalPlanParamList) +{ + ListCell *planParamCell = NULL; + List *copiedPlanParamList = NIL; + + foreach(planParamCell, originalPlanParamList) + { + PlannerParamItem *originalParamItem = lfirst(planParamCell); + PlannerParamItem *copiedParamItem = makeNode(PlannerParamItem); + + copiedParamItem->paramId = originalParamItem->paramId; + copiedParamItem->item = copyObject(originalParamItem->item); + + copiedPlanParamList = lappend(copiedPlanParamList, copiedParamItem); + } + + return copiedPlanParamList; +} + + +/* + * CreateAndPushPlannerContextes creates a new restriction context and a new join context, + * inserts it to the beginning of the respective context lists. + */ +static void +CreateAndPushPlannerContexts(void) { RelationRestrictionContext *restrictionContext = palloc0(sizeof(RelationRestrictionContext)); + JoinRestrictionContext *joinContext = + palloc0(sizeof(JoinRestrictionContext)); + /* we'll apply logical AND as we add tables */ restrictionContext->allReferenceTables = true; relationRestrictionContextList = lcons(restrictionContext, relationRestrictionContextList); - - return restrictionContext; + joinRestrictionContextList = lcons(joinContext, + joinRestrictionContextList); } @@ -660,13 +789,31 @@ CurrentRestrictionContext(void) /* - * PopRestrictionContext removes the most recently added restriction context from - * context list. The function assumes the list is not empty. + * CurrentRestrictionContext returns the the last restriction context from the + * list. + */ +static JoinRestrictionContext * +CurrentJoinRestrictionContext(void) +{ + JoinRestrictionContext *joinContext = NULL; + + Assert(joinRestrictionContextList != NIL); + + joinContext = (JoinRestrictionContext *) linitial(joinRestrictionContextList); + + return joinContext; +} + + +/* + * PopRestrictionContexts removes the most recently added restriction contexts from + * the restriction and join context lists. The function assumes the lists are not empty. */ static void -PopRestrictionContext(void) +PopRestrictionContexts(void) { relationRestrictionContextList = list_delete_first(relationRestrictionContextList); + joinRestrictionContextList = list_delete_first(joinRestrictionContextList); } @@ -694,12 +841,6 @@ HasUnresolvedExternParamsWalker(Node *expression, ParamListInfo boundParams) return false; } - /* don't care about our special parameter, it'll be removed during planning */ - if (paramId == UNINSTANTIATED_PARAMETER_ID) - { - return false; - } - /* check whether parameter is available (and valid) */ if (boundParams && paramId > 0 && paramId <= boundParams->numParams) { diff --git a/src/backend/distributed/planner/multi_router_planner.c b/src/backend/distributed/planner/multi_router_planner.c index 50f3e2e07..8ec97b52a 100644 --- a/src/backend/distributed/planner/multi_router_planner.c +++ b/src/backend/distributed/planner/multi_router_planner.c @@ -48,6 +48,8 @@ #include "nodes/pg_list.h" #include "nodes/primnodes.h" #include "optimizer/clauses.h" +#include "optimizer/joininfo.h" +#include "optimizer/pathnode.h" #include "optimizer/paths.h" #include "optimizer/predtest.h" #include "optimizer/restrictinfo.h" @@ -74,6 +76,8 @@ typedef struct WalkerState } WalkerState; bool EnableRouterExecution = true; +static uint32 attributeEquivalenceId = 1; + /* planner functions forward declarations */ static MultiPlan * CreateSingleTaskRouterPlan(Query *originalQuery, @@ -82,14 +86,43 @@ static MultiPlan * CreateSingleTaskRouterPlan(Query *originalQuery, restrictionContext); static MultiPlan * CreateInsertSelectRouterPlan(Query *originalQuery, RelationRestrictionContext * - restrictionContext); + restrictionContext, + JoinRestrictionContext * + joinRestrictionContext); +static bool AllRelationsJoinedOnPartitionKey(RelationRestrictionContext + *restrictionContext, + JoinRestrictionContext * + joinRestrictionContext); +static List * PartitionKeyEquivalenceClassList(List *attributeEquivalenceClassList); +static uint32 ReferenceRelationCount(RelationRestrictionContext *restrictionContext); +static List * GenerateAttributeEquivalencesForRelationRestrictions( + RelationRestrictionContext *restrictionContext); +static AttributeEquivalenceClass * AttributeEquivalenceClassForEquivalenceClass( + EquivalenceClass *plannerEqClass, RelationRestriction *relationRestriction); +static void AddToAttributeEquivalenceClass(PlannerInfo *root, Var *varToBeAdded, + AttributeEquivalenceClass ** + attributeEquivalanceClass); +static Var * GetVarFromAssignedParam(List *parentPlannerParamList, + Param *plannerParam); +static List * GenerateAttributeEquivalencesForJoinRestrictions(JoinRestrictionContext + *joinRestrictionContext); +static bool AttributeClassContainsAttributeClassMember(AttributeEquivalenceClassMember * + inputMember, + AttributeEquivalenceClass * + attributeEquivalenceClass); +static AttributeEquivalenceClass * GenerateCommonEquivalence(List * + attributeEquivalenceList); +static void ListConcatUniqueAttributeClassMemberLists(AttributeEquivalenceClass ** + firstClass, + AttributeEquivalenceClass * + secondClass); static Task * RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInterval, RelationRestrictionContext * restrictionContext, - uint32 taskIdIndex); -static List * HashedShardIntervalOpExpressions(ShardInterval *shardInterval); -static Param * UninstantiatedParameterForColumn(Var *relationPartitionKey); + uint32 taskIdIndex, + bool allRelationsJoinedOnPartitionKey); +static List * ShardIntervalOpExpressions(ShardInterval *shardInterval, Index rteIndex); static bool MasterIrreducibleExpression(Node *expression, bool *varArgument, bool *badCoalesce); static bool MasterIrreducibleExpressionWalker(Node *expression, WalkerState *state); @@ -129,7 +162,6 @@ static DeferredErrorMessage * InsertPartitionColumnMatchesSelect(Query *query, subqueryRte, Oid * selectPartitionColumnTableId); -static void AddUninstantiatedEqualityQual(Query *query, Var *targetPartitionColumnVar); static DeferredErrorMessage * ErrorIfQueryHasModifyingCTE(Query *queryTree); @@ -165,11 +197,13 @@ CreateRouterPlan(Query *originalQuery, Query *query, */ MultiPlan * CreateModifyPlan(Query *originalQuery, Query *query, - RelationRestrictionContext *restrictionContext) + RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext) { if (InsertSelectQuery(originalQuery)) { - return CreateInsertSelectRouterPlan(originalQuery, restrictionContext); + return CreateInsertSelectRouterPlan(originalQuery, restrictionContext, + joinRestrictionContext); } else { @@ -258,7 +292,8 @@ CreateSingleTaskRouterPlan(Query *originalQuery, Query *query, */ static MultiPlan * CreateInsertSelectRouterPlan(Query *originalQuery, - RelationRestrictionContext *restrictionContext) + RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext) { int shardOffset = 0; List *sqlTaskList = NIL; @@ -272,6 +307,7 @@ CreateInsertSelectRouterPlan(Query *originalQuery, DistTableCacheEntry *targetCacheEntry = DistributedTableCacheEntry(targetRelationId); int shardCount = targetCacheEntry->shardIntervalArrayLength; bool allReferenceTables = restrictionContext->allReferenceTables; + bool allRelationsJoinedOnPartitionKey = false; multiPlan->operation = originalQuery->commandType; @@ -287,6 +323,9 @@ CreateInsertSelectRouterPlan(Query *originalQuery, return multiPlan; } + allRelationsJoinedOnPartitionKey = + AllRelationsJoinedOnPartitionKey(restrictionContext, joinRestrictionContext); + /* * Plan select query for each shard in the target table. Do so by replacing the * partitioning qual parameter added in multi_planner() using the current shard's @@ -303,7 +342,8 @@ CreateInsertSelectRouterPlan(Query *originalQuery, Task *modifyTask = NULL; modifyTask = RouterModifyTaskForShardInterval(originalQuery, targetShardInterval, - restrictionContext, taskIdIndex); + restrictionContext, taskIdIndex, + allRelationsJoinedOnPartitionKey); /* add the task if it could be created */ if (modifyTask != NULL) @@ -340,6 +380,706 @@ CreateInsertSelectRouterPlan(Query *originalQuery, } +/* + * AllRelationsJoinedOnPartitionKey aims to deduce whether each of the RTE_RELATION + * is joined with at least on another RTE_RELATION on their partition keys. If each + * RTE_RELATION follows the above rule, we can conclude that all RTE_RELATIONs are + * joined on their partition keys. + * + * In order to do that, we invented a new equivalence class namely: + * AttributeEquivalenceClass. In very simple words, a AttributeEquivalenceClass is + * identified by an unique id and consists of a list of AttributeEquivalenceMembers. + * + * Each AttributeEquivalenceMember is designed to identify attributes uniquely within the + * whole query. The necessity of this arise since varno attributes are defined within + * a single level of a query. Instead, here we want to identify each RTE_RELATION uniquely + * and try to find equality among each RTE_RELATION's partition key. + * + * Each equality among RTE_RELATION is saved using an AttributeEquivalenceClass where + * each member attribute is identified by a AttributeEquivalenceMember. In the final + * step, we try generate a common attribute equivalence class that holds as much as + * AttributeEquivalenceMembers whose attributes are a partition keys. + * + * AllRelationsJoinedOnPartitionKey uses both relation restrictions and join restrictions + * to find as much as information that Postgres planner provides to extensions. For the + * details of the usage, please see GenerateAttributeEquivalencesForRelationRestrictions() + * and GenerateAttributeEquivalencesForJoinRestrictions() + * + * Finally, as the name of the function reveals, the function returns true if all relations + * are joined on their partition keys. Otherwise, the function returns false. + */ +static bool +AllRelationsJoinedOnPartitionKey(RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext) +{ + List *relationRestrictionAttributeEquivalenceList = NIL; + List *joinRestrictionAttributeEquivalenceList = NIL; + List *allAttributeEquivalenceList = NIL; + List *partitionKeyEquivalenceList = NIL; + AttributeEquivalenceClass *commonEquivalenceClass = NULL; + bool allRelationsJoinedOnPartitionKey = true; + uint32 referenceRelationCount = ReferenceRelationCount(restrictionContext); + uint32 totalRelationCount = list_length(restrictionContext->relationRestrictionList); + + ListCell *commonEqClassCell = NULL; + ListCell *relationRestrictionCell = NULL; + Relids commonRteIdentities = NULL; + + /* + * If there are no JOINs between non-reference tables, we shouldn't + * bother about them. + */ + if (totalRelationCount - referenceRelationCount <= 1) + { + return true; + } + + /* reset the equivalence id counter per call to prevent overflows */ + attributeEquivalenceId = 1; + + relationRestrictionAttributeEquivalenceList = + GenerateAttributeEquivalencesForRelationRestrictions(restrictionContext); + joinRestrictionAttributeEquivalenceList = + GenerateAttributeEquivalencesForJoinRestrictions(joinRestrictionContext); + + allAttributeEquivalenceList = + list_concat(relationRestrictionAttributeEquivalenceList, + joinRestrictionAttributeEquivalenceList); + + /* filter out non-partition key equivalences */ + partitionKeyEquivalenceList = + PartitionKeyEquivalenceClassList(allAttributeEquivalenceList); + + /* + * In general we're trying to expand existing the equivalence classes to find a + * common equivalence class. The main goal is to test whether this main class + * contains all partition keys of the existing relations. + */ + commonEquivalenceClass = GenerateCommonEquivalence(partitionKeyEquivalenceList); + + /* add the rte indexes of relations to a bitmap */ + foreach(commonEqClassCell, commonEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *classMember = lfirst(commonEqClassCell); + int rteIdentity = classMember->rteIdendity; + + commonRteIdentities = bms_add_member(commonRteIdentities, rteIdentity); + } + + /* check whether all relations exists in the main restriction list */ + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = lfirst(relationRestrictionCell); + int rteIdentity = GetRTEIdentity(relationRestriction->rte); + + if (PartitionKey(relationRestriction->relationId) && + !bms_is_member(rteIdentity, commonRteIdentities)) + { + allRelationsJoinedOnPartitionKey = false; + break; + } + } + + return allRelationsJoinedOnPartitionKey; +} + + +/* + * PartitionKeyEquivalenceClassList gets a list of atrribute equivalences. Then, filters + * out the ones whose all members are not partition keys. The function skips reference + * tables. + */ +static List * +PartitionKeyEquivalenceClassList(List *attributeEquivalenceClassList) +{ + ListCell *attributeEquivalenceClassCell = NULL; + List *partitionKeyEquivalencClassList = NIL; + + foreach(attributeEquivalenceClassCell, attributeEquivalenceClassList) + { + AttributeEquivalenceClass *attributeEquivalenceClass = + (AttributeEquivalenceClass *) lfirst(attributeEquivalenceClassCell); + ListCell *equivalenceMemberCell = NULL; + bool allPartitionKeys = true; + + foreach(equivalenceMemberCell, attributeEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *classMemeber = + (AttributeEquivalenceClassMember *) lfirst(equivalenceMemberCell); + Var *relationPartitionKey = PartitionKey(classMemeber->relationId); + + /* we don't care about reference tables here */ + if (!relationPartitionKey) + { + continue; + } + + if (relationPartitionKey->varattno != classMemeber->varattno) + { + allPartitionKeys = false; + break; + } + } + + if (!allPartitionKeys) + { + continue; + } + + partitionKeyEquivalencClassList = lappend(partitionKeyEquivalencClassList, + attributeEquivalenceClass); + } + + return partitionKeyEquivalencClassList; +} + + +/* + * ReferenceRelationCount iterates over the relations and returns the reference table + * relation count. + */ +static uint32 +ReferenceRelationCount(RelationRestrictionContext *restrictionContext) +{ + ListCell *relationRestrictionCell = NULL; + uint32 referenceRelationCount = 0; + + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = lfirst(relationRestrictionCell); + + if (PartitionMethod(relationRestriction->relationId) == DISTRIBUTE_BY_NONE) + { + referenceRelationCount++; + } + } + + return referenceRelationCount; +} + + +/* + * GenerateAttributeEquivalencesForRelationRestrictions gets a relation restriction + * context and returns a list of AttributeEquivalenceClass. + * + * The algorithm followed can be summarized as below: + * + * - Per relation restriction + * - Per plannerInfo's eq_class + * - Create an AttributeEquivalenceClass + * - Add all Vars that appear in the plannerInfo's + * eq_class to the AttributeEquivalenceClass + * - While doing that, consider LATERAL vars as well. + * See GetVarFromAssignedParam() for the details. Note + * that we're using parentPlannerInfo while adding the + * LATERAL vars given that we rely on that plannerInfo. + * + * Note that this function does not deal with whether the member of eq_classes + * are partition key or not. That's handled later in the planning. + */ +static List * +GenerateAttributeEquivalencesForRelationRestrictions(RelationRestrictionContext + *restrictionContext) +{ + List *attributeEquivalenceList = NIL; + ListCell *relationRestrictionCell = NULL; + + foreach(relationRestrictionCell, restrictionContext->relationRestrictionList) + { + RelationRestriction *relationRestriction = lfirst(relationRestrictionCell); + List *equivalenceClasses = relationRestriction->plannerInfo->eq_classes; + ListCell *equivilanceClassCell = NULL; + + foreach(equivilanceClassCell, equivalenceClasses) + { + EquivalenceClass *plannerEqClass = lfirst(equivilanceClassCell); + + AttributeEquivalenceClass *attributeEquivalance = + AttributeEquivalenceClassForEquivalenceClass(plannerEqClass, + relationRestriction); + + attributeEquivalenceList = lappend(attributeEquivalenceList, + attributeEquivalance); + } + } + + return attributeEquivalenceList; +} + + +/* + * AttributeEquivalenceClassForEquivalenceClass is a helper function for + * GenerateAttributeEquivalencesForRelationRestrictions. The function takes an + * EquivalenceClass and the relation restriction that the equivalence class + * belongs to. The function returns an AttributeEquivalenceClass that is composed + * of ec_members that are simple Var references. + * + * The function also takes case of LATERAL joins by simply replacing the PARAM_EXEC + * with the corresponding expression. + */ +static AttributeEquivalenceClass * +AttributeEquivalenceClassForEquivalenceClass(EquivalenceClass *plannerEqClass, + RelationRestriction *relationRestriction) +{ + AttributeEquivalenceClass *attributeEquivalance = + palloc0(sizeof(AttributeEquivalenceClass)); + ListCell *equivilanceMemberCell = NULL; + PlannerInfo *plannerInfo = relationRestriction->plannerInfo; + + attributeEquivalance->equivalenceId = attributeEquivalenceId++; + + foreach(equivilanceMemberCell, plannerEqClass->ec_members) + { + EquivalenceMember *equivalenceMember = lfirst(equivilanceMemberCell); + Node *equivalenceNode = strip_implicit_coercions( + (Node *) equivalenceMember->em_expr); + Expr *strippedEquivalenceExpr = (Expr *) equivalenceNode; + + Var *expressionVar = NULL; + + if (IsA(strippedEquivalenceExpr, Param)) + { + List *parentParamList = relationRestriction->parentPlannerParamList; + Param *equivalenceParam = (Param *) strippedEquivalenceExpr; + + expressionVar = GetVarFromAssignedParam(parentParamList, + equivalenceParam); + if (expressionVar) + { + AddToAttributeEquivalenceClass( + relationRestriction->parentPlannerInfo, + expressionVar, + &attributeEquivalance); + } + } + else if (IsA(strippedEquivalenceExpr, Var)) + { + expressionVar = (Var *) strippedEquivalenceExpr; + AddToAttributeEquivalenceClass(plannerInfo, expressionVar, + &attributeEquivalance); + } + } + + return attributeEquivalance; +} + + +/* + * + * GetVarFromAssignedParam returns the Var that is assigned to the given + * plannerParam if its kind is PARAM_EXEC. + * + * If the paramkind is not equal to PARAM_EXEC the function returns NULL. Similarly, + * if there is no var that the given param is assigned to, the function returns NULL. + * + * Rationale behind this function: + * + * While iterating through the equivalence classes of RTE_RELATIONs, we + * observe that there are PARAM type of equivalence member expressions for + * the RTE_RELATIONs which actually belong to lateral vars from the other query + * levels. + * + * We're also keeping track of the RTE_RELATION's parent_root's + * plan_param list which is expected to hold the parameters that are required + * for its lower level queries as it is documented: + * + * plan_params contains the expressions that this query level needs to + * make available to a lower query level that is currently being planned. + * + * This function is a helper function to iterate through the parent query's + * plan_params and looks for the param that the equivalence member has. The + * comparison is done via the "paramid" field. Finally, if the found parameter's + * item is a Var, we conclude that Postgres standard_planner replaced the Var + * with the Param on assign_param_for_var() function + * @src/backend/optimizer//plan/subselect.c. + * + */ +static Var * +GetVarFromAssignedParam(List *parentPlannerParamList, Param *plannerParam) +{ + Var *assignedVar = NULL; + ListCell *plannerParameterCell = NULL; + + Assert(plannerParam != NULL); + + /* we're only interested in parameters that Postgres added for execution */ + if (plannerParam->paramkind != PARAM_EXEC) + { + return NULL; + } + + foreach(plannerParameterCell, parentPlannerParamList) + { + PlannerParamItem *plannerParamItem = lfirst(plannerParameterCell); + + if (plannerParamItem->paramId != plannerParam->paramid) + { + continue; + } + + /* TODO: Should we consider PlaceHolderVar?? */ + if (!IsA(plannerParamItem->item, Var)) + { + continue; + } + + assignedVar = (Var *) plannerParamItem->item; + + break; + } + + return assignedVar; +} + + +/* + * GenerateCommonEquivalence gets a list of unrelated AttributeEquiavalanceClass + * whose all members are partition keys. + * + * With the equivalence classes, the function follows the algorithm + * outlined below: + * + * - Add the first equivalence class to the common equivalence class + * - Then, iterate on the remaining equivalence classes + * - If any of the members equal to the common equivalence class + * add all the members of the equivalence class to the common + * class + * - Start the iteration from the beginning. The reason is that + * in case any of the classes we've passed is equivalent to the + * newly added one. To optimize the algorithm, we utilze the + * equivalence class ids and skip the ones that are already added. + * - Finally, return the common equivalence class. + */ +static AttributeEquivalenceClass * +GenerateCommonEquivalence(List *attributeEquivalenceList) +{ + AttributeEquivalenceClass *commonEquivalenceClass = NULL; + AttributeEquivalenceClass *firstEquivalenceClass = NULL; + Bitmapset *addedEquivalenceIds = NULL; + uint32 equivalenceListSize = list_length(attributeEquivalenceList); + uint32 equivalenceClassIndex = 0; + + commonEquivalenceClass = palloc0(sizeof(AttributeEquivalenceClass)); + commonEquivalenceClass->equivalenceId = 0; + + /* think more on this. */ + if (equivalenceListSize < 1) + { + return commonEquivalenceClass; + } + + /* setup the initial state of the main equivalence class */ + firstEquivalenceClass = linitial(attributeEquivalenceList); + commonEquivalenceClass->equivalentAttributes = + firstEquivalenceClass->equivalentAttributes; + addedEquivalenceIds = bms_add_member(addedEquivalenceIds, + firstEquivalenceClass->equivalenceId); + + for (; equivalenceClassIndex < equivalenceListSize; ++equivalenceClassIndex) + { + AttributeEquivalenceClass *currentEquivalenceClass = + list_nth(attributeEquivalenceList, equivalenceClassIndex); + ListCell *equivalenceMemberCell = NULL; + + /* + * This is an optimization. If we already added the same equivalence class, + * we could skip it since we've already added all the relevant equivalence + * members. + */ + if (bms_overlap(addedEquivalenceIds, + bms_make_singleton(currentEquivalenceClass->equivalenceId))) + { + continue; + } + + foreach(equivalenceMemberCell, currentEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *attributeEquialanceMember = + (AttributeEquivalenceClassMember *) lfirst(equivalenceMemberCell); + + if (AttributeClassContainsAttributeClassMember(attributeEquialanceMember, + commonEquivalenceClass)) + { + ListConcatUniqueAttributeClassMemberLists(&commonEquivalenceClass, + currentEquivalenceClass); + + addedEquivalenceIds = bms_add_member(addedEquivalenceIds, + currentEquivalenceClass-> + equivalenceId); + + /* + * It seems inefficient to start from the beginning. + * But, we should somehow restart from the beginning to test that + * whether the already skipped ones are equal or not. + */ + equivalenceClassIndex = 0; + + break; + } + } + } + + return commonEquivalenceClass; +} + + +/* + * ListConcatUniqueAttributeClassMemberLists gets two attribute equivalence classes. It + * basically concatenates attribute equivalence member lists uniquely and updates the + * firstClass' member list with the list. + * + * Basically, the function iterates over the secondClass' member list and checks whether + * it already exists in the firstClass' member list. If not, the member is added to the + * firstClass. + */ +static void +ListConcatUniqueAttributeClassMemberLists(AttributeEquivalenceClass **firstClass, + AttributeEquivalenceClass *secondClass) +{ + ListCell *equivalenceClassMemberCell = NULL; + List *equivalenceMemberList = secondClass->equivalentAttributes; + + foreach(equivalenceClassMemberCell, equivalenceMemberList) + { + AttributeEquivalenceClassMember *newEqMember = lfirst(equivalenceClassMemberCell); + + if (AttributeClassContainsAttributeClassMember(newEqMember, *firstClass)) + { + continue; + } + + (*firstClass)->equivalentAttributes = lappend((*firstClass)->equivalentAttributes, + newEqMember); + } +} + + +/* + * GenerateAttributeEquivalencesForJoinRestrictions gets a join restriction + * context and returns a list of AttrributeEquivalenceClass. + * + * The algorithm followed can be summarized as below: + * + * - Per join restriction + * - Per RestrictInfo of the join restriction + * - Check whether the join restriction is in the form of (Var1 = Var2) + * - Create an AttributeEquivalenceClass + * - Add both Var1 and Var2 to the AttributeEquivalenceClass + * + * Note that this function does not deal with whether the member of restriction + * are partition key or not. That's handled later in the planning. + */ +static List * +GenerateAttributeEquivalencesForJoinRestrictions(JoinRestrictionContext * + joinRestrictionContext) +{ + List *attributeEquivalenceList = NIL; + ListCell *joinRestrictionCell = NULL; + + foreach(joinRestrictionCell, joinRestrictionContext->joinRestrictionList) + { + JoinRestriction *joinRestriction = lfirst(joinRestrictionCell); + ListCell *restrictionInfoList = NULL; + + foreach(restrictionInfoList, joinRestriction->joinRestrictInfoList) + { + RestrictInfo *rinfo = (RestrictInfo *) lfirst(restrictionInfoList); + OpExpr *restrictionOpExpr = NULL; + Node *leftNode = NULL; + Node *rightNode = NULL; + Expr *strippedLeftExpr = NULL; + Expr *strippedRightExpr = NULL; + Var *leftVar = NULL; + Var *rightVar = NULL; + Expr *restrictionClause = rinfo->clause; + AttributeEquivalenceClass *attributeEquivalance = NULL; + + if (!IsA(restrictionClause, OpExpr)) + { + continue; + } + + restrictionOpExpr = (OpExpr *) restrictionClause; + if (list_length(restrictionOpExpr->args) != 2) + { + continue; + } + if (!OperatorImplementsEquality(restrictionOpExpr->opno)) + { + continue; + } + + leftNode = linitial(restrictionOpExpr->args); + rightNode = lsecond(restrictionOpExpr->args); + + /* we also don't want implicit coercions */ + strippedLeftExpr = (Expr *) strip_implicit_coercions((Node *) leftNode); + strippedRightExpr = (Expr *) strip_implicit_coercions((Node *) rightNode); + + if (!(IsA(strippedLeftExpr, Var) && IsA(strippedRightExpr, Var))) + { + continue; + } + + leftVar = (Var *) strippedLeftExpr; + rightVar = (Var *) strippedRightExpr; + + attributeEquivalance = palloc0(sizeof(AttributeEquivalenceClass)); + attributeEquivalance->equivalenceId = attributeEquivalenceId++; + + /* we could (probably) safely do that since we disallowed ANTI JOINs ? */ + AddToAttributeEquivalenceClass(joinRestriction->plannerInfo, leftVar, + &attributeEquivalance); + AddToAttributeEquivalenceClass(joinRestriction->plannerInfo, rightVar, + &attributeEquivalance); + + attributeEquivalenceList = lappend(attributeEquivalenceList, + attributeEquivalance); + } + } + + return attributeEquivalenceList; +} + + +/* + * AddToAttributeEquivalenceClass is a key function for building the attribute + * equivalences. The function gets a plannerInfo, var and attribute equivalence + * class. It searches for the RTE_RELATION(s) that the input var belongs to and + * adds the found Var(s) to the input attribute equivalence class. + * + * Note that the input var could come from a subquery (i.e., not directly from an + * RTE_RELATION). That's the reason we recursively call the function until the + * RTE_RELATION found. + * + * The algorithm could be summarized as follows: + * + * - If the RTE that corresponds to a relation + * - Generate an AttributeEquivalenceMember and add to the input + * AttributeEquivalenceClass + * - If the RTE that corresponds to a subquery + * - Find the corresponding target entry via varno + * - if subquery entry is a set operation (i.e., only UNION/UNION ALL allowed) + * - recursively add both left and right sides of the set operation's + * corresponding target entries + * - if subquery is not a set operation + * - recursively try to add the corresponding target entry to the + * equivalence class + */ +static void +AddToAttributeEquivalenceClass(PlannerInfo *root, Var *varToBeAdded, + AttributeEquivalenceClass **attributeEquivalanceClass) +{ + RangeTblEntry *rangeTableEntry = root->simple_rte_array[varToBeAdded->varno]; + + if (rangeTableEntry->rtekind == RTE_RELATION) + { + AttributeEquivalenceClassMember *attributeEqMember = + palloc0(sizeof(AttributeEquivalenceClassMember)); + + attributeEqMember->varattno = varToBeAdded->varattno; + attributeEqMember->varno = varToBeAdded->varno; + attributeEqMember->rteIdendity = GetRTEIdentity(rangeTableEntry); + attributeEqMember->relationId = rangeTableEntry->relid; + + (*attributeEquivalanceClass)->equivalentAttributes = + lappend((*attributeEquivalanceClass)->equivalentAttributes, + attributeEqMember); + } + else if (rangeTableEntry->rtekind == RTE_SUBQUERY && !rangeTableEntry->inh) + { + Query *subquery = rangeTableEntry->subquery; + RelOptInfo *baseRelOptInfo = NULL; + TargetEntry *subqueryTargetEntry = NULL; + + /* punt if it's a whole-row var rather than a plain column reference */ + if (varToBeAdded->varattno == InvalidAttrNumber) + { + return; + } + + baseRelOptInfo = find_base_rel(root, varToBeAdded->varno); + + /* If the subquery hasn't been planned yet, we have to punt */ + if (baseRelOptInfo->subroot == NULL) + { + return; + } + + Assert(IsA(baseRelOptInfo->subroot, PlannerInfo)); + + subquery = baseRelOptInfo->subroot->parse; + Assert(IsA(subquery, Query)); + + /* Get the subquery output expression referenced by the upper Var */ + subqueryTargetEntry = get_tle_by_resno(subquery->targetList, + varToBeAdded->varattno); + if (subqueryTargetEntry == NULL || subqueryTargetEntry->resjunk) + { + ereport(ERROR, (errcode(ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE), + errmsg("subquery %s does not have attribute %d", + rangeTableEntry->eref->aliasname, + varToBeAdded->varattno))); + } + + if (!IsA(subqueryTargetEntry->expr, Var)) + { + return; + } + + varToBeAdded = (Var *) subqueryTargetEntry->expr; + + /* we need to handle set operations separately */ + if (subquery->setOperations) + { + SetOperationStmt *unionStatement = + (SetOperationStmt *) subquery->setOperations; + + RangeTblRef *leftRangeTableReference = (RangeTblRef *) unionStatement->larg; + RangeTblRef *rightRangeTableReference = (RangeTblRef *) unionStatement->rarg; + + varToBeAdded->varno = leftRangeTableReference->rtindex; + AddToAttributeEquivalenceClass(baseRelOptInfo->subroot, varToBeAdded, + attributeEquivalanceClass); + + varToBeAdded->varno = rightRangeTableReference->rtindex; + AddToAttributeEquivalenceClass(baseRelOptInfo->subroot, varToBeAdded, + attributeEquivalanceClass); + } + else if (varToBeAdded && IsA(varToBeAdded, Var) && varToBeAdded->varlevelsup == 0) + { + AddToAttributeEquivalenceClass(baseRelOptInfo->subroot, varToBeAdded, + attributeEquivalanceClass); + } + } +} + + +/* + * AttributeClassContainsAttributeClassMember returns true if it the input class member + * is already exists in the attributeEquivalenceClass. An equality is identified by the + * varattno and rteIdentity. + */ +static bool +AttributeClassContainsAttributeClassMember(AttributeEquivalenceClassMember *inputMember, + AttributeEquivalenceClass * + attributeEquivalenceClass) +{ + ListCell *classCell = NULL; + foreach(classCell, attributeEquivalenceClass->equivalentAttributes) + { + AttributeEquivalenceClassMember *memberOfClass = lfirst(classCell); + if (memberOfClass->rteIdendity == inputMember->rteIdendity && + memberOfClass->varattno == inputMember->varattno) + { + return true; + } + } + + return false; +} + + /* * RouterModifyTaskForShardInterval creates a modify task by * replacing the partitioning qual parameter added in multi_planner() @@ -354,7 +1094,8 @@ CreateInsertSelectRouterPlan(Query *originalQuery, static Task * RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInterval, RelationRestrictionContext *restrictionContext, - uint32 taskIdIndex) + uint32 taskIdIndex, + bool allRelationsJoinedOnPartitionKey) { Query *copiedQuery = copyObject(originalQuery); RangeTblEntry *copiedInsertRte = ExtractInsertRangeTableEntry(copiedQuery); @@ -382,6 +1123,7 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter bool replacePrunedQueryWithDummy = false; bool allReferenceTables = restrictionContext->allReferenceTables; List *hashedOpExpressions = NIL; + RestrictInfo *hashedRestrictInfo = NULL; /* grab shared metadata lock to stop concurrent placement additions */ LockShardDistributionMetadata(shardId, ShareLock); @@ -394,43 +1136,19 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter { RelationRestriction *restriction = lfirst(restrictionCell); List *originalBaserestrictInfo = restriction->relOptInfo->baserestrictinfo; - Var *relationPartitionKey = PartitionColumn(restriction->relationId, - restriction->index); - Param *uninstantiatedParameter = NULL; + Index rteIndex = restriction->index; - /* - * We don't need to add restriction to reference tables given that they are - * already single sharded and always prune to that single shard. - */ - if (PartitionMethod(restriction->relationId) == DISTRIBUTE_BY_NONE) + if (!allRelationsJoinedOnPartitionKey || allReferenceTables) { continue; } - hashedOpExpressions = HashedShardIntervalOpExpressions(shardInterval); - Assert(list_length(hashedOpExpressions) == 2); + hashedOpExpressions = ShardIntervalOpExpressions(shardInterval, rteIndex); - /* - * Here we check whether the planner knows an equality between the partition column - * and the uninstantiated parameter. If such an equality exists, we simply add the - * shard restrictions. - */ - uninstantiatedParameter = UninstantiatedParameterForColumn(relationPartitionKey); - if (exprs_known_equal(restriction->plannerInfo, (Node *) relationPartitionKey, - (Node *) uninstantiatedParameter)) - { - RestrictInfo *geRestrictInfo = NULL; - RestrictInfo *leRestrictInfo = NULL; + hashedRestrictInfo = make_simple_restrictinfo((Expr *) hashedOpExpressions); + originalBaserestrictInfo = lappend(originalBaserestrictInfo, hashedRestrictInfo); - OpExpr *hashedGEOpExpr = (OpExpr *) linitial(hashedOpExpressions); - OpExpr *hashedLEOpExpr = (OpExpr *) lsecond(hashedOpExpressions); - - geRestrictInfo = make_simple_restrictinfo((Expr *) hashedGEOpExpr); - originalBaserestrictInfo = lappend(originalBaserestrictInfo, geRestrictInfo); - - leRestrictInfo = make_simple_restrictinfo((Expr *) hashedLEOpExpr); - originalBaserestrictInfo = lappend(originalBaserestrictInfo, leRestrictInfo); - } + restriction->relOptInfo->baserestrictinfo = originalBaserestrictInfo; } /* @@ -530,92 +1248,53 @@ RouterModifyTaskForShardInterval(Query *originalQuery, ShardInterval *shardInter /* - * HashedShardIntervalOpExpressions returns a list of OpExprs with exactly two - * items in it. The list consists of shard interval ranges with hashed columns - * such as (hashColumn >= shardMinValue) and (hashedColumn <= shardMaxValue). + * ShardIntervalOpExpressions returns a list of OpExprs with exactly two + * items in it. The list consists of shard interval ranges with partition columns + * such as (partitionColumn >= shardMinValue) and (partitionColumn <= shardMaxValue). * - * The function errors out if the given shard interval does not belong to a hash - * distributed table. + * The function returns hashed columns generated by MakeInt4Column() for the hash + * partitioned tables in place of partition columns. + * + * The function errors out if the given shard interval does not belong to a hash, + * range and append distributed tables. */ static List * -HashedShardIntervalOpExpressions(ShardInterval *shardInterval) +ShardIntervalOpExpressions(ShardInterval *shardInterval, Index rteIndex) { - List *operatorExpressions = NIL; - Var *hashedGEColumn = NULL; - Var *hashedLEColumn = NULL; - OpExpr *hashedGEOpExpr = NULL; - OpExpr *hashedLEOpExpr = NULL; - Oid integer4GEoperatorId = InvalidOid; - Oid integer4LEoperatorId = InvalidOid; - - Datum shardMinValue = shardInterval->minValue; - Datum shardMaxValue = shardInterval->maxValue; + Oid relationId = shardInterval->relationId; char partitionMethod = PartitionMethod(shardInterval->relationId); + Var *partitionColumn = NULL; + Node *baseConstraint = NULL; - if (partitionMethod != DISTRIBUTE_BY_HASH) + if (partitionMethod == DISTRIBUTE_BY_HASH) + { + partitionColumn = MakeInt4Column(); + } + else if (partitionMethod == DISTRIBUTE_BY_RANGE || partitionMethod == + DISTRIBUTE_BY_APPEND) + { + Assert(rteIndex > 0); + + partitionColumn = PartitionColumn(relationId, rteIndex); + } + else { ereport(ERROR, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), errmsg("cannot create shard interval operator expression for " - "distributed relations other than hash distributed " + "distributed relations other than hash, range and append distributed " "relations"))); } - /* get the integer >=, <= operators from the catalog */ - integer4GEoperatorId = get_opfamily_member(INTEGER_BTREE_FAM_OID, INT4OID, - INT4OID, - BTGreaterEqualStrategyNumber); - integer4LEoperatorId = get_opfamily_member(INTEGER_BTREE_FAM_OID, INT4OID, - INT4OID, - BTLessEqualStrategyNumber); + /* build the base expression for constraint */ + baseConstraint = BuildBaseConstraint(partitionColumn); - /* generate hashed columns */ - hashedGEColumn = MakeInt4Column(); - hashedLEColumn = MakeInt4Column(); + /* walk over shard list and check if shards can be pruned */ + if (shardInterval->minValueExists && shardInterval->maxValueExists) + { + UpdateConstraint(baseConstraint, shardInterval); + } - /* generate the necessary operators */ - hashedGEOpExpr = (OpExpr *) make_opclause(integer4GEoperatorId, InvalidOid, false, - (Expr *) hashedGEColumn, - (Expr *) MakeInt4Constant(shardMinValue), - InvalidOid, InvalidOid); - - hashedLEOpExpr = (OpExpr *) make_opclause(integer4LEoperatorId, InvalidOid, false, - (Expr *) hashedLEColumn, - (Expr *) MakeInt4Constant(shardMaxValue), - InvalidOid, InvalidOid); - - /* update the operators with correct operator numbers and function ids */ - hashedGEOpExpr->opfuncid = get_opcode(hashedGEOpExpr->opno); - hashedGEOpExpr->opresulttype = get_func_rettype(hashedGEOpExpr->opfuncid); - operatorExpressions = lappend(operatorExpressions, hashedGEOpExpr); - - hashedLEOpExpr->opfuncid = get_opcode(hashedLEOpExpr->opno); - hashedLEOpExpr->opresulttype = get_func_rettype(hashedLEOpExpr->opfuncid); - operatorExpressions = lappend(operatorExpressions, hashedLEOpExpr); - - return operatorExpressions; -} - - -/* - * UninstantiatedParameterForColumn returns a Param that can be used as an uninstantiated - * parameter for the given column in the sense that paramtype, paramtypmod and collid - * is set to the input Var's corresponding values. - * - * Note that we're using hard coded UNINSTANTIATED_PARAMETER_ID which is the required parameter - * for our purposes. See multi_planner.c@multi_planner for the details. - */ -static Param * -UninstantiatedParameterForColumn(Var *relationPartitionKey) -{ - Param *uninstantiatedParameter = makeNode(Param); - - uninstantiatedParameter->paramkind = PARAM_EXTERN; - uninstantiatedParameter->paramid = UNINSTANTIATED_PARAMETER_ID; - uninstantiatedParameter->paramtype = relationPartitionKey->vartype; - uninstantiatedParameter->paramtypmod = relationPartitionKey->vartypmod; - uninstantiatedParameter->paramcollid = relationPartitionKey->varcollid; - - return uninstantiatedParameter; + return list_make1(baseConstraint); } @@ -924,13 +1603,18 @@ MultiTaskRouterSelectQuerySupported(Query *query) NULL, NULL); } - /* see comment on AddUninstantiatedPartitionRestriction() */ if (subquery->setOperations != NULL) { - return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED, - "set operations are not allowed in INSERT ... SELECT " - "queries", - NULL, NULL); + SetOperationStmt *setOperationStatement = + (SetOperationStmt *) subquery->setOperations; + + if (setOperationStatement->op != SETOP_UNION) + { + return DeferredError(ERRCODE_FEATURE_NOT_SUPPORTED, + "INTERSECT and EXCEPT set operations are not " + "allowed in INSERT ... SELECT queries", + NULL, NULL); + } } /* @@ -1190,126 +1874,6 @@ InsertPartitionColumnMatchesSelect(Query *query, RangeTblEntry *insertRte, } -/* - * AddUninstantiatedPartitionRestriction() can only be used with - * INSERT ... SELECT queries. - * - * AddUninstantiatedPartitionRestriction adds an equality qual - * to the SELECT query of the given originalQuery. The function currently - * does NOT add the quals if - * (i) Set operations are present on the top level query - * (ii) Target list does not include a bare partition column. - * - * Note that if the input query is not an INSERT ... SELECT the assertion fails. Lastly, - * if all the participating tables in the query are reference tables, we implicitly - * skip adding the quals to the query since IsPartitionColumnRecursive() always returns - * false for reference tables. - */ -void -AddUninstantiatedPartitionRestriction(Query *originalQuery) -{ - Query *subquery = NULL; - RangeTblEntry *subqueryEntry = NULL; - ListCell *targetEntryCell = NULL; - Var *targetPartitionColumnVar = NULL; - List *targetList = NULL; - - Assert(InsertSelectQuery(originalQuery)); - - subqueryEntry = ExtractSelectRangeTableEntry(originalQuery); - subquery = subqueryEntry->subquery; - - /* - * We currently not support the subquery with set operations. The main reason is that - * there is an "Assert(parse->jointree->quals == NULL);" on standard planner's execution - * path (i.e., plan_set_operations). - * If we are to add uninstantiated equality qual to the query, we may end up hitting that - * assertion, so it's better not to support for now. - */ - if (subquery->setOperations != NULL) - { - return; - } - - /* iterate through the target list and find the partition column on the target list */ - targetList = subquery->targetList; - foreach(targetEntryCell, targetList) - { - TargetEntry *targetEntry = lfirst(targetEntryCell); - - if (IsPartitionColumn(targetEntry->expr, subquery) && - IsA(targetEntry->expr, Var)) - { - targetPartitionColumnVar = (Var *) targetEntry->expr; - break; - } - } - - /* - * If we cannot find the bare partition column, no need to add the qual since - * we're already going to error out on the multi planner. - */ - if (!targetPartitionColumnVar) - { - return; - } - - /* finally add the equality qual of target column to subquery */ - AddUninstantiatedEqualityQual(subquery, targetPartitionColumnVar); -} - - -/* - * AddUninstantiatedEqualityQual adds a qual in the following form - * ($1 = partitionColumn) on the input query and partitionColumn. - */ -static void -AddUninstantiatedEqualityQual(Query *query, Var *partitionColumn) -{ - Param *equalityParameter = UninstantiatedParameterForColumn(partitionColumn); - OpExpr *uninstantiatedEqualityQual = NULL; - Oid partitionColumnCollid = InvalidOid; - Oid lessThanOperator = InvalidOid; - Oid equalsOperator = InvalidOid; - Oid greaterOperator = InvalidOid; - bool hashable = false; - - AssertArg(query->commandType == CMD_SELECT); - - /* get the necessary equality operator */ - get_sort_group_operators(partitionColumn->vartype, false, true, false, - &lessThanOperator, &equalsOperator, &greaterOperator, - &hashable); - - - partitionColumnCollid = partitionColumn->varcollid; - - /* create an equality on the on the target partition column */ - uninstantiatedEqualityQual = (OpExpr *) make_opclause(equalsOperator, InvalidOid, - false, - (Expr *) partitionColumn, - (Expr *) equalityParameter, - partitionColumnCollid, - partitionColumnCollid); - - /* update the operators with correct operator numbers and function ids */ - uninstantiatedEqualityQual->opfuncid = get_opcode(uninstantiatedEqualityQual->opno); - uninstantiatedEqualityQual->opresulttype = - get_func_rettype(uninstantiatedEqualityQual->opfuncid); - - /* add restriction on partition column */ - if (query->jointree->quals == NULL) - { - query->jointree->quals = (Node *) uninstantiatedEqualityQual; - } - else - { - query->jointree->quals = make_and_qual(query->jointree->quals, - (Node *) uninstantiatedEqualityQual); - } -} - - /* * ModifyQuerySupported returns NULL if the query only contains supported * features, otherwise it returns an error description. diff --git a/src/backend/distributed/shared_library_init.c b/src/backend/distributed/shared_library_init.c index c3dcf4e88..115f39dcc 100644 --- a/src/backend/distributed/shared_library_init.c +++ b/src/backend/distributed/shared_library_init.c @@ -148,6 +148,7 @@ _PG_init(void) /* register for planner hook */ set_rel_pathlist_hook = multi_relation_restriction_hook; + set_join_pathlist_hook = multi_join_restriction_hook; /* organize that task tracker is started once server is up */ TaskTrackerRegister(); diff --git a/src/include/distributed/multi_planner.h b/src/include/distributed/multi_planner.h index 8a24b2efa..b62b80ec4 100644 --- a/src/include/distributed/multi_planner.h +++ b/src/include/distributed/multi_planner.h @@ -37,9 +37,23 @@ typedef struct RelationRestriction RangeTblEntry *rte; RelOptInfo *relOptInfo; PlannerInfo *plannerInfo; + PlannerInfo *parentPlannerInfo; + List *parentPlannerParamList; List *prunedShardIntervalList; } RelationRestriction; +typedef struct JoinRestrictionContext +{ + List *joinRestrictionList; +} JoinRestrictionContext; + +typedef struct JoinRestriction +{ + JoinType joinType; + List *joinRestrictInfoList; + PlannerInfo *plannerInfo; +} JoinRestriction; + typedef struct RelationShard { CitusNode type; @@ -47,6 +61,42 @@ typedef struct RelationShard uint64 shardId; } RelationShard; +/* + * AttributeEquivalenceClass + * + * Whenever we find an equality clause A = B, where both A and B originates from + * relation attributes (i.e., not random expressions), we create an + * AttributeEquivalenceClass to record this knowledge. If we later find another + * equivalence B = C, we create another AttributeEquivalenceClass. Finally, we can + * apply transitity rules and generate a new AttributeEquivalenceClass which includes + * A, B and C. + * + * Note that equality among the members are identified by the varattno and rteIdentity. + */ +typedef struct AttributeEquivalenceClass +{ + uint32 equivalenceId; + List *equivalentAttributes; +} AttributeEquivalenceClass; + +/* + * AttributeEquivalenceClassMember - one member expression of an + * AttributeEquivalenceClassMember. The important thing to consider is that + * the class member contains "rteIndentity" field. Note that each RTE_RELATION + * is assigned a unique rteIdentity in AssignRTEIdentities() function. + * + * "varno" and "varattrno" is directly used from a Var clause that is being added + * to the attribute equivalence. Since we only use this class for relations, the member + * also includes the relation id field. + */ +typedef struct AttributeEquivalenceClassMember +{ + Index varno; + AttrNumber varattno; + Oid relationId; + int rteIdendity; +} AttributeEquivalenceClassMember; + extern PlannedStmt * multi_planner(Query *parse, int cursorOptions, ParamListInfo boundParams); @@ -55,9 +105,17 @@ struct MultiPlan; extern struct MultiPlan * GetMultiPlan(CustomScan *node); extern void multi_relation_restriction_hook(PlannerInfo *root, RelOptInfo *relOptInfo, Index index, RangeTblEntry *rte); +extern void multi_join_restriction_hook(PlannerInfo *root, + RelOptInfo *joinrel, + RelOptInfo *outerrel, + RelOptInfo *innerrel, + JoinType jointype, + JoinPathExtraData *extra); extern bool IsModifyCommand(Query *query); extern bool IsModifyMultiPlan(struct MultiPlan *multiPlan); extern RangeTblEntry * RemoteScanRangeTableEntry(List *columnNameList); +extern int GetRTEIdentity(RangeTblEntry *rte); + #endif /* MULTI_PLANNER_H */ diff --git a/src/include/distributed/multi_router_planner.h b/src/include/distributed/multi_router_planner.h index 86d69a258..61f2c074b 100644 --- a/src/include/distributed/multi_router_planner.h +++ b/src/include/distributed/multi_router_planner.h @@ -21,9 +21,6 @@ #include "nodes/parsenodes.h" -/* reserved parameted id, we chose a negative number since it is not assigned by postgres */ -#define UNINSTANTIATED_PARAMETER_ID INT_MIN - /* reserved alias name for UPSERTs */ #define CITUS_TABLE_ALIAS "citus_table_alias" @@ -32,9 +29,9 @@ extern bool EnableRouterExecution; extern MultiPlan * CreateRouterPlan(Query *originalQuery, Query *query, RelationRestrictionContext *restrictionContext); extern MultiPlan * CreateModifyPlan(Query *originalQuery, Query *query, - RelationRestrictionContext *restrictionContext); + RelationRestrictionContext *restrictionContext, + JoinRestrictionContext *joinRestrictionContext); -extern void AddUninstantiatedPartitionRestriction(Query *originalQuery); extern DeferredErrorMessage * ModifyQuerySupported(Query *queryTree); extern Query * ReorderInsertSelectTargetLists(Query *originalQuery, RangeTblEntry *insertRte, diff --git a/src/test/regress/data/events_table.data b/src/test/regress/data/events_table.data new file mode 100644 index 000000000..f683c77da --- /dev/null +++ b/src/test/regress/data/events_table.data @@ -0,0 +1,10001 @@ +43,2017-03-11 14:43:29.525317,889,739,314, +16,2017-03-11 14:43:29.525317,906,631,563, +18,2017-03-11 14:43:29.525317,799,194,608, +52,2017-03-11 14:43:29.525317,322,752,691, +60,2017-03-11 14:43:29.525317,141,967,903, +49,2017-03-11 14:43:29.525317,219,297,369, +4,2017-03-11 14:43:29.525317,346,529,541, +5,2017-03-11 14:43:29.525317,737,811,477, +63,2017-03-11 14:43:29.525317,550,790,789, +46,2017-03-11 14:43:29.525317,421,352,633, +22,2017-03-11 14:43:29.525317,546,241,737, +87,2017-03-11 14:43:29.525317,994,428,467, +14,2017-03-11 14:43:29.525317,395,371,629, +61,2017-03-11 14:43:29.525317,668,998,655, +1,2017-03-11 14:43:29.525317,527,196,64, +26,2017-03-11 14:43:29.525317,7,541,890, +56,2017-03-11 14:43:29.525317,331,679,13, +75,2017-03-11 14:43:29.525317,31,646,972, +58,2017-03-11 14:43:29.525317,887,708,445, +88,2017-03-11 14:43:29.525317,136,912,16, +53,2017-03-11 14:43:29.525317,283,644,144, +95,2017-03-11 14:43:29.525317,642,799,965, +17,2017-03-11 14:43:29.525317,995,29,433, +0,2017-03-11 14:43:29.525317,570,323,558, +90,2017-03-11 14:43:29.525317,2,571,653, +3,2017-03-11 14:43:29.525317,217,625,610, +10,2017-03-11 14:43:29.525317,333,55,984, +47,2017-03-11 14:43:29.525317,967,0,999, +25,2017-03-11 14:43:29.525317,645,144,200, +29,2017-03-11 14:43:29.525317,943,165,456, +94,2017-03-11 14:43:29.525317,194,889,939, +76,2017-03-11 14:43:29.525317,212,498,665, +21,2017-03-11 14:43:29.525317,69,318,247, +29,2017-03-11 14:43:29.525317,943,857,389, +28,2017-03-11 14:43:29.525317,912,373,744, +88,2017-03-11 14:43:29.525317,374,744,129, +2,2017-03-11 14:43:29.525317,887,329,306, +83,2017-03-11 14:43:29.525317,493,761,769, +69,2017-03-11 14:43:29.525317,650,708,450, +86,2017-03-11 14:43:29.525317,206,115,75, +27,2017-03-11 14:43:29.525317,433,322,559, +38,2017-03-11 14:43:29.525317,179,948,651, +9,2017-03-11 14:43:29.525317,321,395,970, +70,2017-03-11 14:43:29.525317,139,99,714, +3,2017-03-11 14:43:29.525317,427,19,857, +92,2017-03-11 14:43:29.525317,781,625,607, +43,2017-03-11 14:43:29.525317,333,58,292, +54,2017-03-11 14:43:29.525317,172,368,813, +60,2017-03-11 14:43:29.525317,690,372,980, +87,2017-03-11 14:43:29.525317,321,631,961, +64,2017-03-11 14:43:29.525317,26,931,337, +16,2017-03-11 14:43:29.525317,30,51,190, +46,2017-03-11 14:43:29.525317,70,47,377, +85,2017-03-11 14:43:29.525317,672,985,281, +0,2017-03-11 14:43:29.525317,42,574,543, +21,2017-03-11 14:43:29.525317,942,356,819, +63,2017-03-11 14:43:29.525317,729,799,501, +5,2017-03-11 14:43:29.525317,430,462,691, +46,2017-03-11 14:43:29.525317,393,28,619, +42,2017-03-11 14:43:29.525317,79,809,880, +15,2017-03-11 14:43:29.525317,856,257,1000, +53,2017-03-11 14:43:29.525317,242,281,532, +28,2017-03-11 14:43:29.525317,855,76,498, +80,2017-03-11 14:43:29.525317,432,318,428, +16,2017-03-11 14:43:29.525317,117,930,210, +55,2017-03-11 14:43:29.525317,392,901,2, +79,2017-03-11 14:43:29.525317,930,621,208, +1,2017-03-11 14:43:29.525317,430,87,158, +29,2017-03-11 14:43:29.525317,344,158,814, +59,2017-03-11 14:43:29.525317,439,346,870, +29,2017-03-11 14:43:29.525317,421,368,91, +85,2017-03-11 14:43:29.525317,686,519,14, +80,2017-03-11 14:43:29.525317,449,224,349, +84,2017-03-11 14:43:29.525317,125,351,626, +5,2017-03-11 14:43:29.525317,972,834,63, +40,2017-03-11 14:43:29.525317,921,221,688, +27,2017-03-11 14:43:29.525317,379,502,852, +82,2017-03-11 14:43:29.525317,847,722,113, +27,2017-03-11 14:43:29.525317,90,203,122, +78,2017-03-11 14:43:29.525317,722,135,579, +17,2017-03-11 14:43:29.525317,359,928,12, +48,2017-03-11 14:43:29.525317,279,638,539, +25,2017-03-11 14:43:29.525317,471,602,653, +39,2017-03-11 14:43:29.525317,824,342,658, +20,2017-03-11 14:43:29.525317,843,510,21, +69,2017-03-11 14:43:29.525317,231,134,960, +32,2017-03-11 14:43:29.525317,337,81,97, +6,2017-03-11 14:43:29.525317,217,676,230, +58,2017-03-11 14:43:29.525317,604,242,60, +88,2017-03-11 14:43:29.525317,879,599,134, +35,2017-03-11 14:43:29.525317,201,787,743, +2,2017-03-11 14:43:29.525317,129,401,227, +97,2017-03-11 14:43:29.525317,911,249,663, +14,2017-03-11 14:43:29.525317,382,623,463, +72,2017-03-11 14:43:29.525317,704,560,778, +92,2017-03-11 14:43:29.525317,235,8,497, +84,2017-03-11 14:43:29.525317,250,557,722, +13,2017-03-11 14:43:29.525317,155,857,480, +36,2017-03-11 14:43:29.525317,644,223,381, +77,2017-03-11 14:43:29.525317,624,608,746, +53,2017-03-11 14:43:29.525317,857,409,676, +24,2017-03-11 14:43:29.525317,32,138,958, +74,2017-03-11 14:43:29.525317,698,736,657, +93,2017-03-11 14:43:29.525317,745,153,773, +99,2017-03-11 14:43:29.525317,710,495,124, +87,2017-03-11 14:43:29.525317,352,603,222, +100,2017-03-11 14:43:29.525317,826,603,769, +45,2017-03-11 14:43:29.525317,211,515,983, +7,2017-03-11 14:43:29.525317,923,659,306, +96,2017-03-11 14:43:29.525317,797,264,691, +50,2017-03-11 14:43:29.525317,1,348,428, +75,2017-03-11 14:43:29.525317,501,201,740, +21,2017-03-11 14:43:29.525317,696,864,77, +5,2017-03-11 14:43:29.525317,467,299,44, +29,2017-03-11 14:43:29.525317,901,813,742, +11,2017-03-11 14:43:29.525317,327,726,179, +25,2017-03-11 14:43:29.525317,385,486,206, +18,2017-03-11 14:43:29.525317,750,897,677, +75,2017-03-11 14:43:29.525317,245,106,497, +75,2017-03-11 14:43:29.525317,307,237,958, +0,2017-03-11 14:43:29.525317,101,35,51, +57,2017-03-11 14:43:29.525317,334,95,861, +24,2017-03-11 14:43:29.525317,908,603,348, +23,2017-03-11 14:43:29.525317,329,527,486, +71,2017-03-11 14:43:29.525317,13,692,896, +76,2017-03-11 14:43:29.525317,589,573,514, +83,2017-03-11 14:43:29.525317,679,10,581, +99,2017-03-11 14:43:29.525317,247,539,988, +35,2017-03-11 14:43:29.525317,574,39,916, +91,2017-03-11 14:43:29.525317,133,777,144, +4,2017-03-11 14:43:29.525317,380,491,276, +71,2017-03-11 14:43:29.525317,18,761,423, +3,2017-03-11 14:43:29.525317,453,319,793, +4,2017-03-11 14:43:29.525317,892,307,876, +57,2017-03-11 14:43:29.525317,317,456,555, +56,2017-03-11 14:43:29.525317,995,543,913, +57,2017-03-11 14:43:29.525317,582,828,477, +71,2017-03-11 14:43:29.525317,605,621,756, +99,2017-03-11 14:43:29.525317,112,31,694, +13,2017-03-11 14:43:29.525317,793,117,161, +25,2017-03-11 14:43:29.525317,436,954,288, +33,2017-03-11 14:43:29.525317,261,163,898, +58,2017-03-11 14:43:29.525317,620,453,143, +62,2017-03-11 14:43:29.525317,997,56,184, +58,2017-03-11 14:43:29.525317,884,661,293, +49,2017-03-11 14:43:29.525317,282,49,475, +39,2017-03-11 14:43:29.525317,80,169,523, +87,2017-03-11 14:43:29.525317,286,684,118, +72,2017-03-11 14:43:29.525317,638,406,49, +90,2017-03-11 14:43:29.525317,569,947,478, +19,2017-03-11 14:43:29.525317,400,621,804, +40,2017-03-11 14:43:29.525317,677,988,975, +56,2017-03-11 14:43:29.525317,650,268,51, +93,2017-03-11 14:43:29.525317,317,525,325, +40,2017-03-11 14:43:29.525317,694,848,270, +98,2017-03-11 14:43:29.525317,532,388,701, +17,2017-03-11 14:43:29.525317,794,751,69, +36,2017-03-11 14:43:29.525317,698,548,552, +10,2017-03-11 14:43:29.525317,169,356,495, +85,2017-03-11 14:43:29.525317,344,470,407, +99,2017-03-11 14:43:29.525317,739,458,925, +6,2017-03-11 14:43:29.525317,983,250,453, +68,2017-03-11 14:43:29.525317,98,723,657, +63,2017-03-11 14:43:29.525317,111,359,799, +90,2017-03-11 14:43:29.525317,109,869,268, +81,2017-03-11 14:43:29.525317,416,819,905, +59,2017-03-11 14:43:29.525317,175,400,432, +52,2017-03-11 14:43:29.525317,870,839,513, +61,2017-03-11 14:43:29.525317,297,438,665, +28,2017-03-11 14:43:29.525317,688,118,958, +79,2017-03-11 14:43:29.525317,842,615,415, +95,2017-03-11 14:43:29.525317,974,214,858, +8,2017-03-11 14:43:29.525317,83,125,890, +50,2017-03-11 14:43:29.525317,945,795,85, +12,2017-03-11 14:43:29.525317,195,516,639, +7,2017-03-11 14:43:29.525317,355,152,674, +65,2017-03-11 14:43:29.525317,590,339,933, +28,2017-03-11 14:43:29.525317,458,891,63, +30,2017-03-11 14:43:29.525317,506,478,252, +48,2017-03-11 14:43:29.525317,692,110,563, +78,2017-03-11 14:43:29.525317,235,453,275, +18,2017-03-11 14:43:29.525317,248,359,299, +44,2017-03-11 14:43:29.525317,876,939,508, +23,2017-03-11 14:43:29.525317,91,182,884, +68,2017-03-11 14:43:29.525317,522,817,959, +98,2017-03-11 14:43:29.525317,708,23,279, +21,2017-03-11 14:43:29.525317,500,531,695, +19,2017-03-11 14:43:29.525317,641,258,968, +88,2017-03-11 14:43:29.525317,711,242,55, +96,2017-03-11 14:43:29.525317,602,355,401, +48,2017-03-11 14:43:29.525317,294,909,709, +38,2017-03-11 14:43:29.525317,92,593,66, +61,2017-03-11 14:43:29.525317,410,25,592, +12,2017-03-11 14:43:29.525317,48,871,333, +55,2017-03-11 14:43:29.525317,402,28,741, +4,2017-03-11 14:43:29.525317,285,709,918, +100,2017-03-11 14:43:29.525317,951,974,955, +55,2017-03-11 14:43:29.525317,328,356,30, +62,2017-03-11 14:43:29.525317,266,739,6, +36,2017-03-11 14:43:29.525317,331,72,970, +74,2017-03-11 14:43:29.525317,98,563,860, +15,2017-03-11 14:43:29.525317,434,193,695, +84,2017-03-11 14:43:29.525317,220,436,878, +51,2017-03-11 14:43:29.525317,144,796,502, +9,2017-03-11 14:43:29.525317,770,457,647, +10,2017-03-11 14:43:29.525317,813,676,720, +8,2017-03-11 14:43:29.525317,415,726,435, +75,2017-03-11 14:43:29.525317,799,405,488, +90,2017-03-11 14:43:29.525317,968,348,43, +40,2017-03-11 14:43:29.525317,540,737,237, +76,2017-03-11 14:43:29.525317,173,115,266, +32,2017-03-11 14:43:29.525317,911,768,411, +68,2017-03-11 14:43:29.525317,225,58,779, +4,2017-03-11 14:43:29.525317,735,499,116, +15,2017-03-11 14:43:29.525317,225,551,896, +2,2017-03-11 14:43:29.525317,956,384,921, +92,2017-03-11 14:43:29.525317,731,963,326, +27,2017-03-11 14:43:29.525317,700,563,32, +87,2017-03-11 14:43:29.525317,678,298,190, +59,2017-03-11 14:43:29.525317,66,601,270, +29,2017-03-11 14:43:29.525317,659,50,328, +39,2017-03-11 14:43:29.525317,548,443,543, +77,2017-03-11 14:43:29.525317,994,439,798, +95,2017-03-11 14:43:29.525317,823,718,875, +55,2017-03-11 14:43:29.525317,681,201,826, +38,2017-03-11 14:43:29.525317,764,858,255, +44,2017-03-11 14:43:29.525317,156,444,32, +22,2017-03-11 14:43:29.525317,45,302,512, +70,2017-03-11 14:43:29.525317,352,840,98, +90,2017-03-11 14:43:29.525317,283,641,674, +28,2017-03-11 14:43:29.525317,81,471,229, +90,2017-03-11 14:43:29.525317,190,104,458, +87,2017-03-11 14:43:29.525317,305,284,253, +7,2017-03-11 14:43:29.525317,141,508,511, +30,2017-03-11 14:43:29.525317,952,543,519, +100,2017-03-11 14:43:29.525317,845,31,702, +20,2017-03-11 14:43:29.525317,871,799,97, +15,2017-03-11 14:43:29.525317,441,771,432, +52,2017-03-11 14:43:29.525317,242,661,425, +43,2017-03-11 14:43:29.525317,765,883,303, +7,2017-03-11 14:43:29.525317,166,556,139, +31,2017-03-11 14:43:29.525317,64,650,605, +2,2017-03-11 14:43:29.525317,193,123,13, +4,2017-03-11 14:43:29.525317,154,714,235, +3,2017-03-11 14:43:29.525317,514,331,180, +95,2017-03-11 14:43:29.525317,102,612,476, +34,2017-03-11 14:43:29.525317,273,901,776, +4,2017-03-11 14:43:29.525317,784,79,108, +95,2017-03-11 14:43:29.525317,635,246,258, +70,2017-03-11 14:43:29.525317,896,862,714, +9,2017-03-11 14:43:29.525317,985,727,127, +14,2017-03-11 14:43:29.525317,441,362,165, +96,2017-03-11 14:43:29.525317,693,345,910, +80,2017-03-11 14:43:29.525317,957,386,139, +23,2017-03-11 14:43:29.525317,287,915,268, +7,2017-03-11 14:43:29.525317,993,376,21, +63,2017-03-11 14:43:29.525317,622,278,326, +52,2017-03-11 14:43:29.525317,140,40,608, +13,2017-03-11 14:43:29.525317,767,736,265, +21,2017-03-11 14:43:29.525317,98,430,163, +79,2017-03-11 14:43:29.525317,774,73,586, +73,2017-03-11 14:43:29.525317,460,725,961, +75,2017-03-11 14:43:29.525317,640,229,817, +63,2017-03-11 14:43:29.525317,605,838,261, +23,2017-03-11 14:43:29.525317,116,587,746, +26,2017-03-11 14:43:29.525317,627,355,382, +39,2017-03-11 14:43:29.525317,90,647,602, +19,2017-03-11 14:43:29.525317,76,766,979, +85,2017-03-11 14:43:29.525317,839,565,582, +30,2017-03-11 14:43:29.525317,290,543,45, +93,2017-03-11 14:43:29.525317,773,862,564, +38,2017-03-11 14:43:29.525317,700,825,606, +82,2017-03-11 14:43:29.525317,412,352,73, +4,2017-03-11 14:43:29.525317,707,454,434, +80,2017-03-11 14:43:29.525317,101,36,985, +18,2017-03-11 14:43:29.525317,801,963,28, +64,2017-03-11 14:43:29.525317,529,610,939, +82,2017-03-11 14:43:29.525317,153,984,750, +93,2017-03-11 14:43:29.525317,847,314,304, +55,2017-03-11 14:43:29.525317,139,910,363, +55,2017-03-11 14:43:29.525317,262,436,591, +97,2017-03-11 14:43:29.525317,890,25,765, +99,2017-03-11 14:43:29.525317,60,750,169, +86,2017-03-11 14:43:29.525317,713,197,502, +24,2017-03-11 14:43:29.525317,807,441,60, +96,2017-03-11 14:43:29.525317,425,810,887, +27,2017-03-11 14:43:29.525317,124,191,819, +26,2017-03-11 14:43:29.525317,100,182,814, +36,2017-03-11 14:43:29.525317,618,405,330, +51,2017-03-11 14:43:29.525317,429,95,499, +49,2017-03-11 14:43:29.525317,844,668,351, +56,2017-03-11 14:43:29.525317,865,853,799, +67,2017-03-11 14:43:29.525317,294,859,633, +72,2017-03-11 14:43:29.525317,669,520,992, +79,2017-03-11 14:43:29.525317,711,810,56, +81,2017-03-11 14:43:29.525317,992,870,172, +61,2017-03-11 14:43:29.525317,274,502,118, +70,2017-03-11 14:43:29.525317,597,618,194, +44,2017-03-11 14:43:29.525317,286,545,998, +15,2017-03-11 14:43:29.525317,398,797,824, +69,2017-03-11 14:43:29.525317,656,457,412, +33,2017-03-11 14:43:29.525317,977,403,119, +69,2017-03-11 14:43:29.525317,214,174,498, +21,2017-03-11 14:43:29.525317,44,671,816, +32,2017-03-11 14:43:29.525317,173,935,22, +77,2017-03-11 14:43:29.525317,552,216,211, +84,2017-03-11 14:43:29.525317,761,209,990, +16,2017-03-11 14:43:29.525317,6,814,851, +66,2017-03-11 14:43:29.525317,271,263,988, +25,2017-03-11 14:43:29.525317,666,107,936, +88,2017-03-11 14:43:29.525317,281,434,86, +32,2017-03-11 14:43:29.525317,105,903,643, +28,2017-03-11 14:43:29.525317,837,665,47, +39,2017-03-11 14:43:29.525317,881,257,228, +64,2017-03-11 14:43:29.525317,466,218,800, +47,2017-03-11 14:43:29.525317,31,651,135, +30,2017-03-11 14:43:29.525317,914,123,550, +58,2017-03-11 14:43:29.525317,230,486,461, +51,2017-03-11 14:43:29.525317,920,547,836, +2,2017-03-11 14:43:29.525317,450,479,302, +29,2017-03-11 14:43:29.525317,144,349,677, +3,2017-03-11 14:43:29.525317,607,905,667, +7,2017-03-11 14:43:29.525317,122,467,545, +15,2017-03-11 14:43:29.525317,118,680,456, +3,2017-03-11 14:43:29.525317,803,6,613, +3,2017-03-11 14:43:29.525317,492,74,544, +41,2017-03-11 14:43:29.525317,621,379,436, +7,2017-03-11 14:43:29.525317,858,739,358, +0,2017-03-11 14:43:29.525317,88,35,27, +69,2017-03-11 14:43:29.525317,940,693,767, +6,2017-03-11 14:43:29.525317,160,312,216, +28,2017-03-11 14:43:29.525317,993,672,311, +80,2017-03-11 14:43:29.525317,677,924,829, +17,2017-03-11 14:43:29.525317,997,372,580, +62,2017-03-11 14:43:29.525317,751,17,689, +61,2017-03-11 14:43:29.525317,755,48,611, +84,2017-03-11 14:43:29.525317,83,638,537, +2,2017-03-11 14:43:29.525317,332,304,86, +49,2017-03-11 14:43:29.525317,617,302,770, +61,2017-03-11 14:43:29.525317,973,81,405, +65,2017-03-11 14:43:29.525317,4,234,820, +0,2017-03-11 14:43:29.525317,606,400,620, +36,2017-03-11 14:43:29.525317,417,310,967, +17,2017-03-11 14:43:29.525317,357,578,15, +44,2017-03-11 14:43:29.525317,216,552,464, +55,2017-03-11 14:43:29.525317,856,549,40, +47,2017-03-11 14:43:29.525317,851,810,83, +82,2017-03-11 14:43:29.525317,891,488,475, +90,2017-03-11 14:43:29.525317,722,295,897, +33,2017-03-11 14:43:29.525317,695,517,687, +11,2017-03-11 14:43:29.525317,827,654,284, +18,2017-03-11 14:43:29.525317,232,299,625, +45,2017-03-11 14:43:29.525317,851,89,997, +71,2017-03-11 14:43:29.525317,638,37,181, +49,2017-03-11 14:43:29.525317,847,264,313, +74,2017-03-11 14:43:29.525317,752,788,633, +47,2017-03-11 14:43:29.525317,82,530,802, +78,2017-03-11 14:43:29.525317,48,489,889, +87,2017-03-11 14:43:29.525317,142,172,59, +37,2017-03-11 14:43:29.525317,471,685,824, +32,2017-03-11 14:43:29.525317,773,820,31, +41,2017-03-11 14:43:29.525317,857,212,899, +70,2017-03-11 14:43:29.525317,475,212,441, +23,2017-03-11 14:43:29.525317,999,75,700, +8,2017-03-11 14:43:29.525317,605,502,859, +65,2017-03-11 14:43:29.525317,991,747,527, +13,2017-03-11 14:43:29.525317,919,587,508, +39,2017-03-11 14:43:29.525317,271,332,714, +4,2017-03-11 14:43:29.525317,152,744,455, +1,2017-03-11 14:43:29.525317,956,354,713, +43,2017-03-11 14:43:29.525317,566,154,658, +57,2017-03-11 14:43:29.525317,229,359,647, +83,2017-03-11 14:43:29.525317,861,506,486, +85,2017-03-11 14:43:29.525317,253,13,986, +17,2017-03-11 14:43:29.525317,600,494,563, +87,2017-03-11 14:43:29.525317,826,277,916, +98,2017-03-11 14:43:29.525317,21,371,987, +98,2017-03-11 14:43:29.525317,726,700,408, +29,2017-03-11 14:43:29.525317,854,67,858, +8,2017-03-11 14:43:29.525317,425,505,916, +29,2017-03-11 14:43:29.525317,11,403,138, +26,2017-03-11 14:43:29.525317,416,124,436, +2,2017-03-11 14:43:29.525317,618,1000,888, +44,2017-03-11 14:43:29.525317,276,804,421, +30,2017-03-11 14:43:29.525317,175,408,275, +90,2017-03-11 14:43:29.525317,108,683,193, +96,2017-03-11 14:43:29.525317,750,51,45, +18,2017-03-11 14:43:29.525317,556,961,461, +57,2017-03-11 14:43:29.525317,364,600,831, +78,2017-03-11 14:43:29.525317,724,268,796, +34,2017-03-11 14:43:29.525317,267,684,785, +54,2017-03-11 14:43:29.525317,488,207,842, +66,2017-03-11 14:43:29.525317,615,116,565, +72,2017-03-11 14:43:29.525317,800,758,685, +55,2017-03-11 14:43:29.525317,809,729,725, +37,2017-03-11 14:43:29.525317,690,186,933, +5,2017-03-11 14:43:29.525317,786,764,834, +51,2017-03-11 14:43:29.525317,32,630,851, +30,2017-03-11 14:43:29.525317,314,636,844, +80,2017-03-11 14:43:29.525317,843,685,466, +46,2017-03-11 14:43:29.525317,801,31,180, +60,2017-03-11 14:43:29.525317,789,865,151, +60,2017-03-11 14:43:29.525317,594,875,963, +28,2017-03-11 14:43:29.525317,61,896,339, +85,2017-03-11 14:43:29.525317,660,173,356, +69,2017-03-11 14:43:29.525317,803,207,992, +12,2017-03-11 14:43:29.525317,844,836,920, +69,2017-03-11 14:43:29.525317,521,386,144, +32,2017-03-11 14:43:29.525317,416,325,923, +21,2017-03-11 14:43:29.525317,190,74,803, +78,2017-03-11 14:43:29.525317,949,767,69, +1,2017-03-11 14:43:29.525317,663,408,857, +32,2017-03-11 14:43:29.525317,581,213,16, +38,2017-03-11 14:43:29.525317,420,8,501, +26,2017-03-11 14:43:29.525317,844,420,950, +36,2017-03-11 14:43:29.525317,806,94,687, +22,2017-03-11 14:43:29.525317,419,611,428, +61,2017-03-11 14:43:29.525317,685,231,392, +63,2017-03-11 14:43:29.525317,998,461,643, +66,2017-03-11 14:43:29.525317,869,500,985, +45,2017-03-11 14:43:29.525317,713,1,833, +13,2017-03-11 14:43:29.525317,9,334,396, +85,2017-03-11 14:43:29.525317,754,346,218, +56,2017-03-11 14:43:29.525317,440,906,782, +86,2017-03-11 14:43:29.525317,516,210,467, +20,2017-03-11 14:43:29.525317,442,859,834, +44,2017-03-11 14:43:29.525317,320,478,101, +19,2017-03-11 14:43:29.525317,978,86,638, +69,2017-03-11 14:43:29.525317,87,471,824, +10,2017-03-11 14:43:29.525317,805,220,950, +56,2017-03-11 14:43:29.525317,566,168,119, +1,2017-03-11 14:43:29.525317,74,902,865, +59,2017-03-11 14:43:29.525317,112,332,792, +55,2017-03-11 14:43:29.525317,192,626,994, +51,2017-03-11 14:43:29.525317,104,95,701, +8,2017-03-11 14:43:29.525317,181,340,773, +27,2017-03-11 14:43:29.525317,811,597,364, +62,2017-03-11 14:43:29.525317,816,314,176, +38,2017-03-11 14:43:29.525317,483,295,389, +56,2017-03-11 14:43:29.525317,197,254,148, +31,2017-03-11 14:43:29.525317,586,939,863, +78,2017-03-11 14:43:29.525317,565,857,290, +67,2017-03-11 14:43:29.525317,952,992,751, +13,2017-03-11 14:43:29.525317,331,524,400, +14,2017-03-11 14:43:29.525317,120,765,759, +94,2017-03-11 14:43:29.525317,79,935,319, +56,2017-03-11 14:43:29.525317,231,708,119, +43,2017-03-11 14:43:29.525317,962,267,738, +55,2017-03-11 14:43:29.525317,206,601,326, +77,2017-03-11 14:43:29.525317,458,616,440, +41,2017-03-11 14:43:29.525317,608,191,542, +94,2017-03-11 14:43:29.525317,715,942,82, +84,2017-03-11 14:43:29.525317,707,841,772, +79,2017-03-11 14:43:29.525317,777,91,348, +1,2017-03-11 14:43:29.525317,799,467,435, +76,2017-03-11 14:43:29.525317,734,173,309, +94,2017-03-11 14:43:29.525317,774,634,710, +23,2017-03-11 14:43:29.525317,250,150,641, +86,2017-03-11 14:43:29.525317,341,183,797, +6,2017-03-11 14:43:29.525317,125,879,890, +83,2017-03-11 14:43:29.525317,720,662,618, +50,2017-03-11 14:43:29.525317,753,966,504, +55,2017-03-11 14:43:29.525317,433,939,313, +17,2017-03-11 14:43:29.525317,112,622,106, +89,2017-03-11 14:43:29.525317,256,816,117, +51,2017-03-11 14:43:29.525317,966,758,364, +31,2017-03-11 14:43:29.525317,941,161,362, +7,2017-03-11 14:43:29.525317,40,252,898, +76,2017-03-11 14:43:29.525317,914,515,256, +67,2017-03-11 14:43:29.525317,482,760,220, +91,2017-03-11 14:43:29.525317,699,533,82, +81,2017-03-11 14:43:29.525317,155,188,697, +41,2017-03-11 14:43:29.525317,5,815,917, +97,2017-03-11 14:43:29.525317,573,281,278, +51,2017-03-11 14:43:29.525317,442,640,580, +48,2017-03-11 14:43:29.525317,892,477,242, +81,2017-03-11 14:43:29.525317,993,498,473, +47,2017-03-11 14:43:29.525317,258,693,389, +96,2017-03-11 14:43:29.525317,226,471,769, +38,2017-03-11 14:43:29.525317,660,466,792, +66,2017-03-11 14:43:29.525317,281,709,635, +85,2017-03-11 14:43:29.525317,991,913,368, +43,2017-03-11 14:43:29.525317,553,948,916, +44,2017-03-11 14:43:29.525317,426,157,250, +42,2017-03-11 14:43:29.525317,655,723,893, +91,2017-03-11 14:43:29.525317,416,283,871, +64,2017-03-11 14:43:29.525317,754,639,23, +41,2017-03-11 14:43:29.525317,105,815,78, +39,2017-03-11 14:43:29.525317,525,713,241, +52,2017-03-11 14:43:29.525317,626,609,949, +18,2017-03-11 14:43:29.525317,558,865,623, +98,2017-03-11 14:43:29.525317,23,873,402, +68,2017-03-11 14:43:29.525317,596,296,591, +1,2017-03-11 14:43:29.525317,578,462,655, +33,2017-03-11 14:43:29.525317,102,678,746, +21,2017-03-11 14:43:29.525317,493,824,593, +2,2017-03-11 14:43:29.525317,537,834,534, +16,2017-03-11 14:43:29.525317,443,484,343, +0,2017-03-11 14:43:29.525317,349,966,984, +37,2017-03-11 14:43:29.525317,839,387,49, +44,2017-03-11 14:43:29.525317,682,641,448, +26,2017-03-11 14:43:29.525317,103,102,593, +20,2017-03-11 14:43:29.525317,780,339,411, +27,2017-03-11 14:43:29.525317,163,5,292, +70,2017-03-11 14:43:29.525317,839,826,864, +28,2017-03-11 14:43:29.525317,309,207,283, +66,2017-03-11 14:43:29.525317,173,267,29, +1,2017-03-11 14:43:29.525317,654,78,447, +34,2017-03-11 14:43:29.525317,719,894,597, +82,2017-03-11 14:43:29.525317,996,190,26, +78,2017-03-11 14:43:29.525317,529,437,50, +69,2017-03-11 14:43:29.525317,442,342,393, +28,2017-03-11 14:43:29.525317,168,258,563, +48,2017-03-11 14:43:29.525317,465,846,135, +64,2017-03-11 14:43:29.525317,113,164,649, +77,2017-03-11 14:43:29.525317,242,96,103, +96,2017-03-11 14:43:29.525317,990,700,782, +99,2017-03-11 14:43:29.525317,890,808,763, +42,2017-03-11 14:43:29.525317,245,813,111, +69,2017-03-11 14:43:29.525317,155,504,968, +32,2017-03-11 14:43:29.525317,762,531,800, +23,2017-03-11 14:43:29.525317,377,935,865, +49,2017-03-11 14:43:29.525317,99,514,258, +34,2017-03-11 14:43:29.525317,610,361,302, +60,2017-03-11 14:43:29.525317,61,84,587, +95,2017-03-11 14:43:29.525317,892,350,369, +14,2017-03-11 14:43:29.525317,163,480,824, +32,2017-03-11 14:43:29.525317,985,792,641, +75,2017-03-11 14:43:29.525317,323,440,974, +70,2017-03-11 14:43:29.525317,375,839,190, +47,2017-03-11 14:43:29.525317,352,448,814, +96,2017-03-11 14:43:29.525317,809,116,562, +87,2017-03-11 14:43:29.525317,200,149,820, +9,2017-03-11 14:43:29.525317,498,190,229, +66,2017-03-11 14:43:29.525317,670,53,980, +65,2017-03-11 14:43:29.525317,845,620,402, +17,2017-03-11 14:43:29.525317,60,376,868, +44,2017-03-11 14:43:29.525317,215,58,908, +57,2017-03-11 14:43:29.525317,506,723,529, +32,2017-03-11 14:43:29.525317,838,90,185, +4,2017-03-11 14:43:29.525317,239,5,130, +74,2017-03-11 14:43:29.525317,195,359,399, +87,2017-03-11 14:43:29.525317,413,379,520, +26,2017-03-11 14:43:29.525317,999,922,426, +6,2017-03-11 14:43:29.525317,298,294,495, +51,2017-03-11 14:43:29.525317,352,403,79, +86,2017-03-11 14:43:29.525317,126,608,173, +96,2017-03-11 14:43:29.525317,698,358,2, +94,2017-03-11 14:43:29.525317,364,133,675, +56,2017-03-11 14:43:29.525317,492,74,424, +90,2017-03-11 14:43:29.525317,453,944,163, +45,2017-03-11 14:43:29.525317,866,589,512, +16,2017-03-11 14:43:29.525317,883,6,676, +23,2017-03-11 14:43:29.525317,410,755,93, +54,2017-03-11 14:43:29.525317,363,267,499, +6,2017-03-11 14:43:29.525317,625,502,999, +99,2017-03-11 14:43:29.525317,634,674,547, +13,2017-03-11 14:43:29.525317,748,971,31, +20,2017-03-11 14:43:29.525317,915,194,653, +78,2017-03-11 14:43:29.525317,782,165,944, +67,2017-03-11 14:43:29.525317,171,619,900, +58,2017-03-11 14:43:29.525317,375,993,116, +74,2017-03-11 14:43:29.525317,260,615,799, +89,2017-03-11 14:43:29.525317,117,798,874, +75,2017-03-11 14:43:29.525317,472,421,878, +22,2017-03-11 14:43:29.525317,392,909,421, +31,2017-03-11 14:43:29.525317,103,74,87, +89,2017-03-11 14:43:29.525317,238,30,550, +41,2017-03-11 14:43:29.525317,650,450,990, +2,2017-03-11 14:43:29.525317,443,106,762, +70,2017-03-11 14:43:29.525317,722,562,588, +84,2017-03-11 14:43:29.525317,360,462,590, +83,2017-03-11 14:43:29.525317,884,468,52, +28,2017-03-11 14:43:29.525317,376,472,583, +48,2017-03-11 14:43:29.525317,546,669,364, +78,2017-03-11 14:43:29.525317,700,914,194, +35,2017-03-11 14:43:29.525317,365,184,374, +81,2017-03-11 14:43:29.525317,291,137,512, +1,2017-03-11 14:43:29.525317,698,100,851, +6,2017-03-11 14:43:29.525317,562,441,890, +45,2017-03-11 14:43:29.525317,909,942,722, +29,2017-03-11 14:43:29.525317,414,304,764, +96,2017-03-11 14:43:29.525317,974,128,744, +67,2017-03-11 14:43:29.525317,43,938,23, +41,2017-03-11 14:43:29.525317,122,398,216, +41,2017-03-11 14:43:29.525317,534,727,425, +23,2017-03-11 14:43:29.525317,828,277,291, +39,2017-03-11 14:43:29.525317,718,181,836, +63,2017-03-11 14:43:29.525317,123,558,911, +54,2017-03-11 14:43:29.525317,862,675,497, +84,2017-03-11 14:43:29.525317,804,241,509, +85,2017-03-11 14:43:29.525317,179,532,254, +30,2017-03-11 14:43:29.525317,930,470,714, +46,2017-03-11 14:43:29.525317,197,140,697, +2,2017-03-11 14:43:29.525317,416,988,414, +13,2017-03-11 14:43:29.525317,170,250,760, +29,2017-03-11 14:43:29.525317,808,671,830, +67,2017-03-11 14:43:29.525317,347,327,505, +15,2017-03-11 14:43:29.525317,568,14,997, +75,2017-03-11 14:43:29.525317,546,251,48, +48,2017-03-11 14:43:29.525317,720,763,939, +92,2017-03-11 14:43:29.525317,902,636,942, +32,2017-03-11 14:43:29.525317,625,356,452, +79,2017-03-11 14:43:29.525317,606,212,87, +41,2017-03-11 14:43:29.525317,884,917,84, +23,2017-03-11 14:43:29.525317,244,588,381, +81,2017-03-11 14:43:29.525317,602,378,559, +15,2017-03-11 14:43:29.525317,628,608,623, +35,2017-03-11 14:43:29.525317,370,562,266, +27,2017-03-11 14:43:29.525317,198,207,591, +82,2017-03-11 14:43:29.525317,563,43,617, +17,2017-03-11 14:43:29.525317,256,704,584, +14,2017-03-11 14:43:29.525317,621,667,370, +87,2017-03-11 14:43:29.525317,255,751,678, +86,2017-03-11 14:43:29.525317,129,237,4, +76,2017-03-11 14:43:29.525317,845,627,105, +21,2017-03-11 14:43:29.525317,189,371,487, +39,2017-03-11 14:43:29.525317,578,78,210, +14,2017-03-11 14:43:29.525317,122,827,311, +38,2017-03-11 14:43:29.525317,531,894,517, +15,2017-03-11 14:43:29.525317,562,888,18, +82,2017-03-11 14:43:29.525317,639,696,674, +77,2017-03-11 14:43:29.525317,933,678,525, +78,2017-03-11 14:43:29.525317,305,630,992, +49,2017-03-11 14:43:29.525317,1,479,881, +58,2017-03-11 14:43:29.525317,558,91,720, +68,2017-03-11 14:43:29.525317,918,31,57, +45,2017-03-11 14:43:29.525317,925,575,603, +49,2017-03-11 14:43:29.525317,462,621,304, +10,2017-03-11 14:43:29.525317,317,978,869, +25,2017-03-11 14:43:29.525317,656,394,26, +96,2017-03-11 14:43:29.525317,24,18,456, +2,2017-03-11 14:43:29.525317,498,337,604, +6,2017-03-11 14:43:29.525317,429,324,735, +35,2017-03-11 14:43:29.525317,355,792,797, +28,2017-03-11 14:43:29.525317,367,400,768, +83,2017-03-11 14:43:29.525317,21,71,931, +34,2017-03-11 14:43:29.525317,49,800,586, +71,2017-03-11 14:43:29.525317,194,613,668, +22,2017-03-11 14:43:29.525317,631,124,242, +13,2017-03-11 14:43:29.525317,461,846,185, +89,2017-03-11 14:43:29.525317,171,920,237, +53,2017-03-11 14:43:29.525317,712,34,806, +8,2017-03-11 14:43:29.525317,434,574,908, +45,2017-03-11 14:43:29.525317,645,839,792, +69,2017-03-11 14:43:29.525317,639,378,401, +83,2017-03-11 14:43:29.525317,991,68,50, +62,2017-03-11 14:43:29.525317,192,293,751, +65,2017-03-11 14:43:29.525317,139,936,543, +31,2017-03-11 14:43:29.525317,856,780,835, +57,2017-03-11 14:43:29.525317,815,641,647, +25,2017-03-11 14:43:29.525317,215,555,704, +86,2017-03-11 14:43:29.525317,395,496,556, +3,2017-03-11 14:43:29.525317,874,956,866, +87,2017-03-11 14:43:29.525317,24,916,488, +22,2017-03-11 14:43:29.525317,209,239,869, +35,2017-03-11 14:43:29.525317,175,412,657, +3,2017-03-11 14:43:29.525317,193,492,599, +1,2017-03-11 14:43:29.525317,134,246,256, +35,2017-03-11 14:43:29.525317,801,960,210, +20,2017-03-11 14:43:29.525317,455,766,229, +33,2017-03-11 14:43:29.525317,722,95,195, +75,2017-03-11 14:43:29.525317,11,682,963, +22,2017-03-11 14:43:29.525317,921,832,567, +10,2017-03-11 14:43:29.525317,244,224,127, +44,2017-03-11 14:43:29.525317,717,726,444, +85,2017-03-11 14:43:29.525317,971,700,199, +77,2017-03-11 14:43:29.525317,660,410,968, +12,2017-03-11 14:43:29.525317,175,197,445, +90,2017-03-11 14:43:29.525317,292,640,644, +30,2017-03-11 14:43:29.525317,322,606,523, +24,2017-03-11 14:43:29.525317,438,90,339, +68,2017-03-11 14:43:29.525317,315,466,119, +3,2017-03-11 14:43:29.525317,192,563,881, +16,2017-03-11 14:43:29.525317,263,81,935, +92,2017-03-11 14:43:29.525317,490,903,39, +67,2017-03-11 14:43:29.525317,101,484,563, +39,2017-03-11 14:43:29.525317,124,207,696, +45,2017-03-11 14:43:29.525317,813,219,689, +25,2017-03-11 14:43:29.525317,309,28,933, +62,2017-03-11 14:43:29.525317,494,52,655, +69,2017-03-11 14:43:29.525317,615,536,849, +88,2017-03-11 14:43:29.525317,617,784,801, +11,2017-03-11 14:43:29.525317,688,840,773, +79,2017-03-11 14:43:29.525317,324,336,181, +45,2017-03-11 14:43:29.525317,543,877,893, +36,2017-03-11 14:43:29.525317,96,582,607, +40,2017-03-11 14:43:29.525317,610,539,28, +10,2017-03-11 14:43:29.525317,591,683,790, +21,2017-03-11 14:43:29.525317,219,638,84, +84,2017-03-11 14:43:29.525317,422,885,943, +11,2017-03-11 14:43:29.525317,725,716,898, +5,2017-03-11 14:43:29.525317,52,79,496, +60,2017-03-11 14:43:29.525317,956,389,951, +5,2017-03-11 14:43:29.525317,971,558,456, +58,2017-03-11 14:43:29.525317,97,484,685, +69,2017-03-11 14:43:29.525317,166,474,894, +38,2017-03-11 14:43:29.525317,113,978,220, +53,2017-03-11 14:43:29.525317,863,163,645, +59,2017-03-11 14:43:29.525317,879,543,637, +93,2017-03-11 14:43:29.525317,622,133,527, +58,2017-03-11 14:43:29.525317,523,478,629, +49,2017-03-11 14:43:29.525317,35,85,75, +13,2017-03-11 14:43:29.525317,569,760,821, +73,2017-03-11 14:43:29.525317,234,715,120, +35,2017-03-11 14:43:29.525317,693,340,882, +56,2017-03-11 14:43:29.525317,503,527,144, +38,2017-03-11 14:43:29.525317,70,781,314, +69,2017-03-11 14:43:29.525317,915,841,269, +44,2017-03-11 14:43:29.525317,319,898,932, +35,2017-03-11 14:43:29.525317,983,7,486, +55,2017-03-11 14:43:29.525317,767,307,286, +0,2017-03-11 14:43:29.525317,22,406,349, +71,2017-03-11 14:43:29.525317,746,231,271, +25,2017-03-11 14:43:29.525317,757,416,631, +83,2017-03-11 14:43:29.525317,197,945,518, +11,2017-03-11 14:43:29.525317,786,787,549, +10,2017-03-11 14:43:29.525317,685,481,459, +67,2017-03-11 14:43:29.525317,488,945,219, +25,2017-03-11 14:43:29.525317,252,506,256, +27,2017-03-11 14:43:29.525317,912,605,989, +66,2017-03-11 14:43:29.525317,835,260,907, +59,2017-03-11 14:43:29.525317,676,538,419, +87,2017-03-11 14:43:29.525317,483,938,984, +27,2017-03-11 14:43:29.525317,725,533,375, +41,2017-03-11 14:43:29.525317,14,834,79, +50,2017-03-11 14:43:29.525317,779,298,756, +3,2017-03-11 14:43:29.525317,804,13,305, +72,2017-03-11 14:43:29.525317,617,294,373, +45,2017-03-11 14:43:29.525317,554,280,45, +23,2017-03-11 14:43:29.525317,818,464,103, +30,2017-03-11 14:43:29.525317,402,87,571, +13,2017-03-11 14:43:29.525317,620,945,538, +63,2017-03-11 14:43:29.525317,779,616,136, +56,2017-03-11 14:43:29.525317,914,892,589, +72,2017-03-11 14:43:29.525317,905,895,433, +52,2017-03-11 14:43:29.525317,189,807,975, +74,2017-03-11 14:43:29.525317,86,20,973, +90,2017-03-11 14:43:29.525317,484,76,205, +89,2017-03-11 14:43:29.525317,163,776,13, +78,2017-03-11 14:43:29.525317,721,551,417, +50,2017-03-11 14:43:29.525317,167,553,59, +8,2017-03-11 14:43:29.525317,445,648,799, +35,2017-03-11 14:43:29.525317,543,232,872, +73,2017-03-11 14:43:29.525317,39,847,475, +13,2017-03-11 14:43:29.525317,866,449,29, +35,2017-03-11 14:43:29.525317,525,234,236, +69,2017-03-11 14:43:29.525317,10,249,470, +73,2017-03-11 14:43:29.525317,800,887,232, +97,2017-03-11 14:43:29.525317,440,291,48, +88,2017-03-11 14:43:29.525317,939,847,235, +48,2017-03-11 14:43:29.525317,80,107,214, +12,2017-03-11 14:43:29.525317,954,689,244, +82,2017-03-11 14:43:29.525317,138,273,171, +66,2017-03-11 14:43:29.525317,508,407,350, +52,2017-03-11 14:43:29.525317,656,821,250, +46,2017-03-11 14:43:29.525317,708,482,423, +15,2017-03-11 14:43:29.525317,773,471,32, +71,2017-03-11 14:43:29.525317,318,267,195, +40,2017-03-11 14:43:29.525317,375,409,517, +33,2017-03-11 14:43:29.525317,98,760,149, +24,2017-03-11 14:43:29.525317,34,320,899, +54,2017-03-11 14:43:29.525317,726,249,59, +38,2017-03-11 14:43:29.525317,70,309,838, +78,2017-03-11 14:43:29.525317,791,261,925, +56,2017-03-11 14:43:29.525317,733,957,277, +5,2017-03-11 14:43:29.525317,225,471,449, +60,2017-03-11 14:43:29.525317,880,965,928, +98,2017-03-11 14:43:29.525317,726,77,214, +76,2017-03-11 14:43:29.525317,397,113,301, +12,2017-03-11 14:43:29.525317,362,360,505, +43,2017-03-11 14:43:29.525317,669,343,209, +46,2017-03-11 14:43:29.525317,605,134,24, +34,2017-03-11 14:43:29.525317,91,301,388, +32,2017-03-11 14:43:29.525317,772,837,916, +65,2017-03-11 14:43:29.525317,803,844,630, +53,2017-03-11 14:43:29.525317,921,843,288, +32,2017-03-11 14:43:29.525317,956,589,440, +32,2017-03-11 14:43:29.525317,949,945,749, +62,2017-03-11 14:43:29.525317,288,959,77, +89,2017-03-11 14:43:29.525317,93,101,230, +18,2017-03-11 14:43:29.525317,402,619,500, +17,2017-03-11 14:43:29.525317,456,416,825, +26,2017-03-11 14:43:29.525317,260,455,788, +18,2017-03-11 14:43:29.525317,298,76,497, +25,2017-03-11 14:43:29.525317,665,937,572, +61,2017-03-11 14:43:29.525317,882,321,232, +17,2017-03-11 14:43:29.525317,280,309,63, +37,2017-03-11 14:43:29.525317,410,293,557, +81,2017-03-11 14:43:29.525317,912,57,985, +37,2017-03-11 14:43:29.525317,473,810,627, +73,2017-03-11 14:43:29.525317,265,414,913, +56,2017-03-11 14:43:29.525317,490,410,817, +16,2017-03-11 14:43:29.525317,347,389,769, +23,2017-03-11 14:43:29.525317,710,1,399, +99,2017-03-11 14:43:29.525317,310,461,362, +72,2017-03-11 14:43:29.525317,754,919,531, +67,2017-03-11 14:43:29.525317,976,516,34, +45,2017-03-11 14:43:29.525317,327,660,182, +59,2017-03-11 14:43:29.525317,74,94,155, +56,2017-03-11 14:43:29.525317,504,972,720, +85,2017-03-11 14:43:29.525317,361,489,80, +7,2017-03-11 14:43:29.525317,491,478,60, +80,2017-03-11 14:43:29.525317,940,422,520, +69,2017-03-11 14:43:29.525317,341,52,360, +32,2017-03-11 14:43:29.525317,568,394,766, +90,2017-03-11 14:43:29.525317,54,947,487, +13,2017-03-11 14:43:29.525317,41,642,693, +55,2017-03-11 14:43:29.525317,614,413,397, +97,2017-03-11 14:43:29.525317,903,477,45, +39,2017-03-11 14:43:29.525317,955,105,194, +89,2017-03-11 14:43:29.525317,527,714,589, +87,2017-03-11 14:43:29.525317,766,949,184, +33,2017-03-11 14:43:29.525317,343,949,229, +40,2017-03-11 14:43:29.525317,896,716,525, +94,2017-03-11 14:43:29.525317,358,219,483, +97,2017-03-11 14:43:29.525317,632,880,946, +53,2017-03-11 14:43:29.525317,357,991,927, +31,2017-03-11 14:43:29.525317,96,121,207, +62,2017-03-11 14:43:29.525317,835,796,490, +60,2017-03-11 14:43:29.525317,745,674,935, +9,2017-03-11 14:43:29.525317,623,164,485, +52,2017-03-11 14:43:29.525317,880,11,457, +24,2017-03-11 14:43:29.525317,229,941,210, +86,2017-03-11 14:43:29.525317,821,156,395, +18,2017-03-11 14:43:29.525317,148,323,490, +24,2017-03-11 14:43:29.525317,444,697,866, +28,2017-03-11 14:43:29.525317,493,356,880, +24,2017-03-11 14:43:29.525317,30,815,326, +65,2017-03-11 14:43:29.525317,979,811,172, +86,2017-03-11 14:43:29.525317,822,629,97, +5,2017-03-11 14:43:29.525317,570,307,912, +39,2017-03-11 14:43:29.525317,464,307,568, +61,2017-03-11 14:43:29.525317,630,58,855, +7,2017-03-11 14:43:29.525317,755,721,353, +25,2017-03-11 14:43:29.525317,77,233,486, +11,2017-03-11 14:43:29.525317,47,812,760, +3,2017-03-11 14:43:29.525317,623,932,885, +45,2017-03-11 14:43:29.525317,561,983,496, +13,2017-03-11 14:43:29.525317,290,408,521, +75,2017-03-11 14:43:29.525317,716,90,365, +35,2017-03-11 14:43:29.525317,148,221,420, +90,2017-03-11 14:43:29.525317,942,773,151, +2,2017-03-11 14:43:29.525317,6,637,127, +5,2017-03-11 14:43:29.525317,449,886,80, +7,2017-03-11 14:43:29.525317,818,965,518, +38,2017-03-11 14:43:29.525317,947,14,509, +24,2017-03-11 14:43:29.525317,423,30,991, +14,2017-03-11 14:43:29.525317,120,357,485, +27,2017-03-11 14:43:29.525317,577,905,171, +52,2017-03-11 14:43:29.525317,678,322,539, +68,2017-03-11 14:43:29.525317,959,665,737, +41,2017-03-11 14:43:29.525317,552,817,481, +37,2017-03-11 14:43:29.525317,782,999,748, +73,2017-03-11 14:43:29.525317,14,257,967, +44,2017-03-11 14:43:29.525317,287,958,575, +41,2017-03-11 14:43:29.525317,315,60,674, +89,2017-03-11 14:43:29.525317,965,845,412, +64,2017-03-11 14:43:29.525317,167,951,327, +13,2017-03-11 14:43:29.525317,616,64,535, +17,2017-03-11 14:43:29.525317,881,16,537, +66,2017-03-11 14:43:29.525317,16,285,392, +3,2017-03-11 14:43:29.525317,542,359,466, +83,2017-03-11 14:43:29.525317,317,42,235, +63,2017-03-11 14:43:29.525317,102,910,524, +7,2017-03-11 14:43:29.525317,755,936,709, +92,2017-03-11 14:43:29.525317,886,36,49, +50,2017-03-11 14:43:29.525317,100,584,670, +98,2017-03-11 14:43:29.525317,601,207,644, +62,2017-03-11 14:43:29.525317,492,36,646, +3,2017-03-11 14:43:29.525317,396,113,862, +71,2017-03-11 14:43:29.525317,154,97,345, +26,2017-03-11 14:43:29.525317,7,869,323, +76,2017-03-11 14:43:29.525317,804,32,685, +69,2017-03-11 14:43:29.525317,68,734,193, +17,2017-03-11 14:43:29.525317,318,863,149, +92,2017-03-11 14:43:29.525317,71,793,535, +56,2017-03-11 14:43:29.525317,830,181,597, +23,2017-03-11 14:43:29.525317,293,459,938, +45,2017-03-11 14:43:29.525317,557,283,703, +56,2017-03-11 14:43:29.525317,151,26,326, +96,2017-03-11 14:43:29.525317,58,10,647, +13,2017-03-11 14:43:29.525317,744,840,294, +6,2017-03-11 14:43:29.525317,703,443,980, +77,2017-03-11 14:43:29.525317,236,514,337, +7,2017-03-11 14:43:29.525317,695,933,292, +99,2017-03-11 14:43:29.525317,393,230,436, +95,2017-03-11 14:43:29.525317,513,139,513, +66,2017-03-11 14:43:29.525317,165,838,620, +22,2017-03-11 14:43:29.525317,849,267,349, +59,2017-03-11 14:43:29.525317,107,643,654, +81,2017-03-11 14:43:29.525317,86,634,584, +32,2017-03-11 14:43:29.525317,148,920,388, +84,2017-03-11 14:43:29.525317,854,680,832, +25,2017-03-11 14:43:29.525317,910,267,195, +42,2017-03-11 14:43:29.525317,406,708,87, +57,2017-03-11 14:43:29.525317,547,707,795, +40,2017-03-11 14:43:29.525317,974,143,988, +8,2017-03-11 14:43:29.525317,786,642,890, +87,2017-03-11 14:43:29.525317,276,474,193, +42,2017-03-11 14:43:29.525317,394,582,267, +25,2017-03-11 14:43:29.525317,262,99,494, +17,2017-03-11 14:43:29.525317,366,690,595, +77,2017-03-11 14:43:29.525317,398,682,344, +94,2017-03-11 14:43:29.525317,389,139,340, +36,2017-03-11 14:43:29.525317,282,327,443, +7,2017-03-11 14:43:29.525317,969,333,940, +25,2017-03-11 14:43:29.525317,806,133,669, +20,2017-03-11 14:43:29.525317,715,937,448, +98,2017-03-11 14:43:29.525317,35,943,148, +40,2017-03-11 14:43:29.525317,632,743,174, +3,2017-03-11 14:43:29.525317,425,518,975, +81,2017-03-11 14:43:29.525317,657,314,176, +94,2017-03-11 14:43:29.525317,642,618,7, +61,2017-03-11 14:43:29.525317,951,947,856, +76,2017-03-11 14:43:29.525317,80,526,958, +79,2017-03-11 14:43:29.525317,462,406,771, +50,2017-03-11 14:43:29.525317,349,920,899, +98,2017-03-11 14:43:29.525317,663,73,11, +9,2017-03-11 14:43:29.525317,591,986,901, +25,2017-03-11 14:43:29.525317,300,76,188, +94,2017-03-11 14:43:29.525317,695,195,553, +65,2017-03-11 14:43:29.525317,142,410,403, +22,2017-03-11 14:43:29.525317,935,360,17, +40,2017-03-11 14:43:29.525317,766,788,895, +11,2017-03-11 14:43:29.525317,708,793,96, +37,2017-03-11 14:43:29.525317,866,107,459, +46,2017-03-11 14:43:29.525317,93,360,706, +39,2017-03-11 14:43:29.525317,436,894,336, +13,2017-03-11 14:43:29.525317,90,889,776, +23,2017-03-11 14:43:29.525317,299,179,455, +23,2017-03-11 14:43:29.525317,539,472,631, +30,2017-03-11 14:43:29.525317,260,525,420, +97,2017-03-11 14:43:29.525317,319,516,340, +19,2017-03-11 14:43:29.525317,623,798,643, +72,2017-03-11 14:43:29.525317,158,350,110, +59,2017-03-11 14:43:29.525317,244,446,725, +33,2017-03-11 14:43:29.525317,335,501,566, +63,2017-03-11 14:43:29.525317,679,21,867, +22,2017-03-11 14:43:29.525317,493,498,523, +75,2017-03-11 14:43:29.525317,23,943,721, +34,2017-03-11 14:43:29.525317,459,61,527, +8,2017-03-11 14:43:29.525317,859,170,798, +2,2017-03-11 14:43:29.525317,520,908,611, +76,2017-03-11 14:43:29.525317,354,336,98, +69,2017-03-11 14:43:29.525317,837,664,323, +52,2017-03-11 14:43:29.525317,684,190,734, +18,2017-03-11 14:43:29.525317,688,257,930, +71,2017-03-11 14:43:29.525317,200,651,53, +66,2017-03-11 14:43:29.525317,712,580,741, +57,2017-03-11 14:43:29.525317,750,539,587, +27,2017-03-11 14:43:29.525317,447,198,34, +80,2017-03-11 14:43:29.525317,534,132,490, +37,2017-03-11 14:43:29.525317,796,813,887, +48,2017-03-11 14:43:29.525317,2,621,657, +69,2017-03-11 14:43:29.525317,878,587,401, +8,2017-03-11 14:43:29.525317,238,454,738, +95,2017-03-11 14:43:29.525317,34,479,520, +78,2017-03-11 14:43:29.525317,17,107,55, +46,2017-03-11 14:43:29.525317,305,89,266, +84,2017-03-11 14:43:29.525317,221,756,210, +2,2017-03-11 14:43:29.525317,569,97,496, +57,2017-03-11 14:43:29.525317,718,153,261, +60,2017-03-11 14:43:29.525317,740,662,675, +98,2017-03-11 14:43:29.525317,116,413,927, +15,2017-03-11 14:43:29.525317,891,446,934, +91,2017-03-11 14:43:29.525317,553,989,373, +86,2017-03-11 14:43:29.525317,78,639,698, +30,2017-03-11 14:43:29.525317,395,909,315, +96,2017-03-11 14:43:29.525317,5,811,534, +72,2017-03-11 14:43:29.525317,965,795,319, +70,2017-03-11 14:43:29.525317,457,994,682, +57,2017-03-11 14:43:29.525317,407,609,723, +30,2017-03-11 14:43:29.525317,55,657,207, +61,2017-03-11 14:43:29.525317,645,580,467, +72,2017-03-11 14:43:29.525317,219,165,22, +61,2017-03-11 14:43:29.525317,73,337,576, +8,2017-03-11 14:43:29.525317,148,111,802, +11,2017-03-11 14:43:29.525317,906,121,817, +36,2017-03-11 14:43:29.525317,115,500,936, +52,2017-03-11 14:43:29.525317,108,659,820, +16,2017-03-11 14:43:29.525317,316,26,771, +96,2017-03-11 14:43:29.525317,606,237,684, +82,2017-03-11 14:43:29.525317,402,706,438, +48,2017-03-11 14:43:29.525317,43,14,554, +19,2017-03-11 14:43:29.525317,125,356,304, +3,2017-03-11 14:43:29.525317,478,122,394, +59,2017-03-11 14:43:29.525317,621,330,115, +73,2017-03-11 14:43:29.525317,989,935,892, +30,2017-03-11 14:43:29.525317,961,663,266, +57,2017-03-11 14:43:29.525317,901,950,392, +30,2017-03-11 14:43:29.525317,657,830,778, +70,2017-03-11 14:43:29.525317,844,333,891, +97,2017-03-11 14:43:29.525317,689,195,1000, +17,2017-03-11 14:43:29.525317,317,393,760, +94,2017-03-11 14:43:29.525317,724,875,667, +71,2017-03-11 14:43:29.525317,810,560,18, +77,2017-03-11 14:43:29.525317,223,284,339, +12,2017-03-11 14:43:29.525317,234,731,426, +89,2017-03-11 14:43:29.525317,561,205,591, +40,2017-03-11 14:43:29.525317,537,482,374, +23,2017-03-11 14:43:29.525317,677,373,393, +99,2017-03-11 14:43:29.525317,767,153,932, +49,2017-03-11 14:43:29.525317,28,599,203, +84,2017-03-11 14:43:29.525317,159,221,609, +38,2017-03-11 14:43:29.525317,505,948,506, +74,2017-03-11 14:43:29.525317,678,932,630, +24,2017-03-11 14:43:29.525317,137,221,644, +67,2017-03-11 14:43:29.525317,702,17,901, +38,2017-03-11 14:43:29.525317,390,294,373, +16,2017-03-11 14:43:29.525317,447,305,647, +48,2017-03-11 14:43:29.525317,904,851,314, +6,2017-03-11 14:43:29.525317,72,923,445, +58,2017-03-11 14:43:29.525317,870,951,316, +55,2017-03-11 14:43:29.525317,883,946,788, +2,2017-03-11 14:43:29.525317,166,431,693, +87,2017-03-11 14:43:29.525317,449,594,248, +84,2017-03-11 14:43:29.525317,888,621,996, +34,2017-03-11 14:43:29.525317,926,643,811, +83,2017-03-11 14:43:29.525317,494,124,893, +57,2017-03-11 14:43:29.525317,47,338,142, +92,2017-03-11 14:43:29.525317,289,458,466, +17,2017-03-11 14:43:29.525317,403,254,190, +57,2017-03-11 14:43:29.525317,685,883,438, +13,2017-03-11 14:43:29.525317,477,687,973, +36,2017-03-11 14:43:29.525317,308,969,700, +23,2017-03-11 14:43:29.525317,612,511,64, +11,2017-03-11 14:43:29.525317,635,957,672, +68,2017-03-11 14:43:29.525317,295,814,600, +58,2017-03-11 14:43:29.525317,272,66,755, +67,2017-03-11 14:43:29.525317,320,945,245, +1,2017-03-11 14:43:29.525317,828,683,139, +31,2017-03-11 14:43:29.525317,370,112,670, +68,2017-03-11 14:43:29.525317,81,370,912, +69,2017-03-11 14:43:29.525317,881,976,799, +52,2017-03-11 14:43:29.525317,933,471,198, +23,2017-03-11 14:43:29.525317,285,798,811, +56,2017-03-11 14:43:29.525317,864,566,232, +18,2017-03-11 14:43:29.525317,511,476,190, +34,2017-03-11 14:43:29.525317,159,330,644, +53,2017-03-11 14:43:29.525317,442,314,207, +52,2017-03-11 14:43:29.525317,684,119,216, +56,2017-03-11 14:43:29.525317,95,15,80, +3,2017-03-11 14:43:29.525317,486,278,256, +77,2017-03-11 14:43:29.525317,76,67,328, +94,2017-03-11 14:43:29.525317,633,560,125, +14,2017-03-11 14:43:29.525317,36,316,482, +20,2017-03-11 14:43:29.525317,645,126,725, +9,2017-03-11 14:43:29.525317,440,932,610, +12,2017-03-11 14:43:29.525317,51,826,688, +15,2017-03-11 14:43:29.525317,841,768,173, +33,2017-03-11 14:43:29.525317,46,429,99, +12,2017-03-11 14:43:29.525317,496,427,63, +13,2017-03-11 14:43:29.525317,987,188,272, +2,2017-03-11 14:43:29.525317,503,755,218, +15,2017-03-11 14:43:29.525317,881,943,236, +32,2017-03-11 14:43:29.525317,875,847,444, +93,2017-03-11 14:43:29.525317,673,132,71, +51,2017-03-11 14:43:29.525317,900,245,842, +95,2017-03-11 14:43:29.525317,673,941,68, +17,2017-03-11 14:43:29.525317,368,130,298, +35,2017-03-11 14:43:29.525317,318,570,377, +82,2017-03-11 14:43:29.525317,325,596,970, +21,2017-03-11 14:43:29.525317,539,207,526, +41,2017-03-11 14:43:29.525317,53,970,340, +73,2017-03-11 14:43:29.525317,102,411,241, +0,2017-03-11 14:43:29.525317,656,83,947, +33,2017-03-11 14:43:29.525317,24,14,498, +39,2017-03-11 14:43:29.525317,144,796,746, +46,2017-03-11 14:43:29.525317,366,123,284, +69,2017-03-11 14:43:29.525317,719,254,896, +26,2017-03-11 14:43:29.525317,460,422,672, +51,2017-03-11 14:43:29.525317,392,12,240, +49,2017-03-11 14:43:29.525317,423,481,495, +8,2017-03-11 14:43:29.525317,564,441,407, +59,2017-03-11 14:43:29.525317,456,905,980, +60,2017-03-11 14:43:29.525317,701,727,63, +7,2017-03-11 14:43:29.525317,850,346,758, +57,2017-03-11 14:43:29.525317,600,654,827, +6,2017-03-11 14:43:29.525317,76,499,574, +47,2017-03-11 14:43:29.525317,510,814,961, +93,2017-03-11 14:43:29.525317,295,456,11, +86,2017-03-11 14:43:29.525317,897,419,448, +35,2017-03-11 14:43:29.525317,324,428,953, +3,2017-03-11 14:43:29.525317,155,16,93, +1,2017-03-11 14:43:29.525317,362,851,574, +96,2017-03-11 14:43:29.525317,505,401,23, +58,2017-03-11 14:43:29.525317,900,597,49, +41,2017-03-11 14:43:29.525317,411,10,343, +71,2017-03-11 14:43:29.525317,466,355,565, +36,2017-03-11 14:43:29.525317,774,13,716, +10,2017-03-11 14:43:29.525317,442,669,123, +60,2017-03-11 14:43:29.525317,685,216,602, +5,2017-03-11 14:43:29.525317,67,176,10, +57,2017-03-11 14:43:29.525317,577,33,153, +48,2017-03-11 14:43:29.525317,630,202,888, +4,2017-03-11 14:43:29.525317,212,231,746, +68,2017-03-11 14:43:29.525317,586,312,40, +36,2017-03-11 14:43:29.525317,325,755,457, +77,2017-03-11 14:43:29.525317,425,580,363, +11,2017-03-11 14:43:29.525317,796,965,158, +86,2017-03-11 14:43:29.525317,141,168,434, +72,2017-03-11 14:43:29.525317,201,587,195, +83,2017-03-11 14:43:29.525317,788,83,871, +0,2017-03-11 14:43:29.525317,314,618,677, +90,2017-03-11 14:43:29.525317,929,717,260, +25,2017-03-11 14:43:29.525317,472,717,21, +90,2017-03-11 14:43:29.525317,297,385,7, +9,2017-03-11 14:43:29.525317,350,165,955, +49,2017-03-11 14:43:29.525317,333,389,209, +53,2017-03-11 14:43:29.525317,975,404,366, +76,2017-03-11 14:43:29.525317,487,237,764, +80,2017-03-11 14:43:29.525317,855,441,702, +78,2017-03-11 14:43:29.525317,158,961,39, +63,2017-03-11 14:43:29.525317,678,60,527, +97,2017-03-11 14:43:29.525317,445,534,67, +79,2017-03-11 14:43:29.525317,699,22,285, +3,2017-03-11 14:43:29.525317,410,494,567, +39,2017-03-11 14:43:29.525317,898,932,150, +39,2017-03-11 14:43:29.525317,169,914,187, +2,2017-03-11 14:43:29.525317,355,889,808, +51,2017-03-11 14:43:29.525317,850,847,142, +53,2017-03-11 14:43:29.525317,907,669,503, +35,2017-03-11 14:43:29.525317,204,570,146, +90,2017-03-11 14:43:29.525317,591,431,935, +0,2017-03-11 14:43:29.525317,924,502,387, +82,2017-03-11 14:43:29.525317,434,537,208, +60,2017-03-11 14:43:29.525317,450,395,627, +80,2017-03-11 14:43:29.525317,283,436,317, +13,2017-03-11 14:43:29.525317,283,460,662, +19,2017-03-11 14:43:29.525317,129,165,541, +33,2017-03-11 14:43:29.525317,735,687,235, +33,2017-03-11 14:43:29.525317,118,170,328, +4,2017-03-11 14:43:29.525317,672,715,865, +11,2017-03-11 14:43:29.525317,252,72,709, +70,2017-03-11 14:43:29.525317,467,336,507, +75,2017-03-11 14:43:29.525317,772,824,884, +5,2017-03-11 14:43:29.525317,284,546,244, +41,2017-03-11 14:43:29.525317,711,785,746, +45,2017-03-11 14:43:29.525317,472,981,772, +59,2017-03-11 14:43:29.525317,151,100,632, +82,2017-03-11 14:43:29.525317,815,497,928, +7,2017-03-11 14:43:29.525317,569,636,768, +4,2017-03-11 14:43:29.525317,973,275,786, +74,2017-03-11 14:43:29.525317,100,670,799, +38,2017-03-11 14:43:29.525317,216,44,796, +93,2017-03-11 14:43:29.525317,829,542,373, +30,2017-03-11 14:43:29.525317,522,144,892, +67,2017-03-11 14:43:29.525317,244,524,495, +6,2017-03-11 14:43:29.525317,21,423,125, +59,2017-03-11 14:43:29.525317,59,893,626, +3,2017-03-11 14:43:29.525317,169,413,777, +27,2017-03-11 14:43:29.525317,83,576,652, +30,2017-03-11 14:43:29.525317,620,448,226, +45,2017-03-11 14:43:29.525317,989,599,750, +51,2017-03-11 14:43:29.525317,743,642,185, +99,2017-03-11 14:43:29.525317,166,680,45, +19,2017-03-11 14:43:29.525317,103,170,777, +16,2017-03-11 14:43:29.525317,63,403,194, +23,2017-03-11 14:43:29.525317,816,970,500, +90,2017-03-11 14:43:29.525317,546,152,198, +17,2017-03-11 14:43:29.525317,599,424,614, +59,2017-03-11 14:43:29.525317,23,364,100, +77,2017-03-11 14:43:29.525317,6,285,753, +17,2017-03-11 14:43:29.525317,964,798,358, +7,2017-03-11 14:43:29.525317,968,135,229, +3,2017-03-11 14:43:29.525317,538,423,263, +35,2017-03-11 14:43:29.525317,393,763,253, +94,2017-03-11 14:43:29.525317,915,451,105, +51,2017-03-11 14:43:29.525317,875,720,103, +90,2017-03-11 14:43:29.525317,84,203,664, +9,2017-03-11 14:43:29.525317,488,417,262, +45,2017-03-11 14:43:29.525317,215,620,519, +18,2017-03-11 14:43:29.525317,755,748,214, +29,2017-03-11 14:43:29.525317,171,477,648, +56,2017-03-11 14:43:29.525317,241,901,503, +16,2017-03-11 14:43:29.525317,353,608,671, +23,2017-03-11 14:43:29.525317,328,774,126, +41,2017-03-11 14:43:29.525317,977,791,502, +47,2017-03-11 14:43:29.525317,207,764,917, +42,2017-03-11 14:43:29.525317,384,437,605, +14,2017-03-11 14:43:29.525317,185,819,433, +36,2017-03-11 14:43:29.525317,296,81,919, +54,2017-03-11 14:43:29.525317,982,422,693, +33,2017-03-11 14:43:29.525317,31,364,562, +36,2017-03-11 14:43:29.525317,137,689,771, +11,2017-03-11 14:43:29.525317,479,273,579, +69,2017-03-11 14:43:29.525317,37,497,109, +42,2017-03-11 14:43:29.525317,934,714,560, +12,2017-03-11 14:43:29.525317,533,993,475, +83,2017-03-11 14:43:29.525317,73,394,367, +6,2017-03-11 14:43:29.525317,816,60,389, +85,2017-03-11 14:43:29.525317,423,952,206, +56,2017-03-11 14:43:29.525317,641,977,675, +12,2017-03-11 14:43:29.525317,250,254,807, +29,2017-03-11 14:43:29.525317,751,916,708, +68,2017-03-11 14:43:29.525317,631,268,803, +16,2017-03-11 14:43:29.525317,260,278,993, +33,2017-03-11 14:43:29.525317,672,360,389, +49,2017-03-11 14:43:29.525317,420,778,336, +84,2017-03-11 14:43:29.525317,730,541,403, +37,2017-03-11 14:43:29.525317,518,78,491, +77,2017-03-11 14:43:29.525317,332,298,54, +8,2017-03-11 14:43:29.525317,215,762,768, +85,2017-03-11 14:43:29.525317,30,571,9, +29,2017-03-11 14:43:29.525317,849,2,624, +52,2017-03-11 14:43:29.525317,362,13,9, +78,2017-03-11 14:43:29.525317,791,345,625, +52,2017-03-11 14:43:29.525317,886,28,892, +40,2017-03-11 14:43:29.525317,106,384,172, +44,2017-03-11 14:43:29.525317,682,226,521, +90,2017-03-11 14:43:29.525317,988,288,742, +2,2017-03-11 14:43:29.525317,859,751,307, +71,2017-03-11 14:43:29.525317,753,931,229, +12,2017-03-11 14:43:29.525317,944,239,898, +73,2017-03-11 14:43:29.525317,584,523,256, +47,2017-03-11 14:43:29.525317,551,149,874, +66,2017-03-11 14:43:29.525317,532,46,94, +21,2017-03-11 14:43:29.525317,271,615,111, +26,2017-03-11 14:43:29.525317,903,853,276, +76,2017-03-11 14:43:29.525317,604,583,470, +36,2017-03-11 14:43:29.525317,515,700,473, +46,2017-03-11 14:43:29.525317,939,371,194, +52,2017-03-11 14:43:29.525317,894,450,992, +44,2017-03-11 14:43:29.525317,599,867,101, +13,2017-03-11 14:43:29.525317,912,196,345, +18,2017-03-11 14:43:29.525317,810,456,443, +71,2017-03-11 14:43:29.525317,308,719,476, +91,2017-03-11 14:43:29.525317,302,946,269, +82,2017-03-11 14:43:29.525317,646,742,276, +58,2017-03-11 14:43:29.525317,113,469,107, +1,2017-03-11 14:43:29.525317,919,99,452, +52,2017-03-11 14:43:29.525317,966,553,649, +88,2017-03-11 14:43:29.525317,748,994,62, +56,2017-03-11 14:43:29.525317,449,505,272, +76,2017-03-11 14:43:29.525317,224,748,670, +53,2017-03-11 14:43:29.525317,694,939,343, +34,2017-03-11 14:43:29.525317,681,619,925, +79,2017-03-11 14:43:29.525317,88,32,802, +1,2017-03-11 14:43:29.525317,131,253,525, +10,2017-03-11 14:43:29.525317,806,174,976, +55,2017-03-11 14:43:29.525317,167,38,114, +62,2017-03-11 14:43:29.525317,543,386,374, +77,2017-03-11 14:43:29.525317,134,44,293, +83,2017-03-11 14:43:29.525317,983,636,168, +66,2017-03-11 14:43:29.525317,255,93,459, +34,2017-03-11 14:43:29.525317,124,261,350, +26,2017-03-11 14:43:29.525317,514,875,353, +32,2017-03-11 14:43:29.525317,49,328,875, +22,2017-03-11 14:43:29.525317,366,989,833, +91,2017-03-11 14:43:29.525317,375,207,675, +51,2017-03-11 14:43:29.525317,251,968,336, +23,2017-03-11 14:43:29.525317,603,505,899, +86,2017-03-11 14:43:29.525317,597,358,201, +72,2017-03-11 14:43:29.525317,619,551,977, +13,2017-03-11 14:43:29.525317,427,330,454, +48,2017-03-11 14:43:29.525317,658,329,692, +2,2017-03-11 14:43:29.525317,318,525,932, +69,2017-03-11 14:43:29.525317,732,607,201, +98,2017-03-11 14:43:29.525317,574,537,217, +18,2017-03-11 14:43:29.525317,41,116,36, +64,2017-03-11 14:43:29.525317,475,237,361, +9,2017-03-11 14:43:29.525317,789,338,227, +22,2017-03-11 14:43:29.525317,668,681,692, +33,2017-03-11 14:43:29.525317,10,384,349, +33,2017-03-11 14:43:29.525317,909,281,20, +64,2017-03-11 14:43:29.525317,888,220,624, +46,2017-03-11 14:43:29.525317,757,841,640, +80,2017-03-11 14:43:29.525317,957,676,437, +43,2017-03-11 14:43:29.525317,913,798,526, +70,2017-03-11 14:43:29.525317,136,753,918, +80,2017-03-11 14:43:29.525317,434,610,129, +44,2017-03-11 14:43:29.525317,994,478,771, +90,2017-03-11 14:43:29.525317,758,791,543, +65,2017-03-11 14:43:29.525317,11,167,108, +77,2017-03-11 14:43:29.525317,8,748,567, +97,2017-03-11 14:43:29.525317,424,4,398, +34,2017-03-11 14:43:29.525317,802,923,39, +94,2017-03-11 14:43:29.525317,676,957,742, +11,2017-03-11 14:43:29.525317,567,871,553, +56,2017-03-11 14:43:29.525317,348,324,463, +11,2017-03-11 14:43:29.525317,115,6,752, +13,2017-03-11 14:43:29.525317,173,860,894, +18,2017-03-11 14:43:29.525317,607,461,147, +3,2017-03-11 14:43:29.525317,465,545,368, +27,2017-03-11 14:43:29.525317,468,407,206, +14,2017-03-11 14:43:29.525317,364,947,254, +93,2017-03-11 14:43:29.525317,818,808,491, +17,2017-03-11 14:43:29.525317,132,953,272, +25,2017-03-11 14:43:29.525317,960,24,373, +13,2017-03-11 14:43:29.525317,884,267,314, +49,2017-03-11 14:43:29.525317,728,461,523, +19,2017-03-11 14:43:29.525317,5,890,460, +47,2017-03-11 14:43:29.525317,297,666,618, +66,2017-03-11 14:43:29.525317,613,872,591, +43,2017-03-11 14:43:29.525317,679,82,597, +81,2017-03-11 14:43:29.525317,36,869,58, +100,2017-03-11 14:43:29.525317,893,431,128, +78,2017-03-11 14:43:29.525317,698,442,270, +43,2017-03-11 14:43:29.525317,902,792,619, +91,2017-03-11 14:43:29.525317,683,79,381, +98,2017-03-11 14:43:29.525317,744,998,641, +36,2017-03-11 14:43:29.525317,870,232,788, +55,2017-03-11 14:43:29.525317,315,385,361, +35,2017-03-11 14:43:29.525317,254,419,345, +15,2017-03-11 14:43:29.525317,851,473,925, +55,2017-03-11 14:43:29.525317,915,194,975, +82,2017-03-11 14:43:29.525317,987,594,724, +67,2017-03-11 14:43:29.525317,673,105,649, +42,2017-03-11 14:43:29.525317,103,290,775, +97,2017-03-11 14:43:29.525317,523,563,523, +84,2017-03-11 14:43:29.525317,948,884,188, +20,2017-03-11 14:43:29.525317,304,533,348, +15,2017-03-11 14:43:29.525317,6,273,704, +92,2017-03-11 14:43:29.525317,467,679,738, +45,2017-03-11 14:43:29.525317,273,462,123, +95,2017-03-11 14:43:29.525317,567,773,363, +67,2017-03-11 14:43:29.525317,63,138,644, +59,2017-03-11 14:43:29.525317,701,167,424, +65,2017-03-11 14:43:29.525317,51,612,850, +35,2017-03-11 14:43:29.525317,145,198,509, +15,2017-03-11 14:43:29.525317,471,213,72, +94,2017-03-11 14:43:29.525317,891,810,392, +16,2017-03-11 14:43:29.525317,273,516,110, +84,2017-03-11 14:43:29.525317,289,473,510, +35,2017-03-11 14:43:29.525317,612,154,938, +31,2017-03-11 14:43:29.525317,321,362,961, +37,2017-03-11 14:43:29.525317,973,811,727, +12,2017-03-11 14:43:29.525317,9,236,270, +48,2017-03-11 14:43:29.525317,448,342,418, +34,2017-03-11 14:43:29.525317,152,811,504, +43,2017-03-11 14:43:29.525317,327,614,265, +62,2017-03-11 14:43:29.525317,88,775,967, +70,2017-03-11 14:43:29.525317,929,905,12, +25,2017-03-11 14:43:29.525317,267,973,622, +24,2017-03-11 14:43:29.525317,784,349,359, +79,2017-03-11 14:43:29.525317,585,628,273, +3,2017-03-11 14:43:29.525317,970,692,373, +12,2017-03-11 14:43:29.525317,503,877,548, +83,2017-03-11 14:43:29.525317,492,813,445, +58,2017-03-11 14:43:29.525317,588,412,279, +52,2017-03-11 14:43:29.525317,317,291,768, +58,2017-03-11 14:43:29.525317,264,390,825, +5,2017-03-11 14:43:29.525317,739,184,842, +32,2017-03-11 14:43:29.525317,812,115,358, +78,2017-03-11 14:43:29.525317,807,731,905, +31,2017-03-11 14:43:29.525317,608,453,139, +10,2017-03-11 14:43:29.525317,266,583,680, +85,2017-03-11 14:43:29.525317,995,959,371, +31,2017-03-11 14:43:29.525317,250,139,896, +51,2017-03-11 14:43:29.525317,529,721,563, +27,2017-03-11 14:43:29.525317,905,405,592, +72,2017-03-11 14:43:29.525317,520,950,499, +33,2017-03-11 14:43:29.525317,681,404,636, +29,2017-03-11 14:43:29.525317,856,775,389, +12,2017-03-11 14:43:29.525317,358,68,976, +35,2017-03-11 14:43:29.525317,27,347,665, +28,2017-03-11 14:43:29.525317,485,562,791, +1,2017-03-11 14:43:29.525317,283,354,282, +19,2017-03-11 14:43:29.525317,758,874,904, +28,2017-03-11 14:43:29.525317,824,403,605, +50,2017-03-11 14:43:29.525317,807,241,793, +66,2017-03-11 14:43:29.525317,15,182,785, +37,2017-03-11 14:43:29.525317,251,761,727, +28,2017-03-11 14:43:29.525317,107,392,555, +59,2017-03-11 14:43:29.525317,953,346,607, +24,2017-03-11 14:43:29.525317,700,889,424, +46,2017-03-11 14:43:29.525317,763,328,736, +59,2017-03-11 14:43:29.525317,731,340,92, +54,2017-03-11 14:43:29.525317,581,886,201, +60,2017-03-11 14:43:29.525317,68,987,970, +32,2017-03-11 14:43:29.525317,748,696,597, +86,2017-03-11 14:43:29.525317,88,151,448, +4,2017-03-11 14:43:29.525317,497,54,278, +20,2017-03-11 14:43:29.525317,943,702,655, +71,2017-03-11 14:43:29.525317,30,391,294, +76,2017-03-11 14:43:29.525317,731,386,300, +31,2017-03-11 14:43:29.525317,272,501,908, +34,2017-03-11 14:43:29.525317,488,878,659, +24,2017-03-11 14:43:29.525317,575,255,90, +66,2017-03-11 14:43:29.525317,406,538,705, +90,2017-03-11 14:43:29.525317,593,983,101, +54,2017-03-11 14:43:29.525317,685,755,243, +72,2017-03-11 14:43:29.525317,146,537,477, +88,2017-03-11 14:43:29.525317,923,776,189, +19,2017-03-11 14:43:29.525317,277,97,535, +76,2017-03-11 14:43:29.525317,975,193,1000, +55,2017-03-11 14:43:29.525317,448,90,213, +85,2017-03-11 14:43:29.525317,628,918,758, +22,2017-03-11 14:43:29.525317,901,859,757, +59,2017-03-11 14:43:29.525317,614,999,301, +76,2017-03-11 14:43:29.525317,536,777,637, +46,2017-03-11 14:43:29.525317,553,826,654, +83,2017-03-11 14:43:29.525317,923,188,595, +90,2017-03-11 14:43:29.525317,382,595,448, +83,2017-03-11 14:43:29.525317,685,661,685, +31,2017-03-11 14:43:29.525317,579,443,534, +48,2017-03-11 14:43:29.525317,302,291,66, +92,2017-03-11 14:43:29.525317,290,367,677, +83,2017-03-11 14:43:29.525317,144,314,284, +70,2017-03-11 14:43:29.525317,139,938,528, +6,2017-03-11 14:43:29.525317,126,123,960, +51,2017-03-11 14:43:29.525317,718,408,338, +40,2017-03-11 14:43:29.525317,69,23,717, +65,2017-03-11 14:43:29.525317,466,251,129, +77,2017-03-11 14:43:29.525317,541,195,685, +83,2017-03-11 14:43:29.525317,561,362,657, +71,2017-03-11 14:43:29.525317,676,941,403, +81,2017-03-11 14:43:29.525317,879,931,876, +0,2017-03-11 14:43:29.525317,54,836,513, +77,2017-03-11 14:43:29.525317,244,851,176, +31,2017-03-11 14:43:29.525317,874,892,962, +34,2017-03-11 14:43:29.525317,143,90,108, +68,2017-03-11 14:43:29.525317,285,793,516, +85,2017-03-11 14:43:29.525317,155,172,551, +83,2017-03-11 14:43:29.525317,113,954,646, +99,2017-03-11 14:43:29.525317,885,522,997, +94,2017-03-11 14:43:29.525317,358,509,711, +60,2017-03-11 14:43:29.525317,360,886,916, +23,2017-03-11 14:43:29.525317,779,877,573, +92,2017-03-11 14:43:29.525317,968,682,606, +25,2017-03-11 14:43:29.525317,475,122,99, +63,2017-03-11 14:43:29.525317,294,650,461, +41,2017-03-11 14:43:29.525317,604,107,399, +49,2017-03-11 14:43:29.525317,629,395,427, +99,2017-03-11 14:43:29.525317,905,138,590, +26,2017-03-11 14:43:29.525317,24,505,498, +80,2017-03-11 14:43:29.525317,383,72,724, +35,2017-03-11 14:43:29.525317,753,331,603, +23,2017-03-11 14:43:29.525317,453,702,859, +75,2017-03-11 14:43:29.525317,352,320,154, +96,2017-03-11 14:43:29.525317,426,552,444, +6,2017-03-11 14:43:29.525317,947,871,43, +85,2017-03-11 14:43:29.525317,9,632,116, +3,2017-03-11 14:43:29.525317,138,615,836, +52,2017-03-11 14:43:29.525317,687,560,871, +44,2017-03-11 14:43:29.525317,891,474,668, +34,2017-03-11 14:43:29.525317,176,527,90, +53,2017-03-11 14:43:29.525317,846,243,483, +27,2017-03-11 14:43:29.525317,795,928,328, +74,2017-03-11 14:43:29.525317,799,371,595, +81,2017-03-11 14:43:29.525317,3,711,841, +14,2017-03-11 14:43:29.525317,326,676,661, +1,2017-03-11 14:43:29.525317,236,531,452, +13,2017-03-11 14:43:29.525317,5,121,470, +18,2017-03-11 14:43:29.525317,647,560,709, +49,2017-03-11 14:43:29.525317,803,192,766, +60,2017-03-11 14:43:29.525317,120,94,342, +92,2017-03-11 14:43:29.525317,465,936,726, +47,2017-03-11 14:43:29.525317,647,567,609, +97,2017-03-11 14:43:29.525317,243,269,985, +48,2017-03-11 14:43:29.525317,801,438,607, +81,2017-03-11 14:43:29.525317,558,77,987, +21,2017-03-11 14:43:29.525317,637,696,699, +44,2017-03-11 14:43:29.525317,888,466,39, +1,2017-03-11 14:43:29.525317,560,381,926, +3,2017-03-11 14:43:29.525317,317,652,493, +96,2017-03-11 14:43:29.525317,219,102,937, +46,2017-03-11 14:43:29.525317,371,922,943, +17,2017-03-11 14:43:29.525317,360,549,978, +92,2017-03-11 14:43:29.525317,627,965,124, +26,2017-03-11 14:43:29.525317,661,823,704, +55,2017-03-11 14:43:29.525317,289,744,557, +85,2017-03-11 14:43:29.525317,125,483,874, +44,2017-03-11 14:43:29.525317,136,367,406, +36,2017-03-11 14:43:29.525317,469,343,818, +84,2017-03-11 14:43:29.525317,265,761,13, +63,2017-03-11 14:43:29.525317,310,991,544, +94,2017-03-11 14:43:29.525317,956,668,200, +62,2017-03-11 14:43:29.525317,491,905,166, +78,2017-03-11 14:43:29.525317,648,723,629, +77,2017-03-11 14:43:29.525317,207,503,214, +34,2017-03-11 14:43:29.525317,871,620,698, +34,2017-03-11 14:43:29.525317,963,516,181, +23,2017-03-11 14:43:29.525317,276,193,853, +59,2017-03-11 14:43:29.525317,184,397,523, +14,2017-03-11 14:43:29.525317,65,723,757, +56,2017-03-11 14:43:29.525317,628,923,336, +28,2017-03-11 14:43:29.525317,646,965,49, +85,2017-03-11 14:43:29.525317,468,263,195, +34,2017-03-11 14:43:29.525317,883,893,679, +85,2017-03-11 14:43:29.525317,409,860,73, +68,2017-03-11 14:43:29.525317,53,926,271, +24,2017-03-11 14:43:29.525317,323,794,377, +39,2017-03-11 14:43:29.525317,517,133,944, +14,2017-03-11 14:43:29.525317,56,280,420, +70,2017-03-11 14:43:29.525317,245,469,555, +71,2017-03-11 14:43:29.525317,732,750,52, +61,2017-03-11 14:43:29.525317,643,731,460, +5,2017-03-11 14:43:29.525317,591,534,737, +64,2017-03-11 14:43:29.525317,460,8,881, +78,2017-03-11 14:43:29.525317,802,257,171, +32,2017-03-11 14:43:29.525317,391,114,463, +45,2017-03-11 14:43:29.525317,394,884,149, +64,2017-03-11 14:43:29.525317,352,705,352, +8,2017-03-11 14:43:29.525317,455,404,699, +10,2017-03-11 14:43:29.525317,135,159,150, +73,2017-03-11 14:43:29.525317,693,887,369, +15,2017-03-11 14:43:29.525317,895,250,936, +70,2017-03-11 14:43:29.525317,507,106,15, +90,2017-03-11 14:43:29.525317,220,479,344, +61,2017-03-11 14:43:29.525317,362,494,253, +71,2017-03-11 14:43:29.525317,198,605,799, +65,2017-03-11 14:43:29.525317,9,498,751, +14,2017-03-11 14:43:29.525317,657,901,868, +35,2017-03-11 14:43:29.525317,788,237,503, +68,2017-03-11 14:43:29.525317,487,438,379, +99,2017-03-11 14:43:29.525317,545,394,891, +77,2017-03-11 14:43:29.525317,873,235,380, +23,2017-03-11 14:43:29.525317,729,633,949, +93,2017-03-11 14:43:29.525317,237,748,580, +25,2017-03-11 14:43:29.525317,246,331,389, +90,2017-03-11 14:43:29.525317,232,257,253, +2,2017-03-11 14:43:29.525317,494,756,703, +98,2017-03-11 14:43:29.525317,194,82,975, +74,2017-03-11 14:43:29.525317,476,865,504, +35,2017-03-11 14:43:29.525317,101,883,583, +83,2017-03-11 14:43:29.525317,516,533,756, +75,2017-03-11 14:43:29.525317,281,336,999, +53,2017-03-11 14:43:29.525317,667,388,430, +90,2017-03-11 14:43:29.525317,646,683,920, +14,2017-03-11 14:43:29.525317,438,622,121, +63,2017-03-11 14:43:29.525317,704,96,371, +18,2017-03-11 14:43:29.525317,961,874,528, +6,2017-03-11 14:43:29.525317,758,112,891, +27,2017-03-11 14:43:29.525317,645,648,27, +93,2017-03-11 14:43:29.525317,984,27,453, +65,2017-03-11 14:43:29.525317,415,883,550, +6,2017-03-11 14:43:29.525317,565,470,201, +0,2017-03-11 14:43:29.525317,92,323,636, +80,2017-03-11 14:43:29.525317,419,6,976, +38,2017-03-11 14:43:29.525317,881,504,442, +64,2017-03-11 14:43:29.525317,616,333,912, +26,2017-03-11 14:43:29.525317,981,939,187, +96,2017-03-11 14:43:29.525317,966,639,615, +38,2017-03-11 14:43:29.525317,522,166,442, +9,2017-03-11 14:43:29.525317,636,643,91, +73,2017-03-11 14:43:29.525317,965,726,525, +38,2017-03-11 14:43:29.525317,733,501,764, +61,2017-03-11 14:43:29.525317,5,206,252, +62,2017-03-11 14:43:29.525317,540,164,882, +52,2017-03-11 14:43:29.525317,103,68,485, +7,2017-03-11 14:43:29.525317,708,100,450, +23,2017-03-11 14:43:29.525317,266,892,317, +90,2017-03-11 14:43:29.525317,534,408,629, +50,2017-03-11 14:43:29.525317,134,154,884, +87,2017-03-11 14:43:29.525317,655,648,480, +66,2017-03-11 14:43:29.525317,854,732,281, +39,2017-03-11 14:43:29.525317,896,163,914, +100,2017-03-11 14:43:29.525317,231,399,68, +94,2017-03-11 14:43:29.525317,499,518,169, +76,2017-03-11 14:43:29.525317,409,486,666, +94,2017-03-11 14:43:29.525317,894,296,443, +3,2017-03-11 14:43:29.525317,450,327,895, +10,2017-03-11 14:43:29.525317,975,376,764, +83,2017-03-11 14:43:29.525317,108,45,221, +0,2017-03-11 14:43:29.525317,208,135,2, +44,2017-03-11 14:43:29.525317,533,71,378, +3,2017-03-11 14:43:29.525317,588,547,797, +100,2017-03-11 14:43:29.525317,33,463,942, +93,2017-03-11 14:43:29.525317,759,385,956, +21,2017-03-11 14:43:29.525317,712,851,312, +69,2017-03-11 14:43:29.525317,227,77,515, +33,2017-03-11 14:43:29.525317,122,736,338, +33,2017-03-11 14:43:29.525317,871,340,769, +40,2017-03-11 14:43:29.525317,411,148,436, +100,2017-03-11 14:43:29.525317,695,233,997, +73,2017-03-11 14:43:29.525317,696,939,655, +45,2017-03-11 14:43:29.525317,324,611,663, +4,2017-03-11 14:43:29.525317,462,975,723, +69,2017-03-11 14:43:29.525317,52,238,24, +17,2017-03-11 14:43:29.525317,974,362,503, +84,2017-03-11 14:43:29.525317,702,273,249, +11,2017-03-11 14:43:29.525317,420,685,112, +11,2017-03-11 14:43:29.525317,918,109,843, +61,2017-03-11 14:43:29.525317,48,498,69, +37,2017-03-11 14:43:29.525317,110,732,408, +57,2017-03-11 14:43:29.525317,707,131,261, +76,2017-03-11 14:43:29.525317,369,285,932, +34,2017-03-11 14:43:29.525317,647,435,188, +35,2017-03-11 14:43:29.525317,708,437,461, +13,2017-03-11 14:43:29.525317,122,573,243, +4,2017-03-11 14:43:29.525317,682,86,655, +73,2017-03-11 14:43:29.525317,585,724,103, +69,2017-03-11 14:43:29.525317,455,511,267, +16,2017-03-11 14:43:29.525317,642,528,920, +1,2017-03-11 14:43:29.525317,813,852,355, +46,2017-03-11 14:43:29.525317,288,543,808, +100,2017-03-11 14:43:29.525317,980,269,124, +10,2017-03-11 14:43:29.525317,843,367,143, +52,2017-03-11 14:43:29.525317,454,797,255, +4,2017-03-11 14:43:29.525317,521,358,733, +98,2017-03-11 14:43:29.525317,869,1000,138, +51,2017-03-11 14:43:29.525317,528,58,523, +34,2017-03-11 14:43:29.525317,910,878,801, +20,2017-03-11 14:43:29.525317,421,609,194, +40,2017-03-11 14:43:29.525317,879,318,503, +72,2017-03-11 14:43:29.525317,685,646,246, +14,2017-03-11 14:43:29.525317,443,501,178, +96,2017-03-11 14:43:29.525317,860,911,940, +73,2017-03-11 14:43:29.525317,911,78,240, +44,2017-03-11 14:43:29.525317,136,763,780, +5,2017-03-11 14:43:29.525317,642,581,244, +6,2017-03-11 14:43:29.525317,190,438,464, +7,2017-03-11 14:43:29.525317,756,968,790, +44,2017-03-11 14:43:29.525317,614,36,580, +6,2017-03-11 14:43:29.525317,538,758,21, +40,2017-03-11 14:43:29.525317,669,961,126, +58,2017-03-11 14:43:29.525317,38,366,19, +17,2017-03-11 14:43:29.525317,129,800,220, +77,2017-03-11 14:43:29.525317,381,463,834, +57,2017-03-11 14:43:29.525317,901,298,640, +66,2017-03-11 14:43:29.525317,266,430,98, +88,2017-03-11 14:43:29.525317,466,678,936, +0,2017-03-11 14:43:29.525317,436,957,401, +11,2017-03-11 14:43:29.525317,918,527,686, +96,2017-03-11 14:43:29.525317,892,705,130, +2,2017-03-11 14:43:29.525317,505,349,792, +89,2017-03-11 14:43:29.525317,813,626,457, +71,2017-03-11 14:43:29.525317,924,97,370, +19,2017-03-11 14:43:29.525317,527,468,69, +99,2017-03-11 14:43:29.525317,146,6,997, +58,2017-03-11 14:43:29.525317,963,398,688, +88,2017-03-11 14:43:29.525317,925,374,837, +82,2017-03-11 14:43:29.525317,79,967,839, +58,2017-03-11 14:43:29.525317,316,631,470, +13,2017-03-11 14:43:29.525317,257,927,842, +18,2017-03-11 14:43:29.525317,24,212,371, +55,2017-03-11 14:43:29.525317,680,441,544, +83,2017-03-11 14:43:29.525317,446,542,408, +41,2017-03-11 14:43:29.525317,940,95,290, +86,2017-03-11 14:43:29.525317,469,127,682, +55,2017-03-11 14:43:29.525317,93,520,132, +41,2017-03-11 14:43:29.525317,151,602,538, +41,2017-03-11 14:43:29.525317,529,380,590, +55,2017-03-11 14:43:29.525317,592,961,103, +27,2017-03-11 14:43:29.525317,402,648,98, +85,2017-03-11 14:43:29.525317,189,506,257, +13,2017-03-11 14:43:29.525317,601,547,994, +7,2017-03-11 14:43:29.525317,673,675,618, +77,2017-03-11 14:43:29.525317,196,751,175, +35,2017-03-11 14:43:29.525317,353,713,755, +88,2017-03-11 14:43:29.525317,93,345,434, +69,2017-03-11 14:43:29.525317,306,537,957, +71,2017-03-11 14:43:29.525317,185,55,555, +37,2017-03-11 14:43:29.525317,561,812,503, +16,2017-03-11 14:43:29.525317,359,497,232, +3,2017-03-11 14:43:29.525317,172,850,799, +37,2017-03-11 14:43:29.525317,601,974,715, +95,2017-03-11 14:43:29.525317,688,470,835, +78,2017-03-11 14:43:29.525317,815,269,466, +12,2017-03-11 14:43:29.525317,806,423,829, +99,2017-03-11 14:43:29.525317,479,385,366, +4,2017-03-11 14:43:29.525317,197,869,202, +56,2017-03-11 14:43:29.525317,366,434,589, +54,2017-03-11 14:43:29.525317,284,388,906, +89,2017-03-11 14:43:29.525317,362,621,839, +5,2017-03-11 14:43:29.525317,91,674,830, +91,2017-03-11 14:43:29.525317,943,296,28, +75,2017-03-11 14:43:29.525317,719,857,741, +20,2017-03-11 14:43:29.525317,241,107,238, +44,2017-03-11 14:43:29.525317,976,439,994, +34,2017-03-11 14:43:29.525317,873,583,881, +16,2017-03-11 14:43:29.525317,971,788,42, +33,2017-03-11 14:43:29.525317,408,881,382, +50,2017-03-11 14:43:29.525317,554,212,405, +50,2017-03-11 14:43:29.525317,508,433,246, +23,2017-03-11 14:43:29.525317,290,987,426, +53,2017-03-11 14:43:29.525317,94,664,969, +7,2017-03-11 14:43:29.525317,103,963,413, +98,2017-03-11 14:43:29.525317,546,295,133, +52,2017-03-11 14:43:29.525317,82,175,850, +49,2017-03-11 14:43:29.525317,56,232,990, +61,2017-03-11 14:43:29.525317,444,396,107, +95,2017-03-11 14:43:29.525317,829,354,181, +12,2017-03-11 14:43:29.525317,341,607,649, +44,2017-03-11 14:43:29.525317,270,618,506, +37,2017-03-11 14:43:29.525317,581,919,349, +13,2017-03-11 14:43:29.525317,214,482,644, +30,2017-03-11 14:43:29.525317,657,494,787, +71,2017-03-11 14:43:29.525317,726,777,323, +17,2017-03-11 14:43:29.525317,173,431,123, +0,2017-03-11 14:43:29.525317,784,304,120, +13,2017-03-11 14:43:29.525317,910,769,560, +18,2017-03-11 14:43:29.525317,387,66,554, +97,2017-03-11 14:43:29.525317,985,903,95, +20,2017-03-11 14:43:29.525317,385,740,496, +4,2017-03-11 14:43:29.525317,234,283,756, +96,2017-03-11 14:43:29.525317,60,79,130, +23,2017-03-11 14:43:29.525317,510,253,234, +29,2017-03-11 14:43:29.525317,557,354,419, +47,2017-03-11 14:43:29.525317,123,980,647, +51,2017-03-11 14:43:29.525317,46,201,477, +3,2017-03-11 14:43:29.525317,104,573,230, +49,2017-03-11 14:43:29.525317,312,726,532, +55,2017-03-11 14:43:29.525317,8,287,506, +7,2017-03-11 14:43:29.525317,366,636,301, +88,2017-03-11 14:43:29.525317,889,535,170, +45,2017-03-11 14:43:29.525317,889,589,912, +1,2017-03-11 14:43:29.525317,569,560,521, +61,2017-03-11 14:43:29.525317,761,999,645, +86,2017-03-11 14:43:29.525317,571,875,354, +88,2017-03-11 14:43:29.525317,600,886,430, +61,2017-03-11 14:43:29.525317,173,936,677, +54,2017-03-11 14:43:29.525317,571,978,416, +46,2017-03-11 14:43:29.525317,514,586,905, +40,2017-03-11 14:43:29.525317,175,817,415, +74,2017-03-11 14:43:29.525317,377,936,358, +14,2017-03-11 14:43:29.525317,935,3,2, +51,2017-03-11 14:43:29.525317,878,357,390, +48,2017-03-11 14:43:29.525317,243,820,87, +42,2017-03-11 14:43:29.525317,755,765,956, +33,2017-03-11 14:43:29.525317,743,371,786, +26,2017-03-11 14:43:29.525317,957,691,660, +13,2017-03-11 14:43:29.525317,509,75,877, +89,2017-03-11 14:43:29.525317,11,235,23, +95,2017-03-11 14:43:29.525317,238,26,452, +12,2017-03-11 14:43:29.525317,382,842,595, +62,2017-03-11 14:43:29.525317,662,683,41, +42,2017-03-11 14:43:29.525317,447,996,743, +19,2017-03-11 14:43:29.525317,368,529,447, +32,2017-03-11 14:43:29.525317,221,107,457, +73,2017-03-11 14:43:29.525317,182,334,615, +19,2017-03-11 14:43:29.525317,569,638,140, +81,2017-03-11 14:43:29.525317,663,592,924, +5,2017-03-11 14:43:29.525317,434,519,670, +10,2017-03-11 14:43:29.525317,202,711,512, +65,2017-03-11 14:43:29.525317,707,255,839, +7,2017-03-11 14:43:29.525317,784,286,399, +0,2017-03-11 14:43:29.525317,394,857,734, +58,2017-03-11 14:43:29.525317,191,349,769, +76,2017-03-11 14:43:29.525317,986,909,567, +65,2017-03-11 14:43:29.525317,500,491,695, +93,2017-03-11 14:43:29.525317,10,365,29, +21,2017-03-11 14:43:29.525317,76,541,861, +78,2017-03-11 14:43:29.525317,796,700,857, +58,2017-03-11 14:43:29.525317,986,257,585, +38,2017-03-11 14:43:29.525317,114,319,956, +30,2017-03-11 14:43:29.525317,667,725,64, +65,2017-03-11 14:43:29.525317,633,631,303, +13,2017-03-11 14:43:29.525317,122,998,67, +13,2017-03-11 14:43:29.525317,363,97,343, +44,2017-03-11 14:43:29.525317,638,204,222, +43,2017-03-11 14:43:29.525317,904,80,13, +89,2017-03-11 14:43:29.525317,337,598,270, +45,2017-03-11 14:43:29.525317,917,226,755, +58,2017-03-11 14:43:29.525317,950,819,238, +58,2017-03-11 14:43:29.525317,451,541,717, +57,2017-03-11 14:43:29.525317,539,784,705, +90,2017-03-11 14:43:29.525317,881,48,342, +52,2017-03-11 14:43:29.525317,252,564,952, +16,2017-03-11 14:43:29.525317,644,966,46, +98,2017-03-11 14:43:29.525317,564,316,431, +48,2017-03-11 14:43:29.525317,542,186,65, +49,2017-03-11 14:43:29.525317,5,303,76, +46,2017-03-11 14:43:29.525317,844,793,29, +38,2017-03-11 14:43:29.525317,577,733,286, +46,2017-03-11 14:43:29.525317,781,628,977, +3,2017-03-11 14:43:29.525317,192,929,189, +84,2017-03-11 14:43:29.525317,894,234,817, +46,2017-03-11 14:43:29.525317,550,248,939, +9,2017-03-11 14:43:29.525317,434,4,584, +44,2017-03-11 14:43:29.525317,307,660,895, +15,2017-03-11 14:43:29.525317,452,923,534, +3,2017-03-11 14:43:29.525317,657,820,488, +44,2017-03-11 14:43:29.525317,448,465,471, +64,2017-03-11 14:43:29.525317,393,660,476, +29,2017-03-11 14:43:29.525317,894,293,746, +44,2017-03-11 14:43:29.525317,540,685,536, +97,2017-03-11 14:43:29.525317,689,120,413, +100,2017-03-11 14:43:29.525317,780,307,147, +23,2017-03-11 14:43:29.525317,231,680,262, +89,2017-03-11 14:43:29.525317,500,749,326, +95,2017-03-11 14:43:29.525317,214,797,587, +61,2017-03-11 14:43:29.525317,457,63,895, +35,2017-03-11 14:43:29.525317,356,641,796, +90,2017-03-11 14:43:29.525317,327,332,870, +2,2017-03-11 14:43:29.525317,453,283,11, +23,2017-03-11 14:43:29.525317,590,158,465, +82,2017-03-11 14:43:29.525317,838,726,708, +34,2017-03-11 14:43:29.525317,476,34,286, +69,2017-03-11 14:43:29.525317,831,873,297, +29,2017-03-11 14:43:29.525317,936,192,639, +29,2017-03-11 14:43:29.525317,833,435,188, +16,2017-03-11 14:43:29.525317,767,58,175, +22,2017-03-11 14:43:29.525317,340,187,453, +93,2017-03-11 14:43:29.525317,345,918,751, +18,2017-03-11 14:43:29.525317,644,460,521, +12,2017-03-11 14:43:29.525317,494,807,809, +32,2017-03-11 14:43:29.525317,681,105,613, +62,2017-03-11 14:43:29.525317,297,252,909, +13,2017-03-11 14:43:29.525317,687,96,290, +45,2017-03-11 14:43:29.525317,154,465,675, +49,2017-03-11 14:43:29.525317,652,128,425, +100,2017-03-11 14:43:29.525317,45,176,179, +69,2017-03-11 14:43:29.525317,636,701,808, +13,2017-03-11 14:43:29.525317,508,617,455, +19,2017-03-11 14:43:29.525317,723,68,806, +2,2017-03-11 14:43:29.525317,320,714,150, +1,2017-03-11 14:43:29.525317,810,439,462, +96,2017-03-11 14:43:29.525317,904,137,459, +56,2017-03-11 14:43:29.525317,264,884,552, +31,2017-03-11 14:43:29.525317,60,732,998, +70,2017-03-11 14:43:29.525317,433,807,827, +94,2017-03-11 14:43:29.525317,424,282,130, +15,2017-03-11 14:43:29.525317,350,936,166, +67,2017-03-11 14:43:29.525317,650,316,678, +46,2017-03-11 14:43:29.525317,755,139,425, +66,2017-03-11 14:43:29.525317,276,883,216, +54,2017-03-11 14:43:29.525317,767,768,850, +83,2017-03-11 14:43:29.525317,500,848,524, +93,2017-03-11 14:43:29.525317,655,351,874, +8,2017-03-11 14:43:29.525317,633,4,226, +98,2017-03-11 14:43:29.525317,939,392,653, +59,2017-03-11 14:43:29.525317,708,331,49, +46,2017-03-11 14:43:29.525317,470,474,122, +75,2017-03-11 14:43:29.525317,357,338,287, +12,2017-03-11 14:43:29.525317,106,136,952, +61,2017-03-11 14:43:29.525317,984,477,539, +64,2017-03-11 14:43:29.525317,828,412,718, +46,2017-03-11 14:43:29.525317,416,944,443, +36,2017-03-11 14:43:29.525317,336,97,944, +4,2017-03-11 14:43:29.525317,427,994,507, +90,2017-03-11 14:43:29.525317,467,629,644, +82,2017-03-11 14:43:29.525317,967,930,949, +7,2017-03-11 14:43:29.525317,67,901,679, +5,2017-03-11 14:43:29.525317,378,218,690, +21,2017-03-11 14:43:29.525317,630,408,666, +5,2017-03-11 14:43:29.525317,352,109,401, +69,2017-03-11 14:43:29.525317,206,346,732, +63,2017-03-11 14:43:29.525317,339,238,531, +81,2017-03-11 14:43:29.525317,867,174,631, +83,2017-03-11 14:43:29.525317,105,580,908, +17,2017-03-11 14:43:29.525317,481,587,222, +86,2017-03-11 14:43:29.525317,804,912,64, +43,2017-03-11 14:43:29.525317,320,730,480, +67,2017-03-11 14:43:29.525317,839,882,361, +4,2017-03-11 14:43:29.525317,227,93,678, +57,2017-03-11 14:43:29.525317,331,209,374, +20,2017-03-11 14:43:29.525317,383,5,33, +49,2017-03-11 14:43:29.525317,585,940,659, +7,2017-03-11 14:43:29.525317,527,881,924, +33,2017-03-11 14:43:29.525317,793,989,765, +11,2017-03-11 14:43:29.525317,718,245,786, +56,2017-03-11 14:43:29.525317,127,147,603, +35,2017-03-11 14:43:29.525317,240,281,921, +57,2017-03-11 14:43:29.525317,489,295,769, +87,2017-03-11 14:43:29.525317,299,802,360, +88,2017-03-11 14:43:29.525317,742,19,949, +27,2017-03-11 14:43:29.525317,900,874,600, +69,2017-03-11 14:43:29.525317,862,365,806, +58,2017-03-11 14:43:29.525317,610,592,139, +74,2017-03-11 14:43:29.525317,739,741,91, +98,2017-03-11 14:43:29.525317,22,12,549, +51,2017-03-11 14:43:29.525317,307,318,384, +61,2017-03-11 14:43:29.525317,120,744,490, +86,2017-03-11 14:43:29.525317,764,439,130, +66,2017-03-11 14:43:29.525317,313,730,356, +18,2017-03-11 14:43:29.525317,95,162,756, +70,2017-03-11 14:43:29.525317,755,895,441, +49,2017-03-11 14:43:29.525317,636,532,472, +66,2017-03-11 14:43:29.525317,544,22,169, +85,2017-03-11 14:43:29.525317,340,553,457, +46,2017-03-11 14:43:29.525317,298,946,322, +6,2017-03-11 14:43:29.525317,386,453,725, +70,2017-03-11 14:43:29.525317,183,81,874, +28,2017-03-11 14:43:29.525317,244,631,982, +100,2017-03-11 14:43:29.525317,526,423,492, +16,2017-03-11 14:43:29.525317,955,964,820, +50,2017-03-11 14:43:29.525317,986,989,350, +33,2017-03-11 14:43:29.525317,542,807,786, +84,2017-03-11 14:43:29.525317,753,108,901, +14,2017-03-11 14:43:29.525317,561,626,837, +74,2017-03-11 14:43:29.525317,707,711,21, +95,2017-03-11 14:43:29.525317,342,2,948, +87,2017-03-11 14:43:29.525317,425,440,29, +38,2017-03-11 14:43:29.525317,404,849,880, +39,2017-03-11 14:43:29.525317,838,230,716, +38,2017-03-11 14:43:29.525317,37,502,220, +79,2017-03-11 14:43:29.525317,611,121,929, +17,2017-03-11 14:43:29.525317,747,766,915, +45,2017-03-11 14:43:29.525317,477,935,404, +82,2017-03-11 14:43:29.525317,938,352,687, +36,2017-03-11 14:43:29.525317,792,716,743, +20,2017-03-11 14:43:29.525317,565,623,587, +40,2017-03-11 14:43:29.525317,853,303,783, +89,2017-03-11 14:43:29.525317,805,4,679, +42,2017-03-11 14:43:29.525317,125,608,587, +87,2017-03-11 14:43:29.525317,374,502,326, +85,2017-03-11 14:43:29.525317,437,730,671, +37,2017-03-11 14:43:29.525317,83,358,737, +88,2017-03-11 14:43:29.525317,74,480,72, +64,2017-03-11 14:43:29.525317,103,658,41, +96,2017-03-11 14:43:29.525317,961,825,845, +77,2017-03-11 14:43:29.525317,828,525,181, +95,2017-03-11 14:43:29.525317,133,768,826, +51,2017-03-11 14:43:29.525317,270,152,358, +71,2017-03-11 14:43:29.525317,883,29,81, +97,2017-03-11 14:43:29.525317,387,818,841, +46,2017-03-11 14:43:29.525317,299,913,99, +40,2017-03-11 14:43:29.525317,571,140,358, +53,2017-03-11 14:43:29.525317,965,203,298, +79,2017-03-11 14:43:29.525317,728,479,747, +86,2017-03-11 14:43:29.525317,247,573,368, +52,2017-03-11 14:43:29.525317,726,727,223, +61,2017-03-11 14:43:29.525317,756,304,574, +14,2017-03-11 14:43:29.525317,122,415,603, +42,2017-03-11 14:43:29.525317,328,702,822, +90,2017-03-11 14:43:29.525317,843,180,431, +81,2017-03-11 14:43:29.525317,384,729,601, +11,2017-03-11 14:43:29.525317,207,348,973, +45,2017-03-11 14:43:29.525317,922,341,970, +65,2017-03-11 14:43:29.525317,68,193,257, +82,2017-03-11 14:43:29.525317,496,831,967, +62,2017-03-11 14:43:29.525317,246,570,39, +57,2017-03-11 14:43:29.525317,273,861,474, +12,2017-03-11 14:43:29.525317,42,905,923, +43,2017-03-11 14:43:29.525317,633,524,538, +84,2017-03-11 14:43:29.525317,873,511,294, +79,2017-03-11 14:43:29.525317,852,264,442, +92,2017-03-11 14:43:29.525317,457,699,744, +95,2017-03-11 14:43:29.525317,530,711,572, +78,2017-03-11 14:43:29.525317,281,611,351, +55,2017-03-11 14:43:29.525317,472,824,669, +51,2017-03-11 14:43:29.525317,729,592,939, +36,2017-03-11 14:43:29.525317,116,476,203, +99,2017-03-11 14:43:29.525317,987,497,783, +84,2017-03-11 14:43:29.525317,761,226,760, +22,2017-03-11 14:43:29.525317,924,504,171, +45,2017-03-11 14:43:29.525317,215,743,231, +50,2017-03-11 14:43:29.525317,354,581,51, +83,2017-03-11 14:43:29.525317,406,720,338, +13,2017-03-11 14:43:29.525317,312,277,497, +43,2017-03-11 14:43:29.525317,753,700,418, +74,2017-03-11 14:43:29.525317,196,201,579, +96,2017-03-11 14:43:29.525317,427,339,175, +35,2017-03-11 14:43:29.525317,843,347,805, +6,2017-03-11 14:43:29.525317,90,36,556, +44,2017-03-11 14:43:29.525317,617,607,269, +2,2017-03-11 14:43:29.525317,327,607,158, +64,2017-03-11 14:43:29.525317,884,654,68, +64,2017-03-11 14:43:29.525317,354,485,377, +55,2017-03-11 14:43:29.525317,686,956,508, +11,2017-03-11 14:43:29.525317,295,683,464, +14,2017-03-11 14:43:29.525317,30,269,197, +12,2017-03-11 14:43:29.525317,305,753,563, +92,2017-03-11 14:43:29.525317,360,832,945, +69,2017-03-11 14:43:29.525317,439,103,326, +32,2017-03-11 14:43:29.525317,757,394,961, +11,2017-03-11 14:43:29.525317,879,338,662, +57,2017-03-11 14:43:29.525317,294,169,679, +59,2017-03-11 14:43:29.525317,852,143,728, +88,2017-03-11 14:43:29.525317,412,926,1, +72,2017-03-11 14:43:29.525317,679,564,640, +4,2017-03-11 14:43:29.525317,396,585,725, +84,2017-03-11 14:43:29.525317,688,51,159, +45,2017-03-11 14:43:29.525317,445,120,557, +32,2017-03-11 14:43:29.525317,458,218,890, +75,2017-03-11 14:43:29.525317,388,569,342, +24,2017-03-11 14:43:29.525317,712,71,121, +12,2017-03-11 14:43:29.525317,996,123,841, +68,2017-03-11 14:43:29.525317,687,481,714, +8,2017-03-11 14:43:29.525317,66,439,919, +75,2017-03-11 14:43:29.525317,491,78,199, +94,2017-03-11 14:43:29.525317,198,756,261, +66,2017-03-11 14:43:29.525317,974,151,408, +36,2017-03-11 14:43:29.525317,720,750,601, +43,2017-03-11 14:43:29.525317,820,723,555, +82,2017-03-11 14:43:29.525317,845,396,492, +53,2017-03-11 14:43:29.525317,877,206,615, +94,2017-03-11 14:43:29.525317,646,534,696, +14,2017-03-11 14:43:29.525317,612,895,72, +81,2017-03-11 14:43:29.525317,651,333,465, +63,2017-03-11 14:43:29.525317,484,873,987, +20,2017-03-11 14:43:29.525317,622,589,636, +44,2017-03-11 14:43:29.525317,312,191,260, +16,2017-03-11 14:43:29.525317,587,752,689, +46,2017-03-11 14:43:29.525317,958,304,406, +60,2017-03-11 14:43:29.525317,838,103,740, +45,2017-03-11 14:43:29.525317,998,812,259, +65,2017-03-11 14:43:29.525317,145,724,275, +63,2017-03-11 14:43:29.525317,597,263,834, +22,2017-03-11 14:43:29.525317,851,469,662, +16,2017-03-11 14:43:29.525317,660,922,320, +25,2017-03-11 14:43:29.525317,674,9,711, +63,2017-03-11 14:43:29.525317,313,117,236, +15,2017-03-11 14:43:29.525317,220,976,601, +22,2017-03-11 14:43:29.525317,788,861,867, +93,2017-03-11 14:43:29.525317,585,142,563, +18,2017-03-11 14:43:29.525317,405,397,400, +26,2017-03-11 14:43:29.525317,866,62,419, +53,2017-03-11 14:43:29.525317,984,739,774, +66,2017-03-11 14:43:29.525317,748,485,289, +6,2017-03-11 14:43:29.525317,602,525,213, +82,2017-03-11 14:43:29.525317,500,814,40, +29,2017-03-11 14:43:29.525317,675,907,222, +26,2017-03-11 14:43:29.525317,50,785,440, +45,2017-03-11 14:43:29.525317,182,840,711, +5,2017-03-11 14:43:29.525317,902,131,575, +89,2017-03-11 14:43:29.525317,870,349,543, +62,2017-03-11 14:43:29.525317,834,832,679, +44,2017-03-11 14:43:29.525317,356,891,259, +86,2017-03-11 14:43:29.525317,705,299,145, +38,2017-03-11 14:43:29.525317,206,367,639, +26,2017-03-11 14:43:29.525317,153,79,711, +34,2017-03-11 14:43:29.525317,920,422,384, +82,2017-03-11 14:43:29.525317,553,959,708, +42,2017-03-11 14:43:29.525317,308,251,40, +14,2017-03-11 14:43:29.525317,83,719,579, +44,2017-03-11 14:43:29.525317,611,838,296, +32,2017-03-11 14:43:29.525317,136,441,696, +34,2017-03-11 14:43:29.525317,808,335,599, +96,2017-03-11 14:43:29.525317,414,310,297, +33,2017-03-11 14:43:29.525317,732,681,156, +28,2017-03-11 14:43:29.525317,640,864,707, +95,2017-03-11 14:43:29.525317,114,748,91, +20,2017-03-11 14:43:29.525317,467,670,636, +8,2017-03-11 14:43:29.525317,508,932,393, +64,2017-03-11 14:43:29.525317,373,89,987, +18,2017-03-11 14:43:29.525317,424,585,142, +84,2017-03-11 14:43:29.525317,895,439,173, +63,2017-03-11 14:43:29.525317,120,329,912, +76,2017-03-11 14:43:29.525317,193,619,707, +31,2017-03-11 14:43:29.525317,367,798,504, +83,2017-03-11 14:43:29.525317,468,140,911, +98,2017-03-11 14:43:29.525317,72,304,620, +44,2017-03-11 14:43:29.525317,394,606,626, +82,2017-03-11 14:43:29.525317,192,768,657, +9,2017-03-11 14:43:29.525317,207,830,713, +33,2017-03-11 14:43:29.525317,159,625,86, +35,2017-03-11 14:43:29.525317,244,794,659, +61,2017-03-11 14:43:29.525317,592,164,445, +6,2017-03-11 14:43:29.525317,304,356,36, +38,2017-03-11 14:43:29.525317,660,656,821, +5,2017-03-11 14:43:29.525317,262,447,872, +45,2017-03-11 14:43:29.525317,215,529,540, +42,2017-03-11 14:43:29.525317,359,254,749, +52,2017-03-11 14:43:29.525317,879,835,870, +12,2017-03-11 14:43:29.525317,629,529,735, +22,2017-03-11 14:43:29.525317,693,180,281, +100,2017-03-11 14:43:29.525317,536,317,373, +20,2017-03-11 14:43:29.525317,973,193,250, +24,2017-03-11 14:43:29.525317,640,122,689, +85,2017-03-11 14:43:29.525317,652,229,277, +1,2017-03-11 14:43:29.525317,483,26,529, +36,2017-03-11 14:43:29.525317,862,399,485, +49,2017-03-11 14:43:29.525317,928,220,712, +62,2017-03-11 14:43:29.525317,399,993,617, +94,2017-03-11 14:43:29.525317,311,990,131, +28,2017-03-11 14:43:29.525317,183,382,519, +82,2017-03-11 14:43:29.525317,504,208,678, +16,2017-03-11 14:43:29.525317,438,955,166, +92,2017-03-11 14:43:29.525317,981,695,283, +84,2017-03-11 14:43:29.525317,94,768,333, +2,2017-03-11 14:43:29.525317,988,45,642, +39,2017-03-11 14:43:29.525317,38,259,322, +35,2017-03-11 14:43:29.525317,249,454,633, +43,2017-03-11 14:43:29.525317,835,152,255, +34,2017-03-11 14:43:29.525317,361,933,495, +80,2017-03-11 14:43:29.525317,887,661,720, +87,2017-03-11 14:43:29.525317,357,2,710, +45,2017-03-11 14:43:29.525317,770,44,472, +76,2017-03-11 14:43:29.525317,89,115,145, +13,2017-03-11 14:43:29.525317,374,467,477, +62,2017-03-11 14:43:29.525317,921,110,55, +76,2017-03-11 14:43:29.525317,262,310,95, +62,2017-03-11 14:43:29.525317,243,590,422, +13,2017-03-11 14:43:29.525317,251,141,998, +61,2017-03-11 14:43:29.525317,143,708,58, +91,2017-03-11 14:43:29.525317,752,530,672, +84,2017-03-11 14:43:29.525317,645,817,968, +2,2017-03-11 14:43:29.525317,284,445,642, +20,2017-03-11 14:43:29.525317,555,698,960, +82,2017-03-11 14:43:29.525317,8,55,439, +25,2017-03-11 14:43:29.525317,645,861,380, +90,2017-03-11 14:43:29.525317,2,378,504, +15,2017-03-11 14:43:29.525317,86,562,59, +84,2017-03-11 14:43:29.525317,92,731,679, +74,2017-03-11 14:43:29.525317,548,647,757, +83,2017-03-11 14:43:29.525317,92,399,36, +65,2017-03-11 14:43:29.525317,97,996,463, +10,2017-03-11 14:43:29.525317,51,903,355, +70,2017-03-11 14:43:29.525317,764,735,593, +77,2017-03-11 14:43:29.525317,113,96,911, +20,2017-03-11 14:43:29.525317,658,971,38, +75,2017-03-11 14:43:29.525317,702,717,488, +25,2017-03-11 14:43:29.525317,364,245,81, +46,2017-03-11 14:43:29.525317,645,117,103, +74,2017-03-11 14:43:29.525317,113,566,847, +16,2017-03-11 14:43:29.525317,469,202,861, +23,2017-03-11 14:43:29.525317,937,454,998, +5,2017-03-11 14:43:29.525317,550,910,250, +21,2017-03-11 14:43:29.525317,881,287,959, +58,2017-03-11 14:43:29.525317,4,448,832, +37,2017-03-11 14:43:29.525317,693,913,824, +34,2017-03-11 14:43:29.525317,30,927,80, +14,2017-03-11 14:43:29.525317,493,926,307, +96,2017-03-11 14:43:29.525317,128,168,194, +6,2017-03-11 14:43:29.525317,622,193,115, +17,2017-03-11 14:43:29.525317,103,365,381, +98,2017-03-11 14:43:29.525317,652,340,566, +66,2017-03-11 14:43:29.525317,788,398,23, +48,2017-03-11 14:43:29.525317,311,847,819, +34,2017-03-11 14:43:29.525317,774,899,483, +27,2017-03-11 14:43:29.525317,825,790,228, +95,2017-03-11 14:43:29.525317,958,422,18, +58,2017-03-11 14:43:29.525317,615,133,752, +72,2017-03-11 14:43:29.525317,498,133,701, +15,2017-03-11 14:43:29.525317,473,267,806, +26,2017-03-11 14:43:29.525317,664,829,742, +98,2017-03-11 14:43:29.525317,676,561,315, +45,2017-03-11 14:43:29.525317,460,798,716, +28,2017-03-11 14:43:29.525317,588,944,237, +55,2017-03-11 14:43:29.525317,366,255,126, +98,2017-03-11 14:43:29.525317,387,878,698, +89,2017-03-11 14:43:29.525317,10,399,35, +48,2017-03-11 14:43:29.525317,666,840,744, +33,2017-03-11 14:43:29.525317,669,486,305, +35,2017-03-11 14:43:29.525317,47,621,795, +51,2017-03-11 14:43:29.525317,418,511,791, +1,2017-03-11 14:43:29.525317,455,28,552, +82,2017-03-11 14:43:29.525317,283,678,801, +67,2017-03-11 14:43:29.525317,555,500,555, +57,2017-03-11 14:43:29.525317,899,590,49, +56,2017-03-11 14:43:29.525317,430,793,895, +10,2017-03-11 14:43:29.525317,279,201,445, +33,2017-03-11 14:43:29.525317,821,240,833, +24,2017-03-11 14:43:29.525317,750,624,246, +21,2017-03-11 14:43:29.525317,652,798,26, +93,2017-03-11 14:43:29.525317,476,827,605, +3,2017-03-11 14:43:29.525317,326,160,597, +23,2017-03-11 14:43:29.525317,749,645,790, +18,2017-03-11 14:43:29.525317,438,685,279, +72,2017-03-11 14:43:29.525317,886,724,43, +71,2017-03-11 14:43:29.525317,963,876,947, +71,2017-03-11 14:43:29.525317,500,192,919, +15,2017-03-11 14:43:29.525317,990,944,87, +47,2017-03-11 14:43:29.525317,771,691,497, +10,2017-03-11 14:43:29.525317,851,93,323, +60,2017-03-11 14:43:29.525317,739,112,780, +18,2017-03-11 14:43:29.525317,798,59,895, +68,2017-03-11 14:43:29.525317,782,938,390, +75,2017-03-11 14:43:29.525317,814,337,459, +31,2017-03-11 14:43:29.525317,529,378,467, +52,2017-03-11 14:43:29.525317,322,553,985, +9,2017-03-11 14:43:29.525317,245,482,190, +10,2017-03-11 14:43:29.525317,575,513,696, +31,2017-03-11 14:43:29.525317,625,476,491, +42,2017-03-11 14:43:29.525317,535,385,106, +32,2017-03-11 14:43:29.525317,323,496,63, +14,2017-03-11 14:43:29.525317,833,522,452, +36,2017-03-11 14:43:29.525317,900,919,881, +22,2017-03-11 14:43:29.525317,472,867,315, +72,2017-03-11 14:43:29.525317,349,505,813, +92,2017-03-11 14:43:29.525317,18,510,238, +64,2017-03-11 14:43:29.525317,986,728,66, +52,2017-03-11 14:43:29.525317,114,172,838, +44,2017-03-11 14:43:29.525317,668,901,575, +50,2017-03-11 14:43:29.525317,423,27,863, +32,2017-03-11 14:43:29.525317,946,745,544, +42,2017-03-11 14:43:29.525317,611,859,136, +96,2017-03-11 14:43:29.525317,364,949,884, +38,2017-03-11 14:43:29.525317,459,121,25, +44,2017-03-11 14:43:29.525317,850,91,965, +96,2017-03-11 14:43:29.525317,263,803,401, +93,2017-03-11 14:43:29.525317,704,976,433, +13,2017-03-11 14:43:29.525317,3,296,449, +95,2017-03-11 14:43:29.525317,40,993,368, +65,2017-03-11 14:43:29.525317,852,504,612, +22,2017-03-11 14:43:29.525317,453,495,598, +91,2017-03-11 14:43:29.525317,617,623,356, +47,2017-03-11 14:43:29.525317,714,321,430, +98,2017-03-11 14:43:29.525317,124,831,909, +83,2017-03-11 14:43:29.525317,807,341,955, +81,2017-03-11 14:43:29.525317,637,405,760, +68,2017-03-11 14:43:29.525317,398,128,329, +25,2017-03-11 14:43:29.525317,632,941,466, +8,2017-03-11 14:43:29.525317,436,64,996, +5,2017-03-11 14:43:29.525317,687,352,519, +40,2017-03-11 14:43:29.525317,673,950,379, +80,2017-03-11 14:43:29.525317,781,288,625, +59,2017-03-11 14:43:29.525317,629,581,399, +27,2017-03-11 14:43:29.525317,985,159,944, +38,2017-03-11 14:43:29.525317,288,273,633, +92,2017-03-11 14:43:29.525317,214,99,4, +65,2017-03-11 14:43:29.525317,164,1,704, +85,2017-03-11 14:43:29.525317,352,223,252, +2,2017-03-11 14:43:29.525317,173,631,822, +95,2017-03-11 14:43:29.525317,919,447,542, +55,2017-03-11 14:43:29.525317,28,940,815, +1,2017-03-11 14:43:29.525317,100,759,396, +39,2017-03-11 14:43:29.525317,32,29,307, +25,2017-03-11 14:43:29.525317,129,311,898, +29,2017-03-11 14:43:29.525317,312,601,143, +66,2017-03-11 14:43:29.525317,825,395,689, +100,2017-03-11 14:43:29.525317,26,510,951, +95,2017-03-11 14:43:29.525317,958,493,494, +99,2017-03-11 14:43:29.525317,433,309,998, +53,2017-03-11 14:43:29.525317,68,394,920, +10,2017-03-11 14:43:29.525317,423,227,347, +55,2017-03-11 14:43:29.525317,538,245,844, +85,2017-03-11 14:43:29.525317,846,987,514, +67,2017-03-11 14:43:29.525317,382,202,669, +41,2017-03-11 14:43:29.525317,713,620,354, +67,2017-03-11 14:43:29.525317,113,847,656, +55,2017-03-11 14:43:29.525317,156,654,79, +22,2017-03-11 14:43:29.525317,48,998,324, +47,2017-03-11 14:43:29.525317,225,671,23, +76,2017-03-11 14:43:29.525317,916,867,612, +76,2017-03-11 14:43:29.525317,854,126,433, +24,2017-03-11 14:43:29.525317,328,101,644, +4,2017-03-11 14:43:29.525317,721,998,712, +83,2017-03-11 14:43:29.525317,845,367,380, +0,2017-03-11 14:43:29.525317,21,458,226, +7,2017-03-11 14:43:29.525317,457,550,540, +68,2017-03-11 14:43:29.525317,221,563,444, +14,2017-03-11 14:43:29.525317,430,57,898, +28,2017-03-11 14:43:29.525317,183,330,520, +51,2017-03-11 14:43:29.525317,432,164,553, +15,2017-03-11 14:43:29.525317,162,264,987, +1,2017-03-11 14:43:29.525317,632,366,10, +65,2017-03-11 14:43:29.525317,825,235,722, +28,2017-03-11 14:43:29.525317,785,262,963, +1,2017-03-11 14:43:29.525317,825,407,142, +25,2017-03-11 14:43:29.525317,464,39,539, +65,2017-03-11 14:43:29.525317,370,59,158, +80,2017-03-11 14:43:29.525317,223,711,954, +39,2017-03-11 14:43:29.525317,975,941,393, +61,2017-03-11 14:43:29.525317,307,403,260, +13,2017-03-11 14:43:29.525317,638,982,413, +42,2017-03-11 14:43:29.525317,243,376,428, +7,2017-03-11 14:43:29.525317,783,570,322, +25,2017-03-11 14:43:29.525317,609,861,893, +98,2017-03-11 14:43:29.525317,920,51,780, +14,2017-03-11 14:43:29.525317,762,734,528, +74,2017-03-11 14:43:29.525317,675,921,344, +98,2017-03-11 14:43:29.525317,324,604,113, +96,2017-03-11 14:43:29.525317,585,526,385, +83,2017-03-11 14:43:29.525317,902,814,896, +68,2017-03-11 14:43:29.525317,383,219,932, +99,2017-03-11 14:43:29.525317,79,825,971, +100,2017-03-11 14:43:29.525317,876,752,141, +64,2017-03-11 14:43:29.525317,486,670,375, +16,2017-03-11 14:43:29.525317,591,719,143, +92,2017-03-11 14:43:29.525317,323,256,878, +91,2017-03-11 14:43:29.525317,782,263,737, +68,2017-03-11 14:43:29.525317,77,633,369, +46,2017-03-11 14:43:29.525317,852,301,453, +93,2017-03-11 14:43:29.525317,126,424,930, +0,2017-03-11 14:43:29.525317,176,72,640, +66,2017-03-11 14:43:29.525317,741,16,823, +33,2017-03-11 14:43:29.525317,735,966,248, +6,2017-03-11 14:43:29.525317,222,126,967, +0,2017-03-11 14:43:29.525317,389,704,688, +47,2017-03-11 14:43:29.525317,337,57,926, +19,2017-03-11 14:43:29.525317,357,379,120, +48,2017-03-11 14:43:29.525317,804,50,485, +98,2017-03-11 14:43:29.525317,122,125,642, +86,2017-03-11 14:43:29.525317,141,465,195, +88,2017-03-11 14:43:29.525317,430,443,934, +65,2017-03-11 14:43:29.525317,568,901,655, +96,2017-03-11 14:43:29.525317,605,343,423, +94,2017-03-11 14:43:29.525317,400,349,131, +76,2017-03-11 14:43:29.525317,728,251,241, +53,2017-03-11 14:43:29.525317,301,726,512, +42,2017-03-11 14:43:29.525317,851,154,285, +99,2017-03-11 14:43:29.525317,618,480,868, +5,2017-03-11 14:43:29.525317,923,803,700, +49,2017-03-11 14:43:29.525317,704,355,448, +31,2017-03-11 14:43:29.525317,699,871,251, +10,2017-03-11 14:43:29.525317,220,381,857, +95,2017-03-11 14:43:29.525317,632,98,481, +93,2017-03-11 14:43:29.525317,823,992,355, +67,2017-03-11 14:43:29.525317,146,641,666, +76,2017-03-11 14:43:29.525317,121,534,812, +4,2017-03-11 14:43:29.525317,337,512,534, +4,2017-03-11 14:43:29.525317,868,982,349, +57,2017-03-11 14:43:29.525317,853,600,666, +7,2017-03-11 14:43:29.525317,981,523,22, +61,2017-03-11 14:43:29.525317,620,502,546, +44,2017-03-11 14:43:29.525317,495,901,118, +64,2017-03-11 14:43:29.525317,542,784,405, +66,2017-03-11 14:43:29.525317,318,217,706, +66,2017-03-11 14:43:29.525317,730,241,696, +60,2017-03-11 14:43:29.525317,223,45,164, +8,2017-03-11 14:43:29.525317,645,830,149, +63,2017-03-11 14:43:29.525317,353,171,240, +97,2017-03-11 14:43:29.525317,673,786,417, +17,2017-03-11 14:43:29.525317,688,534,809, +23,2017-03-11 14:43:29.525317,318,214,892, +64,2017-03-11 14:43:29.525317,431,599,292, +16,2017-03-11 14:43:29.525317,839,988,759, +6,2017-03-11 14:43:29.525317,33,923,138, +68,2017-03-11 14:43:29.525317,754,288,305, +11,2017-03-11 14:43:29.525317,459,545,80, +13,2017-03-11 14:43:29.525317,331,496,300, +2,2017-03-11 14:43:29.525317,31,109,248, +35,2017-03-11 14:43:29.525317,324,141,986, +76,2017-03-11 14:43:29.525317,740,278,916, +58,2017-03-11 14:43:29.525317,266,675,641, +30,2017-03-11 14:43:29.525317,599,780,978, +35,2017-03-11 14:43:29.525317,67,283,459, +53,2017-03-11 14:43:29.525317,828,539,658, +16,2017-03-11 14:43:29.525317,35,958,178, +7,2017-03-11 14:43:29.525317,68,426,415, +39,2017-03-11 14:43:29.525317,567,401,147, +31,2017-03-11 14:43:29.525317,679,63,886, +94,2017-03-11 14:43:29.525317,738,527,244, +34,2017-03-11 14:43:29.525317,307,221,689, +37,2017-03-11 14:43:29.525317,504,148,900, +33,2017-03-11 14:43:29.525317,686,558,491, +72,2017-03-11 14:43:29.525317,517,669,787, +58,2017-03-11 14:43:29.525317,95,202,976, +66,2017-03-11 14:43:29.525317,603,122,969, +28,2017-03-11 14:43:29.525317,185,854,226, +92,2017-03-11 14:43:29.525317,381,470,260, +69,2017-03-11 14:43:29.525317,691,949,62, +20,2017-03-11 14:43:29.525317,97,963,528, +78,2017-03-11 14:43:29.525317,521,19,505, +4,2017-03-11 14:43:29.525317,688,293,622, +78,2017-03-11 14:43:29.525317,495,598,445, +10,2017-03-11 14:43:29.525317,720,414,380, +91,2017-03-11 14:43:29.525317,268,606,829, +65,2017-03-11 14:43:29.525317,76,89,337, +77,2017-03-11 14:43:29.525317,38,399,963, +14,2017-03-11 14:43:29.525317,362,490,920, +88,2017-03-11 14:43:29.525317,509,425,920, +20,2017-03-11 14:43:29.525317,718,542,979, +21,2017-03-11 14:43:29.525317,139,424,311, +86,2017-03-11 14:43:29.525317,838,691,764, +11,2017-03-11 14:43:29.525317,298,593,754, +37,2017-03-11 14:43:29.525317,682,91,141, +72,2017-03-11 14:43:29.525317,490,103,856, +85,2017-03-11 14:43:29.525317,593,776,735, +10,2017-03-11 14:43:29.525317,201,655,299, +92,2017-03-11 14:43:29.525317,197,278,131, +34,2017-03-11 14:43:29.525317,702,442,195, +54,2017-03-11 14:43:29.525317,134,960,646, +43,2017-03-11 14:43:29.525317,553,400,805, +23,2017-03-11 14:43:29.525317,491,946,955, +98,2017-03-11 14:43:29.525317,49,811,833, +64,2017-03-11 14:43:29.525317,587,568,745, +79,2017-03-11 14:43:29.525317,222,44,706, +42,2017-03-11 14:43:29.525317,322,837,755, +2,2017-03-11 14:43:29.525317,279,950,565, +41,2017-03-11 14:43:29.525317,910,210,845, +46,2017-03-11 14:43:29.525317,610,650,697, +10,2017-03-11 14:43:29.525317,596,652,83, +65,2017-03-11 14:43:29.525317,463,916,288, +5,2017-03-11 14:43:29.525317,484,33,837, +71,2017-03-11 14:43:29.525317,77,543,125, +40,2017-03-11 14:43:29.525317,380,880,423, +66,2017-03-11 14:43:29.525317,831,987,73, +74,2017-03-11 14:43:29.525317,198,918,203, +81,2017-03-11 14:43:29.525317,567,900,910, +16,2017-03-11 14:43:29.525317,552,993,808, +2,2017-03-11 14:43:29.525317,909,96,66, +39,2017-03-11 14:43:29.525317,129,903,99, +21,2017-03-11 14:43:29.525317,446,225,604, +83,2017-03-11 14:43:29.525317,105,27,486, +94,2017-03-11 14:43:29.525317,14,559,676, +21,2017-03-11 14:43:29.525317,477,879,20, +4,2017-03-11 14:43:29.525317,779,929,207, +33,2017-03-11 14:43:29.525317,922,15,347, +83,2017-03-11 14:43:29.525317,112,412,224, +24,2017-03-11 14:43:29.525317,315,323,446, +76,2017-03-11 14:43:29.525317,548,51,588, +65,2017-03-11 14:43:29.525317,77,74,589, +9,2017-03-11 14:43:29.525317,634,265,303, +11,2017-03-11 14:43:29.525317,144,322,154, +92,2017-03-11 14:43:29.525317,252,362,254, +17,2017-03-11 14:43:29.525317,377,601,5, +49,2017-03-11 14:43:29.525317,13,229,729, +33,2017-03-11 14:43:29.525317,553,176,89, +10,2017-03-11 14:43:29.525317,226,677,754, +30,2017-03-11 14:43:29.525317,752,343,395, +39,2017-03-11 14:43:29.525317,608,697,496, +75,2017-03-11 14:43:29.525317,20,650,675, +27,2017-03-11 14:43:29.525317,12,929,445, +39,2017-03-11 14:43:29.525317,530,450,877, +54,2017-03-11 14:43:29.525317,680,607,871, +23,2017-03-11 14:43:29.525317,783,960,333, +1,2017-03-11 14:43:29.525317,638,87,312, +39,2017-03-11 14:43:29.525317,430,707,775, +4,2017-03-11 14:43:29.525317,404,270,791, +42,2017-03-11 14:43:29.525317,920,466,696, +93,2017-03-11 14:43:29.525317,396,141,321, +93,2017-03-11 14:43:29.525317,591,199,468, +27,2017-03-11 14:43:29.525317,805,339,503, +59,2017-03-11 14:43:29.525317,300,836,597, +94,2017-03-11 14:43:29.525317,924,909,327, +35,2017-03-11 14:43:29.525317,616,101,393, +2,2017-03-11 14:43:29.525317,371,184,444, +29,2017-03-11 14:43:29.525317,650,140,224, +5,2017-03-11 14:43:29.525317,281,545,971, +87,2017-03-11 14:43:29.525317,744,440,143, +55,2017-03-11 14:43:29.525317,779,647,137, +8,2017-03-11 14:43:29.525317,483,734,16, +41,2017-03-11 14:43:29.525317,643,342,761, +26,2017-03-11 14:43:29.525317,443,153,279, +81,2017-03-11 14:43:29.525317,337,723,107, +99,2017-03-11 14:43:29.525317,862,331,33, +14,2017-03-11 14:43:29.525317,876,4,15, +62,2017-03-11 14:43:29.525317,444,158,169, +22,2017-03-11 14:43:29.525317,805,307,302, +29,2017-03-11 14:43:29.525317,40,317,694, +68,2017-03-11 14:43:29.525317,659,455,942, +10,2017-03-11 14:43:29.525317,608,220,918, +95,2017-03-11 14:43:29.525317,943,24,933, +81,2017-03-11 14:43:29.525317,355,966,948, +23,2017-03-11 14:43:29.525317,971,964,851, +41,2017-03-11 14:43:29.525317,122,21,637, +93,2017-03-11 14:43:29.525317,327,939,215, +37,2017-03-11 14:43:29.525317,256,909,51, +92,2017-03-11 14:43:29.525317,364,993,19, +97,2017-03-11 14:43:29.525317,213,936,918, +16,2017-03-11 14:43:29.525317,961,851,962, +32,2017-03-11 14:43:29.525317,817,910,548, +79,2017-03-11 14:43:29.525317,874,399,202, +100,2017-03-11 14:43:29.525317,420,839,922, +75,2017-03-11 14:43:29.525317,778,137,115, +3,2017-03-11 14:43:29.525317,46,166,950, +41,2017-03-11 14:43:29.525317,159,969,382, +37,2017-03-11 14:43:29.525317,905,299,528, +87,2017-03-11 14:43:29.525317,150,489,182, +97,2017-03-11 14:43:29.525317,399,730,754, +27,2017-03-11 14:43:29.525317,129,956,269, +55,2017-03-11 14:43:29.525317,795,191,296, +57,2017-03-11 14:43:29.525317,328,411,608, +37,2017-03-11 14:43:29.525317,576,559,783, +73,2017-03-11 14:43:29.525317,528,165,107, +43,2017-03-11 14:43:29.525317,464,634,300, +61,2017-03-11 14:43:29.525317,124,482,581, +52,2017-03-11 14:43:29.525317,212,335,796, +34,2017-03-11 14:43:29.525317,291,65,889, +9,2017-03-11 14:43:29.525317,256,185,660, +58,2017-03-11 14:43:29.525317,596,269,957, +17,2017-03-11 14:43:29.525317,828,740,907, +36,2017-03-11 14:43:29.525317,905,14,789, +37,2017-03-11 14:43:29.525317,648,88,983, +77,2017-03-11 14:43:29.525317,570,564,295, +78,2017-03-11 14:43:29.525317,899,92,123, +19,2017-03-11 14:43:29.525317,156,12,276, +41,2017-03-11 14:43:29.525317,198,936,996, +79,2017-03-11 14:43:29.525317,205,953,965, +3,2017-03-11 14:43:29.525317,693,873,388, +60,2017-03-11 14:43:29.525317,886,177,968, +53,2017-03-11 14:43:29.525317,265,951,306, +84,2017-03-11 14:43:29.525317,516,602,618, +41,2017-03-11 14:43:29.525317,693,741,604, +85,2017-03-11 14:43:29.525317,754,881,261, +95,2017-03-11 14:43:29.525317,817,257,744, +2,2017-03-11 14:43:29.525317,210,710,54, +90,2017-03-11 14:43:29.525317,582,442,501, +47,2017-03-11 14:43:29.525317,619,469,3, +88,2017-03-11 14:43:29.525317,421,309,720, +94,2017-03-11 14:43:29.525317,911,338,351, +60,2017-03-11 14:43:29.525317,79,955,453, +83,2017-03-11 14:43:29.525317,836,715,784, +65,2017-03-11 14:43:29.525317,972,528,675, +18,2017-03-11 14:43:29.525317,238,730,84, +82,2017-03-11 14:43:29.525317,172,586,289, +79,2017-03-11 14:43:29.525317,55,292,676, +48,2017-03-11 14:43:29.525317,601,396,412, +51,2017-03-11 14:43:29.525317,734,763,116, +81,2017-03-11 14:43:29.525317,719,569,647, +55,2017-03-11 14:43:29.525317,284,431,208, +26,2017-03-11 14:43:29.525317,959,883,437, +20,2017-03-11 14:43:29.525317,613,521,17, +79,2017-03-11 14:43:29.525317,107,306,577, +16,2017-03-11 14:43:29.525317,598,253,638, +20,2017-03-11 14:43:29.525317,649,50,710, +38,2017-03-11 14:43:29.525317,813,826,197, +53,2017-03-11 14:43:29.525317,395,843,87, +68,2017-03-11 14:43:29.525317,274,295,934, +23,2017-03-11 14:43:29.525317,178,371,430, +79,2017-03-11 14:43:29.525317,892,447,577, +100,2017-03-11 14:43:29.525317,753,154,160, +35,2017-03-11 14:43:29.525317,406,797,549, +5,2017-03-11 14:43:29.525317,847,260,438, +66,2017-03-11 14:43:29.525317,86,634,192, +48,2017-03-11 14:43:29.525317,478,279,159, +75,2017-03-11 14:43:29.525317,573,93,985, +75,2017-03-11 14:43:29.525317,464,414,543, +36,2017-03-11 14:43:29.525317,861,120,353, +61,2017-03-11 14:43:29.525317,274,513,965, +68,2017-03-11 14:43:29.525317,310,514,735, +16,2017-03-11 14:43:29.525317,774,173,818, +86,2017-03-11 14:43:29.525317,807,10,340, +28,2017-03-11 14:43:29.525317,289,499,36, +86,2017-03-11 14:43:29.525317,592,21,614, +6,2017-03-11 14:43:29.525317,435,157,411, +30,2017-03-11 14:43:29.525317,277,764,911, +55,2017-03-11 14:43:29.525317,277,875,230, +59,2017-03-11 14:43:29.525317,389,965,745, +16,2017-03-11 14:43:29.525317,138,563,22, +94,2017-03-11 14:43:29.525317,573,362,230, +86,2017-03-11 14:43:29.525317,861,266,724, +45,2017-03-11 14:43:29.525317,287,338,509, +72,2017-03-11 14:43:29.525317,495,920,19, +77,2017-03-11 14:43:29.525317,684,930,322, +96,2017-03-11 14:43:29.525317,805,553,549, +19,2017-03-11 14:43:29.525317,518,294,358, +66,2017-03-11 14:43:29.525317,857,380,601, +43,2017-03-11 14:43:29.525317,742,830,292, +60,2017-03-11 14:43:29.525317,96,17,57, +38,2017-03-11 14:43:29.525317,354,567,106, +85,2017-03-11 14:43:29.525317,486,124,621, +17,2017-03-11 14:43:29.525317,54,943,132, +86,2017-03-11 14:43:29.525317,496,680,53, +1,2017-03-11 14:43:29.525317,974,411,670, +83,2017-03-11 14:43:29.525317,791,271,262, +53,2017-03-11 14:43:29.525317,101,554,137, +20,2017-03-11 14:43:29.525317,571,195,580, +93,2017-03-11 14:43:29.525317,761,686,775, +25,2017-03-11 14:43:29.525317,810,396,418, +86,2017-03-11 14:43:29.525317,339,550,723, +84,2017-03-11 14:43:29.525317,230,776,850, +20,2017-03-11 14:43:29.525317,187,520,36, +98,2017-03-11 14:43:29.525317,791,298,512, +89,2017-03-11 14:43:29.525317,852,650,89, +42,2017-03-11 14:43:29.525317,844,669,348, +61,2017-03-11 14:43:29.525317,355,123,854, +17,2017-03-11 14:43:29.525317,518,272,29, +86,2017-03-11 14:43:29.525317,822,752,693, +5,2017-03-11 14:43:29.525317,529,543,256, +72,2017-03-11 14:43:29.525317,63,292,695, +85,2017-03-11 14:43:29.525317,590,207,745, +44,2017-03-11 14:43:29.525317,856,833,864, +70,2017-03-11 14:43:29.525317,502,212,306, +86,2017-03-11 14:43:29.525317,335,160,22, +85,2017-03-11 14:43:29.525317,432,51,710, +25,2017-03-11 14:43:29.525317,804,403,306, +33,2017-03-11 14:43:29.525317,946,562,48, +1,2017-03-11 14:43:29.525317,854,743,862, +44,2017-03-11 14:43:29.525317,950,606,885, +81,2017-03-11 14:43:29.525317,440,749,507, +94,2017-03-11 14:43:29.525317,962,814,799, +30,2017-03-11 14:43:29.525317,974,821,150, +41,2017-03-11 14:43:29.525317,872,860,659, +68,2017-03-11 14:43:29.525317,263,965,8, +21,2017-03-11 14:43:29.525317,527,56,218, +38,2017-03-11 14:43:29.525317,799,80,824, +75,2017-03-11 14:43:29.525317,686,709,556, +13,2017-03-11 14:43:29.525317,459,63,68, +42,2017-03-11 14:43:29.525317,876,867,717, +85,2017-03-11 14:43:29.525317,688,867,255, +56,2017-03-11 14:43:29.525317,727,915,235, +99,2017-03-11 14:43:29.525317,880,243,200, +41,2017-03-11 14:43:29.525317,300,418,787, +10,2017-03-11 14:43:29.525317,497,611,848, +18,2017-03-11 14:43:29.525317,321,404,310, +78,2017-03-11 14:43:29.525317,467,377,200, +34,2017-03-11 14:43:29.525317,244,917,193, +93,2017-03-11 14:43:29.525317,783,449,491, +51,2017-03-11 14:43:29.525317,363,727,501, +24,2017-03-11 14:43:29.525317,970,700,649, +27,2017-03-11 14:43:29.525317,118,436,368, +62,2017-03-11 14:43:29.525317,47,217,799, +37,2017-03-11 14:43:29.525317,621,108,147, +9,2017-03-11 14:43:29.525317,486,347,431, +73,2017-03-11 14:43:29.525317,264,625,661, +5,2017-03-11 14:43:29.525317,73,152,558, +44,2017-03-11 14:43:29.525317,879,58,680, +85,2017-03-11 14:43:29.525317,758,329,118, +88,2017-03-11 14:43:29.525317,765,486,492, +81,2017-03-11 14:43:29.525317,703,291,181, +32,2017-03-11 14:43:29.525317,399,328,412, +88,2017-03-11 14:43:29.525317,675,843,615, +94,2017-03-11 14:43:29.525317,467,276,987, +54,2017-03-11 14:43:29.525317,428,544,978, +31,2017-03-11 14:43:29.525317,603,657,156, +36,2017-03-11 14:43:29.525317,986,274,238, +75,2017-03-11 14:43:29.525317,760,729,563, +46,2017-03-11 14:43:29.525317,20,744,787, +42,2017-03-11 14:43:29.525317,72,198,304, +75,2017-03-11 14:43:29.525317,41,918,686, +51,2017-03-11 14:43:29.525317,194,673,50, +62,2017-03-11 14:43:29.525317,217,27,930, +82,2017-03-11 14:43:29.525317,684,86,181, +67,2017-03-11 14:43:29.525317,360,419,421, +12,2017-03-11 14:43:29.525317,148,985,583, +17,2017-03-11 14:43:29.525317,729,370,587, +80,2017-03-11 14:43:29.525317,569,890,548, +61,2017-03-11 14:43:29.525317,808,234,119, +0,2017-03-11 14:43:29.525317,907,169,625, +12,2017-03-11 14:43:29.525317,196,554,944, +88,2017-03-11 14:43:29.525317,640,126,551, +0,2017-03-11 14:43:29.525317,545,972,120, +69,2017-03-11 14:43:29.525317,957,704,860, +69,2017-03-11 14:43:29.525317,74,447,485, +64,2017-03-11 14:43:29.525317,337,33,253, +15,2017-03-11 14:43:29.525317,267,372,148, +17,2017-03-11 14:43:29.525317,541,773,298, +74,2017-03-11 14:43:29.525317,327,243,617, +97,2017-03-11 14:43:29.525317,368,168,968, +91,2017-03-11 14:43:29.525317,140,88,605, +10,2017-03-11 14:43:29.525317,792,466,782, +87,2017-03-11 14:43:29.525317,913,267,509, +25,2017-03-11 14:43:29.525317,300,763,396, +57,2017-03-11 14:43:29.525317,135,544,741, +68,2017-03-11 14:43:29.525317,317,39,413, +64,2017-03-11 14:43:29.525317,281,30,612, +65,2017-03-11 14:43:29.525317,199,580,563, +34,2017-03-11 14:43:29.525317,668,168,435, +46,2017-03-11 14:43:29.525317,634,217,326, +55,2017-03-11 14:43:29.525317,484,836,796, +78,2017-03-11 14:43:29.525317,599,192,351, +73,2017-03-11 14:43:29.525317,735,92,410, +5,2017-03-11 14:43:29.525317,130,823,696, +41,2017-03-11 14:43:29.525317,854,308,62, +5,2017-03-11 14:43:29.525317,888,624,391, +56,2017-03-11 14:43:29.525317,792,826,16, +43,2017-03-11 14:43:29.525317,42,342,973, +53,2017-03-11 14:43:29.525317,178,769,310, +78,2017-03-11 14:43:29.525317,961,661,510, +70,2017-03-11 14:43:29.525317,752,920,748, +88,2017-03-11 14:43:29.525317,743,445,295, +60,2017-03-11 14:43:29.525317,753,356,649, +64,2017-03-11 14:43:29.525317,980,40,197, +77,2017-03-11 14:43:29.525317,866,213,199, +91,2017-03-11 14:43:29.525317,555,172,434, +73,2017-03-11 14:43:29.525317,940,744,510, +90,2017-03-11 14:43:29.525317,405,20,597, +16,2017-03-11 14:43:29.525317,941,346,40, +68,2017-03-11 14:43:29.525317,790,335,281, +54,2017-03-11 14:43:29.525317,691,930,185, +67,2017-03-11 14:43:29.525317,970,382,444, +84,2017-03-11 14:43:29.525317,595,643,744, +15,2017-03-11 14:43:29.525317,815,178,884, +76,2017-03-11 14:43:29.525317,922,394,656, +33,2017-03-11 14:43:29.525317,414,253,485, +35,2017-03-11 14:43:29.525317,599,525,39, +39,2017-03-11 14:43:29.525317,860,320,933, +55,2017-03-11 14:43:29.525317,251,118,222, +22,2017-03-11 14:43:29.525317,499,666,57, +9,2017-03-11 14:43:29.525317,309,801,245, +12,2017-03-11 14:43:29.525317,979,128,879, +90,2017-03-11 14:43:29.525317,522,535,228, +94,2017-03-11 14:43:29.525317,788,713,291, +39,2017-03-11 14:43:29.525317,238,331,777, +10,2017-03-11 14:43:29.525317,651,710,648, +90,2017-03-11 14:43:29.525317,827,870,123, +33,2017-03-11 14:43:29.525317,536,180,421, +84,2017-03-11 14:43:29.525317,981,665,968, +96,2017-03-11 14:43:29.525317,794,847,860, +32,2017-03-11 14:43:29.525317,381,89,252, +17,2017-03-11 14:43:29.525317,802,543,557, +4,2017-03-11 14:43:29.525317,874,334,137, +52,2017-03-11 14:43:29.525317,43,786,426, +87,2017-03-11 14:43:29.525317,656,549,197, +19,2017-03-11 14:43:29.525317,729,618,36, +71,2017-03-11 14:43:29.525317,283,4,669, +8,2017-03-11 14:43:29.525317,851,529,392, +23,2017-03-11 14:43:29.525317,618,644,402, +42,2017-03-11 14:43:29.525317,187,959,459, +6,2017-03-11 14:43:29.525317,293,597,586, +34,2017-03-11 14:43:29.525317,382,12,207, +4,2017-03-11 14:43:29.525317,562,404,229, +29,2017-03-11 14:43:29.525317,21,266,0, +30,2017-03-11 14:43:29.525317,270,669,381, +12,2017-03-11 14:43:29.525317,198,773,353, +82,2017-03-11 14:43:29.525317,417,755,236, +60,2017-03-11 14:43:29.525317,714,695,665, +1,2017-03-11 14:43:29.525317,291,251,343, +67,2017-03-11 14:43:29.525317,263,550,711, +83,2017-03-11 14:43:29.525317,953,941,116, +97,2017-03-11 14:43:29.525317,207,116,279, +48,2017-03-11 14:43:29.525317,785,659,597, +98,2017-03-11 14:43:29.525317,432,951,800, +85,2017-03-11 14:43:29.525317,706,36,453, +42,2017-03-11 14:43:29.525317,730,118,427, +2,2017-03-11 14:43:29.525317,369,770,695, +63,2017-03-11 14:43:29.525317,319,407,457, +27,2017-03-11 14:43:29.525317,348,573,247, +55,2017-03-11 14:43:29.525317,689,526,31, +47,2017-03-11 14:43:29.525317,185,628,458, +62,2017-03-11 14:43:29.525317,579,258,466, +28,2017-03-11 14:43:29.525317,294,919,705, +2,2017-03-11 14:43:29.525317,36,131,46, +41,2017-03-11 14:43:29.525317,901,741,37, +22,2017-03-11 14:43:29.525317,148,494,493, +50,2017-03-11 14:43:29.525317,67,740,50, +76,2017-03-11 14:43:29.525317,266,81,231, +45,2017-03-11 14:43:29.525317,709,689,68, +29,2017-03-11 14:43:29.525317,947,534,573, +24,2017-03-11 14:43:29.525317,452,277,265, +49,2017-03-11 14:43:29.525317,408,311,894, +31,2017-03-11 14:43:29.525317,52,931,530, +20,2017-03-11 14:43:29.525317,426,23,695, +49,2017-03-11 14:43:29.525317,763,745,250, +3,2017-03-11 14:43:29.525317,826,481,479, +54,2017-03-11 14:43:29.525317,170,547,823, +12,2017-03-11 14:43:29.525317,81,395,359, +53,2017-03-11 14:43:29.525317,673,624,22, +8,2017-03-11 14:43:29.525317,935,916,391, +99,2017-03-11 14:43:29.525317,847,921,187, +27,2017-03-11 14:43:29.525317,943,882,766, +71,2017-03-11 14:43:29.525317,627,15,734, +45,2017-03-11 14:43:29.525317,496,213,988, +67,2017-03-11 14:43:29.525317,760,811,784, +84,2017-03-11 14:43:29.525317,207,142,375, +88,2017-03-11 14:43:29.525317,766,397,960, +70,2017-03-11 14:43:29.525317,313,351,688, +16,2017-03-11 14:43:29.525317,272,874,432, +21,2017-03-11 14:43:29.525317,756,198,921, +38,2017-03-11 14:43:29.525317,213,655,837, +71,2017-03-11 14:43:29.525317,868,825,375, +63,2017-03-11 14:43:29.525317,637,159,470, +84,2017-03-11 14:43:29.525317,301,845,723, +7,2017-03-11 14:43:29.525317,241,683,768, +55,2017-03-11 14:43:29.525317,34,456,714, +31,2017-03-11 14:43:29.525317,331,146,521, +9,2017-03-11 14:43:29.525317,344,441,471, +56,2017-03-11 14:43:29.525317,96,308,267, +96,2017-03-11 14:43:29.525317,133,642,593, +77,2017-03-11 14:43:29.525317,801,63,613, +10,2017-03-11 14:43:29.525317,908,336,170, +15,2017-03-11 14:43:29.525317,19,938,703, +5,2017-03-11 14:43:29.525317,394,417,359, +73,2017-03-11 14:43:29.525317,564,880,812, +91,2017-03-11 14:43:29.525317,321,283,465, +42,2017-03-11 14:43:29.525317,590,732,382, +72,2017-03-11 14:43:29.525317,374,976,493, +18,2017-03-11 14:43:29.525317,39,106,278, +95,2017-03-11 14:43:29.525317,442,448,96, +46,2017-03-11 14:43:29.525317,386,799,514, +78,2017-03-11 14:43:29.525317,217,873,505, +78,2017-03-11 14:43:29.525317,753,317,688, +7,2017-03-11 14:43:29.525317,600,154,492, +19,2017-03-11 14:43:29.525317,886,874,914, +26,2017-03-11 14:43:29.525317,850,406,436, +89,2017-03-11 14:43:29.525317,512,714,836, +95,2017-03-11 14:43:29.525317,161,932,415, +55,2017-03-11 14:43:29.525317,732,929,327, +95,2017-03-11 14:43:29.525317,802,833,729, +55,2017-03-11 14:43:29.525317,150,417,629, +75,2017-03-11 14:43:29.525317,570,121,940, +46,2017-03-11 14:43:29.525317,996,854,716, +85,2017-03-11 14:43:29.525317,260,152,735, +77,2017-03-11 14:43:29.525317,866,571,727, +3,2017-03-11 14:43:29.525317,503,142,574, +23,2017-03-11 14:43:29.525317,70,901,182, +87,2017-03-11 14:43:29.525317,733,911,427, +88,2017-03-11 14:43:29.525317,328,57,634, +90,2017-03-11 14:43:29.525317,178,574,354, +17,2017-03-11 14:43:29.525317,428,70,19, +69,2017-03-11 14:43:29.525317,222,754,461, +9,2017-03-11 14:43:29.525317,324,188,115, +83,2017-03-11 14:43:29.525317,330,688,61, +40,2017-03-11 14:43:29.525317,589,243,273, +32,2017-03-11 14:43:29.525317,154,700,206, +48,2017-03-11 14:43:29.525317,757,840,380, +93,2017-03-11 14:43:29.525317,414,734,108, +84,2017-03-11 14:43:29.525317,804,126,530, +3,2017-03-11 14:43:29.525317,880,991,115, +20,2017-03-11 14:43:29.525317,179,229,31, +51,2017-03-11 14:43:29.525317,917,92,909, +51,2017-03-11 14:43:29.525317,336,182,829, +49,2017-03-11 14:43:29.525317,882,35,972, +64,2017-03-11 14:43:29.525317,875,352,572, +29,2017-03-11 14:43:29.525317,86,680,130, +89,2017-03-11 14:43:29.525317,806,660,917, +69,2017-03-11 14:43:29.525317,652,31,891, +83,2017-03-11 14:43:29.525317,261,922,340, +18,2017-03-11 14:43:29.525317,14,249,685, +35,2017-03-11 14:43:29.525317,430,514,840, +31,2017-03-11 14:43:29.525317,549,812,950, +42,2017-03-11 14:43:29.525317,164,522,712, +25,2017-03-11 14:43:29.525317,202,843,140, +1,2017-03-11 14:43:29.525317,503,57,695, +15,2017-03-11 14:43:29.525317,88,585,986, +35,2017-03-11 14:43:29.525317,507,325,527, +52,2017-03-11 14:43:29.525317,574,212,872, +0,2017-03-11 14:43:29.525317,725,712,316, +27,2017-03-11 14:43:29.525317,524,266,698, +69,2017-03-11 14:43:29.525317,788,410,937, +99,2017-03-11 14:43:29.525317,253,77,998, +76,2017-03-11 14:43:29.525317,134,693,910, +22,2017-03-11 14:43:29.525317,278,896,571, +79,2017-03-11 14:43:29.525317,221,98,307, +80,2017-03-11 14:43:29.525317,309,179,800, +3,2017-03-11 14:43:29.525317,891,116,309, +41,2017-03-11 14:43:29.525317,382,7,102, +17,2017-03-11 14:43:29.525317,417,39,160, +67,2017-03-11 14:43:29.525317,116,158,426, +25,2017-03-11 14:43:29.525317,851,336,473, +13,2017-03-11 14:43:29.525317,232,43,915, +45,2017-03-11 14:43:29.525317,141,222,249, +45,2017-03-11 14:43:29.525317,401,48,485, +29,2017-03-11 14:43:29.525317,164,794,706, +55,2017-03-11 14:43:29.525317,801,808,715, +22,2017-03-11 14:43:29.525317,847,875,889, +96,2017-03-11 14:43:29.525317,32,315,214, +88,2017-03-11 14:43:29.525317,651,686,12, +88,2017-03-11 14:43:29.525317,730,927,337, +87,2017-03-11 14:43:29.525317,149,586,322, +55,2017-03-11 14:43:29.525317,635,807,842, +80,2017-03-11 14:43:29.525317,601,549,344, +40,2017-03-11 14:43:29.525317,357,59,621, +20,2017-03-11 14:43:29.525317,934,510,167, +97,2017-03-11 14:43:29.525317,825,381,849, +48,2017-03-11 14:43:29.525317,67,861,360, +80,2017-03-11 14:43:29.525317,788,698,668, +94,2017-03-11 14:43:29.525317,284,989,487, +92,2017-03-11 14:43:29.525317,796,330,718, +40,2017-03-11 14:43:29.525317,878,62,800, +23,2017-03-11 14:43:29.525317,121,422,439, +6,2017-03-11 14:43:29.525317,932,606,22, +76,2017-03-11 14:43:29.525317,986,871,233, +5,2017-03-11 14:43:29.525317,732,594,851, +52,2017-03-11 14:43:29.525317,291,518,457, +58,2017-03-11 14:43:29.525317,508,945,494, +30,2017-03-11 14:43:29.525317,275,212,702, +15,2017-03-11 14:43:29.525317,274,502,388, +39,2017-03-11 14:43:29.525317,924,826,450, +86,2017-03-11 14:43:29.525317,432,472,613, +42,2017-03-11 14:43:29.525317,343,846,472, +8,2017-03-11 14:43:29.525317,440,323,596, +73,2017-03-11 14:43:29.525317,841,53,306, +35,2017-03-11 14:43:29.525317,998,800,653, +27,2017-03-11 14:43:29.525317,12,355,425, +29,2017-03-11 14:43:29.525317,857,813,681, +78,2017-03-11 14:43:29.525317,640,131,637, +7,2017-03-11 14:43:29.525317,603,249,490, +95,2017-03-11 14:43:29.525317,95,962,21, +53,2017-03-11 14:43:29.525317,285,617,266, +13,2017-03-11 14:43:29.525317,669,572,475, +67,2017-03-11 14:43:29.525317,372,128,939, +38,2017-03-11 14:43:29.525317,483,364,670, +34,2017-03-11 14:43:29.525317,178,350,122, +82,2017-03-11 14:43:29.525317,481,759,889, +8,2017-03-11 14:43:29.525317,8,379,30, +10,2017-03-11 14:43:29.525317,341,51,638, +63,2017-03-11 14:43:29.525317,667,904,752, +34,2017-03-11 14:43:29.525317,476,226,4, +85,2017-03-11 14:43:29.525317,354,943,232, +84,2017-03-11 14:43:29.525317,308,902,178, +49,2017-03-11 14:43:29.525317,252,300,302, +73,2017-03-11 14:43:29.525317,58,191,817, +7,2017-03-11 14:43:29.525317,570,847,170, +91,2017-03-11 14:43:29.525317,898,808,536, +57,2017-03-11 14:43:29.525317,712,288,902, +19,2017-03-11 14:43:29.525317,514,906,36, +87,2017-03-11 14:43:29.525317,849,268,706, +16,2017-03-11 14:43:29.525317,170,884,642, +42,2017-03-11 14:43:29.525317,184,944,156, +24,2017-03-11 14:43:29.525317,135,973,309, +70,2017-03-11 14:43:29.525317,820,479,615, +72,2017-03-11 14:43:29.525317,287,151,284, +100,2017-03-11 14:43:29.525317,439,186,187, +95,2017-03-11 14:43:29.525317,92,223,821, +94,2017-03-11 14:43:29.525317,491,527,99, +66,2017-03-11 14:43:29.525317,411,741,83, +60,2017-03-11 14:43:29.525317,685,238,838, +82,2017-03-11 14:43:29.525317,211,147,525, +3,2017-03-11 14:43:29.525317,625,140,750, +91,2017-03-11 14:43:29.525317,291,34,911, +73,2017-03-11 14:43:29.525317,220,97,682, +31,2017-03-11 14:43:29.525317,320,503,254, +81,2017-03-11 14:43:29.525317,30,353,471, +44,2017-03-11 14:43:29.525317,93,554,36, +78,2017-03-11 14:43:29.525317,793,874,599, +0,2017-03-11 14:43:29.525317,20,124,36, +65,2017-03-11 14:43:29.525317,264,786,558, +55,2017-03-11 14:43:29.525317,820,468,285, +4,2017-03-11 14:43:29.525317,566,967,352, +89,2017-03-11 14:43:29.525317,470,606,697, +50,2017-03-11 14:43:29.525317,959,168,941, +5,2017-03-11 14:43:29.525317,722,977,830, +51,2017-03-11 14:43:29.525317,851,429,518, +87,2017-03-11 14:43:29.525317,552,554,517, +82,2017-03-11 14:43:29.525317,340,74,371, +16,2017-03-11 14:43:29.525317,543,655,199, +11,2017-03-11 14:43:29.525317,622,552,995, +9,2017-03-11 14:43:29.525317,158,691,592, +12,2017-03-11 14:43:29.525317,859,534,168, +58,2017-03-11 14:43:29.525317,511,998,95, +36,2017-03-11 14:43:29.525317,427,614,233, +98,2017-03-11 14:43:29.525317,168,750,796, +51,2017-03-11 14:43:29.525317,825,167,668, +37,2017-03-11 14:43:29.525317,822,867,476, +44,2017-03-11 14:43:29.525317,419,471,537, +58,2017-03-11 14:43:29.525317,162,129,693, +2,2017-03-11 14:43:29.525317,663,861,602, +17,2017-03-11 14:43:29.525317,859,698,535, +29,2017-03-11 14:43:29.525317,311,769,266, +48,2017-03-11 14:43:29.525317,519,62,988, +34,2017-03-11 14:43:29.525317,229,656,711, +5,2017-03-11 14:43:29.525317,523,187,496, +94,2017-03-11 14:43:29.525317,658,32,519, +82,2017-03-11 14:43:29.525317,161,211,842, +82,2017-03-11 14:43:29.525317,72,444,997, +93,2017-03-11 14:43:29.525317,141,533,218, +45,2017-03-11 14:43:29.525317,301,484,933, +82,2017-03-11 14:43:29.525317,546,920,163, +78,2017-03-11 14:43:29.525317,576,874,827, +10,2017-03-11 14:43:29.525317,61,322,42, +72,2017-03-11 14:43:29.525317,354,561,540, +52,2017-03-11 14:43:29.525317,772,381,339, +84,2017-03-11 14:43:29.525317,825,336,776, +97,2017-03-11 14:43:29.525317,869,993,420, +17,2017-03-11 14:43:29.525317,478,352,990, +2,2017-03-11 14:43:29.525317,273,154,799, +85,2017-03-11 14:43:29.525317,28,626,949, +9,2017-03-11 14:43:29.525317,948,991,808, +30,2017-03-11 14:43:29.525317,551,348,818, +32,2017-03-11 14:43:29.525317,730,157,168, +55,2017-03-11 14:43:29.525317,494,943,522, +36,2017-03-11 14:43:29.525317,937,942,533, +41,2017-03-11 14:43:29.525317,294,523,438, +57,2017-03-11 14:43:29.525317,677,238,416, +70,2017-03-11 14:43:29.525317,864,364,793, +81,2017-03-11 14:43:29.525317,355,602,114, +91,2017-03-11 14:43:29.525317,950,932,229, +68,2017-03-11 14:43:29.525317,89,397,234, +58,2017-03-11 14:43:29.525317,340,756,945, +28,2017-03-11 14:43:29.525317,698,478,691, +99,2017-03-11 14:43:29.525317,1,129,558, +68,2017-03-11 14:43:29.525317,367,974,382, +23,2017-03-11 14:43:29.525317,338,176,42, +69,2017-03-11 14:43:29.525317,778,156,599, +73,2017-03-11 14:43:29.525317,88,829,407, +18,2017-03-11 14:43:29.525317,226,642,759, +57,2017-03-11 14:43:29.525317,398,704,842, +10,2017-03-11 14:43:29.525317,182,533,87, +18,2017-03-11 14:43:29.525317,662,646,861, +3,2017-03-11 14:43:29.525317,620,243,260, +96,2017-03-11 14:43:29.525317,419,303,651, +20,2017-03-11 14:43:29.525317,459,251,924, +55,2017-03-11 14:43:29.525317,79,331,724, +30,2017-03-11 14:43:29.525317,973,484,870, +37,2017-03-11 14:43:29.525317,188,713,466, +37,2017-03-11 14:43:29.525317,246,553,553, +91,2017-03-11 14:43:29.525317,199,414,937, +82,2017-03-11 14:43:29.525317,657,197,777, +8,2017-03-11 14:43:29.525317,500,428,273, +96,2017-03-11 14:43:29.525317,679,197,506, +76,2017-03-11 14:43:29.525317,528,231,63, +50,2017-03-11 14:43:29.525317,715,934,872, +90,2017-03-11 14:43:29.525317,646,338,273, +89,2017-03-11 14:43:29.525317,891,826,800, +9,2017-03-11 14:43:29.525317,240,737,909, +90,2017-03-11 14:43:29.525317,934,685,973, +43,2017-03-11 14:43:29.525317,113,245,393, +79,2017-03-11 14:43:29.525317,442,900,550, +97,2017-03-11 14:43:29.525317,131,613,471, +85,2017-03-11 14:43:29.525317,546,342,748, +19,2017-03-11 14:43:29.525317,680,20,84, +57,2017-03-11 14:43:29.525317,846,884,661, +9,2017-03-11 14:43:29.525317,621,570,982, +55,2017-03-11 14:43:29.525317,255,955,989, +37,2017-03-11 14:43:29.525317,200,382,160, +64,2017-03-11 14:43:29.525317,282,710,612, +41,2017-03-11 14:43:29.525317,322,83,258, +87,2017-03-11 14:43:29.525317,425,6,61, +11,2017-03-11 14:43:29.525317,26,145,677, +87,2017-03-11 14:43:29.525317,29,338,957, +65,2017-03-11 14:43:29.525317,908,939,204, +16,2017-03-11 14:43:29.525317,893,193,532, +9,2017-03-11 14:43:29.525317,576,691,735, +86,2017-03-11 14:43:29.525317,401,347,271, +72,2017-03-11 14:43:29.525317,430,529,592, +85,2017-03-11 14:43:29.525317,534,653,960, +56,2017-03-11 14:43:29.525317,798,637,431, +83,2017-03-11 14:43:29.525317,975,388,476, +88,2017-03-11 14:43:29.525317,327,680,47, +22,2017-03-11 14:43:29.525317,874,579,313, +45,2017-03-11 14:43:29.525317,270,49,308, +67,2017-03-11 14:43:29.525317,396,579,395, +83,2017-03-11 14:43:29.525317,107,987,680, +64,2017-03-11 14:43:29.525317,640,641,202, +44,2017-03-11 14:43:29.525317,278,633,265, +25,2017-03-11 14:43:29.525317,21,741,136, +35,2017-03-11 14:43:29.525317,422,183,568, +30,2017-03-11 14:43:29.525317,762,881,745, +3,2017-03-11 14:43:29.525317,930,53,703, +33,2017-03-11 14:43:29.525317,631,98,151, +74,2017-03-11 14:43:29.525317,84,831,380, +72,2017-03-11 14:43:29.525317,472,582,162, +75,2017-03-11 14:43:29.525317,215,427,2, +24,2017-03-11 14:43:29.525317,168,138,584, +59,2017-03-11 14:43:29.525317,322,151,886, +8,2017-03-11 14:43:29.525317,33,631,116, +96,2017-03-11 14:43:29.525317,684,819,289, +31,2017-03-11 14:43:29.525317,917,440,54, +0,2017-03-11 14:43:29.525317,271,434,725, +74,2017-03-11 14:43:29.525317,16,887,492, +23,2017-03-11 14:43:29.525317,314,494,466, +48,2017-03-11 14:43:29.525317,633,50,72, +95,2017-03-11 14:43:29.525317,201,958,38, +23,2017-03-11 14:43:29.525317,589,154,197, +27,2017-03-11 14:43:29.525317,973,486,587, +89,2017-03-11 14:43:29.525317,925,641,892, +20,2017-03-11 14:43:29.525317,75,617,939, +9,2017-03-11 14:43:29.525317,504,431,321, +82,2017-03-11 14:43:29.525317,926,787,301, +56,2017-03-11 14:43:29.525317,837,374,513, +4,2017-03-11 14:43:29.525317,332,552,273, +92,2017-03-11 14:43:29.525317,706,470,192, +68,2017-03-11 14:43:29.525317,955,780,570, +88,2017-03-11 14:43:29.525317,420,461,77, +49,2017-03-11 14:43:29.525317,78,16,585, +58,2017-03-11 14:43:29.525317,447,906,401, +37,2017-03-11 14:43:29.525317,694,702,931, +53,2017-03-11 14:43:29.525317,76,445,570, +41,2017-03-11 14:43:29.525317,997,843,328, +70,2017-03-11 14:43:29.525317,313,520,382, +27,2017-03-11 14:43:29.525317,300,952,149, +72,2017-03-11 14:43:29.525317,413,226,215, +49,2017-03-11 14:43:29.525317,241,800,74, +69,2017-03-11 14:43:29.525317,707,476,61, +40,2017-03-11 14:43:29.525317,178,993,932, +25,2017-03-11 14:43:29.525317,438,502,662, +43,2017-03-11 14:43:29.525317,345,990,137, +66,2017-03-11 14:43:29.525317,510,519,926, +81,2017-03-11 14:43:29.525317,471,75,530, +88,2017-03-11 14:43:29.525317,301,745,376, +54,2017-03-11 14:43:29.525317,546,451,231, +25,2017-03-11 14:43:29.525317,927,292,653, +10,2017-03-11 14:43:29.525317,285,585,359, +72,2017-03-11 14:43:29.525317,87,21,157, +43,2017-03-11 14:43:29.525317,10,293,90, +52,2017-03-11 14:43:29.525317,813,16,331, +28,2017-03-11 14:43:29.525317,91,861,169, +39,2017-03-11 14:43:29.525317,607,545,934, +15,2017-03-11 14:43:29.525317,996,165,405, +92,2017-03-11 14:43:29.525317,456,59,27, +74,2017-03-11 14:43:29.525317,644,386,463, +73,2017-03-11 14:43:29.525317,407,620,164, +42,2017-03-11 14:43:29.525317,913,254,938, +73,2017-03-11 14:43:29.525317,270,269,10, +36,2017-03-11 14:43:29.525317,130,179,753, +74,2017-03-11 14:43:29.525317,724,687,889, +72,2017-03-11 14:43:29.525317,852,294,642, +31,2017-03-11 14:43:29.525317,352,670,50, +100,2017-03-11 14:43:29.525317,56,513,728, +46,2017-03-11 14:43:29.525317,133,892,880, +5,2017-03-11 14:43:29.525317,146,817,772, +42,2017-03-11 14:43:29.525317,86,782,778, +22,2017-03-11 14:43:29.525317,961,532,952, +68,2017-03-11 14:43:29.525317,219,841,405, +7,2017-03-11 14:43:29.525317,135,47,380, +49,2017-03-11 14:43:29.525317,717,429,484, +77,2017-03-11 14:43:29.525317,942,212,235, +8,2017-03-11 14:43:29.525317,104,115,122, +25,2017-03-11 14:43:29.525317,932,894,666, +2,2017-03-11 14:43:29.525317,676,444,234, +64,2017-03-11 14:43:29.525317,976,186,322, +19,2017-03-11 14:43:29.525317,27,727,266, +16,2017-03-11 14:43:29.525317,774,646,649, +49,2017-03-11 14:43:29.525317,75,133,264, +2,2017-03-11 14:43:29.525317,344,499,92, +45,2017-03-11 14:43:29.525317,614,214,698, +55,2017-03-11 14:43:29.525317,108,364,565, +78,2017-03-11 14:43:29.525317,808,799,422, +78,2017-03-11 14:43:29.525317,985,744,979, +1,2017-03-11 14:43:29.525317,471,245,174, +25,2017-03-11 14:43:29.525317,890,823,737, +96,2017-03-11 14:43:29.525317,955,0,982, +30,2017-03-11 14:43:29.525317,499,74,747, +11,2017-03-11 14:43:29.525317,288,445,660, +40,2017-03-11 14:43:29.525317,809,225,181, +62,2017-03-11 14:43:29.525317,24,603,401, +1,2017-03-11 14:43:29.525317,347,379,21, +82,2017-03-11 14:43:29.525317,624,194,64, +51,2017-03-11 14:43:29.525317,17,801,479, +97,2017-03-11 14:43:29.525317,801,461,271, +30,2017-03-11 14:43:29.525317,535,19,414, +82,2017-03-11 14:43:29.525317,464,74,220, +27,2017-03-11 14:43:29.525317,298,400,890, +32,2017-03-11 14:43:29.525317,3,290,331, +35,2017-03-11 14:43:29.525317,670,352,168, +29,2017-03-11 14:43:29.525317,546,232,808, +56,2017-03-11 14:43:29.525317,33,286,535, +83,2017-03-11 14:43:29.525317,747,806,135, +28,2017-03-11 14:43:29.525317,825,549,106, +29,2017-03-11 14:43:29.525317,622,325,562, +92,2017-03-11 14:43:29.525317,725,452,243, +73,2017-03-11 14:43:29.525317,742,574,78, +41,2017-03-11 14:43:29.525317,925,246,705, +47,2017-03-11 14:43:29.525317,479,513,34, +51,2017-03-11 14:43:29.525317,799,569,346, +55,2017-03-11 14:43:29.525317,375,481,829, +20,2017-03-11 14:43:29.525317,30,934,489, +65,2017-03-11 14:43:29.525317,259,51,573, +98,2017-03-11 14:43:29.525317,503,815,712, +24,2017-03-11 14:43:29.525317,389,790,656, +31,2017-03-11 14:43:29.525317,37,361,785, +52,2017-03-11 14:43:29.525317,874,819,28, +67,2017-03-11 14:43:29.525317,387,374,220, +76,2017-03-11 14:43:29.525317,855,48,963, +88,2017-03-11 14:43:29.525317,982,452,536, +24,2017-03-11 14:43:29.525317,503,109,226, +1,2017-03-11 14:43:29.525317,924,938,250, +31,2017-03-11 14:43:29.525317,729,906,627, +77,2017-03-11 14:43:29.525317,267,412,281, +14,2017-03-11 14:43:29.525317,231,309,815, +62,2017-03-11 14:43:29.525317,682,34,381, +54,2017-03-11 14:43:29.525317,83,343,422, +7,2017-03-11 14:43:29.525317,795,958,307, +30,2017-03-11 14:43:29.525317,67,532,303, +99,2017-03-11 14:43:29.525317,471,553,305, +20,2017-03-11 14:43:29.525317,459,932,965, +73,2017-03-11 14:43:29.525317,344,246,868, +58,2017-03-11 14:43:29.525317,554,683,194, +24,2017-03-11 14:43:29.525317,718,575,774, +80,2017-03-11 14:43:29.525317,918,195,865, +71,2017-03-11 14:43:29.525317,153,172,11, +22,2017-03-11 14:43:29.525317,704,314,212, +17,2017-03-11 14:43:29.525317,868,517,374, +33,2017-03-11 14:43:29.525317,449,339,54, +79,2017-03-11 14:43:29.525317,584,922,368, +14,2017-03-11 14:43:29.525317,605,562,375, +32,2017-03-11 14:43:29.525317,137,149,123, +5,2017-03-11 14:43:29.525317,344,988,768, +50,2017-03-11 14:43:29.525317,160,778,718, +86,2017-03-11 14:43:29.525317,93,930,39, +96,2017-03-11 14:43:29.525317,447,413,287, +90,2017-03-11 14:43:29.525317,752,341,688, +34,2017-03-11 14:43:29.525317,263,56,474, +87,2017-03-11 14:43:29.525317,618,849,191, +76,2017-03-11 14:43:29.525317,998,314,810, +34,2017-03-11 14:43:29.525317,302,577,839, +46,2017-03-11 14:43:29.525317,356,557,327, +45,2017-03-11 14:43:29.525317,487,366,409, +93,2017-03-11 14:43:29.525317,779,696,829, +53,2017-03-11 14:43:29.525317,37,517,866, +30,2017-03-11 14:43:29.525317,573,340,168, +19,2017-03-11 14:43:29.525317,189,359,947, +19,2017-03-11 14:43:29.525317,673,756,529, +98,2017-03-11 14:43:29.525317,333,368,437, +69,2017-03-11 14:43:29.525317,926,764,137, +41,2017-03-11 14:43:29.525317,129,546,347, +91,2017-03-11 14:43:29.525317,242,175,438, +28,2017-03-11 14:43:29.525317,692,304,580, +27,2017-03-11 14:43:29.525317,644,748,457, +83,2017-03-11 14:43:29.525317,107,404,20, +78,2017-03-11 14:43:29.525317,160,549,755, +49,2017-03-11 14:43:29.525317,918,192,183, +84,2017-03-11 14:43:29.525317,956,320,256, +9,2017-03-11 14:43:29.525317,867,603,993, +11,2017-03-11 14:43:29.525317,778,431,388, +47,2017-03-11 14:43:29.525317,735,968,736, +38,2017-03-11 14:43:29.525317,716,193,212, +82,2017-03-11 14:43:29.525317,597,233,603, +76,2017-03-11 14:43:29.525317,782,358,252, +70,2017-03-11 14:43:29.525317,550,434,543, +51,2017-03-11 14:43:29.525317,755,800,592, +62,2017-03-11 14:43:29.525317,402,585,730, +18,2017-03-11 14:43:29.525317,16,119,651, +75,2017-03-11 14:43:29.525317,86,387,129, +80,2017-03-11 14:43:29.525317,580,342,625, +18,2017-03-11 14:43:29.525317,574,228,935, +36,2017-03-11 14:43:29.525317,586,187,56, +14,2017-03-11 14:43:29.525317,621,600,643, +38,2017-03-11 14:43:29.525317,399,234,998, +80,2017-03-11 14:43:29.525317,819,728,982, +83,2017-03-11 14:43:29.525317,846,633,585, +93,2017-03-11 14:43:29.525317,20,714,735, +60,2017-03-11 14:43:29.525317,56,360,778, +63,2017-03-11 14:43:29.525317,589,713,987, +17,2017-03-11 14:43:29.525317,900,43,311, +52,2017-03-11 14:43:29.525317,643,954,898, +4,2017-03-11 14:43:29.525317,188,896,843, +1,2017-03-11 14:43:29.525317,624,825,842, +47,2017-03-11 14:43:29.525317,458,427,403, +48,2017-03-11 14:43:29.525317,141,138,78, +20,2017-03-11 14:43:29.525317,498,856,828, +9,2017-03-11 14:43:29.525317,569,814,262, +47,2017-03-11 14:43:29.525317,857,573,992, +50,2017-03-11 14:43:29.525317,527,890,541, +72,2017-03-11 14:43:29.525317,786,385,722, +41,2017-03-11 14:43:29.525317,210,564,880, +67,2017-03-11 14:43:29.525317,991,283,147, +13,2017-03-11 14:43:29.525317,421,225,330, +92,2017-03-11 14:43:29.525317,81,157,6, +65,2017-03-11 14:43:29.525317,972,268,120, +83,2017-03-11 14:43:29.525317,841,112,328, +37,2017-03-11 14:43:29.525317,2,870,83, +79,2017-03-11 14:43:29.525317,254,805,197, +46,2017-03-11 14:43:29.525317,369,77,133, +36,2017-03-11 14:43:29.525317,359,280,493, +78,2017-03-11 14:43:29.525317,504,823,699, +59,2017-03-11 14:43:29.525317,980,705,236, +95,2017-03-11 14:43:29.525317,973,356,780, +81,2017-03-11 14:43:29.525317,468,109,181, +47,2017-03-11 14:43:29.525317,978,263,258, +23,2017-03-11 14:43:29.525317,68,455,697, +44,2017-03-11 14:43:29.525317,532,830,798, +89,2017-03-11 14:43:29.525317,110,291,671, +61,2017-03-11 14:43:29.525317,113,369,200, +9,2017-03-11 14:43:29.525317,74,435,45, +5,2017-03-11 14:43:29.525317,792,825,860, +26,2017-03-11 14:43:29.525317,934,40,730, +91,2017-03-11 14:43:29.525317,304,988,145, +37,2017-03-11 14:43:29.525317,443,842,810, +98,2017-03-11 14:43:29.525317,672,608,866, +78,2017-03-11 14:43:29.525317,898,537,397, +1,2017-03-11 14:43:29.525317,906,596,105, +98,2017-03-11 14:43:29.525317,32,149,27, +82,2017-03-11 14:43:29.525317,975,887,83, +91,2017-03-11 14:43:29.525317,928,814,820, +23,2017-03-11 14:43:29.525317,802,965,604, +25,2017-03-11 14:43:29.525317,807,413,221, +48,2017-03-11 14:43:29.525317,21,87,262, +92,2017-03-11 14:43:29.525317,624,658,930, +53,2017-03-11 14:43:29.525317,254,35,511, +29,2017-03-11 14:43:29.525317,184,538,109, +16,2017-03-11 14:43:29.525317,425,193,67, +35,2017-03-11 14:43:29.525317,6,887,585, +81,2017-03-11 14:43:29.525317,852,188,54, +66,2017-03-11 14:43:29.525317,601,275,139, +62,2017-03-11 14:43:29.525317,362,400,541, +99,2017-03-11 14:43:29.525317,59,471,516, +31,2017-03-11 14:43:29.525317,506,26,599, +69,2017-03-11 14:43:29.525317,564,709,849, +99,2017-03-11 14:43:29.525317,901,917,343, +91,2017-03-11 14:43:29.525317,804,928,716, +66,2017-03-11 14:43:29.525317,116,770,315, +72,2017-03-11 14:43:29.525317,44,454,339, +41,2017-03-11 14:43:29.525317,854,880,391, +91,2017-03-11 14:43:29.525317,351,907,226, +86,2017-03-11 14:43:29.525317,933,825,547, +50,2017-03-11 14:43:29.525317,533,396,488, +43,2017-03-11 14:43:29.525317,313,831,342, +12,2017-03-11 14:43:29.525317,758,58,773, +87,2017-03-11 14:43:29.525317,828,88,591, +87,2017-03-11 14:43:29.525317,542,930,279, +40,2017-03-11 14:43:29.525317,810,670,309, +16,2017-03-11 14:43:29.525317,577,535,17, +51,2017-03-11 14:43:29.525317,360,564,8, +89,2017-03-11 14:43:29.525317,961,496,328, +27,2017-03-11 14:43:29.525317,326,670,390, +8,2017-03-11 14:43:29.525317,729,163,959, +56,2017-03-11 14:43:29.525317,251,550,430, +79,2017-03-11 14:43:29.525317,480,709,189, +29,2017-03-11 14:43:29.525317,379,499,451, +96,2017-03-11 14:43:29.525317,33,468,467, +39,2017-03-11 14:43:29.525317,32,475,287, +99,2017-03-11 14:43:29.525317,971,615,266, +30,2017-03-11 14:43:29.525317,285,657,381, +1,2017-03-11 14:43:29.525317,820,340,571, +7,2017-03-11 14:43:29.525317,890,2,865, +37,2017-03-11 14:43:29.525317,711,54,660, +9,2017-03-11 14:43:29.525317,553,110,47, +59,2017-03-11 14:43:29.525317,578,514,979, +61,2017-03-11 14:43:29.525317,989,266,603, +96,2017-03-11 14:43:29.525317,880,870,256, +17,2017-03-11 14:43:29.525317,526,637,179, +35,2017-03-11 14:43:29.525317,977,751,418, +87,2017-03-11 14:43:29.525317,752,282,236, +46,2017-03-11 14:43:29.525317,336,896,553, +89,2017-03-11 14:43:29.525317,7,600,475, +58,2017-03-11 14:43:29.525317,113,454,195, +10,2017-03-11 14:43:29.525317,720,798,61, +60,2017-03-11 14:43:29.525317,668,317,766, +19,2017-03-11 14:43:29.525317,955,945,541, +93,2017-03-11 14:43:29.525317,696,958,799, +45,2017-03-11 14:43:29.525317,241,35,911, +58,2017-03-11 14:43:29.525317,931,464,466, +94,2017-03-11 14:43:29.525317,64,941,523, +18,2017-03-11 14:43:29.525317,396,718,279, +12,2017-03-11 14:43:29.525317,517,340,716, +18,2017-03-11 14:43:29.525317,657,481,379, +61,2017-03-11 14:43:29.525317,426,920,544, +12,2017-03-11 14:43:29.525317,878,342,570, +12,2017-03-11 14:43:29.525317,377,481,696, +31,2017-03-11 14:43:29.525317,945,163,247, +1,2017-03-11 14:43:29.525317,104,769,185, +50,2017-03-11 14:43:29.525317,487,464,615, +0,2017-03-11 14:43:29.525317,804,331,189, +46,2017-03-11 14:43:29.525317,812,568,73, +24,2017-03-11 14:43:29.525317,487,617,360, +37,2017-03-11 14:43:29.525317,959,930,485, +34,2017-03-11 14:43:29.525317,411,181,645, +36,2017-03-11 14:43:29.525317,343,892,365, +45,2017-03-11 14:43:29.525317,661,550,947, +15,2017-03-11 14:43:29.525317,14,562,153, +82,2017-03-11 14:43:29.525317,893,341,279, +70,2017-03-11 14:43:29.525317,909,352,943, +40,2017-03-11 14:43:29.525317,969,304,762, +93,2017-03-11 14:43:29.525317,234,247,265, +65,2017-03-11 14:43:29.525317,427,911,2, +77,2017-03-11 14:43:29.525317,803,367,218, +46,2017-03-11 14:43:29.525317,917,165,613, +93,2017-03-11 14:43:29.525317,727,766,749, +62,2017-03-11 14:43:29.525317,107,28,325, +2,2017-03-11 14:43:29.525317,380,268,412, +35,2017-03-11 14:43:29.525317,571,175,278, +81,2017-03-11 14:43:29.525317,421,543,451, +85,2017-03-11 14:43:29.525317,454,453,620, +26,2017-03-11 14:43:29.525317,820,838,721, +74,2017-03-11 14:43:29.525317,3,333,668, +73,2017-03-11 14:43:29.525317,99,417,350, +21,2017-03-11 14:43:29.525317,445,675,222, +82,2017-03-11 14:43:29.525317,943,634,174, +51,2017-03-11 14:43:29.525317,809,451,319, +23,2017-03-11 14:43:29.525317,994,770,79, +45,2017-03-11 14:43:29.525317,223,698,704, +4,2017-03-11 14:43:29.525317,536,425,780, +54,2017-03-11 14:43:29.525317,758,448,270, +86,2017-03-11 14:43:29.525317,865,620,63, +31,2017-03-11 14:43:29.525317,295,285,134, +24,2017-03-11 14:43:29.525317,919,308,751, +73,2017-03-11 14:43:29.525317,759,70,958, +75,2017-03-11 14:43:29.525317,841,37,201, +6,2017-03-11 14:43:29.525317,735,905,107, +27,2017-03-11 14:43:29.525317,330,888,811, +9,2017-03-11 14:43:29.525317,336,81,946, +20,2017-03-11 14:43:29.525317,701,9,511, +100,2017-03-11 14:43:29.525317,294,645,232, +21,2017-03-11 14:43:29.525317,953,983,941, +71,2017-03-11 14:43:29.525317,54,899,465, +89,2017-03-11 14:43:29.525317,936,666,958, +67,2017-03-11 14:43:29.525317,571,66,943, +90,2017-03-11 14:43:29.525317,953,754,990, +29,2017-03-11 14:43:29.525317,835,936,490, +54,2017-03-11 14:43:29.525317,945,1,531, +24,2017-03-11 14:43:29.525317,646,764,452, +60,2017-03-11 14:43:29.525317,747,393,311, +80,2017-03-11 14:43:29.525317,292,776,695, +23,2017-03-11 14:43:29.525317,442,653,899, +1,2017-03-11 14:43:29.525317,719,843,915, +67,2017-03-11 14:43:29.525317,597,905,962, +43,2017-03-11 14:43:29.525317,841,452,969, +79,2017-03-11 14:43:29.525317,453,500,24, +10,2017-03-11 14:43:29.525317,264,476,699, +1,2017-03-11 14:43:29.525317,868,10,811, +16,2017-03-11 14:43:29.525317,786,506,388, +23,2017-03-11 14:43:29.525317,159,287,242, +88,2017-03-11 14:43:29.525317,130,157,551, +73,2017-03-11 14:43:29.525317,61,513,159, +90,2017-03-11 14:43:29.525317,965,127,688, +42,2017-03-11 14:43:29.525317,627,712,518, +89,2017-03-11 14:43:29.525317,188,217,902, +6,2017-03-11 14:43:29.525317,227,713,216, +1,2017-03-11 14:43:29.525317,219,603,243, +38,2017-03-11 14:43:29.525317,890,484,256, +2,2017-03-11 14:43:29.525317,641,807,747, +70,2017-03-11 14:43:29.525317,320,905,605, +29,2017-03-11 14:43:29.525317,33,292,704, +66,2017-03-11 14:43:29.525317,4,222,551, +19,2017-03-11 14:43:29.525317,439,453,247, +67,2017-03-11 14:43:29.525317,165,463,681, +38,2017-03-11 14:43:29.525317,67,923,762, +96,2017-03-11 14:43:29.525317,408,18,977, +5,2017-03-11 14:43:29.525317,825,724,751, +15,2017-03-11 14:43:29.525317,629,356,431, +66,2017-03-11 14:43:29.525317,648,135,322, +65,2017-03-11 14:43:29.525317,357,873,844, +80,2017-03-11 14:43:29.525317,326,91,463, +49,2017-03-11 14:43:29.525317,555,144,876, +62,2017-03-11 14:43:29.525317,67,638,578, +47,2017-03-11 14:43:29.525317,656,555,523, +48,2017-03-11 14:43:29.525317,279,275,627, +91,2017-03-11 14:43:29.525317,630,58,570, +28,2017-03-11 14:43:29.525317,192,892,931, +55,2017-03-11 14:43:29.525317,766,775,345, +9,2017-03-11 14:43:29.525317,866,808,584, +42,2017-03-11 14:43:29.525317,951,459,42, +2,2017-03-11 14:43:29.525317,97,620,493, +75,2017-03-11 14:43:29.525317,175,17,234, +45,2017-03-11 14:43:29.525317,291,861,362, +92,2017-03-11 14:43:29.525317,918,932,200, +11,2017-03-11 14:43:29.525317,824,131,659, +59,2017-03-11 14:43:29.525317,906,4,682, +77,2017-03-11 14:43:29.525317,812,265,193, +76,2017-03-11 14:43:29.525317,725,234,781, +82,2017-03-11 14:43:29.525317,854,275,574, +3,2017-03-11 14:43:29.525317,291,808,484, +58,2017-03-11 14:43:29.525317,668,846,504, +59,2017-03-11 14:43:29.525317,778,704,696, +60,2017-03-11 14:43:29.525317,835,355,192, +74,2017-03-11 14:43:29.525317,359,874,513, +17,2017-03-11 14:43:29.525317,139,705,934, +86,2017-03-11 14:43:29.525317,940,715,685, +79,2017-03-11 14:43:29.525317,990,259,824, +28,2017-03-11 14:43:29.525317,66,307,863, +73,2017-03-11 14:43:29.525317,153,367,321, +93,2017-03-11 14:43:29.525317,72,17,532, +91,2017-03-11 14:43:29.525317,373,724,648, +73,2017-03-11 14:43:29.525317,598,160,903, +74,2017-03-11 14:43:29.525317,865,837,600, +81,2017-03-11 14:43:29.525317,552,286,599, +54,2017-03-11 14:43:29.525317,544,423,823, +61,2017-03-11 14:43:29.525317,730,686,345, +88,2017-03-11 14:43:29.525317,53,666,813, +13,2017-03-11 14:43:29.525317,683,345,32, +6,2017-03-11 14:43:29.525317,69,679,788, +67,2017-03-11 14:43:29.525317,839,691,403, +70,2017-03-11 14:43:29.525317,527,4,510, +8,2017-03-11 14:43:29.525317,289,109,621, +83,2017-03-11 14:43:29.525317,532,443,445, +26,2017-03-11 14:43:29.525317,129,790,145, +18,2017-03-11 14:43:29.525317,456,958,308, +14,2017-03-11 14:43:29.525317,303,339,195, +37,2017-03-11 14:43:29.525317,19,983,39, +86,2017-03-11 14:43:29.525317,674,442,563, +20,2017-03-11 14:43:29.525317,446,73,280, +74,2017-03-11 14:43:29.525317,183,900,569, +71,2017-03-11 14:43:29.525317,344,14,977, +47,2017-03-11 14:43:29.525317,804,122,656, +26,2017-03-11 14:43:29.525317,80,964,399, +38,2017-03-11 14:43:29.525317,303,595,756, +32,2017-03-11 14:43:29.525317,578,795,180, +25,2017-03-11 14:43:29.525317,237,743,453, +68,2017-03-11 14:43:29.525317,816,733,419, +100,2017-03-11 14:43:29.525317,633,988,714, +98,2017-03-11 14:43:29.525317,2,691,450, +81,2017-03-11 14:43:29.525317,813,105,66, +89,2017-03-11 14:43:29.525317,69,466,277, +37,2017-03-11 14:43:29.525317,61,33,694, +64,2017-03-11 14:43:29.525317,828,873,891, +6,2017-03-11 14:43:29.525317,616,343,748, +43,2017-03-11 14:43:29.525317,76,167,432, +71,2017-03-11 14:43:29.525317,155,145,686, +16,2017-03-11 14:43:29.525317,836,135,964, +65,2017-03-11 14:43:29.525317,241,30,543, +31,2017-03-11 14:43:29.525317,496,820,681, +56,2017-03-11 14:43:29.525317,853,375,195, +68,2017-03-11 14:43:29.525317,248,86,745, +86,2017-03-11 14:43:29.525317,430,493,297, +51,2017-03-11 14:43:29.525317,661,729,215, +82,2017-03-11 14:43:29.525317,874,900,974, +71,2017-03-11 14:43:29.525317,35,938,359, +28,2017-03-11 14:43:29.525317,968,902,585, +46,2017-03-11 14:43:29.525317,722,267,21, +57,2017-03-11 14:43:29.525317,641,216,255, +89,2017-03-11 14:43:29.525317,302,0,754, +73,2017-03-11 14:43:29.525317,493,51,238, +15,2017-03-11 14:43:29.525317,780,452,970, +65,2017-03-11 14:43:29.525317,352,944,364, +39,2017-03-11 14:43:29.525317,881,723,663, +85,2017-03-11 14:43:29.525317,625,249,313, +35,2017-03-11 14:43:29.525317,515,334,921, +16,2017-03-11 14:43:29.525317,550,176,46, +85,2017-03-11 14:43:29.525317,176,800,584, +67,2017-03-11 14:43:29.525317,852,822,823, +63,2017-03-11 14:43:29.525317,274,793,285, +63,2017-03-11 14:43:29.525317,737,649,14, +62,2017-03-11 14:43:29.525317,372,677,467, +100,2017-03-11 14:43:29.525317,926,780,344, +44,2017-03-11 14:43:29.525317,114,265,599, +66,2017-03-11 14:43:29.525317,441,645,517, +62,2017-03-11 14:43:29.525317,445,101,286, +30,2017-03-11 14:43:29.525317,923,110,928, +20,2017-03-11 14:43:29.525317,903,213,823, +64,2017-03-11 14:43:29.525317,862,837,258, +23,2017-03-11 14:43:29.525317,514,725,230, +44,2017-03-11 14:43:29.525317,505,574,882, +62,2017-03-11 14:43:29.525317,839,481,283, +28,2017-03-11 14:43:29.525317,126,800,896, +57,2017-03-11 14:43:29.525317,901,182,868, +82,2017-03-11 14:43:29.525317,292,797,21, +20,2017-03-11 14:43:29.525317,10,844,835, +87,2017-03-11 14:43:29.525317,681,93,106, +20,2017-03-11 14:43:29.525317,817,336,636, +32,2017-03-11 14:43:29.525317,910,518,942, +75,2017-03-11 14:43:29.525317,999,225,28, +12,2017-03-11 14:43:29.525317,25,924,696, +93,2017-03-11 14:43:29.525317,107,564,750, +40,2017-03-11 14:43:29.525317,361,771,594, +37,2017-03-11 14:43:29.525317,615,429,243, +30,2017-03-11 14:43:29.525317,521,349,490, +34,2017-03-11 14:43:29.525317,685,126,661, +60,2017-03-11 14:43:29.525317,644,603,344, +64,2017-03-11 14:43:29.525317,829,372,767, +85,2017-03-11 14:43:29.525317,296,463,781, +40,2017-03-11 14:43:29.525317,27,531,802, +39,2017-03-11 14:43:29.525317,302,396,759, +92,2017-03-11 14:43:29.525317,824,2,212, +35,2017-03-11 14:43:29.525317,352,702,684, +4,2017-03-11 14:43:29.525317,828,346,632, +47,2017-03-11 14:43:29.525317,949,976,115, +78,2017-03-11 14:43:29.525317,348,883,633, +64,2017-03-11 14:43:29.525317,346,414,48, +37,2017-03-11 14:43:29.525317,944,850,761, +25,2017-03-11 14:43:29.525317,246,521,163, +7,2017-03-11 14:43:29.525317,523,374,416, +87,2017-03-11 14:43:29.525317,76,100,912, +90,2017-03-11 14:43:29.525317,446,544,377, +40,2017-03-11 14:43:29.525317,520,493,174, +87,2017-03-11 14:43:29.525317,376,806,514, +72,2017-03-11 14:43:29.525317,220,562,95, +16,2017-03-11 14:43:29.525317,411,856,411, +66,2017-03-11 14:43:29.525317,377,573,727, +90,2017-03-11 14:43:29.525317,947,143,775, +2,2017-03-11 14:43:29.525317,243,687,929, +69,2017-03-11 14:43:29.525317,231,306,84, +75,2017-03-11 14:43:29.525317,799,258,620, +17,2017-03-11 14:43:29.525317,64,134,896, +28,2017-03-11 14:43:29.525317,695,991,449, +11,2017-03-11 14:43:29.525317,847,859,763, +22,2017-03-11 14:43:29.525317,432,490,125, +38,2017-03-11 14:43:29.525317,633,900,404, +88,2017-03-11 14:43:29.525317,586,332,564, +82,2017-03-11 14:43:29.525317,638,648,568, +44,2017-03-11 14:43:29.525317,906,188,611, +97,2017-03-11 14:43:29.525317,322,507,255, +2,2017-03-11 14:43:29.525317,498,703,123, +35,2017-03-11 14:43:29.525317,563,886,570, +100,2017-03-11 14:43:29.525317,376,694,375, +1,2017-03-11 14:43:29.525317,594,779,885, +18,2017-03-11 14:43:29.525317,111,449,997, +75,2017-03-11 14:43:29.525317,97,565,186, +0,2017-03-11 14:43:29.525317,753,798,974, +7,2017-03-11 14:43:29.525317,305,229,92, +80,2017-03-11 14:43:29.525317,933,215,148, +50,2017-03-11 14:43:29.525317,101,718,491, +48,2017-03-11 14:43:29.525317,412,866,487, +1,2017-03-11 14:43:29.525317,645,371,186, +76,2017-03-11 14:43:29.525317,820,184,505, +92,2017-03-11 14:43:29.525317,749,692,921, +50,2017-03-11 14:43:29.525317,489,895,578, +79,2017-03-11 14:43:29.525317,124,669,596, +6,2017-03-11 14:43:29.525317,884,744,552, +98,2017-03-11 14:43:29.525317,462,43,462, +87,2017-03-11 14:43:29.525317,909,949,880, +55,2017-03-11 14:43:29.525317,320,66,309, +14,2017-03-11 14:43:29.525317,250,814,57, +100,2017-03-11 14:43:29.525317,506,978,502, +100,2017-03-11 14:43:29.525317,873,80,789, +100,2017-03-11 14:43:29.525317,749,385,54, +63,2017-03-11 14:43:29.525317,129,607,618, +59,2017-03-11 14:43:29.525317,650,80,465, +56,2017-03-11 14:43:29.525317,29,345,112, +35,2017-03-11 14:43:29.525317,411,421,488, +66,2017-03-11 14:43:29.525317,236,545,661, +74,2017-03-11 14:43:29.525317,523,164,737, +40,2017-03-11 14:43:29.525317,244,525,393, +99,2017-03-11 14:43:29.525317,911,447,626, +4,2017-03-11 14:43:29.525317,54,244,631, +70,2017-03-11 14:43:29.525317,324,96,262, +35,2017-03-11 14:43:29.525317,441,374,701, +85,2017-03-11 14:43:29.525317,795,189,514, +3,2017-03-11 14:43:29.525317,734,175,772, +26,2017-03-11 14:43:29.525317,338,509,653, +58,2017-03-11 14:43:29.525317,34,46,575, +94,2017-03-11 14:43:29.525317,494,202,985, +55,2017-03-11 14:43:29.525317,446,616,252, +77,2017-03-11 14:43:29.525317,712,514,123, +15,2017-03-11 14:43:29.525317,888,824,6, +68,2017-03-11 14:43:29.525317,14,519,715, +75,2017-03-11 14:43:29.525317,694,487,5, +3,2017-03-11 14:43:29.525317,996,659,615, +3,2017-03-11 14:43:29.525317,705,190,976, +20,2017-03-11 14:43:29.525317,392,961,746, +84,2017-03-11 14:43:29.525317,577,998,608, +29,2017-03-11 14:43:29.525317,512,731,442, +40,2017-03-11 14:43:29.525317,555,448,85, +57,2017-03-11 14:43:29.525317,967,800,317, +66,2017-03-11 14:43:29.525317,287,322,694, +28,2017-03-11 14:43:29.525317,981,308,314, +69,2017-03-11 14:43:29.525317,498,290,884, +89,2017-03-11 14:43:29.525317,251,631,728, +83,2017-03-11 14:43:29.525317,629,336,116, +14,2017-03-11 14:43:29.525317,67,558,542, +62,2017-03-11 14:43:29.525317,6,627,190, +97,2017-03-11 14:43:29.525317,427,507,633, +71,2017-03-11 14:43:29.525317,830,327,998, +81,2017-03-11 14:43:29.525317,635,312,496, +13,2017-03-11 14:43:29.525317,602,380,24, +85,2017-03-11 14:43:29.525317,11,752,680, +64,2017-03-11 14:43:29.525317,88,797,782, +15,2017-03-11 14:43:29.525317,355,324,776, +36,2017-03-11 14:43:29.525317,951,967,333, +38,2017-03-11 14:43:29.525317,474,966,92, +30,2017-03-11 14:43:29.525317,293,90,114, +93,2017-03-11 14:43:29.525317,402,610,63, +0,2017-03-11 14:43:29.525317,991,87,858, +0,2017-03-11 14:43:29.525317,839,539,642, +93,2017-03-11 14:43:29.525317,335,424,82, +69,2017-03-11 14:43:29.525317,748,858,50, +70,2017-03-11 14:43:29.525317,825,383,78, +30,2017-03-11 14:43:29.525317,350,170,603, +64,2017-03-11 14:43:29.525317,261,717,572, +66,2017-03-11 14:43:29.525317,327,634,668, +32,2017-03-11 14:43:29.525317,721,526,320, +56,2017-03-11 14:43:29.525317,65,962,487, +40,2017-03-11 14:43:29.525317,386,568,89, +13,2017-03-11 14:43:29.525317,426,140,835, +25,2017-03-11 14:43:29.525317,523,913,550, +87,2017-03-11 14:43:29.525317,83,153,516, +34,2017-03-11 14:43:29.525317,870,88,7, +20,2017-03-11 14:43:29.525317,722,675,514, +44,2017-03-11 14:43:29.525317,201,834,3, +27,2017-03-11 14:43:29.525317,796,490,665, +18,2017-03-11 14:43:29.525317,58,755,317, +48,2017-03-11 14:43:29.525317,894,151,736, +42,2017-03-11 14:43:29.525317,64,286,290, +15,2017-03-11 14:43:29.525317,439,805,490, +31,2017-03-11 14:43:29.525317,893,497,505, +61,2017-03-11 14:43:29.525317,172,20,58, +37,2017-03-11 14:43:29.525317,854,61,638, +65,2017-03-11 14:43:29.525317,551,303,832, +61,2017-03-11 14:43:29.525317,57,149,94, +95,2017-03-11 14:43:29.525317,300,830,369, +36,2017-03-11 14:43:29.525317,116,658,511, +55,2017-03-11 14:43:29.525317,464,1,863, +36,2017-03-11 14:43:29.525317,498,369,972, +67,2017-03-11 14:43:29.525317,389,30,42, +24,2017-03-11 14:43:29.525317,91,680,892, +64,2017-03-11 14:43:29.525317,982,724,253, +4,2017-03-11 14:43:29.525317,872,347,991, +17,2017-03-11 14:43:29.525317,177,360,536, +29,2017-03-11 14:43:29.525317,19,47,847, +48,2017-03-11 14:43:29.525317,49,711,839, +55,2017-03-11 14:43:29.525317,79,811,217, +47,2017-03-11 14:43:29.525317,840,259,710, +93,2017-03-11 14:43:29.525317,938,602,575, +92,2017-03-11 14:43:29.525317,325,827,960, +20,2017-03-11 14:43:29.525317,174,952,370, +35,2017-03-11 14:43:29.525317,312,907,643, +33,2017-03-11 14:43:29.525317,954,490,813, +0,2017-03-11 14:43:29.525317,201,652,550, +28,2017-03-11 14:43:29.525317,462,766,748, +30,2017-03-11 14:43:29.525317,25,458,235, +96,2017-03-11 14:43:29.525317,60,809,884, +39,2017-03-11 14:43:29.525317,636,844,583, +81,2017-03-11 14:43:29.525317,796,953,161, +11,2017-03-11 14:43:29.525317,860,804,438, +81,2017-03-11 14:43:29.525317,294,251,816, +50,2017-03-11 14:43:29.525317,902,366,776, +36,2017-03-11 14:43:29.525317,132,524,668, +16,2017-03-11 14:43:29.525317,982,902,120, +4,2017-03-11 14:43:29.525317,711,4,427, +35,2017-03-11 14:43:29.525317,848,11,157, +64,2017-03-11 14:43:29.525317,964,318,751, +82,2017-03-11 14:43:29.525317,122,189,637, +42,2017-03-11 14:43:29.525317,440,454,912, +34,2017-03-11 14:43:29.525317,820,688,707, +95,2017-03-11 14:43:29.525317,212,375,109, +19,2017-03-11 14:43:29.525317,277,229,236, +99,2017-03-11 14:43:29.525317,233,663,335, +8,2017-03-11 14:43:29.525317,674,493,725, +64,2017-03-11 14:43:29.525317,811,477,461, +93,2017-03-11 14:43:29.525317,666,99,350, +11,2017-03-11 14:43:29.525317,553,262,449, +37,2017-03-11 14:43:29.525317,950,156,324, +16,2017-03-11 14:43:29.525317,531,433,355, +81,2017-03-11 14:43:29.525317,663,591,796, +90,2017-03-11 14:43:29.525317,254,132,977, +93,2017-03-11 14:43:29.525317,624,702,565, +44,2017-03-11 14:43:29.525317,179,27,369, +84,2017-03-11 14:43:29.525317,125,718,951, +68,2017-03-11 14:43:29.525317,980,400,50, +93,2017-03-11 14:43:29.525317,556,375,91, +9,2017-03-11 14:43:29.525317,808,446,895, +47,2017-03-11 14:43:29.525317,37,691,367, +29,2017-03-11 14:43:29.525317,822,344,218, +45,2017-03-11 14:43:29.525317,47,784,882, +23,2017-03-11 14:43:29.525317,810,251,70, +94,2017-03-11 14:43:29.525317,969,21,614, +95,2017-03-11 14:43:29.525317,421,664,879, +98,2017-03-11 14:43:29.525317,39,971,63, +85,2017-03-11 14:43:29.525317,417,958,318, +45,2017-03-11 14:43:29.525317,649,685,745, +47,2017-03-11 14:43:29.525317,29,964,917, +8,2017-03-11 14:43:29.525317,747,799,301, +56,2017-03-11 14:43:29.525317,50,372,493, +2,2017-03-11 14:43:29.525317,393,107,968, +81,2017-03-11 14:43:29.525317,771,847,791, +81,2017-03-11 14:43:29.525317,818,854,657, +24,2017-03-11 14:43:29.525317,812,975,690, +46,2017-03-11 14:43:29.525317,659,435,931, +69,2017-03-11 14:43:29.525317,399,848,764, +15,2017-03-11 14:43:29.525317,648,66,703, +70,2017-03-11 14:43:29.525317,438,196,716, +83,2017-03-11 14:43:29.525317,303,684,645, +7,2017-03-11 14:43:29.525317,531,436,884, +35,2017-03-11 14:43:29.525317,290,540,585, +10,2017-03-11 14:43:29.525317,515,275,563, +17,2017-03-11 14:43:29.525317,710,495,863, +11,2017-03-11 14:43:29.525317,343,627,254, +99,2017-03-11 14:43:29.525317,693,957,688, +13,2017-03-11 14:43:29.525317,154,404,961, +46,2017-03-11 14:43:29.525317,87,606,531, +62,2017-03-11 14:43:29.525317,42,414,968, +33,2017-03-11 14:43:29.525317,954,553,435, +47,2017-03-11 14:43:29.525317,827,998,643, +54,2017-03-11 14:43:29.525317,493,506,645, +84,2017-03-11 14:43:29.525317,133,899,827, +83,2017-03-11 14:43:29.525317,856,515,957, +1,2017-03-11 14:43:29.525317,919,918,467, +1,2017-03-11 14:43:29.525317,524,997,625, +57,2017-03-11 14:43:29.525317,412,592,899, +37,2017-03-11 14:43:29.525317,145,334,835, +97,2017-03-11 14:43:29.525317,332,479,509, +83,2017-03-11 14:43:29.525317,985,154,662, +12,2017-03-11 14:43:29.525317,53,489,945, +91,2017-03-11 14:43:29.525317,4,901,919, +92,2017-03-11 14:43:29.525317,819,386,928, +34,2017-03-11 14:43:29.525317,383,553,909, +79,2017-03-11 14:43:29.525317,145,808,161, +29,2017-03-11 14:43:29.525317,141,997,263, +47,2017-03-11 14:43:29.525317,475,772,299, +46,2017-03-11 14:43:29.525317,926,961,579, +98,2017-03-11 14:43:29.525317,450,524,888, +45,2017-03-11 14:43:29.525317,425,807,375, +24,2017-03-11 14:43:29.525317,193,303,587, +58,2017-03-11 14:43:29.525317,856,495,371, +0,2017-03-11 14:43:29.525317,303,532,292, +44,2017-03-11 14:43:29.525317,528,554,918, +0,2017-03-11 14:43:29.525317,326,217,464, +25,2017-03-11 14:43:29.525317,178,43,232, +63,2017-03-11 14:43:29.525317,567,120,81, +99,2017-03-11 14:43:29.525317,927,456,236, +12,2017-03-11 14:43:29.525317,760,822,696, +62,2017-03-11 14:43:29.525317,317,67,617, +62,2017-03-11 14:43:29.525317,599,908,65, +13,2017-03-11 14:43:29.525317,463,983,131, +79,2017-03-11 14:43:29.525317,200,596,42, +38,2017-03-11 14:43:29.525317,639,273,6, +21,2017-03-11 14:43:29.525317,393,86,198, +32,2017-03-11 14:43:29.525317,542,433,441, +30,2017-03-11 14:43:29.525317,255,137,918, +57,2017-03-11 14:43:29.525317,204,535,193, +80,2017-03-11 14:43:29.525317,443,258,930, +91,2017-03-11 14:43:29.525317,241,62,695, +44,2017-03-11 14:43:29.525317,657,737,819, +30,2017-03-11 14:43:29.525317,10,825,502, +40,2017-03-11 14:43:29.525317,911,700,724, +45,2017-03-11 14:43:29.525317,133,165,756, +39,2017-03-11 14:43:29.525317,302,674,961, +51,2017-03-11 14:43:29.525317,208,154,308, +65,2017-03-11 14:43:29.525317,412,239,557, +65,2017-03-11 14:43:29.525317,300,252,94, +96,2017-03-11 14:43:29.525317,989,914,254, +100,2017-03-11 14:43:29.525317,739,756,402, +65,2017-03-11 14:43:29.525317,455,127,104, +59,2017-03-11 14:43:29.525317,291,860,977, +59,2017-03-11 14:43:29.525317,534,938,99, +74,2017-03-11 14:43:29.525317,92,407,393, +50,2017-03-11 14:43:29.525317,645,950,157, +95,2017-03-11 14:43:29.525317,202,252,903, +19,2017-03-11 14:43:29.525317,165,157,190, +90,2017-03-11 14:43:29.525317,912,592,554, +37,2017-03-11 14:43:29.525317,719,658,956, +1,2017-03-11 14:43:29.525317,518,933,603, +5,2017-03-11 14:43:29.525317,871,702,794, +96,2017-03-11 14:43:29.525317,109,187,466, +75,2017-03-11 14:43:29.525317,137,623,700, +34,2017-03-11 14:43:29.525317,875,603,529, +4,2017-03-11 14:43:29.525317,760,719,944, +67,2017-03-11 14:43:29.525317,311,498,40, +3,2017-03-11 14:43:29.525317,156,997,40, +67,2017-03-11 14:43:29.525317,930,644,726, +80,2017-03-11 14:43:29.525317,346,519,762, +45,2017-03-11 14:43:29.525317,706,228,209, +84,2017-03-11 14:43:29.525317,852,908,181, +73,2017-03-11 14:43:29.525317,511,710,766, +27,2017-03-11 14:43:29.525317,429,710,943, +74,2017-03-11 14:43:29.525317,208,983,771, +36,2017-03-11 14:43:29.525317,980,811,38, +91,2017-03-11 14:43:29.525317,455,764,709, +80,2017-03-11 14:43:29.525317,283,472,255, +99,2017-03-11 14:43:29.525317,700,463,831, +55,2017-03-11 14:43:29.525317,372,12,278, +88,2017-03-11 14:43:29.525317,723,44,154, +15,2017-03-11 14:43:29.525317,754,97,892, +96,2017-03-11 14:43:29.525317,80,663,325, +6,2017-03-11 14:43:29.525317,474,363,969, +93,2017-03-11 14:43:29.525317,127,679,729, +41,2017-03-11 14:43:29.525317,150,984,399, +85,2017-03-11 14:43:29.525317,447,230,402, +82,2017-03-11 14:43:29.525317,243,679,701, +97,2017-03-11 14:43:29.525317,723,855,117, +48,2017-03-11 14:43:29.525317,952,9,439, +3,2017-03-11 14:43:29.525317,672,764,92, +15,2017-03-11 14:43:29.525317,128,61,75, +25,2017-03-11 14:43:29.525317,740,804,664, +89,2017-03-11 14:43:29.525317,788,63,740, +24,2017-03-11 14:43:29.525317,294,142,54, +54,2017-03-11 14:43:29.525317,821,755,501, +54,2017-03-11 14:43:29.525317,610,618,22, +56,2017-03-11 14:43:29.525317,627,461,593, +30,2017-03-11 14:43:29.525317,225,685,446, +35,2017-03-11 14:43:29.525317,746,521,607, +49,2017-03-11 14:43:29.525317,325,271,375, +11,2017-03-11 14:43:29.525317,335,115,348, +63,2017-03-11 14:43:29.525317,257,402,164, +8,2017-03-11 14:43:29.525317,157,666,623, +77,2017-03-11 14:43:29.525317,284,645,328, +91,2017-03-11 14:43:29.525317,105,921,210, +33,2017-03-11 14:43:29.525317,607,656,683, +35,2017-03-11 14:43:29.525317,177,289,838, +50,2017-03-11 14:43:29.525317,561,214,616, +90,2017-03-11 14:43:29.525317,329,964,524, +59,2017-03-11 14:43:29.525317,366,688,665, +52,2017-03-11 14:43:29.525317,354,287,290, +64,2017-03-11 14:43:29.525317,932,618,548, +4,2017-03-11 14:43:29.525317,539,758,367, +15,2017-03-11 14:43:29.525317,414,50,498, +59,2017-03-11 14:43:29.525317,339,337,94, +90,2017-03-11 14:43:29.525317,551,710,796, +88,2017-03-11 14:43:29.525317,674,319,467, +4,2017-03-11 14:43:29.525317,7,131,563, +36,2017-03-11 14:43:29.525317,419,853,998, +35,2017-03-11 14:43:29.525317,471,546,388, +1,2017-03-11 14:43:29.525317,304,755,155, +72,2017-03-11 14:43:29.525317,805,654,310, +14,2017-03-11 14:43:29.525317,991,404,44, +54,2017-03-11 14:43:29.525317,114,840,422, +79,2017-03-11 14:43:29.525317,159,888,829, +17,2017-03-11 14:43:29.525317,19,392,527, +44,2017-03-11 14:43:29.525317,245,525,789, +72,2017-03-11 14:43:29.525317,71,176,725, +38,2017-03-11 14:43:29.525317,931,881,94, +74,2017-03-11 14:43:29.525317,534,405,880, +52,2017-03-11 14:43:29.525317,809,924,66, +92,2017-03-11 14:43:29.525317,764,488,712, +92,2017-03-11 14:43:29.525317,376,540,89, +40,2017-03-11 14:43:29.525317,933,616,834, +18,2017-03-11 14:43:29.525317,141,622,894, +21,2017-03-11 14:43:29.525317,799,619,587, +73,2017-03-11 14:43:29.525317,499,681,466, +3,2017-03-11 14:43:29.525317,86,346,558, +89,2017-03-11 14:43:29.525317,270,624,818, +3,2017-03-11 14:43:29.525317,112,530,957, +49,2017-03-11 14:43:29.525317,70,45,883, +0,2017-03-11 14:43:29.525317,661,717,181, +80,2017-03-11 14:43:29.525317,339,74,13, +14,2017-03-11 14:43:29.525317,693,600,868, +19,2017-03-11 14:43:29.525317,282,335,226, +37,2017-03-11 14:43:29.525317,681,785,263, +95,2017-03-11 14:43:29.525317,409,81,986, +52,2017-03-11 14:43:29.525317,611,943,9, +68,2017-03-11 14:43:29.525317,988,893,683, +65,2017-03-11 14:43:29.525317,610,864,450, +95,2017-03-11 14:43:29.525317,938,463,88, +63,2017-03-11 14:43:29.525317,64,956,825, +35,2017-03-11 14:43:29.525317,291,51,713, +97,2017-03-11 14:43:29.525317,836,976,924, +25,2017-03-11 14:43:29.525317,57,910,766, +67,2017-03-11 14:43:29.525317,852,776,348, +84,2017-03-11 14:43:29.525317,669,31,489, +28,2017-03-11 14:43:29.525317,896,939,228, +83,2017-03-11 14:43:29.525317,402,316,466, +47,2017-03-11 14:43:29.525317,272,290,811, +56,2017-03-11 14:43:29.525317,342,524,535, +18,2017-03-11 14:43:29.525317,500,458,423, +56,2017-03-11 14:43:29.525317,368,189,225, +22,2017-03-11 14:43:29.525317,965,573,60, +63,2017-03-11 14:43:29.525317,604,549,913, +50,2017-03-11 14:43:29.525317,487,141,334, +89,2017-03-11 14:43:29.525317,456,799,355, +73,2017-03-11 14:43:29.525317,90,166,290, +43,2017-03-11 14:43:29.525317,691,825,609, +19,2017-03-11 14:43:29.525317,284,31,748, +65,2017-03-11 14:43:29.525317,221,973,872, +19,2017-03-11 14:43:29.525317,546,932,819, +15,2017-03-11 14:43:29.525317,481,732,649, +97,2017-03-11 14:43:29.525317,872,983,858, +33,2017-03-11 14:43:29.525317,782,213,56, +87,2017-03-11 14:43:29.525317,379,347,304, +7,2017-03-11 14:43:29.525317,172,913,261, +46,2017-03-11 14:43:29.525317,944,9,107, +16,2017-03-11 14:43:29.525317,982,980,350, +53,2017-03-11 14:43:29.525317,912,170,677, +39,2017-03-11 14:43:29.525317,901,327,362, +77,2017-03-11 14:43:29.525317,310,220,102, +9,2017-03-11 14:43:29.525317,432,159,964, +81,2017-03-11 14:43:29.525317,506,268,881, +68,2017-03-11 14:43:29.525317,181,141,133, +13,2017-03-11 14:43:29.525317,150,241,290, +13,2017-03-11 14:43:29.525317,220,640,660, +13,2017-03-11 14:43:29.525317,810,337,525, +71,2017-03-11 14:43:29.525317,664,887,485, +97,2017-03-11 14:43:29.525317,107,587,66, +54,2017-03-11 14:43:29.525317,746,30,351, +25,2017-03-11 14:43:29.525317,298,231,929, +48,2017-03-11 14:43:29.525317,373,63,605, +52,2017-03-11 14:43:29.525317,303,895,655, +52,2017-03-11 14:43:29.525317,535,315,656, +35,2017-03-11 14:43:29.525317,652,181,57, +32,2017-03-11 14:43:29.525317,68,542,290, +17,2017-03-11 14:43:29.525317,129,355,714, +87,2017-03-11 14:43:29.525317,385,64,126, +68,2017-03-11 14:43:29.525317,296,55,163, +67,2017-03-11 14:43:29.525317,118,767,192, +42,2017-03-11 14:43:29.525317,662,847,945, +20,2017-03-11 14:43:29.525317,162,601,542, +81,2017-03-11 14:43:29.525317,782,599,131, +85,2017-03-11 14:43:29.525317,140,421,25, +27,2017-03-11 14:43:29.525317,776,739,144, +16,2017-03-11 14:43:29.525317,803,270,844, +10,2017-03-11 14:43:29.525317,325,7,768, +44,2017-03-11 14:43:29.525317,774,959,865, +44,2017-03-11 14:43:29.525317,806,810,633, +97,2017-03-11 14:43:29.525317,411,175,783, +19,2017-03-11 14:43:29.525317,774,914,43, +91,2017-03-11 14:43:29.525317,335,68,184, +11,2017-03-11 14:43:29.525317,807,327,271, +61,2017-03-11 14:43:29.525317,597,116,710, +92,2017-03-11 14:43:29.525317,123,477,366, +90,2017-03-11 14:43:29.525317,436,230,333, +24,2017-03-11 14:43:29.525317,40,966,211, +45,2017-03-11 14:43:29.525317,141,995,643, +92,2017-03-11 14:43:29.525317,909,687,830, +24,2017-03-11 14:43:29.525317,755,14,354, +56,2017-03-11 14:43:29.525317,341,625,173, +94,2017-03-11 14:43:29.525317,741,882,861, +86,2017-03-11 14:43:29.525317,359,227,760, +80,2017-03-11 14:43:29.525317,457,93,39, +50,2017-03-11 14:43:29.525317,59,250,947, +20,2017-03-11 14:43:29.525317,245,591,116, +15,2017-03-11 14:43:29.525317,278,946,397, +3,2017-03-11 14:43:29.525317,959,750,595, +30,2017-03-11 14:43:29.525317,375,768,239, +12,2017-03-11 14:43:29.525317,650,100,979, +1,2017-03-11 14:43:29.525317,326,739,806, +78,2017-03-11 14:43:29.525317,832,844,280, +89,2017-03-11 14:43:29.525317,95,228,92, +34,2017-03-11 14:43:29.525317,818,207,493, +10,2017-03-11 14:43:29.525317,153,890,129, +11,2017-03-11 14:43:29.525317,640,724,412, +2,2017-03-11 14:43:29.525317,491,651,131, +14,2017-03-11 14:43:29.525317,751,110,151, +8,2017-03-11 14:43:29.525317,849,957,861, +68,2017-03-11 14:43:29.525317,802,141,573, +90,2017-03-11 14:43:29.525317,368,665,236, +19,2017-03-11 14:43:29.525317,872,729,283, +2,2017-03-11 14:43:29.525317,618,411,136, +26,2017-03-11 14:43:29.525317,135,549,273, +63,2017-03-11 14:43:29.525317,200,404,768, +95,2017-03-11 14:43:29.525317,514,920,28, +36,2017-03-11 14:43:29.525317,877,889,45, +68,2017-03-11 14:43:29.525317,30,619,574, +40,2017-03-11 14:43:29.525317,283,810,585, +15,2017-03-11 14:43:29.525317,539,868,179, +16,2017-03-11 14:43:29.525317,279,316,416, +41,2017-03-11 14:43:29.525317,865,689,41, +6,2017-03-11 14:43:29.525317,94,809,15, +61,2017-03-11 14:43:29.525317,729,43,971, +61,2017-03-11 14:43:29.525317,932,17,284, +96,2017-03-11 14:43:29.525317,635,858,360, +92,2017-03-11 14:43:29.525317,668,945,74, +21,2017-03-11 14:43:29.525317,812,253,365, +9,2017-03-11 14:43:29.525317,569,780,505, +43,2017-03-11 14:43:29.525317,469,546,498, +56,2017-03-11 14:43:29.525317,355,513,171, +8,2017-03-11 14:43:29.525317,556,142,689, +49,2017-03-11 14:43:29.525317,159,972,450, +79,2017-03-11 14:43:29.525317,830,810,713, +50,2017-03-11 14:43:29.525317,755,787,706, +57,2017-03-11 14:43:29.525317,40,71,658, +61,2017-03-11 14:43:29.525317,851,163,42, +32,2017-03-11 14:43:29.525317,709,540,883, +6,2017-03-11 14:43:29.525317,53,54,147, +61,2017-03-11 14:43:29.525317,196,836,97, +36,2017-03-11 14:43:29.525317,808,547,150, +64,2017-03-11 14:43:29.525317,357,863,137, +11,2017-03-11 14:43:29.525317,650,843,679, +69,2017-03-11 14:43:29.525317,914,337,298, +76,2017-03-11 14:43:29.525317,500,340,85, +21,2017-03-11 14:43:29.525317,879,968,273, +93,2017-03-11 14:43:29.525317,22,420,541, +22,2017-03-11 14:43:29.525317,256,638,574, +6,2017-03-11 14:43:29.525317,186,724,702, +54,2017-03-11 14:43:29.525317,587,839,655, +24,2017-03-11 14:43:29.525317,683,334,925, +60,2017-03-11 14:43:29.525317,671,223,361, +17,2017-03-11 14:43:29.525317,563,445,380, +44,2017-03-11 14:43:29.525317,413,653,374, +44,2017-03-11 14:43:29.525317,73,915,654, +33,2017-03-11 14:43:29.525317,553,227,393, +74,2017-03-11 14:43:29.525317,951,96,281, +54,2017-03-11 14:43:29.525317,935,936,774, +62,2017-03-11 14:43:29.525317,270,699,214, +94,2017-03-11 14:43:29.525317,922,575,111, +48,2017-03-11 14:43:29.525317,20,491,927, +43,2017-03-11 14:43:29.525317,144,301,869, +22,2017-03-11 14:43:29.525317,215,523,547, +77,2017-03-11 14:43:29.525317,750,941,506, +70,2017-03-11 14:43:29.525317,36,787,238, +97,2017-03-11 14:43:29.525317,723,12,589, +99,2017-03-11 14:43:29.525317,711,803,934, +63,2017-03-11 14:43:29.525317,378,45,118, +40,2017-03-11 14:43:29.525317,536,45,833, +68,2017-03-11 14:43:29.525317,345,702,899, +56,2017-03-11 14:43:29.525317,224,446,328, +97,2017-03-11 14:43:29.525317,386,834,675, +42,2017-03-11 14:43:29.525317,621,913,394, +34,2017-03-11 14:43:29.525317,925,983,338, +64,2017-03-11 14:43:29.525317,786,272,269, +16,2017-03-11 14:43:29.525317,317,388,563, +85,2017-03-11 14:43:29.525317,433,396,534, +78,2017-03-11 14:43:29.525317,97,432,339, +32,2017-03-11 14:43:29.525317,878,667,296, +26,2017-03-11 14:43:29.525317,501,970,687, +12,2017-03-11 14:43:29.525317,883,81,467, +81,2017-03-11 14:43:29.525317,64,806,444, +85,2017-03-11 14:43:29.525317,77,714,15, +39,2017-03-11 14:43:29.525317,101,578,247, +53,2017-03-11 14:43:29.525317,974,781,312, +7,2017-03-11 14:43:29.525317,213,651,393, +9,2017-03-11 14:43:29.525317,318,688,355, +82,2017-03-11 14:43:29.525317,659,42,942, +54,2017-03-11 14:43:29.525317,123,409,350, +19,2017-03-11 14:43:29.525317,215,795,37, +29,2017-03-11 14:43:29.525317,509,52,686, +61,2017-03-11 14:43:29.525317,630,933,144, +60,2017-03-11 14:43:29.525317,714,457,675, +93,2017-03-11 14:43:29.525317,107,67,18, +43,2017-03-11 14:43:29.525317,756,374,244, +41,2017-03-11 14:43:29.525317,416,186,956, +54,2017-03-11 14:43:29.525317,595,307,726, +81,2017-03-11 14:43:29.525317,102,763,102, +61,2017-03-11 14:43:29.525317,815,788,221, +44,2017-03-11 14:43:29.525317,722,365,48, +44,2017-03-11 14:43:29.525317,822,723,364, +93,2017-03-11 14:43:29.525317,790,382,354, +55,2017-03-11 14:43:29.525317,756,598,960, +17,2017-03-11 14:43:29.525317,784,916,711, +38,2017-03-11 14:43:29.525317,223,437,190, +32,2017-03-11 14:43:29.525317,200,292,935, +2,2017-03-11 14:43:29.525317,80,156,460, +80,2017-03-11 14:43:29.525317,521,508,238, +34,2017-03-11 14:43:29.525317,231,602,272, +2,2017-03-11 14:43:29.525317,984,626,566, +74,2017-03-11 14:43:29.525317,225,526,912, +1,2017-03-11 14:43:29.525317,443,623,389, +67,2017-03-11 14:43:29.525317,60,578,991, +26,2017-03-11 14:43:29.525317,870,926,275, +95,2017-03-11 14:43:29.525317,83,735,752, +60,2017-03-11 14:43:29.525317,243,991,947, +47,2017-03-11 14:43:29.525317,593,219,494, +58,2017-03-11 14:43:29.525317,846,61,317, +7,2017-03-11 14:43:29.525317,587,228,80, +3,2017-03-11 14:43:29.525317,851,468,696, +91,2017-03-11 14:43:29.525317,47,687,171, +92,2017-03-11 14:43:29.525317,614,446,867, +70,2017-03-11 14:43:29.525317,181,620,300, +42,2017-03-11 14:43:29.525317,611,248,898, +20,2017-03-11 14:43:29.525317,467,392,780, +31,2017-03-11 14:43:29.525317,453,97,383, +4,2017-03-11 14:43:29.525317,325,462,71, +18,2017-03-11 14:43:29.525317,931,767,87, +98,2017-03-11 14:43:29.525317,454,258,894, +7,2017-03-11 14:43:29.525317,704,762,764, +89,2017-03-11 14:43:29.525317,382,65,310, +99,2017-03-11 14:43:29.525317,312,207,196, +78,2017-03-11 14:43:29.525317,599,976,92, +5,2017-03-11 14:43:29.525317,73,474,93, +40,2017-03-11 14:43:29.525317,937,163,574, +87,2017-03-11 14:43:29.525317,930,662,845, +38,2017-03-11 14:43:29.525317,920,739,452, +62,2017-03-11 14:43:29.525317,501,217,510, +88,2017-03-11 14:43:29.525317,281,819,875, +59,2017-03-11 14:43:29.525317,26,71,373, +63,2017-03-11 14:43:29.525317,47,465,678, +12,2017-03-11 14:43:29.525317,939,771,518, +88,2017-03-11 14:43:29.525317,935,92,743, +86,2017-03-11 14:43:29.525317,754,588,249, +67,2017-03-11 14:43:29.525317,327,702,298, +83,2017-03-11 14:43:29.525317,918,807,712, +20,2017-03-11 14:43:29.525317,627,587,793, +65,2017-03-11 14:43:29.525317,658,166,279, +70,2017-03-11 14:43:29.525317,631,957,824, +57,2017-03-11 14:43:29.525317,728,342,446, +66,2017-03-11 14:43:29.525317,434,189,528, +19,2017-03-11 14:43:29.525317,777,777,861, +10,2017-03-11 14:43:29.525317,479,159,933, +40,2017-03-11 14:43:29.525317,966,645,597, +59,2017-03-11 14:43:29.525317,232,390,246, +89,2017-03-11 14:43:29.525317,557,525,594, +19,2017-03-11 14:43:29.525317,482,418,757, +21,2017-03-11 14:43:29.525317,760,203,872, +19,2017-03-11 14:43:29.525317,392,400,381, +17,2017-03-11 14:43:29.525317,177,242,274, +66,2017-03-11 14:43:29.525317,401,207,54, +37,2017-03-11 14:43:29.525317,852,651,960, +8,2017-03-11 14:43:29.525317,41,206,974, +60,2017-03-11 14:43:29.525317,730,568,785, +21,2017-03-11 14:43:29.525317,987,543,421, +75,2017-03-11 14:43:29.525317,746,294,940, +14,2017-03-11 14:43:29.525317,694,322,307, +87,2017-03-11 14:43:29.525317,564,581,528, +96,2017-03-11 14:43:29.525317,789,582,332, +64,2017-03-11 14:43:29.525317,233,292,726, +27,2017-03-11 14:43:29.525317,497,700,872, +23,2017-03-11 14:43:29.525317,268,657,439, +25,2017-03-11 14:43:29.525317,200,860,1, +95,2017-03-11 14:43:29.525317,154,941,84, +85,2017-03-11 14:43:29.525317,263,391,720, +83,2017-03-11 14:43:29.525317,973,248,792, +76,2017-03-11 14:43:29.525317,829,123,403, +6,2017-03-11 14:43:29.525317,415,128,336, +91,2017-03-11 14:43:29.525317,828,207,140, +10,2017-03-11 14:43:29.525317,864,579,350, +6,2017-03-11 14:43:29.525317,439,351,10, +59,2017-03-11 14:43:29.525317,292,94,442, +56,2017-03-11 14:43:29.525317,485,162,382, +46,2017-03-11 14:43:29.525317,409,174,219, +24,2017-03-11 14:43:29.525317,298,622,300, +71,2017-03-11 14:43:29.525317,751,636,625, +58,2017-03-11 14:43:29.525317,843,765,674, +71,2017-03-11 14:43:29.525317,344,24,772, +78,2017-03-11 14:43:29.525317,375,781,377, +67,2017-03-11 14:43:29.525317,875,818,223, +36,2017-03-11 14:43:29.525317,980,606,817, +39,2017-03-11 14:43:29.525317,780,36,628, +8,2017-03-11 14:43:29.525317,658,928,790, +41,2017-03-11 14:43:29.525317,564,415,988, +41,2017-03-11 14:43:29.525317,180,662,115, +52,2017-03-11 14:43:29.525317,686,887,307, +6,2017-03-11 14:43:29.525317,668,684,729, +54,2017-03-11 14:43:29.525317,502,953,902, +48,2017-03-11 14:43:29.525317,558,719,872, +34,2017-03-11 14:43:29.525317,756,499,416, +41,2017-03-11 14:43:29.525317,428,206,823, +99,2017-03-11 14:43:29.525317,621,810,399, +80,2017-03-11 14:43:29.525317,472,514,326, +16,2017-03-11 14:43:29.525317,401,633,220, +7,2017-03-11 14:43:29.525317,316,950,611, +82,2017-03-11 14:43:29.525317,903,513,301, +46,2017-03-11 14:43:29.525317,233,173,799, +99,2017-03-11 14:43:29.525317,672,215,402, +10,2017-03-11 14:43:29.525317,421,225,92, +4,2017-03-11 14:43:29.525317,35,491,844, +51,2017-03-11 14:43:29.525317,5,170,667, +41,2017-03-11 14:43:29.525317,802,887,475, +12,2017-03-11 14:43:29.525317,837,86,937, +74,2017-03-11 14:43:29.525317,600,238,201, +83,2017-03-11 14:43:29.525317,411,1000,820, +8,2017-03-11 14:43:29.525317,215,222,183, +64,2017-03-11 14:43:29.525317,447,274,678, +48,2017-03-11 14:43:29.525317,765,522,991, +77,2017-03-11 14:43:29.525317,692,657,177, +49,2017-03-11 14:43:29.525317,544,652,613, +38,2017-03-11 14:43:29.525317,738,550,121, +34,2017-03-11 14:43:29.525317,788,322,170, +20,2017-03-11 14:43:29.525317,321,990,282, +54,2017-03-11 14:43:29.525317,213,465,173, +66,2017-03-11 14:43:29.525317,739,851,143, +50,2017-03-11 14:43:29.525317,373,134,276, +7,2017-03-11 14:43:29.525317,791,453,559, +34,2017-03-11 14:43:29.525317,105,172,717, +84,2017-03-11 14:43:29.525317,722,838,181, +51,2017-03-11 14:43:29.525317,159,351,710, +48,2017-03-11 14:43:29.525317,341,992,17, +55,2017-03-11 14:43:29.525317,457,190,214, +20,2017-03-11 14:43:29.525317,41,358,702, +41,2017-03-11 14:43:29.525317,491,977,480, +28,2017-03-11 14:43:29.525317,430,39,618, +53,2017-03-11 14:43:29.525317,211,335,377, +93,2017-03-11 14:43:29.525317,172,558,444, +33,2017-03-11 14:43:29.525317,909,155,812, +25,2017-03-11 14:43:29.525317,147,830,805, +60,2017-03-11 14:43:29.525317,20,19,801, +6,2017-03-11 14:43:29.525317,377,503,475, +87,2017-03-11 14:43:29.525317,480,955,150, +91,2017-03-11 14:43:29.525317,994,768,444, +20,2017-03-11 14:43:29.525317,103,822,138, +28,2017-03-11 14:43:29.525317,380,583,607, +29,2017-03-11 14:43:29.525317,737,419,539, +88,2017-03-11 14:43:29.525317,249,344,489, +27,2017-03-11 14:43:29.525317,363,290,329, +74,2017-03-11 14:43:29.525317,793,804,607, +27,2017-03-11 14:43:29.525317,759,757,183, +75,2017-03-11 14:43:29.525317,525,627,957, +63,2017-03-11 14:43:29.525317,448,96,903, +83,2017-03-11 14:43:29.525317,678,510,117, +42,2017-03-11 14:43:29.525317,930,656,300, +18,2017-03-11 14:43:29.525317,999,789,447, +36,2017-03-11 14:43:29.525317,80,776,101, +87,2017-03-11 14:43:29.525317,580,708,146, +34,2017-03-11 14:43:29.525317,465,328,91, +99,2017-03-11 14:43:29.525317,955,48,619, +40,2017-03-11 14:43:29.525317,144,522,231, +82,2017-03-11 14:43:29.525317,33,347,238, +96,2017-03-11 14:43:29.525317,3,538,141, +0,2017-03-11 14:43:29.525317,328,588,364, +41,2017-03-11 14:43:29.525317,365,466,280, +95,2017-03-11 14:43:29.525317,174,425,284, +64,2017-03-11 14:43:29.525317,754,375,630, +71,2017-03-11 14:43:29.525317,423,249,111, +57,2017-03-11 14:43:29.525317,771,342,389, +80,2017-03-11 14:43:29.525317,690,627,766, +69,2017-03-11 14:43:29.525317,165,907,695, +49,2017-03-11 14:43:29.525317,496,60,900, +86,2017-03-11 14:43:29.525317,525,180,806, +70,2017-03-11 14:43:29.525317,605,90,338, +36,2017-03-11 14:43:29.525317,465,968,67, +89,2017-03-11 14:43:29.525317,216,178,455, +99,2017-03-11 14:43:29.525317,521,844,790, +21,2017-03-11 14:43:29.525317,471,557,903, +64,2017-03-11 14:43:29.525317,464,598,129, +96,2017-03-11 14:43:29.525317,658,29,820, +18,2017-03-11 14:43:29.525317,208,626,882, +81,2017-03-11 14:43:29.525317,716,220,173, +18,2017-03-11 14:43:29.525317,187,240,68, +40,2017-03-11 14:43:29.525317,418,523,390, +94,2017-03-11 14:43:29.525317,367,181,149, +84,2017-03-11 14:43:29.525317,737,52,474, +20,2017-03-11 14:43:29.525317,650,602,161, +31,2017-03-11 14:43:29.525317,631,981,491, +84,2017-03-11 14:43:29.525317,607,372,653, +32,2017-03-11 14:43:29.525317,592,826,503, +78,2017-03-11 14:43:29.525317,65,572,183, +48,2017-03-11 14:43:29.525317,95,573,422, +46,2017-03-11 14:43:29.525317,754,571,299, +49,2017-03-11 14:43:29.525317,623,773,692, +27,2017-03-11 14:43:29.525317,375,853,581, +1,2017-03-11 14:43:29.525317,834,71,845, +44,2017-03-11 14:43:29.525317,444,498,765, +4,2017-03-11 14:43:29.525317,323,268,816, +39,2017-03-11 14:43:29.525317,840,998,872, +93,2017-03-11 14:43:29.525317,571,295,397, +32,2017-03-11 14:43:29.525317,866,696,816, +49,2017-03-11 14:43:29.525317,469,508,763, +84,2017-03-11 14:43:29.525317,361,343,850, +19,2017-03-11 14:43:29.525317,415,695,636, +86,2017-03-11 14:43:29.525317,193,401,895, +52,2017-03-11 14:43:29.525317,669,710,905, +51,2017-03-11 14:43:29.525317,708,777,444, +28,2017-03-11 14:43:29.525317,72,841,605, +94,2017-03-11 14:43:29.525317,537,420,428, +1,2017-03-11 14:43:29.525317,928,191,850, +29,2017-03-11 14:43:29.525317,534,700,483, +95,2017-03-11 14:43:29.525317,394,120,808, +59,2017-03-11 14:43:29.525317,521,702,103, +19,2017-03-11 14:43:29.525317,412,8,699, +12,2017-03-11 14:43:29.525317,785,144,401, +86,2017-03-11 14:43:29.525317,984,5,796, +52,2017-03-11 14:43:29.525317,426,224,527, +35,2017-03-11 14:43:29.525317,415,377,643, +95,2017-03-11 14:43:29.525317,76,126,898, +47,2017-03-11 14:43:29.525317,246,706,57, +77,2017-03-11 14:43:29.525317,408,160,957, +82,2017-03-11 14:43:29.525317,168,656,941, +95,2017-03-11 14:43:29.525317,800,341,811, +78,2017-03-11 14:43:29.525317,347,607,305, +77,2017-03-11 14:43:29.525317,831,832,126, +25,2017-03-11 14:43:29.525317,209,769,196, +28,2017-03-11 14:43:29.525317,895,94,755, +14,2017-03-11 14:43:29.525317,799,813,907, +21,2017-03-11 14:43:29.525317,973,864,27, +14,2017-03-11 14:43:29.525317,521,968,95, +32,2017-03-11 14:43:29.525317,310,907,105, +66,2017-03-11 14:43:29.525317,514,410,429, +35,2017-03-11 14:43:29.525317,243,555,592, +45,2017-03-11 14:43:29.525317,324,787,736, +22,2017-03-11 14:43:29.525317,881,492,359, +68,2017-03-11 14:43:29.525317,305,266,888, +28,2017-03-11 14:43:29.525317,130,915,420, +65,2017-03-11 14:43:29.525317,883,515,971, +19,2017-03-11 14:43:29.525317,422,76,849, +94,2017-03-11 14:43:29.525317,487,278,281, +73,2017-03-11 14:43:29.525317,833,873,181, +16,2017-03-11 14:43:29.525317,660,917,375, +54,2017-03-11 14:43:29.525317,409,734,222, +71,2017-03-11 14:43:29.525317,1,110,992, +13,2017-03-11 14:43:29.525317,25,411,782, +91,2017-03-11 14:43:29.525317,926,753,102, +35,2017-03-11 14:43:29.525317,830,951,284, +32,2017-03-11 14:43:29.525317,229,565,46, +6,2017-03-11 14:43:29.525317,438,227,219, +10,2017-03-11 14:43:29.525317,144,595,640, +55,2017-03-11 14:43:29.525317,329,862,266, +33,2017-03-11 14:43:29.525317,972,258,460, +100,2017-03-11 14:43:29.525317,669,242,907, +60,2017-03-11 14:43:29.525317,995,9,943, +82,2017-03-11 14:43:29.525317,960,227,141, +19,2017-03-11 14:43:29.525317,792,187,252, +23,2017-03-11 14:43:29.525317,414,471,328, +56,2017-03-11 14:43:29.525317,66,968,110, +39,2017-03-11 14:43:29.525317,830,376,724, +80,2017-03-11 14:43:29.525317,634,184,800, +30,2017-03-11 14:43:29.525317,426,707,898, +42,2017-03-11 14:43:29.525317,716,842,246, +68,2017-03-11 14:43:29.525317,69,388,865, +86,2017-03-11 14:43:29.525317,575,117,90, +99,2017-03-11 14:43:29.525317,589,418,546, +65,2017-03-11 14:43:29.525317,386,656,49, +22,2017-03-11 14:43:29.525317,32,774,19, +67,2017-03-11 14:43:29.525317,958,819,969, +38,2017-03-11 14:43:29.525317,526,867,806, +24,2017-03-11 14:43:29.525317,709,52,918, +78,2017-03-11 14:43:29.525317,440,783,638, +1,2017-03-11 14:43:29.525317,900,729,3, +49,2017-03-11 14:43:29.525317,147,548,144, +53,2017-03-11 14:43:29.525317,204,193,750, +24,2017-03-11 14:43:29.525317,967,769,902, +92,2017-03-11 14:43:29.525317,588,870,309, +11,2017-03-11 14:43:29.525317,738,114,355, +45,2017-03-11 14:43:29.525317,167,273,224, +61,2017-03-11 14:43:29.525317,56,863,621, +96,2017-03-11 14:43:29.525317,591,623,446, +74,2017-03-11 14:43:29.525317,171,590,272, +38,2017-03-11 14:43:29.525317,783,22,611, +75,2017-03-11 14:43:29.525317,791,512,674, +38,2017-03-11 14:43:29.525317,383,983,492, +12,2017-03-11 14:43:29.525317,98,848,567, +26,2017-03-11 14:43:29.525317,121,792,870, +18,2017-03-11 14:43:29.525317,654,491,133, +25,2017-03-11 14:43:29.525317,114,579,984, +29,2017-03-11 14:43:29.525317,168,256,661, +95,2017-03-11 14:43:29.525317,279,272,701, +7,2017-03-11 14:43:29.525317,784,376,448, +17,2017-03-11 14:43:29.525317,359,940,288, +46,2017-03-11 14:43:29.525317,788,855,721, +91,2017-03-11 14:43:29.525317,647,591,85, +30,2017-03-11 14:43:29.525317,82,218,547, +20,2017-03-11 14:43:29.525317,797,531,482, +97,2017-03-11 14:43:29.525317,788,143,917, +7,2017-03-11 14:43:29.525317,414,618,136, +20,2017-03-11 14:43:29.525317,993,584,366, +35,2017-03-11 14:43:29.525317,524,654,808, +31,2017-03-11 14:43:29.525317,509,529,220, +16,2017-03-11 14:43:29.525317,120,305,458, +20,2017-03-11 14:43:29.525317,523,5,398, +32,2017-03-11 14:43:29.525317,536,880,285, +32,2017-03-11 14:43:29.525317,22,202,390, +44,2017-03-11 14:43:29.525317,819,526,635, +81,2017-03-11 14:43:29.525317,109,1,164, +63,2017-03-11 14:43:29.525317,655,973,945, +16,2017-03-11 14:43:29.525317,502,165,321, +62,2017-03-11 14:43:29.525317,470,778,824, +99,2017-03-11 14:43:29.525317,783,222,314, +32,2017-03-11 14:43:29.525317,101,599,643, +12,2017-03-11 14:43:29.525317,801,33,560, +62,2017-03-11 14:43:29.525317,559,196,433, +67,2017-03-11 14:43:29.525317,197,597,301, +85,2017-03-11 14:43:29.525317,570,246,17, +7,2017-03-11 14:43:29.525317,411,337,693, +88,2017-03-11 14:43:29.525317,116,517,875, +90,2017-03-11 14:43:29.525317,739,188,218, +84,2017-03-11 14:43:29.525317,787,861,964, +59,2017-03-11 14:43:29.525317,894,524,208, +45,2017-03-11 14:43:29.525317,720,640,121, +92,2017-03-11 14:43:29.525317,237,422,769, +81,2017-03-11 14:43:29.525317,668,786,879, +8,2017-03-11 14:43:29.525317,123,572,960, +24,2017-03-11 14:43:29.525317,90,835,137, +83,2017-03-11 14:43:29.525317,23,356,669, +81,2017-03-11 14:43:29.525317,217,633,398, +11,2017-03-11 14:43:29.525317,158,606,564, +88,2017-03-11 14:43:29.525317,246,685,794, +48,2017-03-11 14:43:29.525317,107,564,291, +77,2017-03-11 14:43:29.525317,349,170,853, +47,2017-03-11 14:43:29.525317,742,813,710, +83,2017-03-11 14:43:29.525317,648,848,660, +67,2017-03-11 14:43:29.525317,203,329,481, +42,2017-03-11 14:43:29.525317,963,879,531, +12,2017-03-11 14:43:29.525317,485,95,998, +73,2017-03-11 14:43:29.525317,780,792,214, +89,2017-03-11 14:43:29.525317,356,505,661, +70,2017-03-11 14:43:29.525317,674,515,177, +42,2017-03-11 14:43:29.525317,328,887,248, +98,2017-03-11 14:43:29.525317,735,909,647, +94,2017-03-11 14:43:29.525317,238,128,358, +20,2017-03-11 14:43:29.525317,7,889,321, +49,2017-03-11 14:43:29.525317,984,318,223, +76,2017-03-11 14:43:29.525317,111,437,651, +47,2017-03-11 14:43:29.525317,942,313,171, +62,2017-03-11 14:43:29.525317,827,348,33, +16,2017-03-11 14:43:29.525317,235,281,131, +97,2017-03-11 14:43:29.525317,190,778,908, +43,2017-03-11 14:43:29.525317,906,266,629, +91,2017-03-11 14:43:29.525317,155,950,406, +14,2017-03-11 14:43:29.525317,268,629,904, +38,2017-03-11 14:43:29.525317,66,555,845, +1,2017-03-11 14:43:29.525317,868,16,624, +69,2017-03-11 14:43:29.525317,364,657,850, +60,2017-03-11 14:43:29.525317,939,981,568, +13,2017-03-11 14:43:29.525317,759,476,557, +67,2017-03-11 14:43:29.525317,742,186,579, +90,2017-03-11 14:43:29.525317,135,985,37, +40,2017-03-11 14:43:29.525317,614,941,782, +68,2017-03-11 14:43:29.525317,496,627,688, +36,2017-03-11 14:43:29.525317,643,312,58, +1,2017-03-11 14:43:29.525317,969,908,605, +91,2017-03-11 14:43:29.525317,890,173,37, +65,2017-03-11 14:43:29.525317,649,594,315, +39,2017-03-11 14:43:29.525317,779,894,288, +91,2017-03-11 14:43:29.525317,879,325,318, +49,2017-03-11 14:43:29.525317,265,100,173, +76,2017-03-11 14:43:29.525317,727,860,124, +37,2017-03-11 14:43:29.525317,172,182,377, +14,2017-03-11 14:43:29.525317,91,983,50, +98,2017-03-11 14:43:29.525317,156,87,630, +81,2017-03-11 14:43:29.525317,680,945,196, +46,2017-03-11 14:43:29.525317,839,484,374, +72,2017-03-11 14:43:29.525317,809,692,211, +7,2017-03-11 14:43:29.525317,792,384,835, +52,2017-03-11 14:43:29.525317,245,959,891, +42,2017-03-11 14:43:29.525317,141,268,559, +23,2017-03-11 14:43:29.525317,251,609,212, +41,2017-03-11 14:43:29.525317,695,842,211, +38,2017-03-11 14:43:29.525317,786,407,835, +63,2017-03-11 14:43:29.525317,892,210,344, +70,2017-03-11 14:43:29.525317,902,555,774, +69,2017-03-11 14:43:29.525317,939,609,214, +18,2017-03-11 14:43:29.525317,568,104,601, +71,2017-03-11 14:43:29.525317,372,160,942, +62,2017-03-11 14:43:29.525317,769,154,30, +46,2017-03-11 14:43:29.525317,996,241,840, +78,2017-03-11 14:43:29.525317,648,676,408, +54,2017-03-11 14:43:29.525317,885,751,240, +79,2017-03-11 14:43:29.525317,306,15,481, +25,2017-03-11 14:43:29.525317,624,695,430, +19,2017-03-11 14:43:29.525317,799,31,902, +17,2017-03-11 14:43:29.525317,191,844,795, +96,2017-03-11 14:43:29.525317,998,824,424, +99,2017-03-11 14:43:29.525317,65,264,776, +71,2017-03-11 14:43:29.525317,939,184,254, +82,2017-03-11 14:43:29.525317,935,494,611, +24,2017-03-11 14:43:29.525317,508,92,487, +13,2017-03-11 14:43:29.525317,787,916,325, +59,2017-03-11 14:43:29.525317,947,227,757, +14,2017-03-11 14:43:29.525317,70,552,97, +7,2017-03-11 14:43:29.525317,376,521,62, +44,2017-03-11 14:43:29.525317,785,838,155, +72,2017-03-11 14:43:29.525317,22,409,549, +96,2017-03-11 14:43:29.525317,902,160,198, +41,2017-03-11 14:43:29.525317,252,685,543, +4,2017-03-11 14:43:29.525317,601,868,624, +55,2017-03-11 14:43:29.525317,94,382,685, +16,2017-03-11 14:43:29.525317,934,782,233, +31,2017-03-11 14:43:29.525317,303,295,752, +9,2017-03-11 14:43:29.525317,133,907,813, +16,2017-03-11 14:43:29.525317,315,362,112, +22,2017-03-11 14:43:29.525317,522,311,628, +77,2017-03-11 14:43:29.525317,995,172,813, +60,2017-03-11 14:43:29.525317,39,437,144, +13,2017-03-11 14:43:29.525317,819,830,298, +75,2017-03-11 14:43:29.525317,612,531,63, +92,2017-03-11 14:43:29.525317,826,815,4, +96,2017-03-11 14:43:29.525317,721,817,115, +4,2017-03-11 14:43:29.525317,179,227,254, +70,2017-03-11 14:43:29.525317,538,882,474, +53,2017-03-11 14:43:29.525317,54,287,130, +9,2017-03-11 14:43:29.525317,724,274,227, +54,2017-03-11 14:43:29.525317,104,526,296, +72,2017-03-11 14:43:29.525317,57,359,631, +88,2017-03-11 14:43:29.525317,174,635,842, +89,2017-03-11 14:43:29.525317,452,957,931, +63,2017-03-11 14:43:29.525317,184,185,331, +72,2017-03-11 14:43:29.525317,67,805,256, +12,2017-03-11 14:43:29.525317,92,385,215, +82,2017-03-11 14:43:29.525317,659,442,359, +76,2017-03-11 14:43:29.525317,968,655,478, +2,2017-03-11 14:43:29.525317,14,110,908, +19,2017-03-11 14:43:29.525317,745,750,83, +20,2017-03-11 14:43:29.525317,708,14,827, +89,2017-03-11 14:43:29.525317,199,158,614, +27,2017-03-11 14:43:29.525317,963,870,388, +5,2017-03-11 14:43:29.525317,255,603,871, +91,2017-03-11 14:43:29.525317,45,230,677, +1,2017-03-11 14:43:29.525317,885,155,37, +90,2017-03-11 14:43:29.525317,265,945,87, +1,2017-03-11 14:43:29.525317,695,170,206, +40,2017-03-11 14:43:29.525317,183,33,295, +38,2017-03-11 14:43:29.525317,190,909,648, +15,2017-03-11 14:43:29.525317,779,36,208, +3,2017-03-11 14:43:29.525317,639,79,948, +68,2017-03-11 14:43:29.525317,309,625,696, +19,2017-03-11 14:43:29.525317,781,734,93, +5,2017-03-11 14:43:29.525317,679,180,55, +37,2017-03-11 14:43:29.525317,350,261,777, +53,2017-03-11 14:43:29.525317,294,72,916, +48,2017-03-11 14:43:29.525317,981,564,638, +76,2017-03-11 14:43:29.525317,600,846,794, +24,2017-03-11 14:43:29.525317,925,742,923, +23,2017-03-11 14:43:29.525317,367,619,428, +15,2017-03-11 14:43:29.525317,353,521,194, +3,2017-03-11 14:43:29.525317,701,249,406, +5,2017-03-11 14:43:29.525317,510,183,585, +80,2017-03-11 14:43:29.525317,255,501,289, +24,2017-03-11 14:43:29.525317,65,927,995, +67,2017-03-11 14:43:29.525317,772,789,905, +70,2017-03-11 14:43:29.525317,531,827,931, +90,2017-03-11 14:43:29.525317,447,359,47, +80,2017-03-11 14:43:29.525317,880,241,831, +58,2017-03-11 14:43:29.525317,490,236,633, +0,2017-03-11 14:43:29.525317,419,218,805, +67,2017-03-11 14:43:29.525317,719,93,909, +78,2017-03-11 14:43:29.525317,20,904,449, +79,2017-03-11 14:43:29.525317,694,354,490, +23,2017-03-11 14:43:29.525317,181,420,124, +63,2017-03-11 14:43:29.525317,779,171,427, +66,2017-03-11 14:43:29.525317,412,258,240, +90,2017-03-11 14:43:29.525317,494,873,902, +91,2017-03-11 14:43:29.525317,91,706,586, +81,2017-03-11 14:43:29.525317,800,495,593, +82,2017-03-11 14:43:29.525317,400,42,612, +9,2017-03-11 14:43:29.525317,396,102,319, +58,2017-03-11 14:43:29.525317,523,443,206, +30,2017-03-11 14:43:29.525317,614,633,961, +3,2017-03-11 14:43:29.525317,891,201,927, +39,2017-03-11 14:43:29.525317,74,829,298, +16,2017-03-11 14:43:29.525317,535,884,974, +34,2017-03-11 14:43:29.525317,380,567,155, +78,2017-03-11 14:43:29.525317,609,768,873, +1,2017-03-11 14:43:29.525317,870,192,583, +39,2017-03-11 14:43:29.525317,635,789,694, +25,2017-03-11 14:43:29.525317,422,655,274, +31,2017-03-11 14:43:29.525317,855,201,698, +93,2017-03-11 14:43:29.525317,30,996,93, +56,2017-03-11 14:43:29.525317,881,67,900, +26,2017-03-11 14:43:29.525317,633,55,40, +24,2017-03-11 14:43:29.525317,823,914,248, +69,2017-03-11 14:43:29.525317,106,831,85, +74,2017-03-11 14:43:29.525317,620,779,990, +4,2017-03-11 14:43:29.525317,433,263,355, +29,2017-03-11 14:43:29.525317,464,53,217, +49,2017-03-11 14:43:29.525317,50,311,59, +93,2017-03-11 14:43:29.525317,377,958,191, +1,2017-03-11 14:43:29.525317,14,231,253, +84,2017-03-11 14:43:29.525317,145,501,528, +25,2017-03-11 14:43:29.525317,332,613,992, +95,2017-03-11 14:43:29.525317,392,982,994, +82,2017-03-11 14:43:29.525317,245,350,113, +71,2017-03-11 14:43:29.525317,403,331,203, +45,2017-03-11 14:43:29.525317,641,261,383, +2,2017-03-11 14:43:29.525317,220,573,30, +23,2017-03-11 14:43:29.525317,804,283,70, +95,2017-03-11 14:43:29.525317,784,598,200, +12,2017-03-11 14:43:29.525317,211,192,69, +60,2017-03-11 14:43:29.525317,173,63,428, +42,2017-03-11 14:43:29.525317,413,541,128, +82,2017-03-11 14:43:29.525317,871,330,268, +51,2017-03-11 14:43:29.525317,592,650,532, +81,2017-03-11 14:43:29.525317,224,561,45, +3,2017-03-11 14:43:29.525317,844,115,977, +63,2017-03-11 14:43:29.525317,713,177,745, +92,2017-03-11 14:43:29.525317,369,813,527, +54,2017-03-11 14:43:29.525317,876,954,960, +29,2017-03-11 14:43:29.525317,495,88,104, +37,2017-03-11 14:43:29.525317,418,372,879, +1,2017-03-11 14:43:29.525317,22,411,822, +25,2017-03-11 14:43:29.525317,972,867,274, +82,2017-03-11 14:43:29.525317,982,251,444, +69,2017-03-11 14:43:29.525317,427,189,619, +80,2017-03-11 14:43:29.525317,2,146,338, +88,2017-03-11 14:43:29.525317,100,299,166, +59,2017-03-11 14:43:29.525317,387,270,961, +81,2017-03-11 14:43:29.525317,642,841,815, +66,2017-03-11 14:43:29.525317,252,637,911, +22,2017-03-11 14:43:29.525317,505,185,40, +49,2017-03-11 14:43:29.525317,435,484,181, +86,2017-03-11 14:43:29.525317,673,800,659, +68,2017-03-11 14:43:29.525317,946,997,553, +5,2017-03-11 14:43:29.525317,296,720,641, +68,2017-03-11 14:43:29.525317,990,602,488, +63,2017-03-11 14:43:29.525317,443,303,297, +69,2017-03-11 14:43:29.525317,940,208,918, +45,2017-03-11 14:43:29.525317,392,958,932, +83,2017-03-11 14:43:29.525317,443,113,691, +12,2017-03-11 14:43:29.525317,914,350,791, +86,2017-03-11 14:43:29.525317,347,344,905, +64,2017-03-11 14:43:29.525317,64,546,325, +5,2017-03-11 14:43:29.525317,148,812,687, +59,2017-03-11 14:43:29.525317,115,984,286, +6,2017-03-11 14:43:29.525317,192,205,501, +58,2017-03-11 14:43:29.525317,163,433,412, +61,2017-03-11 14:43:29.525317,546,103,721, +46,2017-03-11 14:43:29.525317,453,512,319, +80,2017-03-11 14:43:29.525317,857,225,442, +92,2017-03-11 14:43:29.525317,771,767,976, +92,2017-03-11 14:43:29.525317,579,663,510, +69,2017-03-11 14:43:29.525317,647,796,751, +84,2017-03-11 14:43:29.525317,1,252,423, +16,2017-03-11 14:43:29.525317,685,836,769, +23,2017-03-11 14:43:29.525317,939,490,691, +39,2017-03-11 14:43:29.525317,3,10,191, +86,2017-03-11 14:43:29.525317,235,633,780, +1,2017-03-11 14:43:29.525317,400,756,924, +98,2017-03-11 14:43:29.525317,419,435,674, +7,2017-03-11 14:43:29.525317,231,425,904, +23,2017-03-11 14:43:29.525317,677,327,396, +36,2017-03-11 14:43:29.525317,163,165,592, +10,2017-03-11 14:43:29.525317,655,283,493, +66,2017-03-11 14:43:29.525317,293,684,517, +53,2017-03-11 14:43:29.525317,317,298,533, +72,2017-03-11 14:43:29.525317,54,457,696, +47,2017-03-11 14:43:29.525317,891,370,538, +12,2017-03-11 14:43:29.525317,795,442,354, +47,2017-03-11 14:43:29.525317,769,750,833, +93,2017-03-11 14:43:29.525317,914,426,34, +57,2017-03-11 14:43:29.525317,708,527,227, +0,2017-03-11 14:43:29.525317,212,744,529, +53,2017-03-11 14:43:29.525317,42,61,246, +10,2017-03-11 14:43:29.525317,518,942,568, +41,2017-03-11 14:43:29.525317,312,105,531, +11,2017-03-11 14:43:29.525317,547,885,579, +32,2017-03-11 14:43:29.525317,635,412,248, +55,2017-03-11 14:43:29.525317,837,282,118, +55,2017-03-11 14:43:29.525317,810,345,547, +2,2017-03-11 14:43:29.525317,90,76,550, +13,2017-03-11 14:43:29.525317,137,796,227, +65,2017-03-11 14:43:29.525317,738,795,64, +5,2017-03-11 14:43:29.525317,901,595,156, +45,2017-03-11 14:43:29.525317,481,735,764, +12,2017-03-11 14:43:29.525317,147,12,665, +98,2017-03-11 14:43:29.525317,295,783,530, +10,2017-03-11 14:43:29.525317,128,77,126, +22,2017-03-11 14:43:29.525317,153,677,349, +29,2017-03-11 14:43:29.525317,473,577,945, +21,2017-03-11 14:43:29.525317,372,9,260, +27,2017-03-11 14:43:29.525317,604,416,721, +8,2017-03-11 14:43:29.525317,151,485,200, +30,2017-03-11 14:43:29.525317,497,865,283, +79,2017-03-11 14:43:29.525317,648,813,896, +78,2017-03-11 14:43:29.525317,891,23,994, +4,2017-03-11 14:43:29.525317,699,343,334, +17,2017-03-11 14:43:29.525317,920,279,382, +29,2017-03-11 14:43:29.525317,288,642,565, +89,2017-03-11 14:43:29.525317,58,286,977, +21,2017-03-11 14:43:29.525317,770,178,508, +27,2017-03-11 14:43:29.525317,43,791,59, +69,2017-03-11 14:43:29.525317,604,955,467, +49,2017-03-11 14:43:29.525317,978,461,539, +68,2017-03-11 14:43:29.525317,804,872,849, +72,2017-03-11 14:43:29.525317,151,231,16, +44,2017-03-11 14:43:29.525317,874,581,332, +93,2017-03-11 14:43:29.525317,867,309,142, +64,2017-03-11 14:43:29.525317,487,650,904, +53,2017-03-11 14:43:29.525317,441,963,220, +5,2017-03-11 14:43:29.525317,918,687,540, +90,2017-03-11 14:43:29.525317,148,78,573, +95,2017-03-11 14:43:29.525317,951,422,676, +10,2017-03-11 14:43:29.525317,654,693,542, +53,2017-03-11 14:43:29.525317,274,874,460, +14,2017-03-11 14:43:29.525317,183,602,778, +67,2017-03-11 14:43:29.525317,252,682,199, +69,2017-03-11 14:43:29.525317,645,420,738, +56,2017-03-11 14:43:29.525317,107,278,459, +25,2017-03-11 14:43:29.525317,356,33,207, +31,2017-03-11 14:43:29.525317,455,883,409, +11,2017-03-11 14:43:29.525317,575,951,636, +85,2017-03-11 14:43:29.525317,825,96,990, +1,2017-03-11 14:43:29.525317,698,767,677, +95,2017-03-11 14:43:29.525317,449,876,642, +9,2017-03-11 14:43:29.525317,296,380,657, +40,2017-03-11 14:43:29.525317,658,117,657, +1,2017-03-11 14:43:29.525317,149,864,321, +60,2017-03-11 14:43:29.525317,746,730,713, +32,2017-03-11 14:43:29.525317,681,349,171, +51,2017-03-11 14:43:29.525317,445,161,513, +14,2017-03-11 14:43:29.525317,928,190,92, +38,2017-03-11 14:43:29.525317,66,734,471, +36,2017-03-11 14:43:29.525317,114,129,764, +77,2017-03-11 14:43:29.525317,245,421,786, +39,2017-03-11 14:43:29.525317,285,107,998, +3,2017-03-11 14:43:29.525317,837,711,353, +52,2017-03-11 14:43:29.525317,61,524,24, +51,2017-03-11 14:43:29.525317,685,538,649, +61,2017-03-11 14:43:29.525317,728,742,990, +79,2017-03-11 14:43:29.525317,476,461,157, +59,2017-03-11 14:43:29.525317,590,921,362, +83,2017-03-11 14:43:29.525317,342,148,229, +63,2017-03-11 14:43:29.525317,255,227,659, +9,2017-03-11 14:43:29.525317,938,12,610, +100,2017-03-11 14:43:29.525317,536,635,505, +22,2017-03-11 14:43:29.525317,173,154,834, +90,2017-03-11 14:43:29.525317,896,824,696, +37,2017-03-11 14:43:29.525317,285,852,962, +87,2017-03-11 14:43:29.525317,773,325,710, +12,2017-03-11 14:43:29.525317,473,939,743, +73,2017-03-11 14:43:29.525317,166,402,820, +10,2017-03-11 14:43:29.525317,414,431,103, +95,2017-03-11 14:43:29.525317,65,608,170, +24,2017-03-11 14:43:29.525317,763,4,139, +66,2017-03-11 14:43:29.525317,827,835,30, +11,2017-03-11 14:43:29.525317,687,993,987, +46,2017-03-11 14:43:29.525317,318,697,576, +79,2017-03-11 14:43:29.525317,635,319,519, +80,2017-03-11 14:43:29.525317,721,340,905, +13,2017-03-11 14:43:29.525317,770,9,84, +84,2017-03-11 14:43:29.525317,617,254,73, +38,2017-03-11 14:43:29.525317,258,213,38, +9,2017-03-11 14:43:29.525317,47,68,197, +73,2017-03-11 14:43:29.525317,61,184,195, +38,2017-03-11 14:43:29.525317,881,770,170, +52,2017-03-11 14:43:29.525317,89,690,317, +81,2017-03-11 14:43:29.525317,29,223,944, +80,2017-03-11 14:43:29.525317,231,28,635, +85,2017-03-11 14:43:29.525317,282,708,228, +54,2017-03-11 14:43:29.525317,921,266,625, +97,2017-03-11 14:43:29.525317,334,822,702, +40,2017-03-11 14:43:29.525317,7,897,775, +89,2017-03-11 14:43:29.525317,668,945,404, +76,2017-03-11 14:43:29.525317,635,721,567, +66,2017-03-11 14:43:29.525317,943,511,464, +17,2017-03-11 14:43:29.525317,539,99,22, +82,2017-03-11 14:43:29.525317,807,250,360, +73,2017-03-11 14:43:29.525317,516,985,697, +85,2017-03-11 14:43:29.525317,807,399,245, +81,2017-03-11 14:43:29.525317,296,20,701, +96,2017-03-11 14:43:29.525317,966,104,720, +60,2017-03-11 14:43:29.525317,825,287,265, +77,2017-03-11 14:43:29.525317,798,729,943, +34,2017-03-11 14:43:29.525317,828,965,157, +64,2017-03-11 14:43:29.525317,215,517,364, +73,2017-03-11 14:43:29.525317,501,60,581, +31,2017-03-11 14:43:29.525317,459,826,121, +76,2017-03-11 14:43:29.525317,847,822,719, +81,2017-03-11 14:43:29.525317,927,439,413, +75,2017-03-11 14:43:29.525317,726,678,520, +52,2017-03-11 14:43:29.525317,407,462,861, +23,2017-03-11 14:43:29.525317,427,18,870, +64,2017-03-11 14:43:29.525317,534,233,373, +4,2017-03-11 14:43:29.525317,293,954,344, +75,2017-03-11 14:43:29.525317,780,465,507, +63,2017-03-11 14:43:29.525317,287,226,439, +21,2017-03-11 14:43:29.525317,665,851,965, +39,2017-03-11 14:43:29.525317,529,485,915, +94,2017-03-11 14:43:29.525317,947,776,170, +37,2017-03-11 14:43:29.525317,794,40,17, +33,2017-03-11 14:43:29.525317,273,390,364, +57,2017-03-11 14:43:29.525317,344,707,319, +12,2017-03-11 14:43:29.525317,172,826,751, +46,2017-03-11 14:43:29.525317,52,190,673, +72,2017-03-11 14:43:29.525317,41,638,109, +57,2017-03-11 14:43:29.525317,124,24,506, +7,2017-03-11 14:43:29.525317,800,676,446, +59,2017-03-11 14:43:29.525317,715,463,922, +99,2017-03-11 14:43:29.525317,853,286,555, +20,2017-03-11 14:43:29.525317,993,874,321, +17,2017-03-11 14:43:29.525317,700,72,624, +75,2017-03-11 14:43:29.525317,262,297,470, +30,2017-03-11 14:43:29.525317,936,579,873, +6,2017-03-11 14:43:29.525317,603,378,130, +40,2017-03-11 14:43:29.525317,54,576,998, +77,2017-03-11 14:43:29.525317,39,920,758, +89,2017-03-11 14:43:29.525317,206,313,89, +20,2017-03-11 14:43:29.525317,187,411,364, +89,2017-03-11 14:43:29.525317,483,988,640, +74,2017-03-11 14:43:29.525317,286,110,47, +22,2017-03-11 14:43:29.525317,689,920,281, +29,2017-03-11 14:43:29.525317,298,411,696, +35,2017-03-11 14:43:29.525317,987,694,121, +3,2017-03-11 14:43:29.525317,614,879,919, +82,2017-03-11 14:43:29.525317,192,8,19, +38,2017-03-11 14:43:29.525317,419,383,266, +90,2017-03-11 14:43:29.525317,372,906,646, +66,2017-03-11 14:43:29.525317,16,694,879, +71,2017-03-11 14:43:29.525317,614,159,998, +91,2017-03-11 14:43:29.525317,570,694,264, +56,2017-03-11 14:43:29.525317,388,385,584, +0,2017-03-11 14:43:29.525317,263,503,822, +45,2017-03-11 14:43:29.525317,511,841,833, +93,2017-03-11 14:43:29.525317,224,99,831, +60,2017-03-11 14:43:29.525317,4,477,253, +2,2017-03-11 14:43:29.525317,171,132,726, +78,2017-03-11 14:43:29.525317,291,724,696, +86,2017-03-11 14:43:29.525317,418,959,419, +81,2017-03-11 14:43:29.525317,344,3,809, +61,2017-03-11 14:43:29.525317,506,631,62, +2,2017-03-11 14:43:29.525317,472,896,945, +70,2017-03-11 14:43:29.525317,995,776,292, +100,2017-03-11 14:43:29.525317,253,546,20, +42,2017-03-11 14:43:29.525317,677,745,208, +97,2017-03-11 14:43:29.525317,469,904,830, +89,2017-03-11 14:43:29.525317,864,249,694, +21,2017-03-11 14:43:29.525317,252,503,815, +76,2017-03-11 14:43:29.525317,134,877,774, +61,2017-03-11 14:43:29.525317,773,719,302, +77,2017-03-11 14:43:29.525317,495,595,767, +75,2017-03-11 14:43:29.525317,140,786,173, +82,2017-03-11 14:43:29.525317,532,381,786, +0,2017-03-11 14:43:29.525317,285,616,889, +15,2017-03-11 14:43:29.525317,865,583,356, +12,2017-03-11 14:43:29.525317,86,171,875, +22,2017-03-11 14:43:29.525317,48,649,826, +82,2017-03-11 14:43:29.525317,368,128,588, +86,2017-03-11 14:43:29.525317,723,355,612, +86,2017-03-11 14:43:29.525317,141,784,682, +67,2017-03-11 14:43:29.525317,165,468,674, +45,2017-03-11 14:43:29.525317,84,562,598, +95,2017-03-11 14:43:29.525317,145,954,67, +23,2017-03-11 14:43:29.525317,125,942,451, +17,2017-03-11 14:43:29.525317,590,277,993, +96,2017-03-11 14:43:29.525317,406,582,821, +13,2017-03-11 14:43:29.525317,936,432,993, +8,2017-03-11 14:43:29.525317,216,674,750, +38,2017-03-11 14:43:29.525317,142,424,831, +23,2017-03-11 14:43:29.525317,986,429,176, +13,2017-03-11 14:43:29.525317,383,243,363, +51,2017-03-11 14:43:29.525317,184,814,680, +77,2017-03-11 14:43:29.525317,91,673,732, +50,2017-03-11 14:43:29.525317,255,553,626, +19,2017-03-11 14:43:29.525317,985,618,269, +20,2017-03-11 14:43:29.525317,292,19,582, +43,2017-03-11 14:43:29.525317,443,413,661, +43,2017-03-11 14:43:29.525317,842,837,560, +22,2017-03-11 14:43:29.525317,79,923,733, +26,2017-03-11 14:43:29.525317,737,413,38, +83,2017-03-11 14:43:29.525317,86,770,325, +34,2017-03-11 14:43:29.525317,322,951,533, +31,2017-03-11 14:43:29.525317,569,802,508, +86,2017-03-11 14:43:29.525317,821,90,296, +26,2017-03-11 14:43:29.525317,503,957,693, +35,2017-03-11 14:43:29.525317,794,253,570, +87,2017-03-11 14:43:29.525317,176,303,137, +91,2017-03-11 14:43:29.525317,716,175,742, +80,2017-03-11 14:43:29.525317,945,67,143, +27,2017-03-11 14:43:29.525317,18,676,574, +59,2017-03-11 14:43:29.525317,478,82,449, +30,2017-03-11 14:43:29.525317,172,745,563, +68,2017-03-11 14:43:29.525317,702,256,21, +50,2017-03-11 14:43:29.525317,509,591,369, +69,2017-03-11 14:43:29.525317,894,506,599, +61,2017-03-11 14:43:29.525317,681,341,412, +63,2017-03-11 14:43:29.525317,409,555,893, +43,2017-03-11 14:43:29.525317,232,467,15, +71,2017-03-11 14:43:29.525317,549,464,9, +72,2017-03-11 14:43:29.525317,209,572,397, +91,2017-03-11 14:43:29.525317,828,418,407, +34,2017-03-11 14:43:29.525317,10,776,23, +90,2017-03-11 14:43:29.525317,282,622,514, +96,2017-03-11 14:43:29.525317,963,926,589, +37,2017-03-11 14:43:29.525317,482,482,799, +71,2017-03-11 14:43:29.525317,949,814,423, +50,2017-03-11 14:43:29.525317,277,432,219, +49,2017-03-11 14:43:29.525317,4,616,397, +83,2017-03-11 14:43:29.525317,34,803,170, +4,2017-03-11 14:43:29.525317,579,192,947, +86,2017-03-11 14:43:29.525317,814,461,825, +78,2017-03-11 14:43:29.525317,387,415,149, +87,2017-03-11 14:43:29.525317,897,949,582, +85,2017-03-11 14:43:29.525317,762,6,343, +4,2017-03-11 14:43:29.525317,438,562,525, +44,2017-03-11 14:43:29.525317,177,922,275, +21,2017-03-11 14:43:29.525317,725,444,254, +30,2017-03-11 14:43:29.525317,637,202,166, +45,2017-03-11 14:43:29.525317,663,992,228, +5,2017-03-11 14:43:29.525317,407,378,919, +30,2017-03-11 14:43:29.525317,326,501,150, +9,2017-03-11 14:43:29.525317,507,493,128, +94,2017-03-11 14:43:29.525317,55,654,387, +23,2017-03-11 14:43:29.525317,576,662,443, +30,2017-03-11 14:43:29.525317,106,698,605, +74,2017-03-11 14:43:29.525317,899,772,194, +56,2017-03-11 14:43:29.525317,764,422,612, +17,2017-03-11 14:43:29.525317,800,531,474, +13,2017-03-11 14:43:29.525317,32,624,214, +54,2017-03-11 14:43:29.525317,117,342,484, +17,2017-03-11 14:43:29.525317,996,871,403, +57,2017-03-11 14:43:29.525317,533,846,872, +64,2017-03-11 14:43:29.525317,544,478,382, +44,2017-03-11 14:43:29.525317,249,576,5, +1,2017-03-11 14:43:29.525317,998,617,184, +80,2017-03-11 14:43:29.525317,148,658,923, +18,2017-03-11 14:43:29.525317,282,137,720, +40,2017-03-11 14:43:29.525317,480,204,570, +48,2017-03-11 14:43:29.525317,75,973,47, +61,2017-03-11 14:43:29.525317,820,920,247, +36,2017-03-11 14:43:29.525317,397,628,807, +65,2017-03-11 14:43:29.525317,204,812,660, +20,2017-03-11 14:43:29.525317,430,844,999, +58,2017-03-11 14:43:29.525317,502,922,759, +78,2017-03-11 14:43:29.525317,59,479,183, +54,2017-03-11 14:43:29.525317,683,752,15, +76,2017-03-11 14:43:29.525317,726,62,365, +55,2017-03-11 14:43:29.525317,982,612,909, +38,2017-03-11 14:43:29.525317,240,716,26, +44,2017-03-11 14:43:29.525317,528,686,646, +96,2017-03-11 14:43:29.525317,530,645,536, +3,2017-03-11 14:43:29.525317,567,295,816, +63,2017-03-11 14:43:29.525317,774,998,166, +46,2017-03-11 14:43:29.525317,751,181,214, +48,2017-03-11 14:43:29.525317,243,580,21, +23,2017-03-11 14:43:29.525317,192,930,605, +43,2017-03-11 14:43:29.525317,646,631,876, +17,2017-03-11 14:43:29.525317,317,522,131, +85,2017-03-11 14:43:29.525317,168,668,878, +73,2017-03-11 14:43:29.525317,963,694,361, +74,2017-03-11 14:43:29.525317,692,527,193, +44,2017-03-11 14:43:29.525317,708,408,919, +95,2017-03-11 14:43:29.525317,987,940,177, +18,2017-03-11 14:43:29.525317,870,782,611, +52,2017-03-11 14:43:29.525317,413,487,689, +73,2017-03-11 14:43:29.525317,10,821,577, +18,2017-03-11 14:43:29.525317,488,455,912, +45,2017-03-11 14:43:29.525317,149,273,187, +84,2017-03-11 14:43:29.525317,800,381,284, +51,2017-03-11 14:43:29.525317,788,203,460, +78,2017-03-11 14:43:29.525317,143,637,955, +1,2017-03-11 14:43:29.525317,419,566,529, +83,2017-03-11 14:43:29.525317,53,218,562, +6,2017-03-11 14:43:29.525317,38,138,239, +53,2017-03-11 14:43:29.525317,593,151,977, +74,2017-03-11 14:43:29.525317,424,165,584, +22,2017-03-11 14:43:29.525317,545,868,734, +33,2017-03-11 14:43:29.525317,70,194,109, +21,2017-03-11 14:43:29.525317,831,64,227, +25,2017-03-11 14:43:29.525317,629,755,83, +68,2017-03-11 14:43:29.525317,973,645,744, +1,2017-03-11 14:43:29.525317,783,984,538, +38,2017-03-11 14:43:29.525317,135,515,119, +56,2017-03-11 14:43:29.525317,680,703,784, +22,2017-03-11 14:43:29.525317,570,518,558, +64,2017-03-11 14:43:29.525317,712,667,854, +54,2017-03-11 14:43:29.525317,731,81,794, +36,2017-03-11 14:43:29.525317,836,877,42, +81,2017-03-11 14:43:29.525317,522,786,821, +30,2017-03-11 14:43:29.525317,770,359,682, +90,2017-03-11 14:43:29.525317,874,801,464, +55,2017-03-11 14:43:29.525317,504,248,779, +7,2017-03-11 14:43:29.525317,766,337,715, +48,2017-03-11 14:43:29.525317,5,569,20, +74,2017-03-11 14:43:29.525317,650,814,96, +49,2017-03-11 14:43:29.525317,691,138,295, +21,2017-03-11 14:43:29.525317,924,116,517, +69,2017-03-11 14:43:29.525317,474,199,599, +35,2017-03-11 14:43:29.525317,0,63,902, +50,2017-03-11 14:43:29.525317,311,681,578, +8,2017-03-11 14:43:29.525317,18,293,554, +2,2017-03-11 14:43:29.525317,862,574,758, +51,2017-03-11 14:43:29.525317,388,854,998, +8,2017-03-11 14:43:29.525317,992,293,292, +92,2017-03-11 14:43:29.525317,409,809,611, +88,2017-03-11 14:43:29.525317,9,210,231, +1,2017-03-11 14:43:29.525317,273,133,513, +58,2017-03-11 14:43:29.525317,814,91,660, +83,2017-03-11 14:43:29.525317,384,214,856, +25,2017-03-11 14:43:29.525317,788,614,758, +18,2017-03-11 14:43:29.525317,468,757,256, +46,2017-03-11 14:43:29.525317,50,548,376, +46,2017-03-11 14:43:29.525317,357,987,341, +37,2017-03-11 14:43:29.525317,197,572,374, +47,2017-03-11 14:43:29.525317,706,887,52, +52,2017-03-11 14:43:29.525317,978,712,353, +36,2017-03-11 14:43:29.525317,926,208,608, +71,2017-03-11 14:43:29.525317,822,366,890, +29,2017-03-11 14:43:29.525317,123,146,750, +17,2017-03-11 14:43:29.525317,693,126,631, +5,2017-03-11 14:43:29.525317,113,972,416, +31,2017-03-11 14:43:29.525317,545,790,779, +25,2017-03-11 14:43:29.525317,676,831,770, +65,2017-03-11 14:43:29.525317,544,123,16, +47,2017-03-11 14:43:29.525317,331,623,183, +15,2017-03-11 14:43:29.525317,989,74,443, +11,2017-03-11 14:43:29.525317,219,193,284, +91,2017-03-11 14:43:29.525317,319,915,963, +43,2017-03-11 14:43:29.525317,887,378,742, +43,2017-03-11 14:43:29.525317,168,521,682, +84,2017-03-11 14:43:29.525317,352,452,498, +90,2017-03-11 14:43:29.525317,575,514,366, +91,2017-03-11 14:43:29.525317,137,549,60, +13,2017-03-11 14:43:29.525317,623,503,239, +84,2017-03-11 14:43:29.525317,695,523,754, +1,2017-03-11 14:43:29.525317,438,717,447, +32,2017-03-11 14:43:29.525317,95,189,757, +26,2017-03-11 14:43:29.525317,710,439,107, +6,2017-03-11 14:43:29.525317,891,606,958, +47,2017-03-11 14:43:29.525317,120,324,373, +26,2017-03-11 14:43:29.525317,873,432,384, +50,2017-03-11 14:43:29.525317,935,623,338, +63,2017-03-11 14:43:29.525317,145,92,645, +58,2017-03-11 14:43:29.525317,810,92,908, +90,2017-03-11 14:43:29.525317,280,665,168, +99,2017-03-11 14:43:29.525317,103,276,52, +99,2017-03-11 14:43:29.525317,881,11,461, +0,2017-03-11 14:43:29.525317,335,834,259, +21,2017-03-11 14:43:29.525317,266,643,704, +20,2017-03-11 14:43:29.525317,265,43,831, +41,2017-03-11 14:43:29.525317,135,476,994, +94,2017-03-11 14:43:29.525317,568,902,849, +85,2017-03-11 14:43:29.525317,566,18,838, +67,2017-03-11 14:43:29.525317,293,891,664, +17,2017-03-11 14:43:29.525317,901,125,176, +24,2017-03-11 14:43:29.525317,958,435,445, +22,2017-03-11 14:43:29.525317,77,149,425, +34,2017-03-11 14:43:29.525317,192,256,754, +33,2017-03-11 14:43:29.525317,732,748,271, +30,2017-03-11 14:43:29.525317,650,121,148, +22,2017-03-11 14:43:29.525317,138,986,886, +43,2017-03-11 14:43:29.525317,876,550,606, +78,2017-03-11 14:43:29.525317,675,782,14, +63,2017-03-11 14:43:29.525317,217,459,857, +29,2017-03-11 14:43:29.525317,609,282,637, +80,2017-03-11 14:43:29.525317,539,391,127, +27,2017-03-11 14:43:29.525317,139,399,571, +79,2017-03-11 14:43:29.525317,520,718,4, +66,2017-03-11 14:43:29.525317,704,890,90, +58,2017-03-11 14:43:29.525317,440,696,358, +11,2017-03-11 14:43:29.525317,478,373,747, +69,2017-03-11 14:43:29.525317,832,605,989, +44,2017-03-11 14:43:29.525317,887,626,241, +43,2017-03-11 14:43:29.525317,17,368,696, +16,2017-03-11 14:43:29.525317,767,267,944, +29,2017-03-11 14:43:29.525317,986,948,945, +69,2017-03-11 14:43:29.525317,838,35,271, +28,2017-03-11 14:43:29.525317,730,629,392, +21,2017-03-11 14:43:29.525317,2,140,903, +83,2017-03-11 14:43:29.525317,744,891,274, +63,2017-03-11 14:43:29.525317,517,515,57, +53,2017-03-11 14:43:29.525317,883,753,689, +65,2017-03-11 14:43:29.525317,20,633,937, +1,2017-03-11 14:43:29.525317,581,882,696, +42,2017-03-11 14:43:29.525317,916,966,696, +65,2017-03-11 14:43:29.525317,595,89,855, +60,2017-03-11 14:43:29.525317,228,757,431, +97,2017-03-11 14:43:29.525317,649,705,604, +17,2017-03-11 14:43:29.525317,220,660,700, +10,2017-03-11 14:43:29.525317,413,389,753, +43,2017-03-11 14:43:29.525317,22,690,439, +60,2017-03-11 14:43:29.525317,572,134,21, +49,2017-03-11 14:43:29.525317,100,717,135, +70,2017-03-11 14:43:29.525317,806,989,292, +3,2017-03-11 14:43:29.525317,747,723,7, +40,2017-03-11 14:43:29.525317,428,610,561, +65,2017-03-11 14:43:29.525317,270,261,751, +68,2017-03-11 14:43:29.525317,650,504,116, +67,2017-03-11 14:43:29.525317,194,555,273, +77,2017-03-11 14:43:29.525317,689,294,255, +79,2017-03-11 14:43:29.525317,11,389,485, +82,2017-03-11 14:43:29.525317,379,778,850, +13,2017-03-11 14:43:29.525317,501,857,521, +93,2017-03-11 14:43:29.525317,467,82,576, +74,2017-03-11 14:43:29.525317,342,327,420, +99,2017-03-11 14:43:29.525317,831,536,663, +3,2017-03-11 14:43:29.525317,91,936,792, +78,2017-03-11 14:43:29.525317,230,46,571, +24,2017-03-11 14:43:29.525317,435,56,57, +81,2017-03-11 14:43:29.525317,834,908,939, +33,2017-03-11 14:43:29.525317,765,460,262, +23,2017-03-11 14:43:29.525317,541,838,969, +88,2017-03-11 14:43:29.525317,165,389,876, +100,2017-03-11 14:43:29.525317,925,539,20, +2,2017-03-11 14:43:29.525317,476,812,798, +71,2017-03-11 14:43:29.525317,858,368,947, +29,2017-03-11 14:43:29.525317,424,4,108, +26,2017-03-11 14:43:29.525317,912,47,592, +68,2017-03-11 14:43:29.525317,506,854,908, +5,2017-03-11 14:43:29.525317,692,877,932, +86,2017-03-11 14:43:29.525317,266,808,852, +19,2017-03-11 14:43:29.525317,347,873,208, +82,2017-03-11 14:43:29.525317,685,5,528, +54,2017-03-11 14:43:29.525317,374,475,837, +80,2017-03-11 14:43:29.525317,479,944,56, +39,2017-03-11 14:43:29.525317,991,648,67, +50,2017-03-11 14:43:29.525317,502,975,545, +19,2017-03-11 14:43:29.525317,852,477,51, +12,2017-03-11 14:43:29.525317,284,904,309, +63,2017-03-11 14:43:29.525317,776,517,453, +46,2017-03-11 14:43:29.525317,523,981,4, +90,2017-03-11 14:43:29.525317,456,841,694, +93,2017-03-11 14:43:29.525317,785,750,325, +78,2017-03-11 14:43:29.525317,398,393,273, +90,2017-03-11 14:43:29.525317,368,818,94, +22,2017-03-11 14:43:29.525317,295,146,339, +58,2017-03-11 14:43:29.525317,49,648,209, +83,2017-03-11 14:43:29.525317,165,662,287, +69,2017-03-11 14:43:29.525317,644,291,584, +10,2017-03-11 14:43:29.525317,132,278,34, +92,2017-03-11 14:43:29.525317,29,360,693, +43,2017-03-11 14:43:29.525317,752,967,326, +12,2017-03-11 14:43:29.525317,785,420,341, +8,2017-03-11 14:43:29.525317,566,680,658, +62,2017-03-11 14:43:29.525317,328,867,442, +49,2017-03-11 14:43:29.525317,530,729,181, +17,2017-03-11 14:43:29.525317,20,765,273, +15,2017-03-11 14:43:29.525317,44,307,70, +7,2017-03-11 14:43:29.525317,667,764,498, +42,2017-03-11 14:43:29.525317,730,824,540, +52,2017-03-11 14:43:29.525317,245,881,594, +81,2017-03-11 14:43:29.525317,561,252,427, +89,2017-03-11 14:43:29.525317,120,868,381, +65,2017-03-11 14:43:29.525317,597,562,823, +62,2017-03-11 14:43:29.525317,327,96,770, +37,2017-03-11 14:43:29.525317,403,840,443, +7,2017-03-11 14:43:29.525317,604,941,489, +33,2017-03-11 14:43:29.525317,765,29,849, +1,2017-03-11 14:43:29.525317,910,444,821, +47,2017-03-11 14:43:29.525317,696,248,359, +82,2017-03-11 14:43:29.525317,116,741,466, +71,2017-03-11 14:43:29.525317,303,289,330, +63,2017-03-11 14:43:29.525317,385,100,1, +79,2017-03-11 14:43:29.525317,940,443,858, +54,2017-03-11 14:43:29.525317,384,347,878, +15,2017-03-11 14:43:29.525317,377,728,160, +29,2017-03-11 14:43:29.525317,172,981,758, +87,2017-03-11 14:43:29.525317,228,117,684, +34,2017-03-11 14:43:29.525317,857,149,57, +16,2017-03-11 14:43:29.525317,438,387,790, +82,2017-03-11 14:43:29.525317,487,791,611, +43,2017-03-11 14:43:29.525317,234,469,971, +62,2017-03-11 14:43:29.525317,817,850,768, +19,2017-03-11 14:43:29.525317,578,927,480, +75,2017-03-11 14:43:29.525317,908,237,617, +14,2017-03-11 14:43:29.525317,354,301,480, +21,2017-03-11 14:43:29.525317,450,537,372, +89,2017-03-11 14:43:29.525317,924,162,712, +41,2017-03-11 14:43:29.525317,953,323,838, +19,2017-03-11 14:43:29.525317,792,809,805, +61,2017-03-11 14:43:29.525317,659,572,802, +24,2017-03-11 14:43:29.525317,499,282,986, +41,2017-03-11 14:43:29.525317,520,603,543, +87,2017-03-11 14:43:29.525317,904,23,86, +35,2017-03-11 14:43:29.525317,559,458,243, +48,2017-03-11 14:43:29.525317,620,955,893, +57,2017-03-11 14:43:29.525317,278,731,759, +7,2017-03-11 14:43:29.525317,540,564,679, +20,2017-03-11 14:43:29.525317,136,481,435, +64,2017-03-11 14:43:29.525317,763,421,43, +28,2017-03-11 14:43:29.525317,24,586,157, +93,2017-03-11 14:43:29.525317,608,242,282, +17,2017-03-11 14:43:29.525317,700,525,651, +32,2017-03-11 14:43:29.525317,480,544,892, +76,2017-03-11 14:43:29.525317,275,651,828, +81,2017-03-11 14:43:29.525317,215,507,13, +35,2017-03-11 14:43:29.525317,989,448,988, +75,2017-03-11 14:43:29.525317,869,30,35, +89,2017-03-11 14:43:29.525317,616,192,820, +22,2017-03-11 14:43:29.525317,435,102,392, +13,2017-03-11 14:43:29.525317,627,43,454, +11,2017-03-11 14:43:29.525317,587,347,865, +86,2017-03-11 14:43:29.525317,998,694,676, +21,2017-03-11 14:43:29.525317,201,690,565, +19,2017-03-11 14:43:29.525317,138,553,942, +1,2017-03-11 14:43:29.525317,583,978,899, +20,2017-03-11 14:43:29.525317,170,719,424, +60,2017-03-11 14:43:29.525317,822,816,739, +45,2017-03-11 14:43:29.525317,859,194,556, +45,2017-03-11 14:43:29.525317,540,422,308, +54,2017-03-11 14:43:29.525317,116,984,751, +32,2017-03-11 14:43:29.525317,674,317,507, +81,2017-03-11 14:43:29.525317,870,449,818, +45,2017-03-11 14:43:29.525317,427,717,652, +60,2017-03-11 14:43:29.525317,437,76,202, +26,2017-03-11 14:43:29.525317,892,941,707, +75,2017-03-11 14:43:29.525317,135,264,197, +67,2017-03-11 14:43:29.525317,686,505,213, +80,2017-03-11 14:43:29.525317,489,964,118, +16,2017-03-11 14:43:29.525317,281,625,975, +15,2017-03-11 14:43:29.525317,75,793,603, +50,2017-03-11 14:43:29.525317,510,255,99, +95,2017-03-11 14:43:29.525317,331,301,205, +22,2017-03-11 14:43:29.525317,242,913,974, +38,2017-03-11 14:43:29.525317,177,171,51, +86,2017-03-11 14:43:29.525317,676,264,664, +17,2017-03-11 14:43:29.525317,228,782,329, +51,2017-03-11 14:43:29.525317,408,304,660, +48,2017-03-11 14:43:29.525317,97,263,984, +61,2017-03-11 14:43:29.525317,518,83,554, +85,2017-03-11 14:43:29.525317,384,759,72, +63,2017-03-11 14:43:29.525317,672,47,2, +85,2017-03-11 14:43:29.525317,218,53,711, +89,2017-03-11 14:43:29.525317,317,375,60, +55,2017-03-11 14:43:29.525317,158,389,54, +57,2017-03-11 14:43:29.525317,693,714,47, +79,2017-03-11 14:43:29.525317,977,31,397, +50,2017-03-11 14:43:29.525317,114,950,345, +50,2017-03-11 14:43:29.525317,710,417,123, +38,2017-03-11 14:43:29.525317,464,125,230, +68,2017-03-11 14:43:29.525317,178,942,576, +50,2017-03-11 14:43:29.525317,317,636,41, +47,2017-03-11 14:43:29.525317,25,95,40, +72,2017-03-11 14:43:29.525317,809,88,508, +79,2017-03-11 14:43:29.525317,119,904,282, +23,2017-03-11 14:43:29.525317,855,627,731, +56,2017-03-11 14:43:29.525317,44,854,946, +51,2017-03-11 14:43:29.525317,979,177,190, +16,2017-03-11 14:43:29.525317,118,766,653, +44,2017-03-11 14:43:29.525317,403,693,911, +43,2017-03-11 14:43:29.525317,788,951,146, +60,2017-03-11 14:43:29.525317,39,654,384, +16,2017-03-11 14:43:29.525317,558,666,391, +41,2017-03-11 14:43:29.525317,293,122,977, +34,2017-03-11 14:43:29.525317,976,923,845, +96,2017-03-11 14:43:29.525317,100,35,113, +22,2017-03-11 14:43:29.525317,802,765,654, +20,2017-03-11 14:43:29.525317,458,565,632, +25,2017-03-11 14:43:29.525317,515,778,844, +55,2017-03-11 14:43:29.525317,432,228,712, +99,2017-03-11 14:43:29.525317,894,103,403, +19,2017-03-11 14:43:29.525317,224,380,524, +20,2017-03-11 14:43:29.525317,304,369,156, +40,2017-03-11 14:43:29.525317,404,268,622, +21,2017-03-11 14:43:29.525317,33,276,411, +49,2017-03-11 14:43:29.525317,841,43,738, +36,2017-03-11 14:43:29.525317,822,583,910, +25,2017-03-11 14:43:29.525317,811,622,244, +71,2017-03-11 14:43:29.525317,724,647,892, +95,2017-03-11 14:43:29.525317,27,415,149, +33,2017-03-11 14:43:29.525317,784,305,734, +19,2017-03-11 14:43:29.525317,573,356,395, +61,2017-03-11 14:43:29.525317,632,806,98, +47,2017-03-11 14:43:29.525317,849,836,829, +67,2017-03-11 14:43:29.525317,419,740,924, +23,2017-03-11 14:43:29.525317,362,168,935, +9,2017-03-11 14:43:29.525317,815,827,35, +84,2017-03-11 14:43:29.525317,242,184,172, +3,2017-03-11 14:43:29.525317,489,906,215, +6,2017-03-11 14:43:29.525317,262,610,668, +89,2017-03-11 14:43:29.525317,416,766,367, +26,2017-03-11 14:43:29.525317,602,197,935, +2,2017-03-11 14:43:29.525317,936,859,251, +30,2017-03-11 14:43:29.525317,27,186,384, +84,2017-03-11 14:43:29.525317,13,419,683, +26,2017-03-11 14:43:29.525317,603,854,283, +9,2017-03-11 14:43:29.525317,760,498,154, +2,2017-03-11 14:43:29.525317,108,822,916, +52,2017-03-11 14:43:29.525317,588,283,788, +19,2017-03-11 14:43:29.525317,479,722,211, +42,2017-03-11 14:43:29.525317,581,462,714, +61,2017-03-11 14:43:29.525317,648,98,449, +66,2017-03-11 14:43:29.525317,517,132,918, +12,2017-03-11 14:43:29.525317,986,200,212, +75,2017-03-11 14:43:29.525317,698,366,768, +81,2017-03-11 14:43:29.525317,187,684,329, +78,2017-03-11 14:43:29.525317,966,117,965, +45,2017-03-11 14:43:29.525317,840,176,862, +42,2017-03-11 14:43:29.525317,638,575,29, +29,2017-03-11 14:43:29.525317,673,478,948, +19,2017-03-11 14:43:29.525317,610,866,309, +60,2017-03-11 14:43:29.525317,66,521,342, +76,2017-03-11 14:43:29.525317,886,110,570, +7,2017-03-11 14:43:29.525317,794,899,849, +76,2017-03-11 14:43:29.525317,16,814,206, +86,2017-03-11 14:43:29.525317,989,68,277, +63,2017-03-11 14:43:29.525317,643,305,913, +32,2017-03-11 14:43:29.525317,783,861,506, +39,2017-03-11 14:43:29.525317,726,815,989, +79,2017-03-11 14:43:29.525317,336,331,556, +22,2017-03-11 14:43:29.525317,441,126,296, +23,2017-03-11 14:43:29.525317,25,145,995, +4,2017-03-11 14:43:29.525317,958,201,897, +95,2017-03-11 14:43:29.525317,269,174,575, +91,2017-03-11 14:43:29.525317,480,488,228, +26,2017-03-11 14:43:29.525317,349,734,655, +7,2017-03-11 14:43:29.525317,549,644,867, +88,2017-03-11 14:43:29.525317,975,423,106, +42,2017-03-11 14:43:29.525317,548,402,650, +57,2017-03-11 14:43:29.525317,547,645,614, +50,2017-03-11 14:43:29.525317,846,512,453, +11,2017-03-11 14:43:29.525317,686,27,27, +17,2017-03-11 14:43:29.525317,515,255,428, +86,2017-03-11 14:43:29.525317,988,84,939, +54,2017-03-11 14:43:29.525317,728,806,421, +70,2017-03-11 14:43:29.525317,229,527,118, +78,2017-03-11 14:43:29.525317,929,769,350, +48,2017-03-11 14:43:29.525317,414,964,981, +26,2017-03-11 14:43:29.525317,476,433,374, +16,2017-03-11 14:43:29.525317,461,401,327, +98,2017-03-11 14:43:29.525317,656,755,840, +64,2017-03-11 14:43:29.525317,839,779,181, +57,2017-03-11 14:43:29.525317,584,602,269, +81,2017-03-11 14:43:29.525317,129,388,590, +6,2017-03-11 14:43:29.525317,156,940,534, +57,2017-03-11 14:43:29.525317,905,515,829, +38,2017-03-11 14:43:29.525317,948,204,543, +41,2017-03-11 14:43:29.525317,605,870,385, +26,2017-03-11 14:43:29.525317,625,225,904, +46,2017-03-11 14:43:29.525317,3,85,31, +59,2017-03-11 14:43:29.525317,687,301,401, +82,2017-03-11 14:43:29.525317,688,990,875, +84,2017-03-11 14:43:29.525317,931,410,414, +84,2017-03-11 14:43:29.525317,924,243,216, +87,2017-03-11 14:43:29.525317,447,758,281, +5,2017-03-11 14:43:29.525317,628,666,312, +25,2017-03-11 14:43:29.525317,890,216,718, +89,2017-03-11 14:43:29.525317,301,749,481, +99,2017-03-11 14:43:29.525317,50,881,805, +74,2017-03-11 14:43:29.525317,872,681,582, +80,2017-03-11 14:43:29.525317,91,996,637, +1,2017-03-11 14:43:29.525317,240,853,887, +69,2017-03-11 14:43:29.525317,611,168,738, +24,2017-03-11 14:43:29.525317,833,50,494, +72,2017-03-11 14:43:29.525317,265,212,616, +57,2017-03-11 14:43:29.525317,961,97,555, +1,2017-03-11 14:43:29.525317,978,360,749, +85,2017-03-11 14:43:29.525317,41,332,652, +13,2017-03-11 14:43:29.525317,328,290,146, +57,2017-03-11 14:43:29.525317,143,33,254, +75,2017-03-11 14:43:29.525317,201,992,994, +3,2017-03-11 14:43:29.525317,41,488,757, +31,2017-03-11 14:43:29.525317,699,374,873, +66,2017-03-11 14:43:29.525317,471,428,672, +45,2017-03-11 14:43:29.525317,788,421,300, +83,2017-03-11 14:43:29.525317,753,952,961, +8,2017-03-11 14:43:29.525317,242,107,648, +38,2017-03-11 14:43:29.525317,140,902,139, +34,2017-03-11 14:43:29.525317,894,133,375, +94,2017-03-11 14:43:29.525317,621,132,242, +32,2017-03-11 14:43:29.525317,506,115,981, +98,2017-03-11 14:43:29.525317,543,652,427, +33,2017-03-11 14:43:29.525317,73,726,160, +83,2017-03-11 14:43:29.525317,678,121,906, +92,2017-03-11 14:43:29.525317,228,554,305, +37,2017-03-11 14:43:29.525317,456,444,709, +35,2017-03-11 14:43:29.525317,577,84,285, +20,2017-03-11 14:43:29.525317,216,526,518, +72,2017-03-11 14:43:29.525317,641,499,700, +18,2017-03-11 14:43:29.525317,151,127,515, +22,2017-03-11 14:43:29.525317,853,675,51, +53,2017-03-11 14:43:29.525317,795,957,452, +2,2017-03-11 14:43:29.525317,511,757,391, +97,2017-03-11 14:43:29.525317,201,100,317, +78,2017-03-11 14:43:29.525317,184,601,976, +40,2017-03-11 14:43:29.525317,128,494,123, +77,2017-03-11 14:43:29.525317,992,823,953, +14,2017-03-11 14:43:29.525317,950,468,368, +80,2017-03-11 14:43:29.525317,143,419,334, +94,2017-03-11 14:43:29.525317,376,786,962, +89,2017-03-11 14:43:29.525317,542,353,854, +74,2017-03-11 14:43:29.525317,453,171,521, +64,2017-03-11 14:43:29.525317,772,497,38, +90,2017-03-11 14:43:29.525317,990,162,669, +98,2017-03-11 14:43:29.525317,985,623,126, +93,2017-03-11 14:43:29.525317,91,495,738, +23,2017-03-11 14:43:29.525317,913,72,172, +29,2017-03-11 14:43:29.525317,858,134,176, +40,2017-03-11 14:43:29.525317,487,31,143, +94,2017-03-11 14:43:29.525317,201,664,578, +97,2017-03-11 14:43:29.525317,161,616,874, +15,2017-03-11 14:43:29.525317,778,543,134, +76,2017-03-11 14:43:29.525317,166,260,698, +26,2017-03-11 14:43:29.525317,755,435,490, +67,2017-03-11 14:43:29.525317,507,663,958, +36,2017-03-11 14:43:29.525317,797,134,765, +28,2017-03-11 14:43:29.525317,164,908,225, +37,2017-03-11 14:43:29.525317,572,802,340, +73,2017-03-11 14:43:29.525317,418,213,884, +20,2017-03-11 14:43:29.525317,756,18,959, +92,2017-03-11 14:43:29.525317,279,657,179, +3,2017-03-11 14:43:29.525317,92,669,702, +60,2017-03-11 14:43:29.525317,332,659,964, +13,2017-03-11 14:43:29.525317,793,729,414, +96,2017-03-11 14:43:29.525317,637,638,323, +21,2017-03-11 14:43:29.525317,441,663,942, +86,2017-03-11 14:43:29.525317,877,827,55, +63,2017-03-11 14:43:29.525317,845,14,555, +12,2017-03-11 14:43:29.525317,671,734,157, +76,2017-03-11 14:43:29.525317,403,859,364, +74,2017-03-11 14:43:29.525317,518,328,864, +31,2017-03-11 14:43:29.525317,57,278,269, +69,2017-03-11 14:43:29.525317,916,593,904, +36,2017-03-11 14:43:29.525317,256,846,216, +13,2017-03-11 14:43:29.525317,673,271,765, +52,2017-03-11 14:43:29.525317,285,321,642, +96,2017-03-11 14:43:29.525317,54,799,721, +46,2017-03-11 14:43:29.525317,658,84,193, +18,2017-03-11 14:43:29.525317,412,57,488, +47,2017-03-11 14:43:29.525317,335,757,164, +25,2017-03-11 14:43:29.525317,350,68,608, +61,2017-03-11 14:43:29.525317,915,823,738, +59,2017-03-11 14:43:29.525317,94,504,106, +38,2017-03-11 14:43:29.525317,824,748,336, +88,2017-03-11 14:43:29.525317,547,57,336, +20,2017-03-11 14:43:29.525317,141,529,381, +55,2017-03-11 14:43:29.525317,586,869,24, +92,2017-03-11 14:43:29.525317,627,188,172, +98,2017-03-11 14:43:29.525317,257,779,583, +17,2017-03-11 14:43:29.525317,603,321,760, +70,2017-03-11 14:43:29.525317,825,866,76, +65,2017-03-11 14:43:29.525317,614,413,528, +16,2017-03-11 14:43:29.525317,470,865,366, +61,2017-03-11 14:43:29.525317,394,747,165, +98,2017-03-11 14:43:29.525317,617,189,900, +24,2017-03-11 14:43:29.525317,377,72,220, +63,2017-03-11 14:43:29.525317,851,803,805, +45,2017-03-11 14:43:29.525317,124,565,150, +95,2017-03-11 14:43:29.525317,430,227,598, +4,2017-03-11 14:43:29.525317,639,126,205, +11,2017-03-11 14:43:29.525317,991,571,720, +38,2017-03-11 14:43:29.525317,318,885,364, +93,2017-03-11 14:43:29.525317,73,264,178, +45,2017-03-11 14:43:29.525317,335,399,83, +19,2017-03-11 14:43:29.525317,202,888,640, +33,2017-03-11 14:43:29.525317,453,790,274, +88,2017-03-11 14:43:29.525317,17,873,928, +66,2017-03-11 14:43:29.525317,999,133,765, +99,2017-03-11 14:43:29.525317,704,485,374, +2,2017-03-11 14:43:29.525317,369,738,957, +44,2017-03-11 14:43:29.525317,2,135,892, +34,2017-03-11 14:43:29.525317,533,976,524, +74,2017-03-11 14:43:29.525317,864,164,61, +32,2017-03-11 14:43:29.525317,954,335,200, +97,2017-03-11 14:43:29.525317,208,128,626, +21,2017-03-11 14:43:29.525317,261,391,196, +96,2017-03-11 14:43:29.525317,876,571,987, +24,2017-03-11 14:43:29.525317,309,943,687, +31,2017-03-11 14:43:29.525317,78,579,648, +61,2017-03-11 14:43:29.525317,555,172,347, +42,2017-03-11 14:43:29.525317,335,407,736, +29,2017-03-11 14:43:29.525317,742,936,260, +95,2017-03-11 14:43:29.525317,64,886,156, +33,2017-03-11 14:43:29.525317,277,353,290, +15,2017-03-11 14:43:29.525317,923,277,398, +23,2017-03-11 14:43:29.525317,220,85,543, +30,2017-03-11 14:43:29.525317,665,191,910, +22,2017-03-11 14:43:29.525317,363,256,638, +70,2017-03-11 14:43:29.525317,663,374,987, +41,2017-03-11 14:43:29.525317,310,247,355, +37,2017-03-11 14:43:29.525317,133,512,700, +41,2017-03-11 14:43:29.525317,864,990,564, +79,2017-03-11 14:43:29.525317,267,962,19, +49,2017-03-11 14:43:29.525317,47,562,786, +71,2017-03-11 14:43:29.525317,753,695,931, +12,2017-03-11 14:43:29.525317,952,569,814, +62,2017-03-11 14:43:29.525317,943,801,21, +25,2017-03-11 14:43:29.525317,48,376,628, +18,2017-03-11 14:43:29.525317,888,329,592, +75,2017-03-11 14:43:29.525317,319,156,539, +59,2017-03-11 14:43:29.525317,117,559,74, +16,2017-03-11 14:43:29.525317,121,859,876, +87,2017-03-11 14:43:29.525317,555,807,990, +51,2017-03-11 14:43:29.525317,376,804,122, +32,2017-03-11 14:43:29.525317,606,142,573, +65,2017-03-11 14:43:29.525317,519,201,836, +41,2017-03-11 14:43:29.525317,530,428,158, +85,2017-03-11 14:43:29.525317,583,698,435, +70,2017-03-11 14:43:29.525317,257,509,865, +38,2017-03-11 14:43:29.525317,369,740,252, +92,2017-03-11 14:43:29.525317,547,242,430, +92,2017-03-11 14:43:29.525317,47,551,242, +65,2017-03-11 14:43:29.525317,694,815,307, +21,2017-03-11 14:43:29.525317,16,143,619, +55,2017-03-11 14:43:29.525317,570,777,396, +15,2017-03-11 14:43:29.525317,475,831,854, +73,2017-03-11 14:43:29.525317,340,719,109, +71,2017-03-11 14:43:29.525317,460,361,632, +1,2017-03-11 14:43:29.525317,604,62,930, +65,2017-03-11 14:43:29.525317,613,172,304, +31,2017-03-11 14:43:29.525317,986,611,519, +0,2017-03-11 14:43:29.525317,754,138,549, +32,2017-03-11 14:43:29.525317,915,945,478, +39,2017-03-11 14:43:29.525317,776,332,122, +12,2017-03-11 14:43:29.525317,52,231,825, +51,2017-03-11 14:43:29.525317,593,457,518, +20,2017-03-11 14:43:29.525317,519,448,847, +13,2017-03-11 14:43:29.525317,619,151,439, +61,2017-03-11 14:43:29.525317,762,958,609, +52,2017-03-11 14:43:29.525317,97,158,839, +1,2017-03-11 14:43:29.525317,103,317,402, +88,2017-03-11 14:43:29.525317,650,524,995, +70,2017-03-11 14:43:29.525317,755,820,213, +35,2017-03-11 14:43:29.525317,277,731,544, +80,2017-03-11 14:43:29.525317,179,391,928, +80,2017-03-11 14:43:29.525317,543,367,404, +30,2017-03-11 14:43:29.525317,325,13,820, +42,2017-03-11 14:43:29.525317,170,659,434, +27,2017-03-11 14:43:29.525317,977,836,152, +63,2017-03-11 14:43:29.525317,360,146,327, +11,2017-03-11 14:43:29.525317,966,540,462, +24,2017-03-11 14:43:29.525317,271,6,38, +45,2017-03-11 14:43:29.525317,397,966,248, +94,2017-03-11 14:43:29.525317,333,653,244, +66,2017-03-11 14:43:29.525317,665,64,79, +84,2017-03-11 14:43:29.525317,724,513,109, +70,2017-03-11 14:43:29.525317,349,260,326, +71,2017-03-11 14:43:29.525317,407,654,823, +37,2017-03-11 14:43:29.525317,194,285,615, +47,2017-03-11 14:43:29.525317,291,653,916, +69,2017-03-11 14:43:29.525317,619,164,628, +95,2017-03-11 14:43:29.525317,817,872,609, +48,2017-03-11 14:43:29.525317,937,689,317, +66,2017-03-11 14:43:29.525317,202,426,360, +55,2017-03-11 14:43:29.525317,686,687,259, +9,2017-03-11 14:43:29.525317,340,82,465, +53,2017-03-11 14:43:29.525317,367,80,1000, +66,2017-03-11 14:43:29.525317,734,915,346, +35,2017-03-11 14:43:29.525317,79,975,305, +90,2017-03-11 14:43:29.525317,847,914,378, +78,2017-03-11 14:43:29.525317,603,695,444, +80,2017-03-11 14:43:29.525317,121,804,355, +81,2017-03-11 14:43:29.525317,491,614,900, +83,2017-03-11 14:43:29.525317,697,365,366, +6,2017-03-11 14:43:29.525317,445,366,722, +18,2017-03-11 14:43:29.525317,281,68,532, +36,2017-03-11 14:43:29.525317,43,836,256, +89,2017-03-11 14:43:29.525317,750,634,674, +35,2017-03-11 14:43:29.525317,329,118,157, +45,2017-03-11 14:43:29.525317,922,513,257, +41,2017-03-11 14:43:29.525317,127,156,244, +82,2017-03-11 14:43:29.525317,521,609,887, +97,2017-03-11 14:43:29.525317,975,609,145, +26,2017-03-11 14:43:29.525317,678,677,616, +72,2017-03-11 14:43:29.525317,513,873,611, +26,2017-03-11 14:43:29.525317,507,285,616, +84,2017-03-11 14:43:29.525317,402,773,285, +32,2017-03-11 14:43:29.525317,286,542,736, +41,2017-03-11 14:43:29.525317,698,980,236, +22,2017-03-11 14:43:29.525317,589,124,185, +56,2017-03-11 14:43:29.525317,733,331,821, +41,2017-03-11 14:43:29.525317,8,437,131, +52,2017-03-11 14:43:29.525317,310,742,784, +82,2017-03-11 14:43:29.525317,27,400,652, +43,2017-03-11 14:43:29.525317,174,937,753, +46,2017-03-11 14:43:29.525317,478,489,873, +18,2017-03-11 14:43:29.525317,469,109,395, +6,2017-03-11 14:43:29.525317,233,580,623, +97,2017-03-11 14:43:29.525317,911,444,376, +92,2017-03-11 14:43:29.525317,881,507,440, +19,2017-03-11 14:43:29.525317,249,224,7, +28,2017-03-11 14:43:29.525317,624,659,706, +80,2017-03-11 14:43:29.525317,595,459,258, +7,2017-03-11 14:43:29.525317,948,130,249, +42,2017-03-11 14:43:29.525317,240,644,476, +47,2017-03-11 14:43:29.525317,224,99,437, +14,2017-03-11 14:43:29.525317,543,813,54, +42,2017-03-11 14:43:29.525317,320,494,615, +57,2017-03-11 14:43:29.525317,717,622,846, +34,2017-03-11 14:43:29.525317,281,552,139, +88,2017-03-11 14:43:29.525317,10,397,949, +96,2017-03-11 14:43:29.525317,528,198,375, +77,2017-03-11 14:43:29.525317,842,851,239, +7,2017-03-11 14:43:29.525317,951,676,202, +49,2017-03-11 14:43:29.525317,490,256,918, +81,2017-03-11 14:43:29.525317,750,534,380, +47,2017-03-11 14:43:29.525317,156,226,808, +44,2017-03-11 14:43:29.525317,778,948,313, +79,2017-03-11 14:43:29.525317,345,262,746, +87,2017-03-11 14:43:29.525317,461,121,639, +30,2017-03-11 14:43:29.525317,973,878,370, +92,2017-03-11 14:43:29.525317,555,572,417, +4,2017-03-11 14:43:29.525317,828,336,855, +58,2017-03-11 14:43:29.525317,870,235,45, +3,2017-03-11 14:43:29.525317,461,853,462, +24,2017-03-11 14:43:29.525317,801,775,26, +15,2017-03-11 14:43:29.525317,37,772,18, +50,2017-03-11 14:43:29.525317,894,657,801, +87,2017-03-11 14:43:29.525317,536,171,790, +9,2017-03-11 14:43:29.525317,743,207,135, +57,2017-03-11 14:43:29.525317,543,990,150, +41,2017-03-11 14:43:29.525317,224,195,438, +68,2017-03-11 14:43:29.525317,48,901,923, +85,2017-03-11 14:43:29.525317,676,949,995, +71,2017-03-11 14:43:29.525317,722,13,211, +62,2017-03-11 14:43:29.525317,670,12,482, +21,2017-03-11 14:43:29.525317,183,272,296, +93,2017-03-11 14:43:29.525317,480,431,499, +2,2017-03-11 14:43:29.525317,420,648,436, +64,2017-03-11 14:43:29.525317,843,874,329, +89,2017-03-11 14:43:29.525317,775,252,740, +45,2017-03-11 14:43:29.525317,201,735,163, +92,2017-03-11 14:43:29.525317,748,374,539, +42,2017-03-11 14:43:29.525317,387,21,623, +57,2017-03-11 14:43:29.525317,293,919,497, +77,2017-03-11 14:43:29.525317,350,995,796, +77,2017-03-11 14:43:29.525317,644,232,415, +49,2017-03-11 14:43:29.525317,106,744,378, +88,2017-03-11 14:43:29.525317,996,118,332, +20,2017-03-11 14:43:29.525317,853,495,120, +60,2017-03-11 14:43:29.525317,869,659,19, +26,2017-03-11 14:43:29.525317,680,642,826, +97,2017-03-11 14:43:29.525317,561,323,746, +91,2017-03-11 14:43:29.525317,318,541,681, +96,2017-03-11 14:43:29.525317,773,96,449, +88,2017-03-11 14:43:29.525317,839,826,761, +83,2017-03-11 14:43:29.525317,944,92,32, +80,2017-03-11 14:43:29.525317,587,152,398, +46,2017-03-11 14:43:29.525317,811,417,712, +49,2017-03-11 14:43:29.525317,59,538,464, +62,2017-03-11 14:43:29.525317,861,209,531, +18,2017-03-11 14:43:29.525317,751,212,141, +52,2017-03-11 14:43:29.525317,307,590,404, +15,2017-03-11 14:43:29.525317,416,164,982, +36,2017-03-11 14:43:29.525317,256,14,158, +84,2017-03-11 14:43:29.525317,166,557,300, +98,2017-03-11 14:43:29.525317,974,12,468, +3,2017-03-11 14:43:29.525317,550,931,652, +41,2017-03-11 14:43:29.525317,141,183,590, +89,2017-03-11 14:43:29.525317,395,731,416, +70,2017-03-11 14:43:29.525317,321,820,849, +74,2017-03-11 14:43:29.525317,984,830,98, +24,2017-03-11 14:43:29.525317,844,256,83, +1,2017-03-11 14:43:29.525317,813,383,986, +79,2017-03-11 14:43:29.525317,395,454,819, +95,2017-03-11 14:43:29.525317,385,471,356, +53,2017-03-11 14:43:29.525317,654,946,418, +5,2017-03-11 14:43:29.525317,677,834,751, +100,2017-03-11 14:43:29.525317,653,600,735, +64,2017-03-11 14:43:29.525317,430,833,877, +27,2017-03-11 14:43:29.525317,89,961,284, +90,2017-03-11 14:43:29.525317,344,270,688, +74,2017-03-11 14:43:29.525317,724,507,684, +11,2017-03-11 14:43:29.525317,978,41,635, +63,2017-03-11 14:43:29.525317,987,53,682, +66,2017-03-11 14:43:29.525317,887,433,663, +54,2017-03-11 14:43:29.525317,33,398,177, +46,2017-03-11 14:43:29.525317,231,54,737, +32,2017-03-11 14:43:29.525317,15,21,221, +36,2017-03-11 14:43:29.525317,291,909,98, +1,2017-03-11 14:43:29.525317,415,783,124, +39,2017-03-11 14:43:29.525317,823,759,26, +81,2017-03-11 14:43:29.525317,812,707,475, +70,2017-03-11 14:43:29.525317,140,137,239, +17,2017-03-11 14:43:29.525317,535,416,636, +77,2017-03-11 14:43:29.525317,471,373,86, +49,2017-03-11 14:43:29.525317,393,307,845, +68,2017-03-11 14:43:29.525317,216,943,699, +63,2017-03-11 14:43:29.525317,726,822,25, +55,2017-03-11 14:43:29.525317,581,50,359, +39,2017-03-11 14:43:29.525317,758,834,92, +90,2017-03-11 14:43:29.525317,971,331,71, +51,2017-03-11 14:43:29.525317,747,706,272, +22,2017-03-11 14:43:29.525317,79,358,704, +47,2017-03-11 14:43:29.525317,665,549,156, +88,2017-03-11 14:43:29.525317,493,855,512, +22,2017-03-11 14:43:29.525317,677,536,768, +26,2017-03-11 14:43:29.525317,587,127,651, +34,2017-03-11 14:43:29.525317,961,744,243, +93,2017-03-11 14:43:29.525317,75,313,438, +82,2017-03-11 14:43:29.525317,20,711,40, +10,2017-03-11 14:43:29.525317,69,745,570, +73,2017-03-11 14:43:29.525317,294,726,614, +79,2017-03-11 14:43:29.525317,581,126,5, +26,2017-03-11 14:43:29.525317,662,772,516, +25,2017-03-11 14:43:29.525317,899,167,594, +86,2017-03-11 14:43:29.525317,911,836,793, +99,2017-03-11 14:43:29.525317,149,231,807, +17,2017-03-11 14:43:29.525317,942,848,267, +1,2017-03-11 14:43:29.525317,592,837,745, +89,2017-03-11 14:43:29.525317,564,359,673, +14,2017-03-11 14:43:29.525317,485,677,402, +15,2017-03-11 14:43:29.525317,450,917,396, +35,2017-03-11 14:43:29.525317,85,989,210, +100,2017-03-11 14:43:29.525317,825,3,981, +97,2017-03-11 14:43:29.525317,234,788,144, +18,2017-03-11 14:43:29.525317,636,411,187, +23,2017-03-11 14:43:29.525317,248,931,115, +81,2017-03-11 14:43:29.525317,290,787,956, +77,2017-03-11 14:43:29.525317,465,358,922, +91,2017-03-11 14:43:29.525317,275,318,264, +36,2017-03-11 14:43:29.525317,307,474,355, +13,2017-03-11 14:43:29.525317,477,336,107, +71,2017-03-11 14:43:29.525317,124,251,887, +76,2017-03-11 14:43:29.525317,662,73,989, +91,2017-03-11 14:43:29.525317,5,103,721, +29,2017-03-11 14:43:29.525317,891,677,70, +36,2017-03-11 14:43:29.525317,35,991,271, +31,2017-03-11 14:43:29.525317,309,535,670, +62,2017-03-11 14:43:29.525317,9,25,748, +49,2017-03-11 14:43:29.525317,361,855,196, +49,2017-03-11 14:43:29.525317,106,83,245, +77,2017-03-11 14:43:29.525317,156,234,677, +16,2017-03-11 14:43:29.525317,337,398,456, +23,2017-03-11 14:43:29.525317,76,526,584, +11,2017-03-11 14:43:29.525317,517,855,421, +83,2017-03-11 14:43:29.525317,390,91,441, +40,2017-03-11 14:43:29.525317,116,189,884, +48,2017-03-11 14:43:29.525317,44,81,962, +15,2017-03-11 14:43:29.525317,164,207,917, +32,2017-03-11 14:43:29.525317,441,594,481, +78,2017-03-11 14:43:29.525317,992,937,7, +7,2017-03-11 14:43:29.525317,463,591,178, +98,2017-03-11 14:43:29.525317,446,599,805, +84,2017-03-11 14:43:29.525317,689,247,234, +81,2017-03-11 14:43:29.525317,436,119,282, +48,2017-03-11 14:43:29.525317,200,244,630, +36,2017-03-11 14:43:29.525317,451,546,684, +89,2017-03-11 14:43:29.525317,140,165,670, +13,2017-03-11 14:43:29.525317,102,677,199, +57,2017-03-11 14:43:29.525317,268,377,545, +71,2017-03-11 14:43:29.525317,976,351,549, +67,2017-03-11 14:43:29.525317,597,784,470, +3,2017-03-11 14:43:29.525317,903,752,513, +10,2017-03-11 14:43:29.525317,996,143,466, +45,2017-03-11 14:43:29.525317,689,150,339, +83,2017-03-11 14:43:29.525317,315,9,961, +42,2017-03-11 14:43:29.525317,686,160,982, +95,2017-03-11 14:43:29.525317,537,528,668, +51,2017-03-11 14:43:29.525317,878,217,179, +48,2017-03-11 14:43:29.525317,1,649,509, +90,2017-03-11 14:43:29.525317,401,22,6, +40,2017-03-11 14:43:29.525317,165,472,845, +85,2017-03-11 14:43:29.525317,622,184,683, +94,2017-03-11 14:43:29.525317,193,643,353, +88,2017-03-11 14:43:29.525317,804,336,834, +34,2017-03-11 14:43:29.525317,863,502,854, +74,2017-03-11 14:43:29.525317,719,33,217, +72,2017-03-11 14:43:29.525317,682,726,624, +8,2017-03-11 14:43:29.525317,748,630,481, +91,2017-03-11 14:43:29.525317,102,326,766, +72,2017-03-11 14:43:29.525317,510,449,660, +70,2017-03-11 14:43:29.525317,92,14,583, +90,2017-03-11 14:43:29.525317,350,417,237, +21,2017-03-11 14:43:29.525317,918,91,955, +64,2017-03-11 14:43:29.525317,124,172,358, +81,2017-03-11 14:43:29.525317,898,982,889, +65,2017-03-11 14:43:29.525317,612,370,559, +71,2017-03-11 14:43:29.525317,696,325,438, +21,2017-03-11 14:43:29.525317,774,99,909, +87,2017-03-11 14:43:29.525317,113,492,762, +46,2017-03-11 14:43:29.525317,908,999,676, +83,2017-03-11 14:43:29.525317,90,631,464, +21,2017-03-11 14:43:29.525317,803,822,20, +70,2017-03-11 14:43:29.525317,803,909,347, +42,2017-03-11 14:43:29.525317,280,905,129, +98,2017-03-11 14:43:29.525317,230,568,181, +0,2017-03-11 14:43:29.525317,667,90,870, +78,2017-03-11 14:43:29.525317,582,632,242, +49,2017-03-11 14:43:29.525317,631,918,317, +72,2017-03-11 14:43:29.525317,549,781,936, +35,2017-03-11 14:43:29.525317,602,956,53, +41,2017-03-11 14:43:29.525317,865,400,821, +14,2017-03-11 14:43:29.525317,305,950,120, +54,2017-03-11 14:43:29.525317,518,302,539, +18,2017-03-11 14:43:29.525317,392,409,965, +97,2017-03-11 14:43:29.525317,41,207,464, +67,2017-03-11 14:43:29.525317,125,781,393, +67,2017-03-11 14:43:29.525317,562,329,26, +16,2017-03-11 14:43:29.525317,284,79,570, +15,2017-03-11 14:43:29.525317,479,391,294, +78,2017-03-11 14:43:29.525317,341,414,319, +86,2017-03-11 14:43:29.525317,716,858,44, +11,2017-03-11 14:43:29.525317,266,9,82, +31,2017-03-11 14:43:29.525317,216,547,979, +34,2017-03-11 14:43:29.525317,328,372,15, +89,2017-03-11 14:43:29.525317,701,41,55, +99,2017-03-11 14:43:29.525317,120,625,135, +60,2017-03-11 14:43:29.525317,16,429,382, +36,2017-03-11 14:43:29.525317,843,701,217, +56,2017-03-11 14:43:29.525317,558,262,668, +82,2017-03-11 14:43:29.525317,271,750,132, +49,2017-03-11 14:43:29.525317,297,111,828, +63,2017-03-11 14:43:29.525317,483,843,515, +18,2017-03-11 14:43:29.525317,884,570,169, +0,2017-03-11 14:43:29.525317,196,304,602, +21,2017-03-11 14:43:29.525317,733,984,570, +58,2017-03-11 14:43:29.525317,685,787,135, +24,2017-03-11 14:43:29.525317,49,803,68, +32,2017-03-11 14:43:29.525317,554,199,807, +85,2017-03-11 14:43:29.525317,310,634,476, +79,2017-03-11 14:43:29.525317,477,991,977, +36,2017-03-11 14:43:29.525317,562,146,364, +76,2017-03-11 14:43:29.525317,449,966,970, +18,2017-03-11 14:43:29.525317,951,540,758, +64,2017-03-11 14:43:29.525317,327,893,878, +38,2017-03-11 14:43:29.525317,696,946,697, +25,2017-03-11 14:43:29.525317,145,503,101, +46,2017-03-11 14:43:29.525317,138,576,249, +62,2017-03-11 14:43:29.525317,568,225,976, +13,2017-03-11 14:43:29.525317,371,340,887, +82,2017-03-11 14:43:29.525317,307,856,2, +26,2017-03-11 14:43:29.525317,396,760,892, +72,2017-03-11 14:43:29.525317,653,771,99, +35,2017-03-11 14:43:29.525317,717,796,599, +86,2017-03-11 14:43:29.525317,299,699,318, +44,2017-03-11 14:43:29.525317,276,566,52, +84,2017-03-11 14:43:29.525317,791,28,973, +16,2017-03-11 14:43:29.525317,368,860,982, +67,2017-03-11 14:43:29.525317,716,984,932, +11,2017-03-11 14:43:29.525317,744,824,835, +40,2017-03-11 14:43:29.525317,595,934,746, +31,2017-03-11 14:43:29.525317,730,345,174, +3,2017-03-11 14:43:29.525317,44,491,467, +32,2017-03-11 14:43:29.525317,57,519,163, +85,2017-03-11 14:43:29.525317,547,136,11, +92,2017-03-11 14:43:29.525317,996,993,590, +71,2017-03-11 14:43:29.525317,978,522,824, +72,2017-03-11 14:43:29.525317,346,659,118, +94,2017-03-11 14:43:29.525317,593,864,253, +32,2017-03-11 14:43:29.525317,209,427,352, +25,2017-03-11 14:43:29.525317,918,819,572, +98,2017-03-11 14:43:29.525317,338,736,824, +89,2017-03-11 14:43:29.525317,872,834,801, +87,2017-03-11 14:43:29.525317,828,391,579, +81,2017-03-11 14:43:29.525317,913,403,527, +26,2017-03-11 14:43:29.525317,62,645,201, +65,2017-03-11 14:43:29.525317,509,454,978, +72,2017-03-11 14:43:29.525317,881,330,971, +80,2017-03-11 14:43:29.525317,149,543,774, +49,2017-03-11 14:43:29.525317,279,598,373, +15,2017-03-11 14:43:29.525317,432,174,18, +26,2017-03-11 14:43:29.525317,565,597,65, +48,2017-03-11 14:43:29.525317,0,592,739, +6,2017-03-11 14:43:29.525317,237,940,717, +75,2017-03-11 14:43:29.525317,394,695,464, +27,2017-03-11 14:43:29.525317,25,435,74, +17,2017-03-11 14:43:29.525317,979,848,662, +26,2017-03-11 14:43:29.525317,445,35,408, +88,2017-03-11 14:43:29.525317,209,426,137, +77,2017-03-11 14:43:29.525317,23,202,254, +2,2017-03-11 14:43:29.525317,794,992,85, +3,2017-03-11 14:43:29.525317,932,802,777, +33,2017-03-11 14:43:29.525317,497,241,601, +52,2017-03-11 14:43:29.525317,677,675,696, +66,2017-03-11 14:43:29.525317,522,358,913, +97,2017-03-11 14:43:29.525317,393,321,845, +60,2017-03-11 14:43:29.525317,746,982,377, +77,2017-03-11 14:43:29.525317,184,631,793, +98,2017-03-11 14:43:29.525317,623,878,8, +56,2017-03-11 14:43:29.525317,680,785,881, +18,2017-03-11 14:43:29.525317,26,482,698, +70,2017-03-11 14:43:29.525317,157,394,358, +68,2017-03-11 14:43:29.525317,752,271,647, +14,2017-03-11 14:43:29.525317,591,492,746, +34,2017-03-11 14:43:29.525317,474,123,107, +66,2017-03-11 14:43:29.525317,754,899,636, +38,2017-03-11 14:43:29.525317,777,644,932, +46,2017-03-11 14:43:29.525317,429,814,634, +46,2017-03-11 14:43:29.525317,296,332,158, +45,2017-03-11 14:43:29.525317,726,516,132, +48,2017-03-11 14:43:29.525317,786,779,622, +38,2017-03-11 14:43:29.525317,271,369,715, +75,2017-03-11 14:43:29.525317,492,821,403, +25,2017-03-11 14:43:29.525317,721,39,624, +50,2017-03-11 14:43:29.525317,683,556,955, +11,2017-03-11 14:43:29.525317,370,589,567, +67,2017-03-11 14:43:29.525317,921,725,119, +65,2017-03-11 14:43:29.525317,241,251,126, +3,2017-03-11 14:43:29.525317,31,748,405, +30,2017-03-11 14:43:29.525317,117,119,47, +61,2017-03-11 14:43:29.525317,941,451,855, +66,2017-03-11 14:43:29.525317,490,479,159, +17,2017-03-11 14:43:29.525317,35,114,285, +41,2017-03-11 14:43:29.525317,703,852,71, +62,2017-03-11 14:43:29.525317,577,190,272, +82,2017-03-11 14:43:29.525317,442,398,846, +47,2017-03-11 14:43:29.525317,146,250,774, +26,2017-03-11 14:43:29.525317,369,822,872, +31,2017-03-11 14:43:29.525317,272,728,971, +76,2017-03-11 14:43:29.525317,207,130,935, +24,2017-03-11 14:43:29.525317,244,220,647, +95,2017-03-11 14:43:29.525317,73,718,572, +65,2017-03-11 14:43:29.525317,908,844,469, +35,2017-03-11 14:43:29.525317,242,314,822, +39,2017-03-11 14:43:29.525317,565,597,651, +93,2017-03-11 14:43:29.525317,418,524,244, +69,2017-03-11 14:43:29.525317,251,215,453, +46,2017-03-11 14:43:29.525317,346,388,700, +59,2017-03-11 14:43:29.525317,609,347,537, +68,2017-03-11 14:43:29.525317,65,109,332, +97,2017-03-11 14:43:29.525317,952,801,323, +19,2017-03-11 14:43:29.525317,115,145,583, +68,2017-03-11 14:43:29.525317,742,234,614, +16,2017-03-11 14:43:29.525317,758,858,851, +1,2017-03-11 14:43:29.525317,73,304,467, +42,2017-03-11 14:43:29.525317,692,167,8, +30,2017-03-11 14:43:29.525317,514,545,982, +58,2017-03-11 14:43:29.525317,653,314,551, +61,2017-03-11 14:43:29.525317,115,874,800, +23,2017-03-11 14:43:29.525317,19,383,910, +76,2017-03-11 14:43:29.525317,617,523,921, +37,2017-03-11 14:43:29.525317,381,771,384, +45,2017-03-11 14:43:29.525317,75,851,872, +77,2017-03-11 14:43:29.525317,18,880,68, +53,2017-03-11 14:43:29.525317,425,50,110, +8,2017-03-11 14:43:29.525317,364,661,684, +48,2017-03-11 14:43:29.525317,535,485,710, +55,2017-03-11 14:43:29.525317,868,620,315, +48,2017-03-11 14:43:29.525317,143,235,860, +52,2017-03-11 14:43:29.525317,7,244,978, +8,2017-03-11 14:43:29.525317,95,850,849, +11,2017-03-11 14:43:29.525317,730,917,644, +15,2017-03-11 14:43:29.525317,967,754,233, +33,2017-03-11 14:43:29.525317,415,918,811, +95,2017-03-11 14:43:29.525317,403,520,505, +27,2017-03-11 14:43:29.525317,140,819,755, +28,2017-03-11 14:43:29.525317,54,615,807, +6,2017-03-11 14:43:29.525317,858,784,143, +95,2017-03-11 14:43:29.525317,634,991,65, +36,2017-03-11 14:43:29.525317,908,709,518, +87,2017-03-11 14:43:29.525317,464,751,206, +88,2017-03-11 14:43:29.525317,669,16,830, +7,2017-03-11 14:43:29.525317,537,334,342, +68,2017-03-11 14:43:29.525317,154,97,959, +21,2017-03-11 14:43:29.525317,712,766,269, +57,2017-03-11 14:43:29.525317,550,412,523, +18,2017-03-11 14:43:29.525317,403,588,547, +31,2017-03-11 14:43:29.525317,298,65,186, +76,2017-03-11 14:43:29.525317,816,392,640, +49,2017-03-11 14:43:29.525317,408,470,557, +94,2017-03-11 14:43:29.525317,805,899,621, +96,2017-03-11 14:43:29.525317,996,580,166, +71,2017-03-11 14:43:29.525317,346,435,278, +90,2017-03-11 14:43:29.525317,847,801,80, +25,2017-03-11 14:43:29.525317,390,627,562, +69,2017-03-11 14:43:29.525317,692,748,449, +51,2017-03-11 14:43:29.525317,139,89,994, +55,2017-03-11 14:43:29.525317,560,551,492, +36,2017-03-11 14:43:29.525317,450,113,322, +45,2017-03-11 14:43:29.525317,694,489,154, +4,2017-03-11 14:43:29.525317,924,433,936, +77,2017-03-11 14:43:29.525317,234,16,21, +62,2017-03-11 14:43:29.525317,643,583,311, +33,2017-03-11 14:43:29.525317,331,760,843, +47,2017-03-11 14:43:29.525317,850,837,18, +41,2017-03-11 14:43:29.525317,388,510,773, +84,2017-03-11 14:43:29.525317,623,96,284, +32,2017-03-11 14:43:29.525317,584,438,357, +51,2017-03-11 14:43:29.525317,871,293,279, +11,2017-03-11 14:43:29.525317,309,301,729, +95,2017-03-11 14:43:29.525317,884,40,287, +21,2017-03-11 14:43:29.525317,801,130,684, +65,2017-03-11 14:43:29.525317,967,702,60, +35,2017-03-11 14:43:29.525317,212,833,192, +83,2017-03-11 14:43:29.525317,929,476,151, +51,2017-03-11 14:43:29.525317,914,508,22, +79,2017-03-11 14:43:29.525317,801,301,890, +11,2017-03-11 14:43:29.525317,601,619,63, +48,2017-03-11 14:43:29.525317,660,351,699, +46,2017-03-11 14:43:29.525317,481,383,111, +45,2017-03-11 14:43:29.525317,85,171,803, +30,2017-03-11 14:43:29.525317,4,995,131, +93,2017-03-11 14:43:29.525317,472,283,446, +39,2017-03-11 14:43:29.525317,791,468,171, +59,2017-03-11 14:43:29.525317,769,62,703, +37,2017-03-11 14:43:29.525317,681,766,855, +34,2017-03-11 14:43:29.525317,117,554,802, +60,2017-03-11 14:43:29.525317,938,913,46, +2,2017-03-11 14:43:29.525317,83,849,320, +9,2017-03-11 14:43:29.525317,845,451,20, +32,2017-03-11 14:43:29.525317,734,466,702, +52,2017-03-11 14:43:29.525317,934,874,117, +70,2017-03-11 14:43:29.525317,936,820,73, +62,2017-03-11 14:43:29.525317,586,928,958, +70,2017-03-11 14:43:29.525317,482,760,300, +42,2017-03-11 14:43:29.525317,673,346,443, +76,2017-03-11 14:43:29.525317,196,763,844, +4,2017-03-11 14:43:29.525317,214,864,356, +95,2017-03-11 14:43:29.525317,330,59,473, +26,2017-03-11 14:43:29.525317,932,590,966, +87,2017-03-11 14:43:29.525317,409,39,485, +100,2017-03-11 14:43:29.525317,967,444,698, +45,2017-03-11 14:43:29.525317,204,998,869, +88,2017-03-11 14:43:29.525317,344,312,633, +54,2017-03-11 14:43:29.525317,75,477,580, +29,2017-03-11 14:43:29.525317,340,936,238, +67,2017-03-11 14:43:29.525317,995,710,934, +93,2017-03-11 14:43:29.525317,300,900,796, +71,2017-03-11 14:43:29.525317,939,281,705, +91,2017-03-11 14:43:29.525317,725,403,356, +93,2017-03-11 14:43:29.525317,401,226,805, +75,2017-03-11 14:43:29.525317,538,438,285, +61,2017-03-11 14:43:29.525317,915,865,903, +25,2017-03-11 14:43:29.525317,802,140,925, +80,2017-03-11 14:43:29.525317,851,859,725, +15,2017-03-11 14:43:29.525317,759,521,860, +70,2017-03-11 14:43:29.525317,802,565,605, +53,2017-03-11 14:43:29.525317,968,961,454, +37,2017-03-11 14:43:29.525317,187,259,114, +72,2017-03-11 14:43:29.525317,697,400,338, +61,2017-03-11 14:43:29.525317,265,241,867, +7,2017-03-11 14:43:29.525317,381,792,864, +23,2017-03-11 14:43:29.525317,650,589,382, +41,2017-03-11 14:43:29.525317,109,243,107, +91,2017-03-11 14:43:29.525317,808,712,437, +78,2017-03-11 14:43:29.525317,673,891,145, +86,2017-03-11 14:43:29.525317,150,259,584, +85,2017-03-11 14:43:29.525317,659,922,459, +92,2017-03-11 14:43:29.525317,163,326,991, +54,2017-03-11 14:43:29.525317,118,855,775, +77,2017-03-11 14:43:29.525317,444,158,177, +55,2017-03-11 14:43:29.525317,401,284,464, +21,2017-03-11 14:43:29.525317,996,901,985, +67,2017-03-11 14:43:29.525317,793,129,529, +94,2017-03-11 14:43:29.525317,389,113,791, +5,2017-03-11 14:43:29.525317,35,250,971, +20,2017-03-11 14:43:29.525317,576,962,742, +69,2017-03-11 14:43:29.525317,817,518,462, +26,2017-03-11 14:43:29.525317,675,639,814, +8,2017-03-11 14:43:29.525317,923,278,285, +92,2017-03-11 14:43:29.525317,180,269,588, +97,2017-03-11 14:43:29.525317,399,117,915, +79,2017-03-11 14:43:29.525317,230,706,835, +27,2017-03-11 14:43:29.525317,956,806,464, +53,2017-03-11 14:43:29.525317,768,206,226, +58,2017-03-11 14:43:29.525317,723,688,845, +40,2017-03-11 14:43:29.525317,327,660,475, +25,2017-03-11 14:43:29.525317,938,759,169, +12,2017-03-11 14:43:29.525317,28,758,90, +43,2017-03-11 14:43:29.525317,875,5,214, +10,2017-03-11 14:43:29.525317,711,49,370, +67,2017-03-11 14:43:29.525317,855,833,198, +62,2017-03-11 14:43:29.525317,39,424,207, +76,2017-03-11 14:43:29.525317,112,53,161, +44,2017-03-11 14:43:29.525317,712,636,689, +65,2017-03-11 14:43:29.525317,395,859,767, +42,2017-03-11 14:43:29.525317,617,857,850, +49,2017-03-11 14:43:29.525317,862,65,596, +57,2017-03-11 14:43:29.525317,113,966,239, +97,2017-03-11 14:43:29.525317,799,437,590, +84,2017-03-11 14:43:29.525317,861,797,601, +97,2017-03-11 14:43:29.525317,850,762,412, +56,2017-03-11 14:43:29.525317,398,102,212, +79,2017-03-11 14:43:29.525317,961,979,217, +58,2017-03-11 14:43:29.525317,836,67,69, +70,2017-03-11 14:43:29.525317,132,665,271, +25,2017-03-11 14:43:29.525317,631,510,213, +43,2017-03-11 14:43:29.525317,947,804,269, +81,2017-03-11 14:43:29.525317,601,870,781, +45,2017-03-11 14:43:29.525317,632,194,13, +3,2017-03-11 14:43:29.525317,296,225,824, +26,2017-03-11 14:43:29.525317,204,41,834, +4,2017-03-11 14:43:29.525317,108,903,739, +24,2017-03-11 14:43:29.525317,568,10,485, +20,2017-03-11 14:43:29.525317,519,698,629, +47,2017-03-11 14:43:29.525317,502,898,274, +10,2017-03-11 14:43:29.525317,768,55,554, +40,2017-03-11 14:43:29.525317,249,566,431, +54,2017-03-11 14:43:29.525317,791,255,801, +99,2017-03-11 14:43:29.525317,295,635,35, +40,2017-03-11 14:43:29.525317,537,774,643, +10,2017-03-11 14:43:29.525317,784,128,303, +30,2017-03-11 14:43:29.525317,827,932,769, +33,2017-03-11 14:43:29.525317,830,43,432, +60,2017-03-11 14:43:29.525317,99,985,998, +35,2017-03-11 14:43:29.525317,552,429,893, +34,2017-03-11 14:43:29.525317,683,694,338, +98,2017-03-11 14:43:29.525317,329,373,381, +87,2017-03-11 14:43:29.525317,147,25,971, +93,2017-03-11 14:43:29.525317,153,275,234, +98,2017-03-11 14:43:29.525317,207,3,309, +4,2017-03-11 14:43:29.525317,47,740,634, +15,2017-03-11 14:43:29.525317,726,632,493, +28,2017-03-11 14:43:29.525317,61,386,620, +74,2017-03-11 14:43:29.525317,80,958,722, +41,2017-03-11 14:43:29.525317,331,104,275, +48,2017-03-11 14:43:29.525317,128,246,409, +28,2017-03-11 14:43:29.525317,520,643,261, +73,2017-03-11 14:43:29.525317,646,570,763, +69,2017-03-11 14:43:29.525317,310,398,838, +4,2017-03-11 14:43:29.525317,30,332,313, +9,2017-03-11 14:43:29.525317,718,933,834, +80,2017-03-11 14:43:29.525317,891,556,206, +22,2017-03-11 14:43:29.525317,660,481,700, +79,2017-03-11 14:43:29.525317,726,109,69, +25,2017-03-11 14:43:29.525317,752,330,973, +40,2017-03-11 14:43:29.525317,900,737,91, +21,2017-03-11 14:43:29.525317,135,929,246, +16,2017-03-11 14:43:29.525317,261,559,255, +98,2017-03-11 14:43:29.525317,492,90,777, +38,2017-03-11 14:43:29.525317,646,983,605, +31,2017-03-11 14:43:29.525317,464,305,94, +19,2017-03-11 14:43:29.525317,414,164,437, +17,2017-03-11 14:43:29.525317,494,410,563, +39,2017-03-11 14:43:29.525317,147,654,604, +28,2017-03-11 14:43:29.525317,584,850,446, +84,2017-03-11 14:43:29.525317,409,701,824, +90,2017-03-11 14:43:29.525317,791,601,285, +44,2017-03-11 14:43:29.525317,584,890,744, +5,2017-03-11 14:43:29.525317,195,838,237, +61,2017-03-11 14:43:29.525317,2,674,774, +50,2017-03-11 14:43:29.525317,84,337,890, +23,2017-03-11 14:43:29.525317,992,495,512, +58,2017-03-11 14:43:29.525317,345,958,420, +75,2017-03-11 14:43:29.525317,660,244,656, +45,2017-03-11 14:43:29.525317,845,940,888, +43,2017-03-11 14:43:29.525317,830,632,476, +3,2017-03-11 14:43:29.525317,470,713,634, +47,2017-03-11 14:43:29.525317,387,408,968, +47,2017-03-11 14:43:29.525317,745,858,703, +74,2017-03-11 14:43:29.525317,352,215,312, +70,2017-03-11 14:43:29.525317,173,732,452, +83,2017-03-11 14:43:29.525317,977,107,284, +82,2017-03-11 14:43:29.525317,48,172,250, +88,2017-03-11 14:43:29.525317,804,726,903, +27,2017-03-11 14:43:29.525317,439,537,745, +83,2017-03-11 14:43:29.525317,944,713,298, +69,2017-03-11 14:43:29.525317,571,0,426, +92,2017-03-11 14:43:29.525317,215,738,621, +39,2017-03-11 14:43:29.525317,471,72,222, +45,2017-03-11 14:43:29.525317,179,506,269, +23,2017-03-11 14:43:29.525317,678,519,105, +48,2017-03-11 14:43:29.525317,244,7,756, +68,2017-03-11 14:43:29.525317,544,501,509, +49,2017-03-11 14:43:29.525317,214,807,178, +78,2017-03-11 14:43:29.525317,808,604,708, +2,2017-03-11 14:43:29.525317,342,328,412, +81,2017-03-11 14:43:29.525317,401,634,261, +58,2017-03-11 14:43:29.525317,140,530,806, +82,2017-03-11 14:43:29.525317,48,911,300, +29,2017-03-11 14:43:29.525317,918,56,976, +46,2017-03-11 14:43:29.525317,557,485,950, +77,2017-03-11 14:43:29.525317,292,128,556, +10,2017-03-11 14:43:29.525317,732,264,123, +7,2017-03-11 14:43:29.525317,593,535,887, +99,2017-03-11 14:43:29.525317,169,148,573, +31,2017-03-11 14:43:29.525317,677,380,127, +73,2017-03-11 14:43:29.525317,291,427,18, +21,2017-03-11 14:43:29.525317,484,994,671, +4,2017-03-11 14:43:29.525317,478,622,813, +77,2017-03-11 14:43:29.525317,750,369,870, +48,2017-03-11 14:43:29.525317,633,993,555, +23,2017-03-11 14:43:29.525317,528,443,219, +70,2017-03-11 14:43:29.525317,590,793,6, +27,2017-03-11 14:43:29.525317,172,133,994, +46,2017-03-11 14:43:29.525317,560,12,671, +4,2017-03-11 14:43:29.525317,5,343,85, +48,2017-03-11 14:43:29.525317,964,897,254, +71,2017-03-11 14:43:29.525317,266,125,195, +90,2017-03-11 14:43:29.525317,118,751,126, +65,2017-03-11 14:43:29.525317,193,345,343, +78,2017-03-11 14:43:29.525317,138,349,51, +31,2017-03-11 14:43:29.525317,482,45,772, +4,2017-03-11 14:43:29.525317,56,444,86, +6,2017-03-11 14:43:29.525317,787,171,545, +75,2017-03-11 14:43:29.525317,68,799,465, +33,2017-03-11 14:43:29.525317,924,660,234, +4,2017-03-11 14:43:29.525317,410,359,688, +60,2017-03-11 14:43:29.525317,705,32,387, +84,2017-03-11 14:43:29.525317,381,438,152, +86,2017-03-11 14:43:29.525317,483,924,906, +54,2017-03-11 14:43:29.525317,368,992,601, +15,2017-03-11 14:43:29.525317,163,147,906, +23,2017-03-11 14:43:29.525317,946,370,565, +87,2017-03-11 14:43:29.525317,30,799,912, +44,2017-03-11 14:43:29.525317,159,600,44, +86,2017-03-11 14:43:29.525317,632,431,706, +1,2017-03-11 14:43:29.525317,869,858,877, +35,2017-03-11 14:43:29.525317,782,783,892, +15,2017-03-11 14:43:29.525317,775,494,305, +94,2017-03-11 14:43:29.525317,640,210,169, +59,2017-03-11 14:43:29.525317,581,735,456, +61,2017-03-11 14:43:29.525317,534,368,51, +69,2017-03-11 14:43:29.525317,968,95,556, +60,2017-03-11 14:43:29.525317,526,262,614, +40,2017-03-11 14:43:29.525317,119,491,748, +90,2017-03-11 14:43:29.525317,274,641,51, +5,2017-03-11 14:43:29.525317,135,356,987, +78,2017-03-11 14:43:29.525317,567,156,361, +15,2017-03-11 14:43:29.525317,891,818,758, +42,2017-03-11 14:43:29.525317,185,809,117, +15,2017-03-11 14:43:29.525317,905,673,754, +43,2017-03-11 14:43:29.525317,935,368,827, +5,2017-03-11 14:43:29.525317,859,575,955, +13,2017-03-11 14:43:29.525317,216,6,182, +35,2017-03-11 14:43:29.525317,362,169,126, +93,2017-03-11 14:43:29.525317,325,487,76, +22,2017-03-11 14:43:29.525317,305,834,640, +49,2017-03-11 14:43:29.525317,644,758,644, +55,2017-03-11 14:43:29.525317,431,398,979, +37,2017-03-11 14:43:29.525317,766,806,420, +63,2017-03-11 14:43:29.525317,381,375,758, +60,2017-03-11 14:43:29.525317,382,940,948, +74,2017-03-11 14:43:29.525317,109,74,673, +43,2017-03-11 14:43:29.525317,561,749,650, +87,2017-03-11 14:43:29.525317,584,290,357, +23,2017-03-11 14:43:29.525317,48,1,776, +48,2017-03-11 14:43:29.525317,399,755,845, +16,2017-03-11 14:43:29.525317,561,265,790, +94,2017-03-11 14:43:29.525317,640,548,539, +2,2017-03-11 14:43:29.525317,488,487,766, +60,2017-03-11 14:43:29.525317,561,439,32, +12,2017-03-11 14:43:29.525317,188,682,988, +77,2017-03-11 14:43:29.525317,972,345,999, +2,2017-03-11 14:43:29.525317,345,775,499, +74,2017-03-11 14:43:29.525317,530,343,909, +9,2017-03-11 14:43:29.525317,608,699,32, +25,2017-03-11 14:43:29.525317,247,571,269, +74,2017-03-11 14:43:29.525317,58,35,333, +62,2017-03-11 14:43:29.525317,473,364,740, +66,2017-03-11 14:43:29.525317,46,729,433, +2,2017-03-11 14:43:29.525317,73,432,38, +42,2017-03-11 14:43:29.525317,207,536,163, +74,2017-03-11 14:43:29.525317,879,72,828, +49,2017-03-11 14:43:29.525317,771,860,735, +2,2017-03-11 14:43:29.525317,431,4,754, +49,2017-03-11 14:43:29.525317,38,87,108, +51,2017-03-11 14:43:29.525317,451,849,173, +50,2017-03-11 14:43:29.525317,577,606,515, +65,2017-03-11 14:43:29.525317,39,552,69, +25,2017-03-11 14:43:29.525317,89,232,983, +97,2017-03-11 14:43:29.525317,304,811,455, +8,2017-03-11 14:43:29.525317,671,190,93, +10,2017-03-11 14:43:29.525317,193,847,592, +23,2017-03-11 14:43:29.525317,934,700,743, +38,2017-03-11 14:43:29.525317,549,916,881, +13,2017-03-11 14:43:29.525317,523,396,776, +56,2017-03-11 14:43:29.525317,948,845,807, +4,2017-03-11 14:43:29.525317,77,790,5, +38,2017-03-11 14:43:29.525317,601,460,456, +27,2017-03-11 14:43:29.525317,649,550,374, +84,2017-03-11 14:43:29.525317,397,965,74, +33,2017-03-11 14:43:29.525317,665,817,715, +21,2017-03-11 14:43:29.525317,733,596,340, +26,2017-03-11 14:43:29.525317,992,116,817, +94,2017-03-11 14:43:29.525317,962,624,978, +4,2017-03-11 14:43:29.525317,415,982,420, +2,2017-03-11 14:43:29.525317,442,877,287, +9,2017-03-11 14:43:29.525317,426,661,934, +82,2017-03-11 14:43:29.525317,627,8,154, +29,2017-03-11 14:43:29.525317,825,868,506, +56,2017-03-11 14:43:29.525317,465,846,813, +46,2017-03-11 14:43:29.525317,962,630,398, +92,2017-03-11 14:43:29.525317,255,375,963, +67,2017-03-11 14:43:29.525317,358,383,685, +80,2017-03-11 14:43:29.525317,259,972,891, +69,2017-03-11 14:43:29.525317,633,825,509, +26,2017-03-11 14:43:29.525317,832,662,552, +66,2017-03-11 14:43:29.525317,531,58,214, +100,2017-03-11 14:43:29.525317,903,28,453, +87,2017-03-11 14:43:29.525317,658,850,789, +91,2017-03-11 14:43:29.525317,226,752,582, +58,2017-03-11 14:43:29.525317,135,267,383, +39,2017-03-11 14:43:29.525317,239,274,80, +87,2017-03-11 14:43:29.525317,98,589,132, +93,2017-03-11 14:43:29.525317,251,683,587, +78,2017-03-11 14:43:29.525317,741,801,778, +64,2017-03-11 14:43:29.525317,829,230,510, +49,2017-03-11 14:43:29.525317,80,299,400, +31,2017-03-11 14:43:29.525317,51,981,889, +19,2017-03-11 14:43:29.525317,248,272,580, +49,2017-03-11 14:43:29.525317,545,660,359, +64,2017-03-11 14:43:29.525317,249,491,574, +50,2017-03-11 14:43:29.525317,174,161,282, +92,2017-03-11 14:43:29.525317,962,59,560, +79,2017-03-11 14:43:29.525317,290,70,278, +37,2017-03-11 14:43:29.525317,369,678,676, +42,2017-03-11 14:43:29.525317,659,565,606, +91,2017-03-11 14:43:29.525317,837,186,395, +38,2017-03-11 14:43:29.525317,846,754,26, +10,2017-03-11 14:43:29.525317,245,600,595, +42,2017-03-11 14:43:29.525317,761,877,335, +72,2017-03-11 14:43:29.525317,936,895,514, +23,2017-03-11 14:43:29.525317,965,793,596, +33,2017-03-11 14:43:29.525317,471,272,754, +13,2017-03-11 14:43:29.525317,837,360,37, +67,2017-03-11 14:43:29.525317,546,432,56, +39,2017-03-11 14:43:29.525317,186,82,487, +43,2017-03-11 14:43:29.525317,682,82,850, +44,2017-03-11 14:43:29.525317,959,185,166, +90,2017-03-11 14:43:29.525317,80,681,121, +4,2017-03-11 14:43:29.525317,473,717,378, +94,2017-03-11 14:43:29.525317,989,132,74, +83,2017-03-11 14:43:29.525317,492,111,501, +4,2017-03-11 14:43:29.525317,544,557,429, +73,2017-03-11 14:43:29.525317,639,916,160, +32,2017-03-11 14:43:29.525317,998,10,764, +96,2017-03-11 14:43:29.525317,195,930,853, +27,2017-03-11 14:43:29.525317,610,974,319, +8,2017-03-11 14:43:29.525317,692,697,28, +68,2017-03-11 14:43:29.525317,829,102,508, +32,2017-03-11 14:43:29.525317,213,8,358, +76,2017-03-11 14:43:29.525317,565,787,486, +20,2017-03-11 14:43:29.525317,704,646,525, +70,2017-03-11 14:43:29.525317,656,289,660, +85,2017-03-11 14:43:29.525317,218,512,126, +83,2017-03-11 14:43:29.525317,486,444,913, +18,2017-03-11 14:43:29.525317,141,940,859, +97,2017-03-11 14:43:29.525317,42,367,290, +26,2017-03-11 14:43:29.525317,375,648,12, +94,2017-03-11 14:43:29.525317,435,498,144, +14,2017-03-11 14:43:29.525317,145,668,841, +80,2017-03-11 14:43:29.525317,957,501,652, +18,2017-03-11 14:43:29.525317,13,777,4, +50,2017-03-11 14:43:29.525317,222,917,677, +36,2017-03-11 14:43:29.525317,858,536,332, +90,2017-03-11 14:43:29.525317,903,623,155, +28,2017-03-11 14:43:29.525317,271,168,217, +71,2017-03-11 14:43:29.525317,666,361,845, +81,2017-03-11 14:43:29.525317,29,686,611, +99,2017-03-11 14:43:29.525317,187,263,162, +20,2017-03-11 14:43:29.525317,41,166,700, +26,2017-03-11 14:43:29.525317,83,377,625, +94,2017-03-11 14:43:29.525317,913,958,841, +82,2017-03-11 14:43:29.525317,580,996,93, +85,2017-03-11 14:43:29.525317,164,311,557, +83,2017-03-11 14:43:29.525317,672,402,640, +70,2017-03-11 14:43:29.525317,88,252,687, +28,2017-03-11 14:43:29.525317,515,849,475, +56,2017-03-11 14:43:29.525317,15,175,818, +10,2017-03-11 14:43:29.525317,552,444,40, +46,2017-03-11 14:43:29.525317,401,881,281, +98,2017-03-11 14:43:29.525317,877,374,832, +4,2017-03-11 14:43:29.525317,685,389,871, +36,2017-03-11 14:43:29.525317,790,511,57, +88,2017-03-11 14:43:29.525317,763,744,154, +28,2017-03-11 14:43:29.525317,593,629,835, +61,2017-03-11 14:43:29.525317,804,653,708, +36,2017-03-11 14:43:29.525317,97,748,821, +50,2017-03-11 14:43:29.525317,628,101,479, +51,2017-03-11 14:43:29.525317,475,312,547, +16,2017-03-11 14:43:29.525317,700,418,516, +49,2017-03-11 14:43:29.525317,929,573,369, +69,2017-03-11 14:43:29.525317,317,523,971, +91,2017-03-11 14:43:29.525317,152,805,519, +96,2017-03-11 14:43:29.525317,458,227,312, +55,2017-03-11 14:43:29.525317,974,132,53, +60,2017-03-11 14:43:29.525317,234,532,108, +71,2017-03-11 14:43:29.525317,844,655,869, +54,2017-03-11 14:43:29.525317,73,386,35, +0,2017-03-11 14:43:29.525317,959,404,694, +28,2017-03-11 14:43:29.525317,927,665,187, +8,2017-03-11 14:43:29.525317,470,706,34, +93,2017-03-11 14:43:29.525317,933,346,483, +91,2017-03-11 14:43:29.525317,478,536,510, +71,2017-03-11 14:43:29.525317,68,618,421, +91,2017-03-11 14:43:29.525317,274,290,455, +35,2017-03-11 14:43:29.525317,676,490,348, +63,2017-03-11 14:43:29.525317,894,42,911, +82,2017-03-11 14:43:29.525317,707,97,899, +18,2017-03-11 14:43:29.525317,803,934,105, +74,2017-03-11 14:43:29.525317,279,587,643, +76,2017-03-11 14:43:29.525317,123,153,469, +19,2017-03-11 14:43:29.525317,772,890,102, +5,2017-03-11 14:43:29.525317,180,557,392, +86,2017-03-11 14:43:29.525317,48,740,490, +94,2017-03-11 14:43:29.525317,782,401,763, +49,2017-03-11 14:43:29.525317,498,662,665, +30,2017-03-11 14:43:29.525317,595,770,38, +87,2017-03-11 14:43:29.525317,357,681,632, +48,2017-03-11 14:43:29.525317,834,101,671, +61,2017-03-11 14:43:29.525317,991,773,652, +17,2017-03-11 14:43:29.525317,330,43,27, +38,2017-03-11 14:43:29.525317,783,517,320, +57,2017-03-11 14:43:29.525317,918,82,54, +42,2017-03-11 14:43:29.525317,744,719,718, +34,2017-03-11 14:43:29.525317,489,756,214, +85,2017-03-11 14:43:29.525317,437,847,326, +27,2017-03-11 14:43:29.525317,948,996,878, +94,2017-03-11 14:43:29.525317,769,529,110, +10,2017-03-11 14:43:29.525317,573,137,477, +36,2017-03-11 14:43:29.525317,654,797,921, +57,2017-03-11 14:43:29.525317,879,975,989, +62,2017-03-11 14:43:29.525317,694,707,963, +18,2017-03-11 14:43:29.525317,463,177,29, +90,2017-03-11 14:43:29.525317,24,354,172, +97,2017-03-11 14:43:29.525317,350,49,910, +12,2017-03-11 14:43:29.525317,579,20,219, +15,2017-03-11 14:43:29.525317,157,696,508, +81,2017-03-11 14:43:29.525317,493,429,384, +37,2017-03-11 14:43:29.525317,404,373,995, +10,2017-03-11 14:43:29.525317,80,957,282, +54,2017-03-11 14:43:29.525317,135,310,443, +16,2017-03-11 14:43:29.525317,664,615,129, +1,2017-03-11 14:43:29.525317,664,39,134, +24,2017-03-11 14:43:29.525317,60,353,394, +22,2017-03-11 14:43:29.525317,49,902,28, +54,2017-03-11 14:43:29.525317,331,412,914, +73,2017-03-11 14:43:29.525317,785,909,834, +86,2017-03-11 14:43:29.525317,866,115,408, +0,2017-03-11 14:43:29.525317,425,851,159, +9,2017-03-11 14:43:29.525317,465,288,104, +13,2017-03-11 14:43:29.525317,328,239,372, +39,2017-03-11 14:43:29.525317,592,766,604, +64,2017-03-11 14:43:29.525317,668,632,183, +100,2017-03-11 14:43:29.525317,44,97,733, +83,2017-03-11 14:43:29.525317,6,567,694, +87,2017-03-11 14:43:29.525317,682,102,873, +11,2017-03-11 14:43:29.525317,953,32,197, +42,2017-03-11 14:43:29.525317,321,301,547, +65,2017-03-11 14:43:29.525317,540,919,36, +13,2017-03-11 14:43:29.525317,685,640,773, +35,2017-03-11 14:43:29.525317,272,956,352, +32,2017-03-11 14:43:29.525317,53,85,146, +6,2017-03-11 14:43:29.525317,652,840,932, +33,2017-03-11 14:43:29.525317,942,805,442, +89,2017-03-11 14:43:29.525317,837,638,312, +16,2017-03-11 14:43:29.525317,940,860,806, +48,2017-03-11 14:43:29.525317,779,842,611, +46,2017-03-11 14:43:29.525317,482,383,817, +75,2017-03-11 14:43:29.525317,339,169,70, +39,2017-03-11 14:43:29.525317,254,216,452, +91,2017-03-11 14:43:29.525317,56,383,240, +100,2017-03-11 14:43:29.525317,188,682,892, +3,2017-03-11 14:43:29.525317,320,204,184, +26,2017-03-11 14:43:29.525317,64,990,739, +84,2017-03-11 14:43:29.525317,832,350,307, +31,2017-03-11 14:43:29.525317,733,125,67, +7,2017-03-11 14:43:29.525317,294,138,464, +55,2017-03-11 14:43:29.525317,354,916,454, +41,2017-03-11 14:43:29.525317,299,694,408, +49,2017-03-11 14:43:29.525317,376,300,513, +70,2017-03-11 14:43:29.525317,504,697,956, +57,2017-03-11 14:43:29.525317,687,695,411, +52,2017-03-11 14:43:29.525317,44,718,832, +78,2017-03-11 14:43:29.525317,843,900,849, +14,2017-03-11 14:43:29.525317,37,313,684, +39,2017-03-11 14:43:29.525317,229,138,801, +53,2017-03-11 14:43:29.525317,832,209,16, +21,2017-03-11 14:43:29.525317,509,529,904, +1,2017-03-11 14:43:29.525317,226,860,581, +91,2017-03-11 14:43:29.525317,555,992,432, +60,2017-03-11 14:43:29.525317,710,264,376, +55,2017-03-11 14:43:29.525317,164,225,690, +20,2017-03-11 14:43:29.525317,538,374,592, +77,2017-03-11 14:43:29.525317,512,393,296, +34,2017-03-11 14:43:29.525317,602,311,552, +11,2017-03-11 14:43:29.525317,841,456,124, +7,2017-03-11 14:43:29.525317,316,705,981, +87,2017-03-11 14:43:29.525317,697,413,469, +41,2017-03-11 14:43:29.525317,677,845,961, +84,2017-03-11 14:43:29.525317,70,651,41, +61,2017-03-11 14:43:29.525317,25,633,376, +54,2017-03-11 14:43:29.525317,27,671,880, +63,2017-03-11 14:43:29.525317,983,432,740, +82,2017-03-11 14:43:29.525317,888,864,891, +20,2017-03-11 14:43:29.525317,569,872,74, +27,2017-03-11 14:43:29.525317,284,543,675, +96,2017-03-11 14:43:29.525317,389,636,801, +46,2017-03-11 14:43:29.525317,286,842,68, +31,2017-03-11 14:43:29.525317,475,444,847, +50,2017-03-11 14:43:29.525317,115,728,131, +10,2017-03-11 14:43:29.525317,160,871,922, +5,2017-03-11 14:43:29.525317,735,812,252, +30,2017-03-11 14:43:29.525317,684,326,571, +97,2017-03-11 14:43:29.525317,869,246,929, +26,2017-03-11 14:43:29.525317,881,730,717, +17,2017-03-11 14:43:29.525317,571,785,479, +5,2017-03-11 14:43:29.525317,228,326,548, +34,2017-03-11 14:43:29.525317,54,679,441, +21,2017-03-11 14:43:29.525317,549,363,262, +28,2017-03-11 14:43:29.525317,175,513,588, +86,2017-03-11 14:43:29.525317,839,160,827, +71,2017-03-11 14:43:29.525317,405,756,966, +29,2017-03-11 14:43:29.525317,485,682,455, +6,2017-03-11 14:43:29.525317,467,934,103, +70,2017-03-11 14:43:29.525317,260,651,38, +31,2017-03-11 14:43:29.525317,330,479,528, +88,2017-03-11 14:43:29.525317,842,790,163, +2,2017-03-11 14:43:29.525317,303,752,876, +14,2017-03-11 14:43:29.525317,911,703,850, +32,2017-03-11 14:43:29.525317,459,815,604, +94,2017-03-11 14:43:29.525317,498,58,1, +96,2017-03-11 14:43:29.525317,992,104,659, +25,2017-03-11 14:43:29.525317,756,698,566, +9,2017-03-11 14:43:29.525317,177,94,965, +2,2017-03-11 14:43:29.525317,883,128,35, +19,2017-03-11 14:43:29.525317,879,911,328, +79,2017-03-11 14:43:29.525317,614,178,107, +7,2017-03-11 14:43:29.525317,993,711,16, +49,2017-03-11 14:43:29.525317,769,17,455, +76,2017-03-11 14:43:29.525317,122,114,13, +88,2017-03-11 14:43:29.525317,812,579,963, +99,2017-03-11 14:43:29.525317,673,928,7, +56,2017-03-11 14:43:29.525317,55,42,743, +93,2017-03-11 14:43:29.525317,953,71,725, +57,2017-03-11 14:43:29.525317,249,832,639, +24,2017-03-11 14:43:29.525317,543,656,733, +31,2017-03-11 14:43:29.525317,673,188,73, +79,2017-03-11 14:43:29.525317,302,87,672, +11,2017-03-11 14:43:29.525317,666,635,102, +34,2017-03-11 14:43:29.525317,563,110,895, +62,2017-03-11 14:43:29.525317,152,637,553, +11,2017-03-11 14:43:29.525317,708,278,672, +96,2017-03-11 14:43:29.525317,110,311,199, +65,2017-03-11 14:43:29.525317,967,931,966, +64,2017-03-11 14:43:29.525317,119,39,435, +42,2017-03-11 14:43:29.525317,126,107,535, +79,2017-03-11 14:43:29.525317,742,637,129, +30,2017-03-11 14:43:29.525317,747,24,922, +90,2017-03-11 14:43:29.525317,661,475,4, +37,2017-03-11 14:43:29.525317,753,676,326, +86,2017-03-11 14:43:29.525317,988,525,517, +96,2017-03-11 14:43:29.525317,456,482,595, +58,2017-03-11 14:43:29.525317,521,30,996, +65,2017-03-11 14:43:29.525317,137,531,438, +88,2017-03-11 14:43:29.525317,169,567,183, +92,2017-03-11 14:43:29.525317,591,105,815, +25,2017-03-11 14:43:29.525317,580,819,622, +33,2017-03-11 14:43:29.525317,496,948,196, +48,2017-03-11 14:43:29.525317,473,713,439, +93,2017-03-11 14:43:29.525317,195,34,504, +72,2017-03-11 14:43:29.525317,64,501,363, +20,2017-03-11 14:43:29.525317,32,801,80, +20,2017-03-11 14:43:29.525317,368,263,117, +96,2017-03-11 14:43:29.525317,368,932,212, +95,2017-03-11 14:43:29.525317,751,834,281, +25,2017-03-11 14:43:29.525317,782,478,730, +26,2017-03-11 14:43:29.525317,190,168,184, +39,2017-03-11 14:43:29.525317,202,689,102, +27,2017-03-11 14:43:29.525317,189,465,467, +22,2017-03-11 14:43:29.525317,265,547,423, +63,2017-03-11 14:43:29.525317,810,539,593, +18,2017-03-11 14:43:29.525317,471,805,126, +22,2017-03-11 14:43:29.525317,639,407,467, +42,2017-03-11 14:43:29.525317,885,197,676, +8,2017-03-11 14:43:29.525317,365,860,460, +57,2017-03-11 14:43:29.525317,549,562,834, +74,2017-03-11 14:43:29.525317,27,301,960, +29,2017-03-11 14:43:29.525317,848,383,925, +66,2017-03-11 14:43:29.525317,922,518,835, +39,2017-03-11 14:43:29.525317,323,961,614, +96,2017-03-11 14:43:29.525317,368,81,383, +25,2017-03-11 14:43:29.525317,279,59,327, +64,2017-03-11 14:43:29.525317,919,788,212, +47,2017-03-11 14:43:29.525317,350,45,207, +38,2017-03-11 14:43:29.525317,347,167,668, +19,2017-03-11 14:43:29.525317,550,593,852, +47,2017-03-11 14:43:29.525317,111,687,864, +43,2017-03-11 14:43:29.525317,647,478,395, +2,2017-03-11 14:43:29.525317,559,778,267, +84,2017-03-11 14:43:29.525317,837,595,482, +76,2017-03-11 14:43:29.525317,383,693,225, +73,2017-03-11 14:43:29.525317,739,431,109, +9,2017-03-11 14:43:29.525317,598,777,280, +15,2017-03-11 14:43:29.525317,370,132,619, +48,2017-03-11 14:43:29.525317,818,483,915, +47,2017-03-11 14:43:29.525317,961,310,481, +52,2017-03-11 14:43:29.525317,88,748,358, +92,2017-03-11 14:43:29.525317,343,840,681, +73,2017-03-11 14:43:29.525317,533,906,458, +27,2017-03-11 14:43:29.525317,337,567,358, +94,2017-03-11 14:43:29.525317,343,637,83, +71,2017-03-11 14:43:29.525317,769,703,194, +59,2017-03-11 14:43:29.525317,186,109,53, +15,2017-03-11 14:43:29.525317,419,533,667, +51,2017-03-11 14:43:29.525317,282,25,432, +62,2017-03-11 14:43:29.525317,865,113,350, +40,2017-03-11 14:43:29.525317,19,808,671, +36,2017-03-11 14:43:29.525317,375,28,291, +72,2017-03-11 14:43:29.525317,666,375,431, +43,2017-03-11 14:43:29.525317,77,626,22, +26,2017-03-11 14:43:29.525317,735,74,410, +15,2017-03-11 14:43:29.525317,608,77,661, +89,2017-03-11 14:43:29.525317,103,93,514, +97,2017-03-11 14:43:29.525317,206,864,366, +23,2017-03-11 14:43:29.525317,672,37,581, +5,2017-03-11 14:43:29.525317,65,873,764, +73,2017-03-11 14:43:29.525317,248,196,165, +33,2017-03-11 14:43:29.525317,821,187,588, +56,2017-03-11 14:43:29.525317,261,998,710, +87,2017-03-11 14:43:29.525317,75,371,758, +18,2017-03-11 14:43:29.525317,464,272,146, +67,2017-03-11 14:43:29.525317,136,512,896, +81,2017-03-11 14:43:29.525317,548,477,854, +61,2017-03-11 14:43:29.525317,350,618,344, +60,2017-03-11 14:43:29.525317,814,509,922, +64,2017-03-11 14:43:29.525317,695,511,191, +96,2017-03-11 14:43:29.525317,509,901,825, +58,2017-03-11 14:43:29.525317,272,582,762, +74,2017-03-11 14:43:29.525317,854,908,407, +99,2017-03-11 14:43:29.525317,420,302,797, +97,2017-03-11 14:43:29.525317,779,651,581, +13,2017-03-11 14:43:29.525317,269,925,726, +8,2017-03-11 14:43:29.525317,434,649,719, +13,2017-03-11 14:43:29.525317,159,910,85, +67,2017-03-11 14:43:29.525317,811,910,253, +8,2017-03-11 14:43:29.525317,492,15,820, +35,2017-03-11 14:43:29.525317,923,227,336, +34,2017-03-11 14:43:29.525317,529,133,311, +31,2017-03-11 14:43:29.525317,784,892,437, +5,2017-03-11 14:43:29.525317,818,164,137, +25,2017-03-11 14:43:29.525317,813,855,381, +97,2017-03-11 14:43:29.525317,765,466,640, +58,2017-03-11 14:43:29.525317,376,893,660, +87,2017-03-11 14:43:29.525317,908,480,214, +83,2017-03-11 14:43:29.525317,707,549,173, +24,2017-03-11 14:43:29.525317,682,484,544, +47,2017-03-11 14:43:29.525317,377,981,520, +19,2017-03-11 14:43:29.525317,145,657,446, +96,2017-03-11 14:43:29.525317,512,826,930, +28,2017-03-11 14:43:29.525317,292,570,854, +67,2017-03-11 14:43:29.525317,463,514,535, +37,2017-03-11 14:43:29.525317,994,749,202, +70,2017-03-11 14:43:29.525317,298,375,936, +98,2017-03-11 14:43:29.525317,859,480,447, +24,2017-03-11 14:43:29.525317,461,967,430, +61,2017-03-11 14:43:29.525317,624,876,563, +14,2017-03-11 14:43:29.525317,702,493,414, +99,2017-03-11 14:43:29.525317,63,268,662, +53,2017-03-11 14:43:29.525317,783,197,897, +78,2017-03-11 14:43:29.525317,946,99,477, +24,2017-03-11 14:43:29.525317,474,413,225, +33,2017-03-11 14:43:29.525317,893,672,569, +35,2017-03-11 14:43:29.525317,639,999,960, +26,2017-03-11 14:43:29.525317,874,523,399, +58,2017-03-11 14:43:29.525317,16,814,571, +8,2017-03-11 14:43:29.525317,82,232,605, +86,2017-03-11 14:43:29.525317,429,502,641, +37,2017-03-11 14:43:29.525317,601,118,619, +7,2017-03-11 14:43:29.525317,532,843,407, +42,2017-03-11 14:43:29.525317,515,976,779, +15,2017-03-11 14:43:29.525317,975,739,417, +85,2017-03-11 14:43:29.525317,262,816,426, +28,2017-03-11 14:43:29.525317,630,996,357, +71,2017-03-11 14:43:29.525317,228,963,577, +66,2017-03-11 14:43:29.525317,465,218,33, +7,2017-03-11 14:43:29.525317,336,652,140, +87,2017-03-11 14:43:29.525317,495,547,292, +1,2017-03-11 14:43:29.525317,523,71,164, +50,2017-03-11 14:43:29.525317,810,581,347, +7,2017-03-11 14:43:29.525317,397,773,350, +3,2017-03-11 14:43:29.525317,769,707,739, +100,2017-03-11 14:43:29.525317,670,316,655, +13,2017-03-11 14:43:29.525317,534,688,200, +87,2017-03-11 14:43:29.525317,340,340,737, +83,2017-03-11 14:43:29.525317,887,30,845, +41,2017-03-11 14:43:29.525317,101,9,908, +91,2017-03-11 14:43:29.525317,590,256,983, +99,2017-03-11 14:43:29.525317,29,332,14, +80,2017-03-11 14:43:29.525317,40,753,796, +71,2017-03-11 14:43:29.525317,69,451,844, +60,2017-03-11 14:43:29.525317,139,45,472, +48,2017-03-11 14:43:29.525317,385,210,313, +27,2017-03-11 14:43:29.525317,240,158,683, +34,2017-03-11 14:43:29.525317,167,591,252, +76,2017-03-11 14:43:29.525317,847,235,744, +88,2017-03-11 14:43:29.525317,567,758,673, +61,2017-03-11 14:43:29.525317,512,469,316, +58,2017-03-11 14:43:29.525317,920,161,184, +6,2017-03-11 14:43:29.525317,205,656,537, +59,2017-03-11 14:43:29.525317,866,851,862, +11,2017-03-11 14:43:29.525317,9,545,448, +18,2017-03-11 14:43:29.525317,136,700,933, +98,2017-03-11 14:43:29.525317,935,677,858, +50,2017-03-11 14:43:29.525317,435,531,109, +95,2017-03-11 14:43:29.525317,0,425,528, +92,2017-03-11 14:43:29.525317,586,712,979, +79,2017-03-11 14:43:29.525317,369,516,382, +23,2017-03-11 14:43:29.525317,367,244,341, +38,2017-03-11 14:43:29.525317,789,789,551, +92,2017-03-11 14:43:29.525317,489,484,907, +42,2017-03-11 14:43:29.525317,160,765,925, +60,2017-03-11 14:43:29.525317,296,34,543, +30,2017-03-11 14:43:29.525317,460,71,216, +5,2017-03-11 14:43:29.525317,783,195,837, +15,2017-03-11 14:43:29.525317,711,219,387, +8,2017-03-11 14:43:29.525317,462,728,453, +25,2017-03-11 14:43:29.525317,517,5,175, +1,2017-03-11 14:43:29.525317,488,82,429, +65,2017-03-11 14:43:29.525317,847,354,244, +14,2017-03-11 14:43:29.525317,388,787,439, +85,2017-03-11 14:43:29.525317,858,655,894, +64,2017-03-11 14:43:29.525317,851,731,793, +56,2017-03-11 14:43:29.525317,950,180,640, +41,2017-03-11 14:43:29.525317,908,93,663, +42,2017-03-11 14:43:29.525317,98,839,430, +59,2017-03-11 14:43:29.525317,921,859,235, +77,2017-03-11 14:43:29.525317,213,480,911, +60,2017-03-11 14:43:29.525317,267,350,450, +12,2017-03-11 14:43:29.525317,5,343,766, +86,2017-03-11 14:43:29.525317,74,559,418, +2,2017-03-11 14:43:29.525317,739,58,436, +65,2017-03-11 14:43:29.525317,151,99,71, +25,2017-03-11 14:43:29.525317,938,502,835, +86,2017-03-11 14:43:29.525317,361,70,626, +57,2017-03-11 14:43:29.525317,550,537,176, +82,2017-03-11 14:43:29.525317,887,625,941, +89,2017-03-11 14:43:29.525317,968,708,749, +4,2017-03-11 14:43:29.525317,267,166,67, +1,2017-03-11 14:43:29.525317,224,503,653, +37,2017-03-11 14:43:29.525317,602,724,624, +54,2017-03-11 14:43:29.525317,226,459,399, +59,2017-03-11 14:43:29.525317,529,25,161, +8,2017-03-11 14:43:29.525317,562,336,896, +45,2017-03-11 14:43:29.525317,961,837,342, +93,2017-03-11 14:43:29.525317,545,91,972, +81,2017-03-11 14:43:29.525317,257,39,818, +48,2017-03-11 14:43:29.525317,541,471,856, +14,2017-03-11 14:43:29.525317,195,480,683, +42,2017-03-11 14:43:29.525317,939,82,8, +47,2017-03-11 14:43:29.525317,107,169,547, +67,2017-03-11 14:43:29.525317,505,443,118, +47,2017-03-11 14:43:29.525317,280,460,397, +82,2017-03-11 14:43:29.525317,551,369,636, +81,2017-03-11 14:43:29.525317,408,454,289, +95,2017-03-11 14:43:29.525317,925,145,93, +12,2017-03-11 14:43:29.525317,624,776,541, +56,2017-03-11 14:43:29.525317,858,549,32, +96,2017-03-11 14:43:29.525317,718,579,634, +22,2017-03-11 14:43:29.525317,22,752,691, +30,2017-03-11 14:43:29.525317,213,87,126, +76,2017-03-11 14:43:29.525317,456,762,572, +86,2017-03-11 14:43:29.525317,216,861,813, +14,2017-03-11 14:43:29.525317,5,906,260, +63,2017-03-11 14:43:29.525317,682,801,193, +54,2017-03-11 14:43:29.525317,351,225,504, +7,2017-03-11 14:43:29.525317,804,138,293, +83,2017-03-11 14:43:29.525317,890,983,128, +10,2017-03-11 14:43:29.525317,70,254,867, +53,2017-03-11 14:43:29.525317,16,439,390, +23,2017-03-11 14:43:29.525317,299,204,372, +30,2017-03-11 14:43:29.525317,110,633,934, +79,2017-03-11 14:43:29.525317,434,128,331, +78,2017-03-11 14:43:29.525317,352,836,853, +16,2017-03-11 14:43:29.525317,974,146,982, +86,2017-03-11 14:43:29.525317,129,110,968, +20,2017-03-11 14:43:29.525317,364,835,726, +38,2017-03-11 14:43:29.525317,274,116,611, +57,2017-03-11 14:43:29.525317,320,983,877, +43,2017-03-11 14:43:29.525317,616,812,221, +5,2017-03-11 14:43:29.525317,939,552,834, +29,2017-03-11 14:43:29.525317,388,687,448, +36,2017-03-11 14:43:29.525317,833,431,227, +96,2017-03-11 14:43:29.525317,541,195,161, +90,2017-03-11 14:43:29.525317,30,886,284, +30,2017-03-11 14:43:29.525317,2,895,876, +32,2017-03-11 14:43:29.525317,878,754,751, +49,2017-03-11 14:43:29.525317,565,972,544, +50,2017-03-11 14:43:29.525317,525,378,796, +91,2017-03-11 14:43:29.525317,65,244,276, +90,2017-03-11 14:43:29.525317,675,503,860, +22,2017-03-11 14:43:29.525317,699,21,120, +73,2017-03-11 14:43:29.525317,907,403,32, +91,2017-03-11 14:43:29.525317,298,908,232, +18,2017-03-11 14:43:29.525317,662,983,670, +23,2017-03-11 14:43:29.525317,956,213,732, +48,2017-03-11 14:43:29.525317,591,529,394, +66,2017-03-11 14:43:29.525317,773,670,554, +45,2017-03-11 14:43:29.525317,173,414,664, +87,2017-03-11 14:43:29.525317,434,783,601, +34,2017-03-11 14:43:29.525317,186,633,251, +48,2017-03-11 14:43:29.525317,541,482,660, +20,2017-03-11 14:43:29.525317,466,330,431, +42,2017-03-11 14:43:29.525317,543,163,901, +13,2017-03-11 14:43:29.525317,692,295,790, +47,2017-03-11 14:43:29.525317,965,344,913, +14,2017-03-11 14:43:29.525317,757,577,11, +19,2017-03-11 14:43:29.525317,360,612,533, +55,2017-03-11 14:43:29.525317,245,784,31, +79,2017-03-11 14:43:29.525317,266,691,989, +73,2017-03-11 14:43:29.525317,21,421,153, +56,2017-03-11 14:43:29.525317,584,54,698, +28,2017-03-11 14:43:29.525317,349,488,741, +31,2017-03-11 14:43:29.525317,831,654,454, +59,2017-03-11 14:43:29.525317,231,465,780, +59,2017-03-11 14:43:29.525317,76,313,137, +32,2017-03-11 14:43:29.525317,96,167,107, +36,2017-03-11 14:43:29.525317,858,96,94, +88,2017-03-11 14:43:29.525317,517,246,443, +10,2017-03-11 14:43:29.525317,300,142,377, +65,2017-03-11 14:43:29.525317,629,118,965, +46,2017-03-11 14:43:29.525317,772,419,49, +0,2017-03-11 14:43:29.525317,883,829,593, +96,2017-03-11 14:43:29.525317,142,730,281, +24,2017-03-11 14:43:29.525317,897,387,600, +76,2017-03-11 14:43:29.525317,483,694,635, +0,2017-03-11 14:43:29.525317,940,78,101, +24,2017-03-11 14:43:29.525317,220,478,890, +85,2017-03-11 14:43:29.525317,596,855,310, +37,2017-03-11 14:43:29.525317,273,360,371, +16,2017-03-11 14:43:29.525317,189,965,116, +33,2017-03-11 14:43:29.525317,695,397,568, +59,2017-03-11 14:43:29.525317,784,168,348, +27,2017-03-11 14:43:29.525317,862,983,268, +80,2017-03-11 14:43:29.525317,61,369,42, +28,2017-03-11 14:43:29.525317,847,932,130, +44,2017-03-11 14:43:29.525317,787,441,812, +6,2017-03-11 14:43:29.525317,800,183,217, +99,2017-03-11 14:43:29.525317,147,333,319, +84,2017-03-11 14:43:29.525317,730,888,434, +51,2017-03-11 14:43:29.525317,56,782,782, +92,2017-03-11 14:43:29.525317,764,50,720, +83,2017-03-11 14:43:29.525317,419,762,107, +27,2017-03-11 14:43:29.525317,694,237,710, +48,2017-03-11 14:43:29.525317,678,521,542, +48,2017-03-11 14:43:29.525317,704,759,467, +85,2017-03-11 14:43:29.525317,92,786,693, +82,2017-03-11 14:43:29.525317,674,127,337, +73,2017-03-11 14:43:29.525317,909,119,648, +67,2017-03-11 14:43:29.525317,169,368,499, +59,2017-03-11 14:43:29.525317,129,605,855, +82,2017-03-11 14:43:29.525317,842,564,304, +52,2017-03-11 14:43:29.525317,86,846,998, +79,2017-03-11 14:43:29.525317,605,465,641, +70,2017-03-11 14:43:29.525317,251,334,520, +93,2017-03-11 14:43:29.525317,462,857,655, +37,2017-03-11 14:43:29.525317,976,303,44, +15,2017-03-11 14:43:29.525317,671,543,734, +80,2017-03-11 14:43:29.525317,148,589,624, +99,2017-03-11 14:43:29.525317,153,928,510, +24,2017-03-11 14:43:29.525317,774,508,29, +38,2017-03-11 14:43:29.525317,973,670,76, +22,2017-03-11 14:43:29.525317,4,596,149, +47,2017-03-11 14:43:29.525317,452,804,836, +43,2017-03-11 14:43:29.525317,107,881,573, +78,2017-03-11 14:43:29.525317,423,307,578, +57,2017-03-11 14:43:29.525317,896,202,562, +5,2017-03-11 14:43:29.525317,130,72,288, +90,2017-03-11 14:43:29.525317,580,317,283, +55,2017-03-11 14:43:29.525317,987,359,776, +99,2017-03-11 14:43:29.525317,954,925,456, +41,2017-03-11 14:43:29.525317,729,293,834, +84,2017-03-11 14:43:29.525317,173,408,614, +60,2017-03-11 14:43:29.525317,715,192,168, +61,2017-03-11 14:43:29.525317,394,730,660, +52,2017-03-11 14:43:29.525317,802,949,427, +38,2017-03-11 14:43:29.525317,266,709,934, +25,2017-03-11 14:43:29.525317,68,710,243, +2,2017-03-11 14:43:29.525317,635,699,428, +36,2017-03-11 14:43:29.525317,992,262,200, +17,2017-03-11 14:43:29.525317,670,814,762, +38,2017-03-11 14:43:29.525317,6,930,995, +40,2017-03-11 14:43:29.525317,660,656,922, +46,2017-03-11 14:43:29.525317,604,349,844, +87,2017-03-11 14:43:29.525317,58,778,122, +13,2017-03-11 14:43:29.525317,488,365,148, +12,2017-03-11 14:43:29.525317,64,576,487, +6,2017-03-11 14:43:29.525317,838,687,221, +51,2017-03-11 14:43:29.525317,500,983,892, +51,2017-03-11 14:43:29.525317,914,888,905, +57,2017-03-11 14:43:29.525317,543,827,36, +15,2017-03-11 14:43:29.525317,176,880,17, +23,2017-03-11 14:43:29.525317,658,139,360, +15,2017-03-11 14:43:29.525317,504,508,269, +57,2017-03-11 14:43:29.525317,84,756,624, +92,2017-03-11 14:43:29.525317,443,845,430, +94,2017-03-11 14:43:29.525317,829,323,449, +74,2017-03-11 14:43:29.525317,211,354,316, +75,2017-03-11 14:43:29.525317,181,352,902, +36,2017-03-11 14:43:29.525317,232,919,591, +89,2017-03-11 14:43:29.525317,58,952,36, +56,2017-03-11 14:43:29.525317,460,305,130, +54,2017-03-11 14:43:29.525317,61,754,467, +50,2017-03-11 14:43:29.525317,599,897,446, +43,2017-03-11 14:43:29.525317,220,895,170, +43,2017-03-11 14:43:29.525317,249,486,185, +43,2017-03-11 14:43:29.525317,838,86,787, +7,2017-03-11 14:43:29.525317,5,379,960, +6,2017-03-11 14:43:29.525317,330,996,626, +79,2017-03-11 14:43:29.525317,300,756,335, +36,2017-03-11 14:43:29.525317,510,802,864, +11,2017-03-11 14:43:29.525317,699,310,537, +92,2017-03-11 14:43:29.525317,205,707,350, +45,2017-03-11 14:43:29.525317,193,535,884, +3,2017-03-11 14:43:29.525317,621,672,101, +63,2017-03-11 14:43:29.525317,50,61,689, +38,2017-03-11 14:43:29.525317,57,315,171, +36,2017-03-11 14:43:29.525317,70,506,718, +58,2017-03-11 14:43:29.525317,308,582,689, +1,2017-03-11 14:43:29.525317,892,226,927, +10,2017-03-11 14:43:29.525317,933,277,551, +13,2017-03-11 14:43:29.525317,812,436,156, +43,2017-03-11 14:43:29.525317,107,258,58, +16,2017-03-11 14:43:29.525317,319,747,538, +38,2017-03-11 14:43:29.525317,62,709,733, +13,2017-03-11 14:43:29.525317,215,450,713, +52,2017-03-11 14:43:29.525317,32,402,531, +92,2017-03-11 14:43:29.525317,628,458,20, +56,2017-03-11 14:43:29.525317,735,572,686, +55,2017-03-11 14:43:29.525317,8,843,979, +12,2017-03-11 14:43:29.525317,100,38,273, +42,2017-03-11 14:43:29.525317,785,811,795, +85,2017-03-11 14:43:29.525317,520,527,980, +73,2017-03-11 14:43:29.525317,978,692,258, +1,2017-03-11 14:43:29.525317,95,788,933, +72,2017-03-11 14:43:29.525317,246,953,283, +98,2017-03-11 14:43:29.525317,525,970,527, +53,2017-03-11 14:43:29.525317,812,507,648, +91,2017-03-11 14:43:29.525317,544,921,332, +33,2017-03-11 14:43:29.525317,731,127,177, +25,2017-03-11 14:43:29.525317,654,157,985, +63,2017-03-11 14:43:29.525317,849,243,641, +94,2017-03-11 14:43:29.525317,31,574,666, +28,2017-03-11 14:43:29.525317,527,950,257, +5,2017-03-11 14:43:29.525317,919,784,584, +73,2017-03-11 14:43:29.525317,291,232,644, +84,2017-03-11 14:43:29.525317,153,976,165, +88,2017-03-11 14:43:29.525317,103,342,135, +76,2017-03-11 14:43:29.525317,499,120,388, +35,2017-03-11 14:43:29.525317,363,29,292, +39,2017-03-11 14:43:29.525317,603,958,670, +13,2017-03-11 14:43:29.525317,908,927,181, +83,2017-03-11 14:43:29.525317,712,765,559, +0,2017-03-11 14:43:29.525317,997,204,838, +15,2017-03-11 14:43:29.525317,180,3,34, +28,2017-03-11 14:43:29.525317,346,168,39, +84,2017-03-11 14:43:29.525317,288,428,193, +65,2017-03-11 14:43:29.525317,457,484,45, +6,2017-03-11 14:43:29.525317,442,715,189, +35,2017-03-11 14:43:29.525317,642,370,178, +35,2017-03-11 14:43:29.525317,135,737,356, +13,2017-03-11 14:43:29.525317,941,194,282, +12,2017-03-11 14:43:29.525317,198,316,403, +54,2017-03-11 14:43:29.525317,484,443,388, +77,2017-03-11 14:43:29.525317,870,580,424, +33,2017-03-11 14:43:29.525317,65,468,387, +51,2017-03-11 14:43:29.525317,183,576,858, +82,2017-03-11 14:43:29.525317,946,35,178, +8,2017-03-11 14:43:29.525317,772,534,214, +71,2017-03-11 14:43:29.525317,729,496,834, +93,2017-03-11 14:43:29.525317,812,237,470, +30,2017-03-11 14:43:29.525317,679,857,69, +55,2017-03-11 14:43:29.525317,438,493,877, +50,2017-03-11 14:43:29.525317,962,264,10, +14,2017-03-11 14:43:29.525317,841,868,970, +79,2017-03-11 14:43:29.525317,903,148,869, +68,2017-03-11 14:43:29.525317,682,83,389, +41,2017-03-11 14:43:29.525317,579,222,337, +39,2017-03-11 14:43:29.525317,459,807,687, +14,2017-03-11 14:43:29.525317,664,757,688, +10,2017-03-11 14:43:29.525317,250,565,604, +21,2017-03-11 14:43:29.525317,830,614,356, +67,2017-03-11 14:43:29.525317,482,325,458, +39,2017-03-11 14:43:29.525317,473,327,61, +16,2017-03-11 14:43:29.525317,409,449,566, +99,2017-03-11 14:43:29.525317,672,903,379, +13,2017-03-11 14:43:29.525317,710,66,269, +37,2017-03-11 14:43:29.525317,823,957,476, +7,2017-03-11 14:43:29.525317,522,80,284, +35,2017-03-11 14:43:29.525317,695,640,22, +18,2017-03-11 14:43:29.525317,965,480,562, +44,2017-03-11 14:43:29.525317,807,622,594, +22,2017-03-11 14:43:29.525317,72,160,204, +74,2017-03-11 14:43:29.525317,63,583,874, +77,2017-03-11 14:43:29.525317,650,143,148, +47,2017-03-11 14:43:29.525317,100,623,545, +62,2017-03-11 14:43:29.525317,704,829,973, +40,2017-03-11 14:43:29.525317,469,995,575, +43,2017-03-11 14:43:29.525317,475,136,872, +28,2017-03-11 14:43:29.525317,759,466,498, +83,2017-03-11 14:43:29.525317,626,702,574, +69,2017-03-11 14:43:29.525317,286,448,463, +94,2017-03-11 14:43:29.525317,590,610,408, +69,2017-03-11 14:43:29.525317,234,954,311, +94,2017-03-11 14:43:29.525317,783,285,335, +25,2017-03-11 14:43:29.525317,280,910,686, +75,2017-03-11 14:43:29.525317,46,558,37, +80,2017-03-11 14:43:29.525317,24,534,635, +65,2017-03-11 14:43:29.525317,236,209,338, +52,2017-03-11 14:43:29.525317,657,801,457, +25,2017-03-11 14:43:29.525317,411,865,937, +64,2017-03-11 14:43:29.525317,819,248,582, +60,2017-03-11 14:43:29.525317,533,917,854, +81,2017-03-11 14:43:29.525317,827,539,567, +87,2017-03-11 14:43:29.525317,97,604,678, +12,2017-03-11 14:43:29.525317,138,313,770, +37,2017-03-11 14:43:29.525317,522,108,897, +18,2017-03-11 14:43:29.525317,909,354,425, +32,2017-03-11 14:43:29.525317,220,362,965, +4,2017-03-11 14:43:29.525317,610,547,640, +14,2017-03-11 14:43:29.525317,464,494,956, +29,2017-03-11 14:43:29.525317,33,523,164, +13,2017-03-11 14:43:29.525317,127,842,250, +27,2017-03-11 14:43:29.525317,155,20,640, +68,2017-03-11 14:43:29.525317,128,537,855, +4,2017-03-11 14:43:29.525317,891,280,358, +11,2017-03-11 14:43:29.525317,643,323,149, +25,2017-03-11 14:43:29.525317,870,789,396, +33,2017-03-11 14:43:29.525317,283,352,624, +32,2017-03-11 14:43:29.525317,875,788,446, +0,2017-03-11 14:43:29.525317,630,696,267, +78,2017-03-11 14:43:29.525317,716,907,461, +84,2017-03-11 14:43:29.525317,444,316,882, +34,2017-03-11 14:43:29.525317,597,239,445, +24,2017-03-11 14:43:29.525317,562,594,492, +43,2017-03-11 14:43:29.525317,384,888,765, +67,2017-03-11 14:43:29.525317,240,390,983, +11,2017-03-11 14:43:29.525317,178,429,116, +81,2017-03-11 14:43:29.525317,126,383,592, +84,2017-03-11 14:43:29.525317,291,53,686, +73,2017-03-11 14:43:29.525317,369,568,70, +97,2017-03-11 14:43:29.525317,807,515,206, +37,2017-03-11 14:43:29.525317,110,698,801, +49,2017-03-11 14:43:29.525317,586,566,160, +83,2017-03-11 14:43:29.525317,956,144,941, +13,2017-03-11 14:43:29.525317,573,57,941, +70,2017-03-11 14:43:29.525317,440,533,541, +73,2017-03-11 14:43:29.525317,586,227,466, +96,2017-03-11 14:43:29.525317,795,535,921, +60,2017-03-11 14:43:29.525317,51,127,971, +16,2017-03-11 14:43:29.525317,825,772,654, +41,2017-03-11 14:43:29.525317,338,814,237, +29,2017-03-11 14:43:29.525317,958,178,427, +53,2017-03-11 14:43:29.525317,235,368,230, +68,2017-03-11 14:43:29.525317,901,770,406, +49,2017-03-11 14:43:29.525317,997,872,442, +79,2017-03-11 14:43:29.525317,408,363,394, +46,2017-03-11 14:43:29.525317,490,366,619, +31,2017-03-11 14:43:29.525317,138,272,725, +48,2017-03-11 14:43:29.525317,86,962,770, +4,2017-03-11 14:43:29.525317,140,197,575, +37,2017-03-11 14:43:29.525317,565,804,50, +47,2017-03-11 14:43:29.525317,575,457,953, +57,2017-03-11 14:43:29.525317,329,394,365, +74,2017-03-11 14:43:29.525317,757,759,195, +25,2017-03-11 14:43:29.525317,125,813,561, +26,2017-03-11 14:43:29.525317,86,286,738, +17,2017-03-11 14:43:29.525317,248,508,216, +39,2017-03-11 14:43:29.525317,706,790,763, +27,2017-03-11 14:43:29.525317,595,814,737, +17,2017-03-11 14:43:29.525317,271,690,742, +60,2017-03-11 14:43:29.525317,84,106,336, +84,2017-03-11 14:43:29.525317,865,531,88, +99,2017-03-11 14:43:29.525317,345,649,252, +43,2017-03-11 14:43:29.525317,935,991,602, +18,2017-03-11 14:43:29.525317,499,818,571, +21,2017-03-11 14:43:29.525317,608,335,476, +20,2017-03-11 14:43:29.525317,148,213,373, +42,2017-03-11 14:43:29.525317,903,115,19, +99,2017-03-11 14:43:29.525317,221,355,827, +9,2017-03-11 14:43:29.525317,886,915,77, +23,2017-03-11 14:43:29.525317,563,329,661, +50,2017-03-11 14:43:29.525317,320,263,681, +82,2017-03-11 14:43:29.525317,81,252,24, +69,2017-03-11 14:43:29.525317,587,500,893, +74,2017-03-11 14:43:29.525317,714,265,154, +62,2017-03-11 14:43:29.525317,380,172,603, +60,2017-03-11 14:43:29.525317,527,430,688, +41,2017-03-11 14:43:29.525317,345,765,644, +91,2017-03-11 14:43:29.525317,94,306,407, +41,2017-03-11 14:43:29.525317,569,87,233, +65,2017-03-11 14:43:29.525317,340,257,340, +93,2017-03-11 14:43:29.525317,757,232,662, +47,2017-03-11 14:43:29.525317,498,816,87, +88,2017-03-11 14:43:29.525317,988,690,479, +52,2017-03-11 14:43:29.525317,120,167,929, +47,2017-03-11 14:43:29.525317,932,573,374, +3,2017-03-11 14:43:29.525317,879,780,439, +45,2017-03-11 14:43:29.525317,868,671,98, +21,2017-03-11 14:43:29.525317,928,438,134, +69,2017-03-11 14:43:29.525317,670,796,156, +17,2017-03-11 14:43:29.525317,611,244,46, +60,2017-03-11 14:43:29.525317,934,525,115, +5,2017-03-11 14:43:29.525317,693,43,519, +62,2017-03-11 14:43:29.525317,617,892,650, +50,2017-03-11 14:43:29.525317,672,89,944, +54,2017-03-11 14:43:29.525317,760,42,747, +69,2017-03-11 14:43:29.525317,480,881,374, +15,2017-03-11 14:43:29.525317,677,531,318, +29,2017-03-11 14:43:29.525317,774,364,887, +71,2017-03-11 14:43:29.525317,889,2,762, +58,2017-03-11 14:43:29.525317,45,280,207, +66,2017-03-11 14:43:29.525317,173,857,158, +85,2017-03-11 14:43:29.525317,946,101,385, +71,2017-03-11 14:43:29.525317,143,132,395, +62,2017-03-11 14:43:29.525317,14,770,772, +69,2017-03-11 14:43:29.525317,301,90,978, +8,2017-03-11 14:43:29.525317,454,865,783, +34,2017-03-11 14:43:29.525317,867,545,925, +91,2017-03-11 14:43:29.525317,825,132,574, +100,2017-03-11 14:43:29.525317,989,732,843, +94,2017-03-11 14:43:29.525317,833,228,642, +98,2017-03-11 14:43:29.525317,360,37,598, +37,2017-03-11 14:43:29.525317,807,370,65, +11,2017-03-11 14:43:29.525317,460,43,183, +91,2017-03-11 14:43:29.525317,908,967,257, +78,2017-03-11 14:43:29.525317,511,182,688, +34,2017-03-11 14:43:29.525317,314,262,334, +30,2017-03-11 14:43:29.525317,994,177,239, +83,2017-03-11 14:43:29.525317,405,881,803, +77,2017-03-11 14:43:29.525317,919,401,140, +73,2017-03-11 14:43:29.525317,771,204,834, +23,2017-03-11 14:43:29.525317,247,17,145, +16,2017-03-11 14:43:29.525317,984,401,931, +50,2017-03-11 14:43:29.525317,584,619,832, +90,2017-03-11 14:43:29.525317,882,166,202, +88,2017-03-11 14:43:29.525317,344,441,703, +75,2017-03-11 14:43:29.525317,322,506,515, +24,2017-03-11 14:43:29.525317,907,654,967, +68,2017-03-11 14:43:29.525317,859,801,909, +11,2017-03-11 14:43:29.525317,818,54,262, +80,2017-03-11 14:43:29.525317,455,193,298, +4,2017-03-11 14:43:29.525317,812,130,937, +69,2017-03-11 14:43:29.525317,296,139,570, +64,2017-03-11 14:43:29.525317,580,273,389, +90,2017-03-11 14:43:29.525317,779,904,142, +69,2017-03-11 14:43:29.525317,558,109,365, +42,2017-03-11 14:43:29.525317,910,274,523, +73,2017-03-11 14:43:29.525317,327,784,530, +78,2017-03-11 14:43:29.525317,977,827,821, +79,2017-03-11 14:43:29.525317,957,758,483, +25,2017-03-11 14:43:29.525317,897,53,893, +48,2017-03-11 14:43:29.525317,326,282,378, +11,2017-03-11 14:43:29.525317,186,521,792, +74,2017-03-11 14:43:29.525317,630,157,161, +54,2017-03-11 14:43:29.525317,431,684,267, +76,2017-03-11 14:43:29.525317,468,797,541, +45,2017-03-11 14:43:29.525317,624,362,234, +58,2017-03-11 14:43:29.525317,120,717,834, +2,2017-03-11 14:43:29.525317,770,728,493, +10,2017-03-11 14:43:29.525317,10,871,202, +20,2017-03-11 14:43:29.525317,392,995,940, +2,2017-03-11 14:43:29.525317,152,101,561, +58,2017-03-11 14:43:29.525317,785,827,341, +25,2017-03-11 14:43:29.525317,624,882,698, +25,2017-03-11 14:43:29.525317,244,932,829, +36,2017-03-11 14:43:29.525317,650,663,380, +42,2017-03-11 14:43:29.525317,391,873,517, +40,2017-03-11 14:43:29.525317,744,719,597, +14,2017-03-11 14:43:29.525317,714,537,157, +87,2017-03-11 14:43:29.525317,638,718,448, +42,2017-03-11 14:43:29.525317,545,789,675, +17,2017-03-11 14:43:29.525317,670,373,417, +91,2017-03-11 14:43:29.525317,306,246,277, +96,2017-03-11 14:43:29.525317,910,657,375, +30,2017-03-11 14:43:29.525317,530,892,701, +27,2017-03-11 14:43:29.525317,611,298,410, +32,2017-03-11 14:43:29.525317,835,567,190, +47,2017-03-11 14:43:29.525317,285,638,896, +83,2017-03-11 14:43:29.525317,426,571,1000, +10,2017-03-11 14:43:29.525317,945,417,11, +25,2017-03-11 14:43:29.525317,663,288,205, +57,2017-03-11 14:43:29.525317,945,581,874, +48,2017-03-11 14:43:29.525317,473,575,750, +8,2017-03-11 14:43:29.525317,873,160,409, +71,2017-03-11 14:43:29.525317,727,599,182, +1,2017-03-11 14:43:29.525317,237,78,843, +66,2017-03-11 14:43:29.525317,650,843,760, +59,2017-03-11 14:43:29.525317,260,771,844, +92,2017-03-11 14:43:29.525317,59,50,497, +0,2017-03-11 14:43:29.525317,631,370,479, +10,2017-03-11 14:43:29.525317,945,229,188, +82,2017-03-11 14:43:29.525317,389,598,527, +12,2017-03-11 14:43:29.525317,197,709,129, +43,2017-03-11 14:43:29.525317,787,972,98, +44,2017-03-11 14:43:29.525317,815,858,31, +8,2017-03-11 14:43:29.525317,629,875,999, +69,2017-03-11 14:43:29.525317,925,496,691, +56,2017-03-11 14:43:29.525317,866,171,659, +81,2017-03-11 14:43:29.525317,400,848,630, +79,2017-03-11 14:43:29.525317,445,157,906, +64,2017-03-11 14:43:29.525317,866,35,77, +65,2017-03-11 14:43:29.525317,8,174,91, +82,2017-03-11 14:43:29.525317,32,122,899, +66,2017-03-11 14:43:29.525317,997,898,349, +92,2017-03-11 14:43:29.525317,394,40,478, +26,2017-03-11 14:43:29.525317,211,137,71, +61,2017-03-11 14:43:29.525317,985,701,400, +43,2017-03-11 14:43:29.525317,858,306,73, +72,2017-03-11 14:43:29.525317,341,149,378, +35,2017-03-11 14:43:29.525317,324,469,172, +36,2017-03-11 14:43:29.525317,591,70,17, +59,2017-03-11 14:43:29.525317,968,366,510, +36,2017-03-11 14:43:29.525317,406,988,622, +62,2017-03-11 14:43:29.525317,125,694,228, +11,2017-03-11 14:43:29.525317,395,628,540, +25,2017-03-11 14:43:29.525317,934,612,978, +27,2017-03-11 14:43:29.525317,761,356,624, +8,2017-03-11 14:43:29.525317,826,795,441, +42,2017-03-11 14:43:29.525317,866,458,5, +83,2017-03-11 14:43:29.525317,824,515,196, +23,2017-03-11 14:43:29.525317,503,819,848, +63,2017-03-11 14:43:29.525317,512,76,738, +91,2017-03-11 14:43:29.525317,704,277,161, +64,2017-03-11 14:43:29.525317,890,139,913, +65,2017-03-11 14:43:29.525317,495,537,736, +32,2017-03-11 14:43:29.525317,332,177,737, +20,2017-03-11 14:43:29.525317,635,742,32, +46,2017-03-11 14:43:29.525317,257,228,690, +76,2017-03-11 14:43:29.525317,47,538,388, +56,2017-03-11 14:43:29.525317,615,125,467, +32,2017-03-11 14:43:29.525317,403,628,958, +29,2017-03-11 14:43:29.525317,767,871,944, +26,2017-03-11 14:43:29.525317,408,680,583, +74,2017-03-11 14:43:29.525317,857,320,938, +49,2017-03-11 14:43:29.525317,62,970,952, +32,2017-03-11 14:43:29.525317,199,643,79, +25,2017-03-11 14:43:29.525317,181,467,805, +80,2017-03-11 14:43:29.525317,593,273,115, +100,2017-03-11 14:43:29.525317,900,73,288, +67,2017-03-11 14:43:29.525317,944,232,929, +35,2017-03-11 14:43:29.525317,912,511,92, +77,2017-03-11 14:43:29.525317,832,30,262, +89,2017-03-11 14:43:29.525317,0,215,213, +20,2017-03-11 14:43:29.525317,858,293,445, +4,2017-03-11 14:43:29.525317,760,250,835, +35,2017-03-11 14:43:29.525317,523,950,349, +42,2017-03-11 14:43:29.525317,23,637,90, +97,2017-03-11 14:43:29.525317,870,19,318, +78,2017-03-11 14:43:29.525317,530,410,552, +36,2017-03-11 14:43:29.525317,439,814,256, +44,2017-03-11 14:43:29.525317,29,469,639, +89,2017-03-11 14:43:29.525317,762,83,925, +52,2017-03-11 14:43:29.525317,333,760,875, +86,2017-03-11 14:43:29.525317,710,224,279, +73,2017-03-11 14:43:29.525317,862,369,699, +73,2017-03-11 14:43:29.525317,387,17,513, +92,2017-03-11 14:43:29.525317,426,65,279, +87,2017-03-11 14:43:29.525317,879,535,306, +91,2017-03-11 14:43:29.525317,4,944,795, +77,2017-03-11 14:43:29.525317,27,720,289, +36,2017-03-11 14:43:29.525317,481,164,216, +19,2017-03-11 14:43:29.525317,389,495,924, +25,2017-03-11 14:43:29.525317,864,623,981, +25,2017-03-11 14:43:29.525317,640,494,169, +7,2017-03-11 14:43:29.525317,559,448,932, +44,2017-03-11 14:43:29.525317,983,238,347, +99,2017-03-11 14:43:29.525317,182,141,754, +21,2017-03-11 14:43:29.525317,862,43,570, +34,2017-03-11 14:43:29.525317,207,786,533, +60,2017-03-11 14:43:29.525317,281,457,845, +14,2017-03-11 14:43:29.525317,79,827,396, +72,2017-03-11 14:43:29.525317,321,565,785, +88,2017-03-11 14:43:29.525317,13,717,319, +100,2017-03-11 14:43:29.525317,955,666,984, +14,2017-03-11 14:43:29.525317,807,738,346, +67,2017-03-11 14:43:29.525317,781,915,11, +99,2017-03-11 14:43:29.525317,701,543,583, +98,2017-03-11 14:43:29.525317,0,428,127, +8,2017-03-11 14:43:29.525317,255,523,799, +58,2017-03-11 14:43:29.525317,88,584,457, +10,2017-03-11 14:43:29.525317,302,776,97, +26,2017-03-11 14:43:29.525317,441,81,393, +25,2017-03-11 14:43:29.525317,819,739,917, +60,2017-03-11 14:43:29.525317,654,928,587, +36,2017-03-11 14:43:29.525317,471,170,337, +47,2017-03-11 14:43:29.525317,599,464,551, +85,2017-03-11 14:43:29.525317,987,349,430, +7,2017-03-11 14:43:29.525317,934,887,176, +24,2017-03-11 14:43:29.525317,662,273,492, +10,2017-03-11 14:43:29.525317,355,885,352, +17,2017-03-11 14:43:29.525317,624,270,774, +28,2017-03-11 14:43:29.525317,197,361,633, +67,2017-03-11 14:43:29.525317,532,970,139, +13,2017-03-11 14:43:29.525317,434,690,984, +42,2017-03-11 14:43:29.525317,40,414,496, +97,2017-03-11 14:43:29.525317,301,672,208, +96,2017-03-11 14:43:29.525317,945,700,67, +30,2017-03-11 14:43:29.525317,585,420,474, +21,2017-03-11 14:43:29.525317,689,248,486, +89,2017-03-11 14:43:29.525317,609,119,555, +14,2017-03-11 14:43:29.525317,89,694,271, +52,2017-03-11 14:43:29.525317,384,255,944, +42,2017-03-11 14:43:29.525317,669,440,397, +97,2017-03-11 14:43:29.525317,112,606,933, +6,2017-03-11 14:43:29.525317,306,0,357, +89,2017-03-11 14:43:29.525317,420,831,99, +11,2017-03-11 14:43:29.525317,78,585,995, +69,2017-03-11 14:43:29.525317,704,550,828, +79,2017-03-11 14:43:29.525317,244,99,315, +63,2017-03-11 14:43:29.525317,354,259,52, +2,2017-03-11 14:43:29.525317,699,449,993, +81,2017-03-11 14:43:29.525317,54,927,868, +36,2017-03-11 14:43:29.525317,927,225,250, +35,2017-03-11 14:43:29.525317,56,350,456, +13,2017-03-11 14:43:29.525317,935,451,821, +64,2017-03-11 14:43:29.525317,0,649,431, +24,2017-03-11 14:43:29.525317,748,746,872, +10,2017-03-11 14:43:29.525317,5,924,126, +70,2017-03-11 14:43:29.525317,372,119,514, +43,2017-03-11 14:43:29.525317,46,382,786, +97,2017-03-11 14:43:29.525317,607,37,319, +66,2017-03-11 14:43:29.525317,386,775,796, +32,2017-03-11 14:43:29.525317,225,617,959, +23,2017-03-11 14:43:29.525317,267,390,470, +1,2017-03-11 14:43:29.525317,136,342,117, +14,2017-03-11 14:43:29.525317,265,243,844, +64,2017-03-11 14:43:29.525317,363,358,64, +41,2017-03-11 14:43:29.525317,741,850,381, +35,2017-03-11 14:43:29.525317,887,700,10, +27,2017-03-11 14:43:29.525317,475,806,595, +70,2017-03-11 14:43:29.525317,424,554,926, +69,2017-03-11 14:43:29.525317,944,396,705, +8,2017-03-11 14:43:29.525317,738,822,221, +0,2017-03-11 14:43:29.525317,65,65,641, +43,2017-03-11 14:43:29.525317,424,705,836, +16,2017-03-11 14:43:29.525317,556,217,512, +44,2017-03-11 14:43:29.525317,917,522,716, +39,2017-03-11 14:43:29.525317,328,311,93, +75,2017-03-11 14:43:29.525317,865,20,442, +81,2017-03-11 14:43:29.525317,416,146,889, +15,2017-03-11 14:43:29.525317,968,111,158, +3,2017-03-11 14:43:29.525317,176,799,461, +60,2017-03-11 14:43:29.525317,504,297,764, +6,2017-03-11 14:43:29.525317,514,276,503, +43,2017-03-11 14:43:29.525317,798,219,824, +13,2017-03-11 14:43:29.525317,530,917,877, +40,2017-03-11 14:43:29.525317,937,319,205, +35,2017-03-11 14:43:29.525317,465,94,507, +43,2017-03-11 14:43:29.525317,205,665,467, +38,2017-03-11 14:43:29.525317,464,928,980, +97,2017-03-11 14:43:29.525317,225,745,28, +74,2017-03-11 14:43:29.525317,21,531,172, +82,2017-03-11 14:43:29.525317,750,996,945, +28,2017-03-11 14:43:29.525317,913,822,676, +85,2017-03-11 14:43:29.525317,141,880,203, +61,2017-03-11 14:43:29.525317,974,710,40, +18,2017-03-11 14:43:29.525317,375,507,559, +84,2017-03-11 14:43:29.525317,435,540,806, +66,2017-03-11 14:43:29.525317,284,834,400, +31,2017-03-11 14:43:29.525317,365,572,124, +12,2017-03-11 14:43:29.525317,568,68,396, +48,2017-03-11 14:43:29.525317,890,72,331, +3,2017-03-11 14:43:29.525317,952,534,637, +93,2017-03-11 14:43:29.525317,244,677,106, +62,2017-03-11 14:43:29.525317,183,665,457, +62,2017-03-11 14:43:29.525317,205,263,279, +49,2017-03-11 14:43:29.525317,97,679,795, +46,2017-03-11 14:43:29.525317,251,918,577, +82,2017-03-11 14:43:29.525317,987,973,299, +88,2017-03-11 14:43:29.525317,45,631,908, +100,2017-03-11 14:43:29.525317,165,545,924, +41,2017-03-11 14:43:29.525317,222,29,28, +41,2017-03-11 14:43:29.525317,695,485,24, +90,2017-03-11 14:43:29.525317,749,303,389, +85,2017-03-11 14:43:29.525317,981,184,308, +23,2017-03-11 14:43:29.525317,102,885,50, +9,2017-03-11 14:43:29.525317,858,350,966, +90,2017-03-11 14:43:29.525317,980,874,900, +15,2017-03-11 14:43:29.525317,419,824,554, +64,2017-03-11 14:43:29.525317,853,583,47, +55,2017-03-11 14:43:29.525317,68,71,447, +82,2017-03-11 14:43:29.525317,373,836,663, +35,2017-03-11 14:43:29.525317,20,971,587, +12,2017-03-11 14:43:29.525317,856,637,210, +71,2017-03-11 14:43:29.525317,987,176,617, +97,2017-03-11 14:43:29.525317,50,517,113, +47,2017-03-11 14:43:29.525317,341,667,111, +19,2017-03-11 14:43:29.525317,250,158,741, +32,2017-03-11 14:43:29.525317,229,188,135, +60,2017-03-11 14:43:29.525317,24,797,957, +4,2017-03-11 14:43:29.525317,768,544,165, +62,2017-03-11 14:43:29.525317,181,376,338, +17,2017-03-11 14:43:29.525317,552,955,136, +60,2017-03-11 14:43:29.525317,473,248,72, +81,2017-03-11 14:43:29.525317,915,184,7, +17,2017-03-11 14:43:29.525317,342,748,483, +57,2017-03-11 14:43:29.525317,937,618,174, +96,2017-03-11 14:43:29.525317,415,131,5, +18,2017-03-11 14:43:29.525317,675,170,806, +86,2017-03-11 14:43:29.525317,546,144,24, +10,2017-03-11 14:43:29.525317,100,160,700, +57,2017-03-11 14:43:29.525317,408,772,386, +32,2017-03-11 14:43:29.525317,955,393,489, +30,2017-03-11 14:43:29.525317,141,972,869, +8,2017-03-11 14:43:29.525317,589,42,39, +0,2017-03-11 14:43:29.525317,173,44,187, +85,2017-03-11 14:43:29.525317,214,993,704, +76,2017-03-11 14:43:29.525317,138,728,857, +24,2017-03-11 14:43:29.525317,888,557,810, +30,2017-03-11 14:43:29.525317,329,196,620, +28,2017-03-11 14:43:29.525317,589,109,582, +73,2017-03-11 14:43:29.525317,81,450,808, +67,2017-03-11 14:43:29.525317,492,847,674, +67,2017-03-11 14:43:29.525317,891,861,513, +11,2017-03-11 14:43:29.525317,854,216,865, +99,2017-03-11 14:43:29.525317,944,722,229, +83,2017-03-11 14:43:29.525317,279,39,129, +61,2017-03-11 14:43:29.525317,234,749,892, +82,2017-03-11 14:43:29.525317,859,474,553, +94,2017-03-11 14:43:29.525317,924,361,610, +42,2017-03-11 14:43:29.525317,208,284,82, +10,2017-03-11 14:43:29.525317,145,594,204, +100,2017-03-11 14:43:29.525317,811,69,991, +76,2017-03-11 14:43:29.525317,791,219,588, +7,2017-03-11 14:43:29.525317,258,717,677, +49,2017-03-11 14:43:29.525317,466,569,315, +32,2017-03-11 14:43:29.525317,42,868,264, +97,2017-03-11 14:43:29.525317,229,874,383, +44,2017-03-11 14:43:29.525317,158,464,536, +30,2017-03-11 14:43:29.525317,59,740,302, +87,2017-03-11 14:43:29.525317,808,293,624, +60,2017-03-11 14:43:29.525317,512,212,668, +77,2017-03-11 14:43:29.525317,929,345,263, +40,2017-03-11 14:43:29.525317,914,578,721, +96,2017-03-11 14:43:29.525317,446,985,923, +67,2017-03-11 14:43:29.525317,859,306,111, +2,2017-03-11 14:43:29.525317,770,646,321, +83,2017-03-11 14:43:29.525317,386,623,698, +19,2017-03-11 14:43:29.525317,915,322,794, +43,2017-03-11 14:43:29.525317,535,462,198, +46,2017-03-11 14:43:29.525317,807,461,859, +72,2017-03-11 14:43:29.525317,39,580,678, +48,2017-03-11 14:43:29.525317,565,601,158, +42,2017-03-11 14:43:29.525317,907,269,442, +68,2017-03-11 14:43:29.525317,915,762,506, +30,2017-03-11 14:43:29.525317,385,204,496, +30,2017-03-11 14:43:29.525317,526,289,728, +6,2017-03-11 14:43:29.525317,751,926,524, +56,2017-03-11 14:43:29.525317,386,384,280, +42,2017-03-11 14:43:29.525317,964,958,909, +53,2017-03-11 14:43:29.525317,559,67,953, +47,2017-03-11 14:43:29.525317,337,395,143, +25,2017-03-11 14:43:29.525317,157,649,553, +54,2017-03-11 14:43:29.525317,852,49,842, +38,2017-03-11 14:43:29.525317,339,569,439, +9,2017-03-11 14:43:29.525317,495,963,648, +88,2017-03-11 14:43:29.525317,347,929,306, +31,2017-03-11 14:43:29.525317,887,215,840, +45,2017-03-11 14:43:29.525317,283,793,912, +62,2017-03-11 14:43:29.525317,188,55,871, +34,2017-03-11 14:43:29.525317,703,425,886, +56,2017-03-11 14:43:29.525317,474,728,933, +81,2017-03-11 14:43:29.525317,297,372,902, +79,2017-03-11 14:43:29.525317,335,551,673, +68,2017-03-11 14:43:29.525317,479,979,993, +37,2017-03-11 14:43:29.525317,195,833,812, +48,2017-03-11 14:43:29.525317,626,724,96, +81,2017-03-11 14:43:29.525317,779,968,159, +48,2017-03-11 14:43:29.525317,392,45,38, +87,2017-03-11 14:43:29.525317,773,971,678, +7,2017-03-11 14:43:29.525317,343,580,863, +68,2017-03-11 14:43:29.525317,131,536,360, +61,2017-03-11 14:43:29.525317,515,353,976, +71,2017-03-11 14:43:29.525317,186,788,187, +81,2017-03-11 14:43:29.525317,511,283,627, +29,2017-03-11 14:43:29.525317,251,786,772, +64,2017-03-11 14:43:29.525317,832,810,509, +61,2017-03-11 14:43:29.525317,781,188,676, +12,2017-03-11 14:43:29.525317,768,538,802, +90,2017-03-11 14:43:29.525317,74,162,509, +59,2017-03-11 14:43:29.525317,515,485,299, +70,2017-03-11 14:43:29.525317,273,486,514, +78,2017-03-11 14:43:29.525317,769,141,74, +2,2017-03-11 14:43:29.525317,928,846,664, +76,2017-03-11 14:43:29.525317,656,173,365, +44,2017-03-11 14:43:29.525317,361,40,560, +13,2017-03-11 14:43:29.525317,579,362,29, +65,2017-03-11 14:43:29.525317,524,538,242, +4,2017-03-11 14:43:29.525317,23,541,740, +30,2017-03-11 14:43:29.525317,27,255,81, +80,2017-03-11 14:43:29.525317,396,155,817, +32,2017-03-11 14:43:29.525317,1,481,83, +66,2017-03-11 14:43:29.525317,654,448,94, +2,2017-03-11 14:43:29.525317,489,654,145, +7,2017-03-11 14:43:29.525317,16,173,720, +54,2017-03-11 14:43:29.525317,711,962,579, +73,2017-03-11 14:43:29.525317,503,320,31, +53,2017-03-11 14:43:29.525317,574,111,327, +97,2017-03-11 14:43:29.525317,266,144,294, +27,2017-03-11 14:43:29.525317,625,377,925, +28,2017-03-11 14:43:29.525317,825,19,295, +31,2017-03-11 14:43:29.525317,673,439,381, +69,2017-03-11 14:43:29.525317,613,101,229, +32,2017-03-11 14:43:29.525317,63,809,59, +57,2017-03-11 14:43:29.525317,128,89,96, +70,2017-03-11 14:43:29.525317,201,423,673, +47,2017-03-11 14:43:29.525317,567,966,734, +19,2017-03-11 14:43:29.525317,343,659,471, +17,2017-03-11 14:43:29.525317,678,766,482, +35,2017-03-11 14:43:29.525317,205,863,41, +82,2017-03-11 14:43:29.525317,964,270,142, +3,2017-03-11 14:43:29.525317,79,201,593, +21,2017-03-11 14:43:29.525317,290,690,909, +49,2017-03-11 14:43:29.525317,113,582,957, +68,2017-03-11 14:43:29.525317,548,692,872, +89,2017-03-11 14:43:29.525317,351,343,60, +3,2017-03-11 14:43:29.525317,108,543,381, +31,2017-03-11 14:43:29.525317,406,422,131, +37,2017-03-11 14:43:29.525317,692,273,397, +77,2017-03-11 14:43:29.525317,474,990,977, +76,2017-03-11 14:43:29.525317,679,887,254, +79,2017-03-11 14:43:29.525317,469,212,472, +2,2017-03-11 14:43:29.525317,903,343,909, +25,2017-03-11 14:43:29.525317,686,969,284, +79,2017-03-11 14:43:29.525317,512,665,108, +92,2017-03-11 14:43:29.525317,87,239,287, +78,2017-03-11 14:43:29.525317,512,684,549, +99,2017-03-11 14:43:29.525317,673,527,749, +35,2017-03-11 14:43:29.525317,413,3,145, +88,2017-03-11 14:43:29.525317,215,617,899, +12,2017-03-11 14:43:29.525317,960,808,373, +65,2017-03-11 14:43:29.525317,777,657,440, +29,2017-03-11 14:43:29.525317,322,548,207, +41,2017-03-11 14:43:29.525317,787,494,188, +30,2017-03-11 14:43:29.525317,178,737,284, +85,2017-03-11 14:43:29.525317,264,33,204, +68,2017-03-11 14:43:29.525317,36,349,559, +25,2017-03-11 14:43:29.525317,965,459,369, +93,2017-03-11 14:43:29.525317,267,742,571, +4,2017-03-11 14:43:29.525317,399,12,333, +72,2017-03-11 14:43:29.525317,560,540,130, +35,2017-03-11 14:43:29.525317,34,318,644, +21,2017-03-11 14:43:29.525317,55,928,63, +32,2017-03-11 14:43:29.525317,961,267,995, +100,2017-03-11 14:43:29.525317,616,555,247, +58,2017-03-11 14:43:29.525317,13,616,507, +28,2017-03-11 14:43:29.525317,358,78,324, +76,2017-03-11 14:43:29.525317,90,658,478, +65,2017-03-11 14:43:29.525317,198,608,996, +23,2017-03-11 14:43:29.525317,926,640,444, +98,2017-03-11 14:43:29.525317,568,507,299, +53,2017-03-11 14:43:29.525317,775,295,526, +39,2017-03-11 14:43:29.525317,849,773,972, +86,2017-03-11 14:43:29.525317,389,479,143, +75,2017-03-11 14:43:29.525317,557,467,504, +65,2017-03-11 14:43:29.525317,124,982,297, +32,2017-03-11 14:43:29.525317,590,293,554, +52,2017-03-11 14:43:29.525317,933,998,497, +50,2017-03-11 14:43:29.525317,505,796,31, +28,2017-03-11 14:43:29.525317,91,557,671, +94,2017-03-11 14:43:29.525317,330,643,803, +72,2017-03-11 14:43:29.525317,122,946,467, +68,2017-03-11 14:43:29.525317,412,971,326, +54,2017-03-11 14:43:29.525317,952,623,858, +54,2017-03-11 14:43:29.525317,915,412,58, +85,2017-03-11 14:43:29.525317,410,554,350, +92,2017-03-11 14:43:29.525317,351,380,196, +44,2017-03-11 14:43:29.525317,937,867,382, +27,2017-03-11 14:43:29.525317,510,185,987, +63,2017-03-11 14:43:29.525317,131,453,310, +54,2017-03-11 14:43:29.525317,424,636,79, +38,2017-03-11 14:43:29.525317,259,938,918, +17,2017-03-11 14:43:29.525317,350,976,23, +76,2017-03-11 14:43:29.525317,530,373,676, +88,2017-03-11 14:43:29.525317,753,872,322, +69,2017-03-11 14:43:29.525317,738,704,957, +25,2017-03-11 14:43:29.525317,889,944,879, +2,2017-03-11 14:43:29.525317,397,190,563, +82,2017-03-11 14:43:29.525317,826,642,197, +9,2017-03-11 14:43:29.525317,580,115,260, +93,2017-03-11 14:43:29.525317,91,282,690, +62,2017-03-11 14:43:29.525317,655,366,502, +41,2017-03-11 14:43:29.525317,237,825,98, +98,2017-03-11 14:43:29.525317,529,56,223, +42,2017-03-11 14:43:29.525317,999,102,438, +40,2017-03-11 14:43:29.525317,292,1,218, +12,2017-03-11 14:43:29.525317,643,415,203, +22,2017-03-11 14:43:29.525317,530,463,153, +62,2017-03-11 14:43:29.525317,745,843,242, +40,2017-03-11 14:43:29.525317,209,745,808, +45,2017-03-11 14:43:29.525317,569,906,422, +10,2017-03-11 14:43:29.525317,962,645,517, +96,2017-03-11 14:43:29.525317,747,955,358, +4,2017-03-11 14:43:29.525317,955,576,156, +60,2017-03-11 14:43:29.525317,990,359,821, +52,2017-03-11 14:43:29.525317,822,974,141, +57,2017-03-11 14:43:29.525317,816,384,967, +2,2017-03-11 14:43:29.525317,129,775,471, +70,2017-03-11 14:43:29.525317,681,892,797, +64,2017-03-11 14:43:29.525317,537,313,604, +28,2017-03-11 14:43:29.525317,268,961,322, +22,2017-03-11 14:43:29.525317,537,478,821, +53,2017-03-11 14:43:29.525317,837,643,48, +66,2017-03-11 14:43:29.525317,616,189,226, +43,2017-03-11 14:43:29.525317,573,192,457, +70,2017-03-11 14:43:29.525317,967,928,400, +65,2017-03-11 14:43:29.525317,820,197,290, +36,2017-03-11 14:43:29.525317,510,894,640, +78,2017-03-11 14:43:29.525317,855,962,1, +39,2017-03-11 14:43:29.525317,441,822,919, +28,2017-03-11 14:43:29.525317,465,967,937, +8,2017-03-11 14:43:29.525317,156,163,513, +73,2017-03-11 14:43:29.525317,355,970,431, +32,2017-03-11 14:43:29.525317,898,831,969, +72,2017-03-11 14:43:29.525317,27,259,74, +54,2017-03-11 14:43:29.525317,153,714,314, +1,2017-03-11 14:43:29.525317,677,315,400, +12,2017-03-11 14:43:29.525317,137,319,396, +60,2017-03-11 14:43:29.525317,286,333,682, +44,2017-03-11 14:43:29.525317,495,195,170, +85,2017-03-11 14:43:29.525317,165,601,172, +6,2017-03-11 14:43:29.525317,432,141,780, +46,2017-03-11 14:43:29.525317,401,854,995, +55,2017-03-11 14:43:29.525317,569,310,561, +25,2017-03-11 14:43:29.525317,624,961,363, +76,2017-03-11 14:43:29.525317,280,759,363, +57,2017-03-11 14:43:29.525317,92,45,7, +59,2017-03-11 14:43:29.525317,240,178,437, +41,2017-03-11 14:43:29.525317,779,609,468, +21,2017-03-11 14:43:29.525317,751,248,669, +15,2017-03-11 14:43:29.525317,103,664,705, +67,2017-03-11 14:43:29.525317,974,266,917, +60,2017-03-11 14:43:29.525317,227,280,360, +51,2017-03-11 14:43:29.525317,39,723,73, +13,2017-03-11 14:43:29.525317,768,80,718, +1,2017-03-11 14:43:29.525317,258,155,413, +4,2017-03-11 14:43:29.525317,764,881,246, +51,2017-03-11 14:43:29.525317,129,915,666, +23,2017-03-11 14:43:29.525317,579,370,903, +55,2017-03-11 14:43:29.525317,636,820,151, +86,2017-03-11 14:43:29.525317,101,511,370, +14,2017-03-11 14:43:29.525317,234,443,271, +0,2017-03-11 14:43:29.525317,523,989,9, +78,2017-03-11 14:43:29.525317,143,422,816, +91,2017-03-11 14:43:29.525317,302,63,422, +43,2017-03-11 14:43:29.525317,978,88,663, +56,2017-03-11 14:43:29.525317,459,566,111, +10,2017-03-11 14:43:29.525317,387,262,958, +49,2017-03-11 14:43:29.525317,773,329,628, +1,2017-03-11 14:43:29.525317,771,899,8, +29,2017-03-11 14:43:29.525317,887,17,74, +3,2017-03-11 14:43:29.525317,439,891,938, +74,2017-03-11 14:43:29.525317,954,361,172, +93,2017-03-11 14:43:29.525317,449,835,489, +91,2017-03-11 14:43:29.525317,402,600,3, +79,2017-03-11 14:43:29.525317,862,961,276, +63,2017-03-11 14:43:29.525317,289,904,642, +6,2017-03-11 14:43:29.525317,802,650,355, +69,2017-03-11 14:43:29.525317,667,429,720, +11,2017-03-11 14:43:29.525317,320,659,846, +27,2017-03-11 14:43:29.525317,19,19,205, +47,2017-03-11 14:43:29.525317,854,694,375, +26,2017-03-11 14:43:29.525317,293,378,44, +16,2017-03-11 14:43:29.525317,339,320,790, +63,2017-03-11 14:43:29.525317,223,432,689, +3,2017-03-11 14:43:29.525317,82,43,715, +75,2017-03-11 14:43:29.525317,472,436,854, +79,2017-03-11 14:43:29.525317,94,701,65, +11,2017-03-11 14:43:29.525317,719,270,581, +57,2017-03-11 14:43:29.525317,963,957,828, +26,2017-03-11 14:43:29.525317,334,872,412, +67,2017-03-11 14:43:29.525317,192,202,301, +42,2017-03-11 14:43:29.525317,634,990,441, +72,2017-03-11 14:43:29.525317,33,157,465, +51,2017-03-11 14:43:29.525317,592,319,297, +69,2017-03-11 14:43:29.525317,20,362,800, +74,2017-03-11 14:43:29.525317,632,381,312, +60,2017-03-11 14:43:29.525317,337,140,852, +67,2017-03-11 14:43:29.525317,12,264,345, +20,2017-03-11 14:43:29.525317,466,646,620, +10,2017-03-11 14:43:29.525317,636,61,816, +67,2017-03-11 14:43:29.525317,218,281,175, +81,2017-03-11 14:43:29.525317,600,472,496, +62,2017-03-11 14:43:29.525317,834,296,358, +47,2017-03-11 14:43:29.525317,677,670,62, +1,2017-03-11 14:43:29.525317,810,914,686, +82,2017-03-11 14:43:29.525317,178,31,26, +64,2017-03-11 14:43:29.525317,677,646,744, +31,2017-03-11 14:43:29.525317,707,560,982, +93,2017-03-11 14:43:29.525317,841,157,735, +44,2017-03-11 14:43:29.525317,629,232,60, +46,2017-03-11 14:43:29.525317,528,418,930, +20,2017-03-11 14:43:29.525317,87,992,219, +90,2017-03-11 14:43:29.525317,905,904,719, +8,2017-03-11 14:43:29.525317,935,746,728, +61,2017-03-11 14:43:29.525317,392,472,925, +10,2017-03-11 14:43:29.525317,32,907,24, +87,2017-03-11 14:43:29.525317,63,759,314, +69,2017-03-11 14:43:29.525317,991,373,156, +52,2017-03-11 14:43:29.525317,791,86,723, +88,2017-03-11 14:43:29.525317,77,942,775, +98,2017-03-11 14:43:29.525317,847,495,66, +78,2017-03-11 14:43:29.525317,240,794,394, +63,2017-03-11 14:43:29.525317,266,318,731, +30,2017-03-11 14:43:29.525317,225,755,171, +29,2017-03-11 14:43:29.525317,515,484,981, +51,2017-03-11 14:43:29.525317,858,137,24, +65,2017-03-11 14:43:29.525317,223,748,527, +30,2017-03-11 14:43:29.525317,690,303,283, +54,2017-03-11 14:43:29.525317,797,349,318, +4,2017-03-11 14:43:29.525317,143,712,669, +41,2017-03-11 14:43:29.525317,30,400,707, +25,2017-03-11 14:43:29.525317,155,877,543, +67,2017-03-11 14:43:29.525317,362,524,175, +22,2017-03-11 14:43:29.525317,661,200,868, +88,2017-03-11 14:43:29.525317,948,395,183, +64,2017-03-11 14:43:29.525317,698,466,174, +50,2017-03-11 14:43:29.525317,815,492,532, +96,2017-03-11 14:43:29.525317,204,201,367, +23,2017-03-11 14:43:29.525317,601,73,488, +76,2017-03-11 14:43:29.525317,951,31,426, +31,2017-03-11 14:43:29.525317,555,601,532, +22,2017-03-11 14:43:29.525317,801,400,99, +75,2017-03-11 14:43:29.525317,796,282,386, +49,2017-03-11 14:43:29.525317,748,560,989, +56,2017-03-11 14:43:29.525317,52,521,521, +26,2017-03-11 14:43:29.525317,723,888,490, +32,2017-03-11 14:43:29.525317,961,978,81, +91,2017-03-11 14:43:29.525317,10,507,224, +56,2017-03-11 14:43:29.525317,108,756,781, +91,2017-03-11 14:43:29.525317,156,880,658, +95,2017-03-11 14:43:29.525317,162,44,446, +91,2017-03-11 14:43:29.525317,604,435,474, +66,2017-03-11 14:43:29.525317,956,995,912, +68,2017-03-11 14:43:29.525317,883,402,3, +84,2017-03-11 14:43:29.525317,380,84,756, +39,2017-03-11 14:43:29.525317,591,980,955, +70,2017-03-11 14:43:29.525317,735,736,609, +89,2017-03-11 14:43:29.525317,615,267,844, +78,2017-03-11 14:43:29.525317,311,290,688, +92,2017-03-11 14:43:29.525317,724,161,572, +68,2017-03-11 14:43:29.525317,156,484,359, +4,2017-03-11 14:43:29.525317,886,362,883, +27,2017-03-11 14:43:29.525317,446,638,657, +4,2017-03-11 14:43:29.525317,618,612,736, +35,2017-03-11 14:43:29.525317,347,344,245, +96,2017-03-11 14:43:29.525317,611,89,740, +92,2017-03-11 14:43:29.525317,378,428,837, +10,2017-03-11 14:43:29.525317,589,409,783, +74,2017-03-11 14:43:29.525317,893,142,783, +78,2017-03-11 14:43:29.525317,505,666,45, +95,2017-03-11 14:43:29.525317,304,702,988, +92,2017-03-11 14:43:29.525317,314,724,275, +66,2017-03-11 14:43:29.525317,68,520,624, +68,2017-03-11 14:43:29.525317,608,364,601, +99,2017-03-11 14:43:29.525317,792,438,89, +38,2017-03-11 14:43:29.525317,847,872,125, +74,2017-03-11 14:43:29.525317,14,909,519, +52,2017-03-11 14:43:29.525317,575,564,470, +88,2017-03-11 14:43:29.525317,266,457,800, +58,2017-03-11 14:43:29.525317,181,75,241, +25,2017-03-11 14:43:29.525317,595,866,928, +20,2017-03-11 14:43:29.525317,230,528,190, +2,2017-03-11 14:43:29.525317,966,278,403, +81,2017-03-11 14:43:29.525317,150,529,553, +16,2017-03-11 14:43:29.525317,437,72,683, +1,2017-03-11 14:43:29.525317,636,153,891, +90,2017-03-11 14:43:29.525317,610,691,482, +79,2017-03-11 14:43:29.525317,766,724,40, +36,2017-03-11 14:43:29.525317,589,968,564, +82,2017-03-11 14:43:29.525317,496,754,842, +46,2017-03-11 14:43:29.525317,32,245,276, +18,2017-03-11 14:43:29.525317,773,829,347, +21,2017-03-11 14:43:29.525317,900,30,223, +54,2017-03-11 14:43:29.525317,183,113,438, +79,2017-03-11 14:43:29.525317,804,920,584, +57,2017-03-11 14:43:29.525317,644,624,932, +23,2017-03-11 14:43:29.525317,591,496,52, +9,2017-03-11 14:43:29.525317,249,894,550, +28,2017-03-11 14:43:29.525317,139,826,464, +91,2017-03-11 14:43:29.525317,654,811,123, +55,2017-03-11 14:43:29.525317,840,345,91, +2,2017-03-11 14:43:29.525317,459,529,816, +26,2017-03-11 14:43:29.525317,450,400,834, +9,2017-03-11 14:43:29.525317,24,765,326, +62,2017-03-11 14:43:29.525317,261,379,703, +51,2017-03-11 14:43:29.525317,273,253,792, +41,2017-03-11 14:43:29.525317,78,256,323, +73,2017-03-11 14:43:29.525317,67,446,288, +91,2017-03-11 14:43:29.525317,791,379,930, +25,2017-03-11 14:43:29.525317,908,746,513, +36,2017-03-11 14:43:29.525317,146,346,451, +17,2017-03-11 14:43:29.525317,112,777,785, +37,2017-03-11 14:43:29.525317,156,488,883, +43,2017-03-11 14:43:29.525317,741,675,840, +82,2017-03-11 14:43:29.525317,931,163,552, +100,2017-03-11 14:43:29.525317,609,840,905, +40,2017-03-11 14:43:29.525317,218,835,650, +13,2017-03-11 14:43:29.525317,582,162,483, +73,2017-03-11 14:43:29.525317,509,934,898, +62,2017-03-11 14:43:29.525317,711,683,993, +87,2017-03-11 14:43:29.525317,172,876,296, +91,2017-03-11 14:43:29.525317,551,136,732, +48,2017-03-11 14:43:29.525317,300,284,481, +91,2017-03-11 14:43:29.525317,124,386,309, +34,2017-03-11 14:43:29.525317,221,958,468, +80,2017-03-11 14:43:29.525317,120,951,531, +63,2017-03-11 14:43:29.525317,885,428,249, +60,2017-03-11 14:43:29.525317,112,242,463, +28,2017-03-11 14:43:29.525317,118,759,196, +67,2017-03-11 14:43:29.525317,895,928,152, +20,2017-03-11 14:43:29.525317,212,632,104, +34,2017-03-11 14:43:29.525317,18,412,678, +24,2017-03-11 14:43:29.525317,370,145,43, +49,2017-03-11 14:43:29.525317,96,574,120, +98,2017-03-11 14:43:29.525317,2,369,577, +11,2017-03-11 14:43:29.525317,611,40,397, +73,2017-03-11 14:43:29.525317,800,593,398, +70,2017-03-11 14:43:29.525317,521,550,890, +73,2017-03-11 14:43:29.525317,182,994,69, +20,2017-03-11 14:43:29.525317,406,746,441, +78,2017-03-11 14:43:29.525317,891,483,267, +99,2017-03-11 14:43:29.525317,57,387,969, +6,2017-03-11 14:43:29.525317,756,546,173, +37,2017-03-11 14:43:29.525317,586,570,96, +39,2017-03-11 14:43:29.525317,163,495,81, +68,2017-03-11 14:43:29.525317,45,971,416, +23,2017-03-11 14:43:29.525317,965,485,428, +37,2017-03-11 14:43:29.525317,231,868,147, +12,2017-03-11 14:43:29.525317,352,414,111, +41,2017-03-11 14:43:29.525317,801,79,467, +56,2017-03-11 14:43:29.525317,626,640,924, +21,2017-03-11 14:43:29.525317,210,21,598, +37,2017-03-11 14:43:29.525317,516,679,56, +56,2017-03-11 14:43:29.525317,650,472,787, +62,2017-03-11 14:43:29.525317,957,215,986, +19,2017-03-11 14:43:29.525317,83,133,311, +44,2017-03-11 14:43:29.525317,547,422,844, +35,2017-03-11 14:43:29.525317,501,311,905, +13,2017-03-11 14:43:29.525317,951,829,339, +16,2017-03-11 14:43:29.525317,850,937,533, +37,2017-03-11 14:43:29.525317,616,588,926, +27,2017-03-11 14:43:29.525317,60,713,882, +2,2017-03-11 14:43:29.525317,929,868,206, +1,2017-03-11 14:43:29.525317,1,518,447, +55,2017-03-11 14:43:29.525317,940,291,896, +44,2017-03-11 14:43:29.525317,601,801,568, +55,2017-03-11 14:43:29.525317,631,907,713, +48,2017-03-11 14:43:29.525317,844,246,847, +46,2017-03-11 14:43:29.525317,834,773,728, +89,2017-03-11 14:43:29.525317,486,610,912, +41,2017-03-11 14:43:29.525317,478,118,427, +48,2017-03-11 14:43:29.525317,636,874,28, +58,2017-03-11 14:43:29.525317,164,924,16, +77,2017-03-11 14:43:29.525317,725,585,318, +36,2017-03-11 14:43:29.525317,492,31,837, +34,2017-03-11 14:43:29.525317,277,684,797, +11,2017-03-11 14:43:29.525317,457,525,6, +94,2017-03-11 14:43:29.525317,135,918,358, +61,2017-03-11 14:43:29.525317,36,785,92, +67,2017-03-11 14:43:29.525317,659,120,247, +82,2017-03-11 14:43:29.525317,44,264,589, +77,2017-03-11 14:43:29.525317,848,908,125, +34,2017-03-11 14:43:29.525317,939,962,676, +22,2017-03-11 14:43:29.525317,646,473,327, +10,2017-03-11 14:43:29.525317,998,333,46, +13,2017-03-11 14:43:29.525317,250,404,745, +29,2017-03-11 14:43:29.525317,189,838,958, +85,2017-03-11 14:43:29.525317,958,205,672, +0,2017-03-11 14:43:29.525317,469,261,770, +32,2017-03-11 14:43:29.525317,168,895,658, +11,2017-03-11 14:43:29.525317,857,334,323, +50,2017-03-11 14:43:29.525317,807,651,606, +80,2017-03-11 14:43:29.525317,983,651,937, +23,2017-03-11 14:43:29.525317,56,683,520, +24,2017-03-11 14:43:29.525317,520,478,93, +48,2017-03-11 14:43:29.525317,683,765,479, +15,2017-03-11 14:43:29.525317,26,250,470, +19,2017-03-11 14:43:29.525317,145,128,301, +0,2017-03-11 14:43:29.525317,462,625,505, +27,2017-03-11 14:43:29.525317,275,111,73, +26,2017-03-11 14:43:29.525317,763,11,492, +82,2017-03-11 14:43:29.525317,694,12,63, +21,2017-03-11 14:43:29.525317,490,156,692, +17,2017-03-11 14:43:29.525317,921,171,326, +95,2017-03-11 14:43:29.525317,421,797,140, +57,2017-03-11 14:43:29.525317,924,442,568, +39,2017-03-11 14:43:29.525317,66,73,654, +34,2017-03-11 14:43:29.525317,184,728,600, +95,2017-03-11 14:43:29.525317,739,93,765, +43,2017-03-11 14:43:29.525317,105,828,646, +60,2017-03-11 14:43:29.525317,984,338,769, +90,2017-03-11 14:43:29.525317,509,95,851, +93,2017-03-11 14:43:29.525317,892,991,495, +82,2017-03-11 14:43:29.525317,432,63,202, +50,2017-03-11 14:43:29.525317,136,856,840, +32,2017-03-11 14:43:29.525317,584,441,267, +32,2017-03-11 14:43:29.525317,533,32,754, +64,2017-03-11 14:43:29.525317,860,400,233, +84,2017-03-11 14:43:29.525317,738,2,749, +25,2017-03-11 14:43:29.525317,97,599,176, +99,2017-03-11 14:43:29.525317,590,670,805, +2,2017-03-11 14:43:29.525317,733,7,521, +87,2017-03-11 14:43:29.525317,863,362,189, +45,2017-03-11 14:43:29.525317,802,456,769, +34,2017-03-11 14:43:29.525317,489,523,974, +35,2017-03-11 14:43:29.525317,923,208,193, +66,2017-03-11 14:43:29.525317,210,942,908, +31,2017-03-11 14:43:29.525317,541,83,296, +13,2017-03-11 14:43:29.525317,754,102,154, +49,2017-03-11 14:43:29.525317,108,675,355, +97,2017-03-11 14:43:29.525317,37,544,418, +84,2017-03-11 14:43:29.525317,1,187,175, +49,2017-03-11 14:43:29.525317,710,149,838, +63,2017-03-11 14:43:29.525317,357,31,295, +57,2017-03-11 14:43:29.525317,973,202,874, +51,2017-03-11 14:43:29.525317,286,170,646, +4,2017-03-11 14:43:29.525317,272,800,525, +38,2017-03-11 14:43:29.525317,475,881,352, +51,2017-03-11 14:43:29.525317,425,770,351, +43,2017-03-11 14:43:29.525317,957,527,915, +67,2017-03-11 14:43:29.525317,676,753,300, +3,2017-03-11 14:43:29.525317,784,594,600, +76,2017-03-11 14:43:29.525317,797,474,272, +8,2017-03-11 14:43:29.525317,644,917,121, +92,2017-03-11 14:43:29.525317,717,647,297, +19,2017-03-11 14:43:29.525317,527,649,704, +95,2017-03-11 14:43:29.525317,418,55,378, +37,2017-03-11 14:43:29.525317,582,293,41, +26,2017-03-11 14:43:29.525317,46,341,291, +83,2017-03-11 14:43:29.525317,936,891,588, +73,2017-03-11 14:43:29.525317,364,860,815, +1,2017-03-11 14:43:29.525317,777,936,924, +49,2017-03-11 14:43:29.525317,583,221,686, +11,2017-03-11 14:43:29.525317,870,390,62, +29,2017-03-11 14:43:29.525317,445,440,663, +3,2017-03-11 14:43:29.525317,733,704,285, +78,2017-03-11 14:43:29.525317,46,576,610, +98,2017-03-11 14:43:29.525317,467,198,714, +83,2017-03-11 14:43:29.525317,57,529,839, +83,2017-03-11 14:43:29.525317,465,764,328, +5,2017-03-11 14:43:29.525317,985,14,158, +85,2017-03-11 14:43:29.525317,404,220,142, +85,2017-03-11 14:43:29.525317,660,805,876, +39,2017-03-11 14:43:29.525317,509,162,173, +55,2017-03-11 14:43:29.525317,738,782,536, +20,2017-03-11 14:43:29.525317,980,250,36, +4,2017-03-11 14:43:29.525317,779,875,871, +24,2017-03-11 14:43:29.525317,639,199,291, +62,2017-03-11 14:43:29.525317,213,448,477, +62,2017-03-11 14:43:29.525317,669,620,466, +33,2017-03-11 14:43:29.525317,424,343,722, +93,2017-03-11 14:43:29.525317,504,895,488, +24,2017-03-11 14:43:29.525317,677,24,447, +66,2017-03-11 14:43:29.525317,274,483,694, +5,2017-03-11 14:43:29.525317,358,565,296, +100,2017-03-11 14:43:29.525317,764,586,619, +98,2017-03-11 14:43:29.525317,35,97,594, +70,2017-03-11 14:43:29.525317,716,60,32, +14,2017-03-11 14:43:29.525317,403,755,74, +91,2017-03-11 14:43:29.525317,650,562,149, +33,2017-03-11 14:43:29.525317,586,596,984, +86,2017-03-11 14:43:29.525317,79,679,912, +44,2017-03-11 14:43:29.525317,244,207,433, +1,2017-03-11 14:43:29.525317,794,52,985, +83,2017-03-11 14:43:29.525317,149,579,532, +87,2017-03-11 14:43:29.525317,640,564,6, +4,2017-03-11 14:43:29.525317,318,80,950, +97,2017-03-11 14:43:29.525317,642,99,295, +23,2017-03-11 14:43:29.525317,695,280,87, +77,2017-03-11 14:43:29.525317,958,999,210, +20,2017-03-11 14:43:29.525317,206,643,210, +100,2017-03-11 14:43:29.525317,695,195,828, +84,2017-03-11 14:43:29.525317,774,360,709, +41,2017-03-11 14:43:29.525317,924,716,457, +24,2017-03-11 14:43:29.525317,796,406,210, +44,2017-03-11 14:43:29.525317,505,505,666, +20,2017-03-11 14:43:29.525317,785,753,974, +74,2017-03-11 14:43:29.525317,752,185,945, +96,2017-03-11 14:43:29.525317,827,155,958, +52,2017-03-11 14:43:29.525317,349,786,366, +12,2017-03-11 14:43:29.525317,146,76,538, +7,2017-03-11 14:43:29.525317,791,994,312, +59,2017-03-11 14:43:29.525317,401,522,25, +91,2017-03-11 14:43:29.525317,27,690,106, +81,2017-03-11 14:43:29.525317,443,80,555, +20,2017-03-11 14:43:29.525317,265,500,154, +9,2017-03-11 14:43:29.525317,655,112,615, +0,2017-03-11 14:43:29.525317,898,981,128, +4,2017-03-11 14:43:29.525317,57,666,114, +85,2017-03-11 14:43:29.525317,660,426,435, +6,2017-03-11 14:43:29.525317,948,459,966, +98,2017-03-11 14:43:29.525317,150,72,788, +59,2017-03-11 14:43:29.525317,153,343,789, +42,2017-03-11 14:43:29.525317,844,942,510, +50,2017-03-11 14:43:29.525317,54,125,503, +95,2017-03-11 14:43:29.525317,106,631,997, +16,2017-03-11 14:43:29.525317,297,111,10, +96,2017-03-11 14:43:29.525317,537,445,18, +49,2017-03-11 14:43:29.525317,904,984,460, +5,2017-03-11 14:43:29.525317,56,248,647, +21,2017-03-11 14:43:29.525317,592,435,627, +44,2017-03-11 14:43:29.525317,378,136,934, +43,2017-03-11 14:43:29.525317,261,437,385, +37,2017-03-11 14:43:29.525317,67,382,529, +36,2017-03-11 14:43:29.525317,493,540,321, +3,2017-03-11 14:43:29.525317,984,339,515, +89,2017-03-11 14:43:29.525317,323,975,942, +38,2017-03-11 14:43:29.525317,224,589,588, +82,2017-03-11 14:43:29.525317,25,214,251, +40,2017-03-11 14:43:29.525317,351,185,834, +61,2017-03-11 14:43:29.525317,622,219,979, +69,2017-03-11 14:43:29.525317,601,508,53, +9,2017-03-11 14:43:29.525317,48,374,123, +3,2017-03-11 14:43:29.525317,713,638,921, +4,2017-03-11 14:43:29.525317,613,863,414, +84,2017-03-11 14:43:29.525317,452,2,652, +48,2017-03-11 14:43:29.525317,217,903,879, +57,2017-03-11 14:43:29.525317,88,713,179, +71,2017-03-11 14:43:29.525317,932,158,399, +53,2017-03-11 14:43:29.525317,667,453,626, +71,2017-03-11 14:43:29.525317,827,750,747, +54,2017-03-11 14:43:29.525317,388,667,575, +0,2017-03-11 14:43:29.525317,530,989,838, +98,2017-03-11 14:43:29.525317,992,490,459, +21,2017-03-11 14:43:29.525317,394,338,776, +48,2017-03-11 14:43:29.525317,51,955,192, +98,2017-03-11 14:43:29.525317,114,592,516, +78,2017-03-11 14:43:29.525317,44,143,495, +87,2017-03-11 14:43:29.525317,892,241,411, +28,2017-03-11 14:43:29.525317,908,986,280, +44,2017-03-11 14:43:29.525317,976,118,421, +97,2017-03-11 14:43:29.525317,608,880,175, +0,2017-03-11 14:43:29.525317,218,951,484, +27,2017-03-11 14:43:29.525317,906,677,252, +2,2017-03-11 14:43:29.525317,268,769,800, +31,2017-03-11 14:43:29.525317,911,295,184, +80,2017-03-11 14:43:29.525317,536,595,83, +44,2017-03-11 14:43:29.525317,581,363,883, +56,2017-03-11 14:43:29.525317,482,305,523, +9,2017-03-11 14:43:29.525317,185,699,92, +40,2017-03-11 14:43:29.525317,650,576,672, +56,2017-03-11 14:43:29.525317,253,924,577, +52,2017-03-11 14:43:29.525317,693,377,834, +60,2017-03-11 14:43:29.525317,672,17,408, +21,2017-03-11 14:43:29.525317,612,491,653, +19,2017-03-11 14:43:29.525317,854,536,749, +34,2017-03-11 14:43:29.525317,841,272,426, +3,2017-03-11 14:43:29.525317,971,518,428, +62,2017-03-11 14:43:29.525317,94,100,178, +35,2017-03-11 14:43:29.525317,24,755,869, +72,2017-03-11 14:43:29.525317,132,703,321, +80,2017-03-11 14:43:29.525317,720,728,12, +33,2017-03-11 14:43:29.525317,219,665,525, +7,2017-03-11 14:43:29.525317,202,273,409, +4,2017-03-11 14:43:29.525317,546,835,68, +52,2017-03-11 14:43:29.525317,353,496,138, +45,2017-03-11 14:43:29.525317,596,317,795, +62,2017-03-11 14:43:29.525317,71,663,336, +20,2017-03-11 14:43:29.525317,366,656,7, +9,2017-03-11 14:43:29.525317,385,20,418, +60,2017-03-11 14:43:29.525317,685,942,676, +89,2017-03-11 14:43:29.525317,215,85,930, +76,2017-03-11 14:43:29.525317,920,998,278, +27,2017-03-11 14:43:29.525317,494,417,719, +9,2017-03-11 14:43:29.525317,733,514,709, +80,2017-03-11 14:43:29.525317,177,45,8, +54,2017-03-11 14:43:29.525317,701,15,629, +9,2017-03-11 14:43:29.525317,35,46,689, +72,2017-03-11 14:43:29.525317,988,365,607, +20,2017-03-11 14:43:29.525317,450,537,965, +37,2017-03-11 14:43:29.525317,534,243,642, +3,2017-03-11 14:43:29.525317,660,362,118, +39,2017-03-11 14:43:29.525317,876,827,198, +5,2017-03-11 14:43:29.525317,872,206,596, +57,2017-03-11 14:43:29.525317,221,225,659, +26,2017-03-11 14:43:29.525317,271,348,977, +26,2017-03-11 14:43:29.525317,713,584,463, +16,2017-03-11 14:43:29.525317,121,428,534, +66,2017-03-11 14:43:29.525317,671,176,683, +33,2017-03-11 14:43:29.525317,538,801,724, +41,2017-03-11 14:43:29.525317,628,921,467, +50,2017-03-11 14:43:29.525317,127,63,73, +35,2017-03-11 14:43:29.525317,287,732,605, +56,2017-03-11 14:43:29.525317,80,581,817, +79,2017-03-11 14:43:29.525317,165,280,956, +29,2017-03-11 14:43:29.525317,708,490,941, +38,2017-03-11 14:43:29.525317,667,624,710, +20,2017-03-11 14:43:29.525317,426,434,619, +5,2017-03-11 14:43:29.525317,356,85,554, +48,2017-03-11 14:43:29.525317,148,627,831, +44,2017-03-11 14:43:29.525317,358,436,993, +44,2017-03-11 14:43:29.525317,17,810,231, +18,2017-03-11 14:43:29.525317,91,187,468, +80,2017-03-11 14:43:29.525317,677,409,178, +34,2017-03-11 14:43:29.525317,34,888,549, +46,2017-03-11 14:43:29.525317,322,167,513, +68,2017-03-11 14:43:29.525317,253,66,161, +40,2017-03-11 14:43:29.525317,693,992,836, +5,2017-03-11 14:43:29.525317,427,829,489, +44,2017-03-11 14:43:29.525317,639,720,626, +73,2017-03-11 14:43:29.525317,907,94,529, +58,2017-03-11 14:43:29.525317,504,707,929, +54,2017-03-11 14:43:29.525317,595,477,996, +92,2017-03-11 14:43:29.525317,645,509,596, +90,2017-03-11 14:43:29.525317,575,756,298, +27,2017-03-11 14:43:29.525317,748,134,320, +18,2017-03-11 14:43:29.525317,963,809,619, +60,2017-03-11 14:43:29.525317,529,245,332, +44,2017-03-11 14:43:29.525317,340,861,21, +84,2017-03-11 14:43:29.525317,568,949,381, +16,2017-03-11 14:43:29.525317,427,377,81, +7,2017-03-11 14:43:29.525317,886,677,969, +46,2017-03-11 14:43:29.525317,434,267,730, +18,2017-03-11 14:43:29.525317,401,49,357, +36,2017-03-11 14:43:29.525317,858,976,966, +39,2017-03-11 14:43:29.525317,221,298,823, +56,2017-03-11 14:43:29.525317,159,844,404, +73,2017-03-11 14:43:29.525317,793,785,891, +22,2017-03-11 14:43:29.525317,162,973,291, +5,2017-03-11 14:43:29.525317,650,260,510, +8,2017-03-11 14:43:29.525317,527,239,265, +93,2017-03-11 14:43:29.525317,289,622,292, +15,2017-03-11 14:43:29.525317,598,258,535, +82,2017-03-11 14:43:29.525317,556,358,380, +72,2017-03-11 14:43:29.525317,202,784,443, +99,2017-03-11 14:43:29.525317,569,334,215, +73,2017-03-11 14:43:29.525317,307,506,779, +96,2017-03-11 14:43:29.525317,767,288,40, +29,2017-03-11 14:43:29.525317,528,305,222, +82,2017-03-11 14:43:29.525317,928,514,964, +53,2017-03-11 14:43:29.525317,771,498,344, +33,2017-03-11 14:43:29.525317,856,724,42, +6,2017-03-11 14:43:29.525317,508,485,53, +8,2017-03-11 14:43:29.525317,819,268,808, +13,2017-03-11 14:43:29.525317,774,586,82, +54,2017-03-11 14:43:29.525317,875,123,835, +40,2017-03-11 14:43:29.525317,428,57,219, +36,2017-03-11 14:43:29.525317,571,183,881, +34,2017-03-11 14:43:29.525317,682,226,670, +54,2017-03-11 14:43:29.525317,950,712,596, +46,2017-03-11 14:43:29.525317,197,649,534, +2,2017-03-11 14:43:29.525317,917,342,142, +69,2017-03-11 14:43:29.525317,928,225,232, +80,2017-03-11 14:43:29.525317,347,67,206, +78,2017-03-11 14:43:29.525317,124,425,131, +70,2017-03-11 14:43:29.525317,608,12,38, +29,2017-03-11 14:43:29.525317,237,707,827, +19,2017-03-11 14:43:29.525317,419,423,645, +62,2017-03-11 14:43:29.525317,72,179,633, +99,2017-03-11 14:43:29.525317,521,775,679, +45,2017-03-11 14:43:29.525317,1000,911,253, +35,2017-03-11 14:43:29.525317,978,459,122, +10,2017-03-11 14:43:29.525317,883,253,798, +49,2017-03-11 14:43:29.525317,265,836,781, +50,2017-03-11 14:43:29.525317,544,609,690, +96,2017-03-11 14:43:29.525317,32,334,579, +10,2017-03-11 14:43:29.525317,514,212,92, +4,2017-03-11 14:43:29.525317,987,771,485, +99,2017-03-11 14:43:29.525317,683,738,334, +66,2017-03-11 14:43:29.525317,196,456,764, +8,2017-03-11 14:43:29.525317,709,562,571, +97,2017-03-11 14:43:29.525317,398,352,476, +94,2017-03-11 14:43:29.525317,961,165,905, +99,2017-03-11 14:43:29.525317,500,484,96, +1,2017-03-11 14:43:29.525317,696,188,49, +68,2017-03-11 14:43:29.525317,959,533,669, +64,2017-03-11 14:43:29.525317,271,3,303, +47,2017-03-11 14:43:29.525317,459,67,547, +17,2017-03-11 14:43:29.525317,629,118,141, +3,2017-03-11 14:43:29.525317,470,616,969, +43,2017-03-11 14:43:29.525317,782,873,424, +28,2017-03-11 14:43:29.525317,357,520,295, +5,2017-03-11 14:43:29.525317,708,344,735, +67,2017-03-11 14:43:29.525317,877,405,310, +15,2017-03-11 14:43:29.525317,408,613,616, +87,2017-03-11 14:43:29.525317,679,163,33, +31,2017-03-11 14:43:29.525317,281,174,335, +75,2017-03-11 14:43:29.525317,790,304,182, +57,2017-03-11 14:43:29.525317,177,606,854, +53,2017-03-11 14:43:29.525317,126,149,587, +83,2017-03-11 14:43:29.525317,493,322,502, +37,2017-03-11 14:43:29.525317,727,812,519, +13,2017-03-11 14:43:29.525317,424,135,1, +10,2017-03-11 14:43:29.525317,298,34,412, +58,2017-03-11 14:43:29.525317,208,747,329, +100,2017-03-11 14:43:29.525317,51,511,571, +23,2017-03-11 14:43:29.525317,118,425,762, +24,2017-03-11 14:43:29.525317,575,349,78, +7,2017-03-11 14:43:29.525317,671,581,439, +40,2017-03-11 14:43:29.525317,392,958,532, +82,2017-03-11 14:43:29.525317,94,533,921, +39,2017-03-11 14:43:29.525317,568,333,970, +78,2017-03-11 14:43:29.525317,80,299,775, +13,2017-03-11 14:43:29.525317,810,346,360, +93,2017-03-11 14:43:29.525317,771,122,172, +35,2017-03-11 14:43:29.525317,471,250,413, +14,2017-03-11 14:43:29.525317,831,852,539, +22,2017-03-11 14:43:29.525317,811,71,40, +90,2017-03-11 14:43:29.525317,605,961,296, +17,2017-03-11 14:43:29.525317,294,265,948, +37,2017-03-11 14:43:29.525317,564,723,506, +37,2017-03-11 14:43:29.525317,68,865,302, +84,2017-03-11 14:43:29.525317,987,474,184, +46,2017-03-11 14:43:29.525317,724,597,599, +56,2017-03-11 14:43:29.525317,450,138,779, +26,2017-03-11 14:43:29.525317,209,819,165, +81,2017-03-11 14:43:29.525317,780,461,986, +7,2017-03-11 14:43:29.525317,726,934,448, +29,2017-03-11 14:43:29.525317,657,954,665, +73,2017-03-11 14:43:29.525317,819,967,564, +81,2017-03-11 14:43:29.525317,441,748,264, +17,2017-03-11 14:43:29.525317,345,863,720, +80,2017-03-11 14:43:29.525317,1,499,56, +21,2017-03-11 14:43:29.525317,318,221,25, +10,2017-03-11 14:43:29.525317,682,11,172, +41,2017-03-11 14:43:29.525317,946,620,699, +60,2017-03-11 14:43:29.525317,574,364,328, +39,2017-03-11 14:43:29.525317,331,891,200, +77,2017-03-11 14:43:29.525317,639,464,937, +98,2017-03-11 14:43:29.525317,328,657,780, +33,2017-03-11 14:43:29.525317,156,836,540, +47,2017-03-11 14:43:29.525317,57,564,572, +74,2017-03-11 14:43:29.525317,576,744,147, +52,2017-03-11 14:43:29.525317,364,846,124, +94,2017-03-11 14:43:29.525317,210,451,332, +54,2017-03-11 14:43:29.525317,343,532,312, +98,2017-03-11 14:43:29.525317,997,249,967, +32,2017-03-11 14:43:29.525317,906,747,653, +6,2017-03-11 14:43:29.525317,582,193,536, +64,2017-03-11 14:43:29.525317,757,108,378, +33,2017-03-11 14:43:29.525317,852,526,854, +22,2017-03-11 14:43:29.525317,372,978,155, +58,2017-03-11 14:43:29.525317,429,487,122, +77,2017-03-11 14:43:29.525317,19,435,753, +2,2017-03-11 14:43:29.525317,683,720,340, +59,2017-03-11 14:43:29.525317,467,993,652, +5,2017-03-11 14:43:29.525317,186,188,689, +94,2017-03-11 14:43:29.525317,296,67,276, +15,2017-03-11 14:43:29.525317,592,130,365, +96,2017-03-11 14:43:29.525317,108,520,546, +54,2017-03-11 14:43:29.525317,7,669,308, +3,2017-03-11 14:43:29.525317,103,61,42, +79,2017-03-11 14:43:29.525317,782,383,376, +25,2017-03-11 14:43:29.525317,376,28,298, +56,2017-03-11 14:43:29.525317,216,986,506, +51,2017-03-11 14:43:29.525317,53,782,660, +65,2017-03-11 14:43:29.525317,912,25,610, +2,2017-03-11 14:43:29.525317,545,156,557, +55,2017-03-11 14:43:29.525317,824,865,578, +93,2017-03-11 14:43:29.525317,926,621,714, +71,2017-03-11 14:43:29.525317,3,90,956, +38,2017-03-11 14:43:29.525317,118,254,942, +33,2017-03-11 14:43:29.525317,240,447,845, +29,2017-03-11 14:43:29.525317,229,505,939, +14,2017-03-11 14:43:29.525317,530,548,162, +8,2017-03-11 14:43:29.525317,704,718,627, +53,2017-03-11 14:43:29.525317,583,206,455, +51,2017-03-11 14:43:29.525317,826,169,217, +83,2017-03-11 14:43:29.525317,259,173,209, +38,2017-03-11 14:43:29.525317,427,151,710, +67,2017-03-11 14:43:29.525317,598,555,961, +83,2017-03-11 14:43:29.525317,60,899,969, +59,2017-03-11 14:43:29.525317,447,131,666, +15,2017-03-11 14:43:29.525317,849,293,679, +43,2017-03-11 14:43:29.525317,499,134,941, +32,2017-03-11 14:43:29.525317,303,158,154, +56,2017-03-11 14:43:29.525317,331,363,940, +76,2017-03-11 14:43:29.525317,514,650,426, +11,2017-03-11 14:43:29.525317,205,387,939, +27,2017-03-11 14:43:29.525317,286,908,856, +73,2017-03-11 14:43:29.525317,39,521,884, +89,2017-03-11 14:43:29.525317,814,563,319, +31,2017-03-11 14:43:29.525317,697,260,638, +0,2017-03-11 14:43:29.525317,418,792,563, +75,2017-03-11 14:43:29.525317,156,503,508, +67,2017-03-11 14:43:29.525317,153,934,782, +36,2017-03-11 14:43:29.525317,320,721,623, +61,2017-03-11 14:43:29.525317,630,478,339, +67,2017-03-11 14:43:29.525317,1000,223,556, +81,2017-03-11 14:43:29.525317,786,876,127, +48,2017-03-11 14:43:29.525317,136,765,483, +55,2017-03-11 14:43:29.525317,557,46,304, +71,2017-03-11 14:43:29.525317,549,812,382, +70,2017-03-11 14:43:29.525317,745,164,59, +7,2017-03-11 14:43:29.525317,885,682,672, +51,2017-03-11 14:43:29.525317,161,11,184, +16,2017-03-11 14:43:29.525317,233,740,974, +2,2017-03-11 14:43:29.525317,616,101,502, +75,2017-03-11 14:43:29.525317,866,985,306, +42,2017-03-11 14:43:29.525317,31,609,135, +58,2017-03-11 14:43:29.525317,421,518,282, +17,2017-03-11 14:43:29.525317,682,341,232, +57,2017-03-11 14:43:29.525317,23,904,82, +18,2017-03-11 14:43:29.525317,914,265,344, +15,2017-03-11 14:43:29.525317,5,319,167, +62,2017-03-11 14:43:29.525317,420,668,372, +29,2017-03-11 14:43:29.525317,653,678,708, +68,2017-03-11 14:43:29.525317,287,843,263, +71,2017-03-11 14:43:29.525317,361,545,874, +4,2017-03-11 14:43:29.525317,886,106,609, +91,2017-03-11 14:43:29.525317,9,691,93, +92,2017-03-11 14:43:29.525317,957,438,71, +96,2017-03-11 14:43:29.525317,756,238,583, +18,2017-03-11 14:43:29.525317,906,955,462, +56,2017-03-11 14:43:29.525317,633,170,242, +92,2017-03-11 14:43:29.525317,13,505,628, +37,2017-03-11 14:43:29.525317,51,502,417, +94,2017-03-11 14:43:29.525317,608,26,846, +62,2017-03-11 14:43:29.525317,717,940,541, +67,2017-03-11 14:43:29.525317,378,612,636, +13,2017-03-11 14:43:29.525317,850,219,310, +76,2017-03-11 14:43:29.525317,174,771,314, +81,2017-03-11 14:43:29.525317,941,556,727, +95,2017-03-11 14:43:29.525317,61,356,328, +11,2017-03-11 14:43:29.525317,858,745,48, +47,2017-03-11 14:43:29.525317,771,895,83, +49,2017-03-11 14:43:29.525317,835,624,162, +21,2017-03-11 14:43:29.525317,236,798,346, +9,2017-03-11 14:43:29.525317,16,656,841, +19,2017-03-11 14:43:29.525317,427,154,997, +37,2017-03-11 14:43:29.525317,710,725,322, +77,2017-03-11 14:43:29.525317,80,651,882, +94,2017-03-11 14:43:29.525317,396,931,404, +17,2017-03-11 14:43:29.525317,826,487,655, +66,2017-03-11 14:43:29.525317,111,817,872, +35,2017-03-11 14:43:29.525317,615,218,433, +63,2017-03-11 14:43:29.525317,874,274,821, +30,2017-03-11 14:43:29.525317,428,818,669, +14,2017-03-11 14:43:29.525317,543,991,909, +62,2017-03-11 14:43:29.525317,642,791,561, +4,2017-03-11 14:43:29.525317,722,965,205, +55,2017-03-11 14:43:29.525317,453,860,208, +56,2017-03-11 14:43:29.525317,677,80,912, +29,2017-03-11 14:43:29.525317,298,345,923, +17,2017-03-11 14:43:29.525317,618,744,472, +5,2017-03-11 14:43:29.525317,562,141,184, +10,2017-03-11 14:43:29.525317,133,93,727, +77,2017-03-11 14:43:29.525317,884,289,813, +61,2017-03-11 14:43:29.525317,254,18,153, +71,2017-03-11 14:43:29.525317,879,361,271, +56,2017-03-11 14:43:29.525317,441,183,848, +74,2017-03-11 14:43:29.525317,527,772,910, +15,2017-03-11 14:43:29.525317,516,382,191, +8,2017-03-11 14:43:29.525317,523,375,182, +66,2017-03-11 14:43:29.525317,468,910,430, +35,2017-03-11 14:43:29.525317,199,244,957, +45,2017-03-11 14:43:29.525317,262,111,159, +14,2017-03-11 14:43:29.525317,472,430,697, +91,2017-03-11 14:43:29.525317,612,545,651, +14,2017-03-11 14:43:29.525317,317,561,285, +83,2017-03-11 14:43:29.525317,943,476,911, +47,2017-03-11 14:43:29.525317,851,93,121, +32,2017-03-11 14:43:29.525317,3,551,670, +20,2017-03-11 14:43:29.525317,795,627,654, +6,2017-03-11 14:43:29.525317,738,813,197, +21,2017-03-11 14:43:29.525317,243,894,122, +86,2017-03-11 14:43:29.525317,440,773,995, +76,2017-03-11 14:43:29.525317,334,280,590, +28,2017-03-11 14:43:29.525317,755,500,742, +61,2017-03-11 14:43:29.525317,593,863,925, +60,2017-03-11 14:43:29.525317,415,595,798, +21,2017-03-11 14:43:29.525317,223,452,266, +96,2017-03-11 14:43:29.525317,265,464,171, +51,2017-03-11 14:43:29.525317,358,293,363, +80,2017-03-11 14:43:29.525317,67,358,555, +40,2017-03-11 14:43:29.525317,637,145,678, +39,2017-03-11 14:43:29.525317,645,420,999, +24,2017-03-11 14:43:29.525317,283,924,835, +70,2017-03-11 14:43:29.525317,519,632,907, +74,2017-03-11 14:43:29.525317,84,173,703, +35,2017-03-11 14:43:29.525317,637,874,856, +100,2017-03-11 14:43:29.525317,167,219,793, +23,2017-03-11 14:43:29.525317,576,348,634, +21,2017-03-11 14:43:29.525317,493,312,606, +14,2017-03-11 14:43:29.525317,732,605,376, +2,2017-03-11 14:43:29.525317,529,211,713, +5,2017-03-11 14:43:29.525317,843,620,790, +93,2017-03-11 14:43:29.525317,793,493,276, +43,2017-03-11 14:43:29.525317,366,131,425, +53,2017-03-11 14:43:29.525317,350,218,767, +93,2017-03-11 14:43:29.525317,567,401,139, +6,2017-03-11 14:43:29.525317,713,745,197, +44,2017-03-11 14:43:29.525317,350,573,460, +88,2017-03-11 14:43:29.525317,783,173,927, +63,2017-03-11 14:43:29.525317,793,717,553, +59,2017-03-11 14:43:29.525317,210,829,16, +58,2017-03-11 14:43:29.525317,960,442,110, +31,2017-03-11 14:43:29.525317,660,876,237, +23,2017-03-11 14:43:29.525317,277,376,286, +99,2017-03-11 14:43:29.525317,121,483,435, +47,2017-03-11 14:43:29.525317,56,895,351, +84,2017-03-11 14:43:29.525317,68,278,466, +86,2017-03-11 14:43:29.525317,995,19,447, +21,2017-03-11 14:43:29.525317,848,464,782, +81,2017-03-11 14:43:29.525317,905,891,119, +57,2017-03-11 14:43:29.525317,768,355,793, +4,2017-03-11 14:43:29.525317,731,79,35, +85,2017-03-11 14:43:29.525317,562,470,325, +62,2017-03-11 14:43:29.525317,366,675,457, +43,2017-03-11 14:43:29.525317,953,923,295, +95,2017-03-11 14:43:29.525317,942,742,154, +79,2017-03-11 14:43:29.525317,205,936,598, +11,2017-03-11 14:43:29.525317,828,716,676, +60,2017-03-11 14:43:29.525317,72,469,640, +80,2017-03-11 14:43:29.525317,548,675,656, +11,2017-03-11 14:43:29.525317,145,981,727, +51,2017-03-11 14:43:29.525317,656,184,944, +61,2017-03-11 14:43:29.525317,107,239,558, +5,2017-03-11 14:43:29.525317,981,712,838, +19,2017-03-11 14:43:29.525317,648,436,297, +48,2017-03-11 14:43:29.525317,152,973,71, +22,2017-03-11 14:43:29.525317,442,711,27, +99,2017-03-11 14:43:29.525317,386,683,100, +53,2017-03-11 14:43:29.525317,664,827,42, +32,2017-03-11 14:43:29.525317,11,986,929, +12,2017-03-11 14:43:29.525317,226,487,166, +21,2017-03-11 14:43:29.525317,200,4,392, +85,2017-03-11 14:43:29.525317,440,689,324, +59,2017-03-11 14:43:29.525317,663,395,816, +11,2017-03-11 14:43:29.525317,107,843,95, +49,2017-03-11 14:43:29.525317,526,195,24, +19,2017-03-11 14:43:29.525317,22,66,510, +3,2017-03-11 14:43:29.525317,53,439,151, +28,2017-03-11 14:43:29.525317,927,317,485, +13,2017-03-11 14:43:29.525317,321,877,974, +76,2017-03-11 14:43:29.525317,566,299,352, +23,2017-03-11 14:43:29.525317,694,168,334, +80,2017-03-11 14:43:29.525317,10,429,294, +54,2017-03-11 14:43:29.525317,625,318,726, +65,2017-03-11 14:43:29.525317,384,236,680, +44,2017-03-11 14:43:29.525317,676,830,715, +60,2017-03-11 14:43:29.525317,147,200,729, +47,2017-03-11 14:43:29.525317,77,703,228, +64,2017-03-11 14:43:29.525317,2,580,873, +70,2017-03-11 14:43:29.525317,748,207,497, +76,2017-03-11 14:43:29.525317,636,790,295, +26,2017-03-11 14:43:29.525317,108,21,907, +49,2017-03-11 14:43:29.525317,257,587,930, +93,2017-03-11 14:43:29.525317,417,645,535, +56,2017-03-11 14:43:29.525317,845,264,32, +92,2017-03-11 14:43:29.525317,967,261,566, +97,2017-03-11 14:43:29.525317,841,439,665, +59,2017-03-11 14:43:29.525317,645,161,347, +28,2017-03-11 14:43:29.525317,952,641,542, +6,2017-03-11 14:43:29.525317,662,450,553, +92,2017-03-11 14:43:29.525317,37,482,852, +45,2017-03-11 14:43:29.525317,127,387,18, +97,2017-03-11 14:43:29.525317,651,51,895, +62,2017-03-11 14:43:29.525317,311,461,587, +15,2017-03-11 14:43:29.525317,899,252,741, +54,2017-03-11 14:43:29.525317,413,88,826, +37,2017-03-11 14:43:29.525317,729,369,425, +39,2017-03-11 14:43:29.525317,818,978,311, +85,2017-03-11 14:43:29.525317,460,163,309, +59,2017-03-11 14:43:29.525317,550,327,559, +20,2017-03-11 14:43:29.525317,378,454,820, +69,2017-03-11 14:43:29.525317,915,407,841, +81,2017-03-11 14:43:29.525317,659,582,359, +7,2017-03-11 14:43:29.525317,670,185,438, +40,2017-03-11 14:43:29.525317,554,863,790, +37,2017-03-11 14:43:29.525317,840,101,227, +30,2017-03-11 14:43:29.525317,264,535,887, +81,2017-03-11 14:43:29.525317,862,446,16, +24,2017-03-11 14:43:29.525317,900,835,929, +82,2017-03-11 14:43:29.525317,243,770,629, +90,2017-03-11 14:43:29.525317,353,987,974, +2,2017-03-11 14:43:29.525317,172,412,422, +73,2017-03-11 14:43:29.525317,275,212,98, +11,2017-03-11 14:43:29.525317,313,324,415, +58,2017-03-11 14:43:29.525317,860,302,391, +72,2017-03-11 14:43:29.525317,749,407,962, +65,2017-03-11 14:43:29.525317,242,891,464, +48,2017-03-11 14:43:29.525317,661,93,387, +1,2017-03-11 14:43:29.525317,80,361,37, +25,2017-03-11 14:43:29.525317,773,458,979, +5,2017-03-11 14:43:29.525317,671,76,162, +98,2017-03-11 14:43:29.525317,401,577,561, +26,2017-03-11 14:43:29.525317,880,952,982, +63,2017-03-11 14:43:29.525317,359,944,278, +60,2017-03-11 14:43:29.525317,835,742,86, +50,2017-03-11 14:43:29.525317,835,473,510, +92,2017-03-11 14:43:29.525317,833,547,168, +61,2017-03-11 14:43:29.525317,5,147,653, +68,2017-03-11 14:43:29.525317,223,816,659, +62,2017-03-11 14:43:29.525317,393,220,884, +27,2017-03-11 14:43:29.525317,172,866,902, +53,2017-03-11 14:43:29.525317,810,179,132, +64,2017-03-11 14:43:29.525317,921,218,141, +76,2017-03-11 14:43:29.525317,691,650,672, +52,2017-03-11 14:43:29.525317,197,840,130, +20,2017-03-11 14:43:29.525317,988,784,878, +21,2017-03-11 14:43:29.525317,599,537,835, +99,2017-03-11 14:43:29.525317,758,719,266, +93,2017-03-11 14:43:29.525317,585,167,461, +40,2017-03-11 14:43:29.525317,347,593,40, +27,2017-03-11 14:43:29.525317,811,180,25, +50,2017-03-11 14:43:29.525317,831,697,26, +3,2017-03-11 14:43:29.525317,537,157,230, +52,2017-03-11 14:43:29.525317,940,108,735, +54,2017-03-11 14:43:29.525317,645,570,532, +40,2017-03-11 14:43:29.525317,289,798,332, +87,2017-03-11 14:43:29.525317,965,793,270, +31,2017-03-11 14:43:29.525317,387,310,579, +20,2017-03-11 14:43:29.525317,490,604,700, +32,2017-03-11 14:43:29.525317,301,727,349, +84,2017-03-11 14:43:29.525317,883,579,362, +82,2017-03-11 14:43:29.525317,687,98,363, +33,2017-03-11 14:43:29.525317,668,895,734, +96,2017-03-11 14:43:29.525317,693,67,832, +66,2017-03-11 14:43:29.525317,860,102,969, +25,2017-03-11 14:43:29.525317,411,548,445, +90,2017-03-11 14:43:29.525317,152,145,223, +45,2017-03-11 14:43:29.525317,872,572,291, +75,2017-03-11 14:43:29.525317,151,653,578, +84,2017-03-11 14:43:29.525317,751,941,169, +42,2017-03-11 14:43:29.525317,836,903,376, +53,2017-03-11 14:43:29.525317,970,208,187, +83,2017-03-11 14:43:29.525317,310,156,76, +72,2017-03-11 14:43:29.525317,704,521,623, +86,2017-03-11 14:43:29.525317,666,845,310, +54,2017-03-11 14:43:29.525317,417,600,293, +57,2017-03-11 14:43:29.525317,253,871,405, +0,2017-03-11 14:43:29.525317,813,575,422, +65,2017-03-11 14:43:29.525317,478,798,178, +45,2017-03-11 14:43:29.525317,6,365,278, +32,2017-03-11 14:43:29.525317,521,354,37, +23,2017-03-11 14:43:29.525317,876,660,82, +54,2017-03-11 14:43:29.525317,505,392,80, +92,2017-03-11 14:43:29.525317,992,373,490, +24,2017-03-11 14:43:29.525317,245,895,249, +6,2017-03-11 14:43:29.525317,470,671,707, +95,2017-03-11 14:43:29.525317,469,885,396, +48,2017-03-11 14:43:29.525317,250,674,791, +77,2017-03-11 14:43:29.525317,28,828,997, +90,2017-03-11 14:43:29.525317,488,79,446, +99,2017-03-11 14:43:29.525317,471,527,915, +46,2017-03-11 14:43:29.525317,900,405,708, +14,2017-03-11 14:43:29.525317,300,956,202, +77,2017-03-11 14:43:29.525317,627,909,718, +10,2017-03-11 14:43:29.525317,794,114,571, +4,2017-03-11 14:43:29.525317,788,362,815, +82,2017-03-11 14:43:29.525317,190,812,720, +68,2017-03-11 14:43:29.525317,891,167,670, +36,2017-03-11 14:43:29.525317,693,585,824, +59,2017-03-11 14:43:29.525317,989,532,738, +29,2017-03-11 14:43:29.525317,488,940,59, +12,2017-03-11 14:43:29.525317,848,776,211, +64,2017-03-11 14:43:29.525317,890,782,686, +68,2017-03-11 14:43:29.525317,144,501,494, +33,2017-03-11 14:43:29.525317,313,214,11, +20,2017-03-11 14:43:29.525317,381,681,566, +7,2017-03-11 14:43:29.525317,266,390,667, +25,2017-03-11 14:43:29.525317,922,404,544, +41,2017-03-11 14:43:29.525317,344,602,525, +19,2017-03-11 14:43:29.525317,378,736,835, +27,2017-03-11 14:43:29.525317,518,521,946, +66,2017-03-11 14:43:29.525317,22,440,996, +34,2017-03-11 14:43:29.525317,654,7,540, +3,2017-03-11 14:43:29.525317,688,105,109, +95,2017-03-11 14:43:29.525317,495,776,208, +42,2017-03-11 14:43:29.525317,180,752,827, +52,2017-03-11 14:43:29.525317,354,352,716, +73,2017-03-11 14:43:29.525317,88,551,1, +61,2017-03-11 14:43:29.525317,72,947,269, +9,2017-03-11 14:43:29.525317,387,265,429, +4,2017-03-11 14:43:29.525317,272,968,76, +96,2017-03-11 14:43:29.525317,74,185,913, +57,2017-03-11 14:43:29.525317,960,122,986, +14,2017-03-11 14:43:29.525317,874,814,664, +23,2017-03-11 14:43:29.525317,166,380,960, +25,2017-03-11 14:43:29.525317,931,961,861, +0,2017-03-11 14:43:29.525317,908,130,96, +30,2017-03-11 14:43:29.525317,394,525,336, +67,2017-03-11 14:43:29.525317,494,412,626, +57,2017-03-11 14:43:29.525317,597,539,137, +56,2017-03-11 14:43:29.525317,661,123,698, +53,2017-03-11 14:43:29.525317,937,362,763, +10,2017-03-11 14:43:29.525317,742,723,357, +67,2017-03-11 14:43:29.525317,684,218,676, +59,2017-03-11 14:43:29.525317,347,772,887, +74,2017-03-11 14:43:29.525317,297,224,408, +79,2017-03-11 14:43:29.525317,636,34,358, +23,2017-03-11 14:43:29.525317,573,495,790, +23,2017-03-11 14:43:29.525317,618,488,769, +55,2017-03-11 14:43:29.525317,849,532,657, +59,2017-03-11 14:43:29.525317,254,14,265, +94,2017-03-11 14:43:29.525317,231,940,531, +58,2017-03-11 14:43:29.525317,713,418,320, +1,2017-03-11 14:43:29.525317,642,728,801, +28,2017-03-11 14:43:29.525317,761,160,511, +33,2017-03-11 14:43:29.525317,655,301,568, +27,2017-03-11 14:43:29.525317,789,337,827, +64,2017-03-11 14:43:29.525317,868,484,229, +12,2017-03-11 14:43:29.525317,498,494,61, +73,2017-03-11 14:43:29.525317,434,592,307, +15,2017-03-11 14:43:29.525317,10,627,157, +65,2017-03-11 14:43:29.525317,355,958,929, +12,2017-03-11 14:43:29.525317,118,440,450, +77,2017-03-11 14:43:29.525317,741,18,45, +53,2017-03-11 14:43:29.525317,355,872,167, +22,2017-03-11 14:43:29.525317,356,397,346, +85,2017-03-11 14:43:29.525317,890,407,583, +32,2017-03-11 14:43:29.525317,999,890,471, +1,2017-03-11 14:43:29.525317,518,628,661, +87,2017-03-11 14:43:29.525317,587,591,988, +70,2017-03-11 14:43:29.525317,31,438,476, +77,2017-03-11 14:43:29.525317,456,521,301, +81,2017-03-11 14:43:29.525317,393,469,34, +75,2017-03-11 14:43:29.525317,865,380,603, +76,2017-03-11 14:43:29.525317,788,186,80, +79,2017-03-11 14:43:29.525317,77,551,797, +59,2017-03-11 14:43:29.525317,180,458,467, +77,2017-03-11 14:43:29.525317,49,455,471, +8,2017-03-11 14:43:29.525317,893,947,851, +35,2017-03-11 14:43:29.525317,468,153,160, +86,2017-03-11 14:43:29.525317,621,194,611, +49,2017-03-11 14:43:29.525317,574,214,241, +36,2017-03-11 14:43:29.525317,400,321,150, +48,2017-03-11 14:43:29.525317,873,946,71, +5,2017-03-11 14:43:29.525317,404,538,819, +45,2017-03-11 14:43:29.525317,993,290,533, +89,2017-03-11 14:43:29.525317,237,384,235, +70,2017-03-11 14:43:29.525317,537,394,566, +16,2017-03-11 14:43:29.525317,588,177,644, +16,2017-03-11 14:43:29.525317,391,885,525, +79,2017-03-11 14:43:29.525317,207,675,268, +8,2017-03-11 14:43:29.525317,621,339,132, +3,2017-03-11 14:43:29.525317,877,951,479, +87,2017-03-11 14:43:29.525317,241,11,755, +48,2017-03-11 14:43:29.525317,396,990,183, +93,2017-03-11 14:43:29.525317,384,749,90, +97,2017-03-11 14:43:29.525317,926,734,135, +32,2017-03-11 14:43:29.525317,619,660,108, +83,2017-03-11 14:43:29.525317,335,376,906, +96,2017-03-11 14:43:29.525317,715,38,981, +59,2017-03-11 14:43:29.525317,989,460,462, +23,2017-03-11 14:43:29.525317,471,217,709, +87,2017-03-11 14:43:29.525317,206,891,799, +59,2017-03-11 14:43:29.525317,640,890,563, +57,2017-03-11 14:43:29.525317,624,698,882, +24,2017-03-11 14:43:29.525317,358,989,69, +69,2017-03-11 14:43:29.525317,365,974,649, +8,2017-03-11 14:43:29.525317,12,630,672, +0,2017-03-11 14:43:29.525317,90,134,232, +56,2017-03-11 14:43:29.525317,350,941,429, +56,2017-03-11 14:43:29.525317,832,228,147, +47,2017-03-11 14:43:29.525317,118,710,38, +74,2017-03-11 14:43:29.525317,408,920,984, +77,2017-03-11 14:43:29.525317,909,53,459, +27,2017-03-11 14:43:29.525317,28,108,354, +4,2017-03-11 14:43:29.525317,738,26,42, +83,2017-03-11 14:43:29.525317,160,274,391, +51,2017-03-11 14:43:29.525317,215,819,67, +5,2017-03-11 14:43:29.525317,48,214,519, +17,2017-03-11 14:43:29.525317,923,557,907, +33,2017-03-11 14:43:29.525317,477,891,97, +39,2017-03-11 14:43:29.525317,944,556,660, +97,2017-03-11 14:43:29.525317,664,14,11, +40,2017-03-11 14:43:29.525317,41,53,232, +20,2017-03-11 14:43:29.525317,327,622,711, +54,2017-03-11 14:43:29.525317,442,777,589, +49,2017-03-11 14:43:29.525317,991,109,655, +91,2017-03-11 14:43:29.525317,666,561,246, +14,2017-03-11 14:43:29.525317,452,343,528, +40,2017-03-11 14:43:29.525317,899,188,367, +56,2017-03-11 14:43:29.525317,203,378,967, +24,2017-03-11 14:43:29.525317,431,198,444, +76,2017-03-11 14:43:29.525317,821,154,300, +26,2017-03-11 14:43:29.525317,932,890,752, +92,2017-03-11 14:43:29.525317,998,406,837, +66,2017-03-11 14:43:29.525317,968,83,806, +42,2017-03-11 14:43:29.525317,425,335,816, +32,2017-03-11 14:43:29.525317,523,183,888, +73,2017-03-11 14:43:29.525317,561,855,969, +99,2017-03-11 14:43:29.525317,54,413,751, +87,2017-03-11 14:43:29.525317,568,52,137, +50,2017-03-11 14:43:29.525317,941,889,422, +94,2017-03-11 14:43:29.525317,295,258,603, +26,2017-03-11 14:43:29.525317,341,410,682, +77,2017-03-11 14:43:29.525317,745,498,91, +27,2017-03-11 14:43:29.525317,681,980,994, +24,2017-03-11 14:43:29.525317,835,963,235, +89,2017-03-11 14:43:29.525317,377,986,763, +94,2017-03-11 14:43:29.525317,38,900,443, +98,2017-03-11 14:43:29.525317,788,865,918, +8,2017-03-11 14:43:29.525317,123,521,346, +46,2017-03-11 14:43:29.525317,931,28,230, +68,2017-03-11 14:43:29.525317,526,321,944, +21,2017-03-11 14:43:29.525317,301,938,449, +14,2017-03-11 14:43:29.525317,901,684,24, +28,2017-03-11 14:43:29.525317,670,786,222, +71,2017-03-11 14:43:29.525317,686,665,686, +47,2017-03-11 14:43:29.525317,529,604,557, +65,2017-03-11 14:43:29.525317,126,903,116, +6,2017-03-11 14:43:29.525317,931,346,733, +46,2017-03-11 14:43:29.525317,668,677,665, +97,2017-03-11 14:43:29.525317,614,114,104, +52,2017-03-11 14:43:29.525317,798,127,793, +47,2017-03-11 14:43:29.525317,914,15,175, +60,2017-03-11 14:43:29.525317,680,861,73, +21,2017-03-11 14:43:29.525317,466,630,862, +59,2017-03-11 14:43:29.525317,533,978,649, +46,2017-03-11 14:43:29.525317,324,381,922, +99,2017-03-11 14:43:29.525317,58,587,960, +67,2017-03-11 14:43:29.525317,700,64,188, +50,2017-03-11 14:43:29.525317,192,981,966, +11,2017-03-11 14:43:29.525317,996,141,705, +68,2017-03-11 14:43:29.525317,2,778,885, +47,2017-03-11 14:43:29.525317,409,746,60, +94,2017-03-11 14:43:29.525317,724,708,407, +5,2017-03-11 14:43:29.525317,90,329,41, +15,2017-03-11 14:43:29.525317,916,1,820, +62,2017-03-11 14:43:29.525317,65,8,114, +26,2017-03-11 14:43:29.525317,989,80,362, +98,2017-03-11 14:43:29.525317,221,67,660, +22,2017-03-11 14:43:29.525317,846,545,692, +25,2017-03-11 14:43:29.525317,291,752,197, +2,2017-03-11 14:43:29.525317,460,604,64, +55,2017-03-11 14:43:29.525317,933,104,697, +85,2017-03-11 14:43:29.525317,105,518,464, +17,2017-03-11 14:43:29.525317,526,579,428, +51,2017-03-11 14:43:29.525317,659,790,500, +88,2017-03-11 14:43:29.525317,858,160,104, +70,2017-03-11 14:43:29.525317,705,795,958, +100,2017-03-11 14:43:29.525317,547,155,11, +1,2017-03-11 14:43:29.525317,758,75,556, +69,2017-03-11 14:43:29.525317,180,254,539, +29,2017-03-11 14:43:29.525317,772,3,456, +30,2017-03-11 14:43:29.525317,582,884,812, +24,2017-03-11 14:43:29.525317,674,312,121, +53,2017-03-11 14:43:29.525317,471,224,235, +18,2017-03-11 14:43:29.525317,20,193,172, +57,2017-03-11 14:43:29.525317,347,184,573, +11,2017-03-11 14:43:29.525317,259,130,796, +44,2017-03-11 14:43:29.525317,384,335,724, +16,2017-03-11 14:43:29.525317,339,179,453, +92,2017-03-11 14:43:29.525317,63,265,162, +74,2017-03-11 14:43:29.525317,576,283,268, +5,2017-03-11 14:43:29.525317,507,503,224, +53,2017-03-11 14:43:29.525317,696,396,94, +4,2017-03-11 14:43:29.525317,580,667,149, +84,2017-03-11 14:43:29.525317,797,946,277, +18,2017-03-11 14:43:29.525317,281,1,336, +62,2017-03-11 14:43:29.525317,180,789,540, +24,2017-03-11 14:43:29.525317,54,702,980, +63,2017-03-11 14:43:29.525317,985,248,677, +49,2017-03-11 14:43:29.525317,752,901,19, +45,2017-03-11 14:43:29.525317,297,113,492, +88,2017-03-11 14:43:29.525317,780,641,715, +58,2017-03-11 14:43:29.525317,586,992,758, +87,2017-03-11 14:43:29.525317,993,94,487, +17,2017-03-11 14:43:29.525317,883,27,415, +94,2017-03-11 14:43:29.525317,729,395,566, +71,2017-03-11 14:43:29.525317,643,243,206, +39,2017-03-11 14:43:29.525317,144,225,843, +44,2017-03-11 14:43:29.525317,338,334,317, +12,2017-03-11 14:43:29.525317,975,33,694, +56,2017-03-11 14:43:29.525317,25,452,429, +2,2017-03-11 14:43:29.525317,545,916,190, +43,2017-03-11 14:43:29.525317,943,605,364, +67,2017-03-11 14:43:29.525317,0,930,386, +64,2017-03-11 14:43:29.525317,173,592,39, +32,2017-03-11 14:43:29.525317,817,881,758, +15,2017-03-11 14:43:29.525317,216,75,272, +19,2017-03-11 14:43:29.525317,108,966,753, +13,2017-03-11 14:43:29.525317,418,181,150, +96,2017-03-11 14:43:29.525317,97,340,391, +4,2017-03-11 14:43:29.525317,945,756,711, +95,2017-03-11 14:43:29.525317,686,97,589, +86,2017-03-11 14:43:29.525317,689,628,176, +51,2017-03-11 14:43:29.525317,509,934,660, +72,2017-03-11 14:43:29.525317,10,932,916, +12,2017-03-11 14:43:29.525317,898,668,250, +32,2017-03-11 14:43:29.525317,849,400,279, +95,2017-03-11 14:43:29.525317,740,670,986, +68,2017-03-11 14:43:29.525317,426,697,630, +11,2017-03-11 14:43:29.525317,794,219,971, +48,2017-03-11 14:43:29.525317,847,147,988, +36,2017-03-11 14:43:29.525317,81,648,80, +9,2017-03-11 14:43:29.525317,580,996,208, +48,2017-03-11 14:43:29.525317,664,458,795, +51,2017-03-11 14:43:29.525317,858,74,459, +60,2017-03-11 14:43:29.525317,744,445,283, +17,2017-03-11 14:43:29.525317,141,913,282, +93,2017-03-11 14:43:29.525317,132,253,417, +98,2017-03-11 14:43:29.525317,400,405,334, +48,2017-03-11 14:43:29.525317,54,414,571, +63,2017-03-11 14:43:29.525317,410,780,113, +7,2017-03-11 14:43:29.525317,238,907,586, +10,2017-03-11 14:43:29.525317,981,46,695, +73,2017-03-11 14:43:29.525317,490,978,895, +63,2017-03-11 14:43:29.525317,891,177,567, +2,2017-03-11 14:43:29.525317,430,984,2, +83,2017-03-11 14:43:29.525317,389,336,310, +44,2017-03-11 14:43:29.525317,751,881,77, +16,2017-03-11 14:43:29.525317,661,189,234, +90,2017-03-11 14:43:29.525317,97,821,995, +8,2017-03-11 14:43:29.525317,866,690,803, +36,2017-03-11 14:43:29.525317,667,698,988, +56,2017-03-11 14:43:29.525317,876,555,581, +31,2017-03-11 14:43:29.525317,539,583,135, +93,2017-03-11 14:43:29.525317,920,445,371, +67,2017-03-11 14:43:29.525317,326,448,831, +99,2017-03-11 14:43:29.525317,637,66,886, +73,2017-03-11 14:43:29.525317,886,881,812, +75,2017-03-11 14:43:29.525317,570,615,109, +24,2017-03-11 14:43:29.525317,313,97,796, +19,2017-03-11 14:43:29.525317,652,377,494, +19,2017-03-11 14:43:29.525317,961,629,119, +88,2017-03-11 14:43:29.525317,74,490,551, +40,2017-03-11 14:43:29.525317,937,383,388, +57,2017-03-11 14:43:29.525317,448,273,308, +33,2017-03-11 14:43:29.525317,154,119,88, +72,2017-03-11 14:43:29.525317,734,197,962, +5,2017-03-11 14:43:29.525317,294,758,236, +95,2017-03-11 14:43:29.525317,136,731,138, +10,2017-03-11 14:43:29.525317,360,256,977, +43,2017-03-11 14:43:29.525317,746,528,835, +68,2017-03-11 14:43:29.525317,911,223,257, +36,2017-03-11 14:43:29.525317,496,565,694, +65,2017-03-11 14:43:29.525317,685,782,375, +42,2017-03-11 14:43:29.525317,979,337,466, +27,2017-03-11 14:43:29.525317,96,703,220, +23,2017-03-11 14:43:29.525317,434,358,328, +79,2017-03-11 14:43:29.525317,614,305,228, +36,2017-03-11 14:43:29.525317,833,63,43, +74,2017-03-11 14:43:29.525317,286,300,104, +78,2017-03-11 14:43:29.525317,865,798,432, +55,2017-03-11 14:43:29.525317,580,807,969, +56,2017-03-11 14:43:29.525317,144,435,832, +24,2017-03-11 14:43:29.525317,138,52,471, +57,2017-03-11 14:43:29.525317,410,799,365, +2,2017-03-11 14:43:29.525317,104,593,384, +94,2017-03-11 14:43:29.525317,657,427,681, +94,2017-03-11 14:43:29.525317,727,785,725, +59,2017-03-11 14:43:29.525317,583,157,142, +16,2017-03-11 14:43:29.525317,964,111,722, +11,2017-03-11 14:43:29.525317,546,554,349, +68,2017-03-11 14:43:29.525317,607,820,254, +2,2017-03-11 14:43:29.525317,619,619,41, +72,2017-03-11 14:43:29.525317,212,425,659, +87,2017-03-11 14:43:29.525317,851,340,812, +58,2017-03-11 14:43:29.525317,125,536,170, +71,2017-03-11 14:43:29.525317,693,312,870, +66,2017-03-11 14:43:29.525317,423,592,766, +97,2017-03-11 14:43:29.525317,146,115,652, +75,2017-03-11 14:43:29.525317,935,906,770, +55,2017-03-11 14:43:29.525317,526,811,276, +74,2017-03-11 14:43:29.525317,235,935,607, +9,2017-03-11 14:43:29.525317,275,418,665, +40,2017-03-11 14:43:29.525317,955,835,107, +65,2017-03-11 14:43:29.525317,148,978,306, +57,2017-03-11 14:43:29.525317,570,72,539, +72,2017-03-11 14:43:29.525317,187,191,469, +12,2017-03-11 14:43:29.525317,97,239,676, +62,2017-03-11 14:43:29.525317,50,952,361, +29,2017-03-11 14:43:29.525317,887,968,372, +16,2017-03-11 14:43:29.525317,386,37,561, +34,2017-03-11 14:43:29.525317,872,668,989, +2,2017-03-11 14:43:29.525317,646,295,590, +22,2017-03-11 14:43:29.525317,367,129,932, +55,2017-03-11 14:43:29.525317,320,401,677, +42,2017-03-11 14:43:29.525317,640,353,41, +69,2017-03-11 14:43:29.525317,305,402,975, +19,2017-03-11 14:43:29.525317,370,347,353, +76,2017-03-11 14:43:29.525317,384,914,97, +26,2017-03-11 14:43:29.525317,582,86,275, +23,2017-03-11 14:43:29.525317,381,865,443, +75,2017-03-11 14:43:29.525317,995,375,302, +32,2017-03-11 14:43:29.525317,776,979,733, +42,2017-03-11 14:43:29.525317,332,774,106, +64,2017-03-11 14:43:29.525317,176,81,828, +55,2017-03-11 14:43:29.525317,428,180,301, +81,2017-03-11 14:43:29.525317,94,398,67, +68,2017-03-11 14:43:29.525317,484,342,904, +86,2017-03-11 14:43:29.525317,208,347,612, +20,2017-03-11 14:43:29.525317,722,915,518, +50,2017-03-11 14:43:29.525317,894,251,914, +23,2017-03-11 14:43:29.525317,25,20,862, +20,2017-03-11 14:43:29.525317,101,690,746, +53,2017-03-11 14:43:29.525317,870,47,340, +96,2017-03-11 14:43:29.525317,445,407,640, +93,2017-03-11 14:43:29.525317,750,544,794, +96,2017-03-11 14:43:29.525317,891,406,160, +61,2017-03-11 14:43:29.525317,321,678,112, +21,2017-03-11 14:43:29.525317,929,26,440, +95,2017-03-11 14:43:29.525317,46,302,154, +15,2017-03-11 14:43:29.525317,992,900,675, +86,2017-03-11 14:43:29.525317,948,15,825, +39,2017-03-11 14:43:29.525317,422,465,322, +17,2017-03-11 14:43:29.525317,9,116,129, +90,2017-03-11 14:43:29.525317,523,289,513, +84,2017-03-11 14:43:29.525317,967,625,58, +90,2017-03-11 14:43:29.525317,651,498,849, +70,2017-03-11 14:43:29.525317,800,3,843, +79,2017-03-11 14:43:29.525317,903,518,654, +85,2017-03-11 14:43:29.525317,533,479,244, +96,2017-03-11 14:43:29.525317,944,566,128, +95,2017-03-11 14:43:29.525317,683,257,853, +21,2017-03-11 14:43:29.525317,547,367,48, +51,2017-03-11 14:43:29.525317,992,106,410, +64,2017-03-11 14:43:29.525317,604,259,340, +40,2017-03-11 14:43:29.525317,262,183,196, +17,2017-03-11 14:43:29.525317,702,850,17, +24,2017-03-11 14:43:29.525317,329,260,191, +27,2017-03-11 14:43:29.525317,827,318,226, +51,2017-03-11 14:43:29.525317,576,79,714, +12,2017-03-11 14:43:29.525317,446,763,636, +44,2017-03-11 14:43:29.525317,869,45,81, +47,2017-03-11 14:43:29.525317,304,421,877, +57,2017-03-11 14:43:29.525317,604,74,732, +31,2017-03-11 14:43:29.525317,923,749,541, +25,2017-03-11 14:43:29.525317,9,732,525, +84,2017-03-11 14:43:29.525317,50,751,345, +63,2017-03-11 14:43:29.525317,830,59,748, +28,2017-03-11 14:43:29.525317,822,384,713, +69,2017-03-11 14:43:29.525317,429,794,163, +73,2017-03-11 14:43:29.525317,215,41,300, +82,2017-03-11 14:43:29.525317,114,32,124, +4,2017-03-11 14:43:29.525317,781,665,290, +79,2017-03-11 14:43:29.525317,397,815,625, +45,2017-03-11 14:43:29.525317,566,970,74, +40,2017-03-11 14:43:29.525317,29,822,672, +85,2017-03-11 14:43:29.525317,205,386,541, +63,2017-03-11 14:43:29.525317,180,704,368, +39,2017-03-11 14:43:29.525317,745,668,213, +86,2017-03-11 14:43:29.525317,700,337,897, +48,2017-03-11 14:43:29.525317,3,187,270, +40,2017-03-11 14:43:29.525317,2,895,848, +57,2017-03-11 14:43:29.525317,865,922,965, +89,2017-03-11 14:43:29.525317,743,637,744, +95,2017-03-11 14:43:29.525317,23,285,584, +20,2017-03-11 14:43:29.525317,989,952,597, +73,2017-03-11 14:43:29.525317,620,810,592, +32,2017-03-11 14:43:29.525317,147,489,801, +15,2017-03-11 14:43:29.525317,676,71,550, +68,2017-03-11 14:43:29.525317,966,398,246, +83,2017-03-11 14:43:29.525317,319,210,725, +6,2017-03-11 14:43:29.525317,847,469,12, +87,2017-03-11 14:43:29.525317,754,595,72, +74,2017-03-11 14:43:29.525317,547,669,475, +17,2017-03-11 14:43:29.525317,479,68,487, +63,2017-03-11 14:43:29.525317,557,288,775, +23,2017-03-11 14:43:29.525317,359,325,910, +32,2017-03-11 14:43:29.525317,723,156,156, +4,2017-03-11 14:43:29.525317,366,881,105, +21,2017-03-11 14:43:29.525317,350,116,83, +10,2017-03-11 14:43:29.525317,712,155,845, +26,2017-03-11 14:43:29.525317,824,321,425, +30,2017-03-11 14:43:29.525317,389,912,928, +95,2017-03-11 14:43:29.525317,200,703,178, +56,2017-03-11 14:43:29.525317,28,89,884, +75,2017-03-11 14:43:29.525317,245,40,793, +61,2017-03-11 14:43:29.525317,921,898,824, +27,2017-03-11 14:43:29.525317,14,907,374, +73,2017-03-11 14:43:29.525317,62,219,984, +89,2017-03-11 14:43:29.525317,540,409,190, +93,2017-03-11 14:43:29.525317,321,118,875, +52,2017-03-11 14:43:29.525317,821,53,80, +85,2017-03-11 14:43:29.525317,142,964,601, +39,2017-03-11 14:43:29.525317,3,393,997, +92,2017-03-11 14:43:29.525317,291,821,195, +30,2017-03-11 14:43:29.525317,729,569,30, +79,2017-03-11 14:43:29.525317,788,14,678, +33,2017-03-11 14:43:29.525317,424,867,257, +74,2017-03-11 14:43:29.525317,985,132,266, +81,2017-03-11 14:43:29.525317,185,346,656, +33,2017-03-11 14:43:29.525317,310,257,713, +31,2017-03-11 14:43:29.525317,650,710,238, +94,2017-03-11 14:43:29.525317,532,433,246, +26,2017-03-11 14:43:29.525317,1,277,51, +79,2017-03-11 14:43:29.525317,291,729,117, +71,2017-03-11 14:43:29.525317,596,375,460, +58,2017-03-11 14:43:29.525317,507,726,388, +69,2017-03-11 14:43:29.525317,72,45,18, +38,2017-03-11 14:43:29.525317,302,731,696, +95,2017-03-11 14:43:29.525317,441,934,893, +97,2017-03-11 14:43:29.525317,367,140,233, +37,2017-03-11 14:43:29.525317,416,284,157, +71,2017-03-11 14:43:29.525317,12,274,422, +61,2017-03-11 14:43:29.525317,649,882,190, +16,2017-03-11 14:43:29.525317,608,578,847, +68,2017-03-11 14:43:29.525317,623,865,63, +92,2017-03-11 14:43:29.525317,596,759,876, +4,2017-03-11 14:43:29.525317,693,770,9, +6,2017-03-11 14:43:29.525317,910,242,428, +33,2017-03-11 14:43:29.525317,525,585,33, +54,2017-03-11 14:43:29.525317,859,455,146, +51,2017-03-11 14:43:29.525317,337,336,664, +94,2017-03-11 14:43:29.525317,914,511,625, +54,2017-03-11 14:43:29.525317,376,688,461, +97,2017-03-11 14:43:29.525317,447,337,8, +14,2017-03-11 14:43:29.525317,107,18,200, +2,2017-03-11 14:43:29.525317,259,628,343, +78,2017-03-11 14:43:29.525317,213,376,322, +7,2017-03-11 14:43:29.525317,831,469,581, +17,2017-03-11 14:43:29.525317,805,245,114, +72,2017-03-11 14:43:29.525317,756,739,255, +13,2017-03-11 14:43:29.525317,427,716,104, +87,2017-03-11 14:43:29.525317,53,112,14, +16,2017-03-11 14:43:29.525317,130,215,177, +39,2017-03-11 14:43:29.525317,843,520,174, +6,2017-03-11 14:43:29.525317,896,497,129, +73,2017-03-11 14:43:29.525317,965,711,896, +77,2017-03-11 14:43:29.525317,956,9,488, +71,2017-03-11 14:43:29.525317,748,743,845, +17,2017-03-11 14:43:29.525317,459,949,49, +51,2017-03-11 14:43:29.525317,61,63,673, +19,2017-03-11 14:43:29.525317,278,850,581, +12,2017-03-11 14:43:29.525317,370,755,177, +27,2017-03-11 14:43:29.525317,252,307,993, +22,2017-03-11 14:43:29.525317,17,889,987, +97,2017-03-11 14:43:29.525317,898,475,685, +65,2017-03-11 14:43:29.525317,219,530,821, +68,2017-03-11 14:43:29.525317,479,870,190, +54,2017-03-11 14:43:29.525317,933,863,731, +21,2017-03-11 14:43:29.525317,713,311,331, +8,2017-03-11 14:43:29.525317,66,509,349, +32,2017-03-11 14:43:29.525317,815,342,535, +83,2017-03-11 14:43:29.525317,230,522,806, +13,2017-03-11 14:43:29.525317,997,491,775, +22,2017-03-11 14:43:29.525317,21,595,894, +50,2017-03-11 14:43:29.525317,465,84,39, +40,2017-03-11 14:43:29.525317,948,770,608, +66,2017-03-11 14:43:29.525317,81,940,745, +15,2017-03-11 14:43:29.525317,448,94,465, +26,2017-03-11 14:43:29.525317,435,0,96, +67,2017-03-11 14:43:29.525317,522,902,794, +52,2017-03-11 14:43:29.525317,393,569,736, +41,2017-03-11 14:43:29.525317,164,630,914, +63,2017-03-11 14:43:29.525317,714,953,27, +66,2017-03-11 14:43:29.525317,722,635,323, +80,2017-03-11 14:43:29.525317,574,68,951, +2,2017-03-11 14:43:29.525317,161,416,286, +60,2017-03-11 14:43:29.525317,416,383,262, +94,2017-03-11 14:43:29.525317,285,57,459, +68,2017-03-11 14:43:29.525317,625,195,92, +79,2017-03-11 14:43:29.525317,825,6,419, +54,2017-03-11 14:43:29.525317,959,445,201, +68,2017-03-11 14:43:29.525317,80,524,484, +65,2017-03-11 14:43:29.525317,592,435,678, +75,2017-03-11 14:43:29.525317,851,964,350, +27,2017-03-11 14:43:29.525317,347,613,205, +63,2017-03-11 14:43:29.525317,669,664,310, +29,2017-03-11 14:43:29.525317,859,402,84, +68,2017-03-11 14:43:29.525317,408,503,222, +37,2017-03-11 14:43:29.525317,948,423,47, +3,2017-03-11 14:43:29.525317,947,531,683, +54,2017-03-11 14:43:29.525317,966,361,293, +82,2017-03-11 14:43:29.525317,325,643,83, +67,2017-03-11 14:43:29.525317,256,289,303, +93,2017-03-11 14:43:29.525317,953,613,220, +81,2017-03-11 14:43:29.525317,14,304,494, +42,2017-03-11 14:43:29.525317,807,716,788, +76,2017-03-11 14:43:29.525317,139,835,784, +9,2017-03-11 14:43:29.525317,366,467,626, +33,2017-03-11 14:43:29.525317,828,919,149, +15,2017-03-11 14:43:29.525317,563,232,824, +82,2017-03-11 14:43:29.525317,520,127,744, +47,2017-03-11 14:43:29.525317,740,965,285, +75,2017-03-11 14:43:29.525317,269,779,176, +8,2017-03-11 14:43:29.525317,496,964,832, +63,2017-03-11 14:43:29.525317,799,616,722, +17,2017-03-11 14:43:29.525317,82,348,497, +91,2017-03-11 14:43:29.525317,267,646,63, +83,2017-03-11 14:43:29.525317,877,886,649, +40,2017-03-11 14:43:29.525317,13,393,871, +75,2017-03-11 14:43:29.525317,358,156,507, +63,2017-03-11 14:43:29.525317,935,683,704, +43,2017-03-11 14:43:29.525317,647,536,65, +45,2017-03-11 14:43:29.525317,151,787,611, +23,2017-03-11 14:43:29.525317,135,108,144, +40,2017-03-11 14:43:29.525317,754,207,232, +63,2017-03-11 14:43:29.525317,93,881,29, +11,2017-03-11 14:43:29.525317,274,900,859, +63,2017-03-11 14:43:29.525317,56,366,260, +99,2017-03-11 14:43:29.525317,49,964,422, +70,2017-03-11 14:43:29.525317,500,487,141, +65,2017-03-11 14:43:29.525317,274,752,885, +41,2017-03-11 14:43:29.525317,860,29,812, +61,2017-03-11 14:43:29.525317,235,44,245, +33,2017-03-11 14:43:29.525317,925,274,434, +20,2017-03-11 14:43:29.525317,175,293,832, +23,2017-03-11 14:43:29.525317,659,92,222, +71,2017-03-11 14:43:29.525317,56,644,403, +56,2017-03-11 14:43:29.525317,131,544,206, +41,2017-03-11 14:43:29.525317,296,91,815, +16,2017-03-11 14:43:29.525317,120,627,770, +36,2017-03-11 14:43:29.525317,671,16,683, +60,2017-03-11 14:43:29.525317,290,118,795, +46,2017-03-11 14:43:29.525317,411,627,696, +7,2017-03-11 14:43:29.525317,718,918,778, +77,2017-03-11 14:43:29.525317,562,181,329, +69,2017-03-11 14:43:29.525317,726,535,100, +2,2017-03-11 14:43:29.525317,626,915,178, +75,2017-03-11 14:43:29.525317,542,949,101, +21,2017-03-11 14:43:29.525317,964,785,809, +25,2017-03-11 14:43:29.525317,902,604,719, +31,2017-03-11 14:43:29.525317,230,415,384, +95,2017-03-11 14:43:29.525317,333,162,722, +90,2017-03-11 14:43:29.525317,343,52,590, +7,2017-03-11 14:43:29.525317,587,689,91, +21,2017-03-11 14:43:29.525317,604,269,960, +15,2017-03-11 14:43:29.525317,218,61,359, +18,2017-03-11 14:43:29.525317,846,168,437, +75,2017-03-11 14:43:29.525317,772,156,62, +0,2017-03-11 14:43:29.525317,571,445,951, +90,2017-03-11 14:43:29.525317,607,673,801, +95,2017-03-11 14:43:29.525317,725,390,19, +31,2017-03-11 14:43:29.525317,80,110,525, +68,2017-03-11 14:43:29.525317,379,485,831, +60,2017-03-11 14:43:29.525317,546,190,780, +39,2017-03-11 14:43:29.525317,358,217,141, +13,2017-03-11 14:43:29.525317,373,202,132, +94,2017-03-11 14:43:29.525317,647,83,850, +25,2017-03-11 14:43:29.525317,756,650,205, +48,2017-03-11 14:43:29.525317,41,224,793, +12,2017-03-11 14:43:29.525317,334,319,805, +71,2017-03-11 14:43:29.525317,804,635,311, +35,2017-03-11 14:43:29.525317,825,91,743, +18,2017-03-11 14:43:29.525317,308,883,314, +68,2017-03-11 14:43:29.525317,85,446,626, +73,2017-03-11 14:43:29.525317,529,476,987, +28,2017-03-11 14:43:29.525317,126,192,766, +17,2017-03-11 14:43:29.525317,416,559,287, +75,2017-03-11 14:43:29.525317,878,92,464, +68,2017-03-11 14:43:29.525317,727,775,32, +55,2017-03-11 14:43:29.525317,866,774,736, +17,2017-03-11 14:43:29.525317,657,49,855, +74,2017-03-11 14:43:29.525317,495,481,476, +2,2017-03-11 14:43:29.525317,957,463,309, +8,2017-03-11 14:43:29.525317,655,75,249, +7,2017-03-11 14:43:29.525317,634,536,822, +51,2017-03-11 14:43:29.525317,628,285,194, +35,2017-03-11 14:43:29.525317,60,225,907, +93,2017-03-11 14:43:29.525317,999,643,100, +66,2017-03-11 14:43:29.525317,693,955,400, +19,2017-03-11 14:43:29.525317,436,875,212, +39,2017-03-11 14:43:29.525317,338,521,476, +99,2017-03-11 14:43:29.525317,596,725,64, +23,2017-03-11 14:43:29.525317,262,886,742, +89,2017-03-11 14:43:29.525317,172,936,245, +23,2017-03-11 14:43:29.525317,161,152,158, +16,2017-03-11 14:43:29.525317,795,258,817, +49,2017-03-11 14:43:29.525317,213,217,676, +65,2017-03-11 14:43:29.525317,92,888,42, +43,2017-03-11 14:43:29.525317,409,518,423, +0,2017-03-11 14:43:29.525317,244,487,235, +51,2017-03-11 14:43:29.525317,373,977,395, +54,2017-03-11 14:43:29.525317,912,639,777, +7,2017-03-11 14:43:29.525317,791,934,234, +59,2017-03-11 14:43:29.525317,192,51,75, +40,2017-03-11 14:43:29.525317,268,751,53, +36,2017-03-11 14:43:29.525317,639,95,789, +5,2017-03-11 14:43:29.525317,614,212,53, +86,2017-03-11 14:43:29.525317,699,287,363, +7,2017-03-11 14:43:29.525317,264,758,617, +18,2017-03-11 14:43:29.525317,397,393,250, +19,2017-03-11 14:43:29.525317,328,483,775, +52,2017-03-11 14:43:29.525317,534,849,924, +80,2017-03-11 14:43:29.525317,601,977,162, +24,2017-03-11 14:43:29.525317,72,951,288, +69,2017-03-11 14:43:29.525317,163,341,544, +86,2017-03-11 14:43:29.525317,628,906,934, +89,2017-03-11 14:43:29.525317,664,551,69, +6,2017-03-11 14:43:29.525317,944,318,249, +27,2017-03-11 14:43:29.525317,802,23,791, +34,2017-03-11 14:43:29.525317,873,715,138, +47,2017-03-11 14:43:29.525317,692,300,713, +76,2017-03-11 14:43:29.525317,251,1,451, +41,2017-03-11 14:43:29.525317,342,994,275, +97,2017-03-11 14:43:29.525317,901,209,863, +56,2017-03-11 14:43:29.525317,759,932,626, +70,2017-03-11 14:43:29.525317,251,874,975, +5,2017-03-11 14:43:29.525317,898,766,389, +77,2017-03-11 14:43:29.525317,481,527,244, +17,2017-03-11 14:43:29.525317,827,957,937, +8,2017-03-11 14:43:29.525317,959,388,491, +30,2017-03-11 14:43:29.525317,382,766,272, +28,2017-03-11 14:43:29.525317,975,136,848, +73,2017-03-11 14:43:29.525317,68,473,438, +32,2017-03-11 14:43:29.525317,348,413,371, +25,2017-03-11 14:43:29.525317,179,760,16, +66,2017-03-11 14:43:29.525317,287,260,833, +11,2017-03-11 14:43:29.525317,218,770,192, +18,2017-03-11 14:43:29.525317,158,683,478, +54,2017-03-11 14:43:29.525317,449,750,822, +42,2017-03-11 14:43:29.525317,886,670,159, +95,2017-03-11 14:43:29.525317,143,597,272, +49,2017-03-11 14:43:29.525317,9,644,736, +19,2017-03-11 14:43:29.525317,404,752,849, +69,2017-03-11 14:43:29.525317,13,681,805, +23,2017-03-11 14:43:29.525317,451,997,407, +61,2017-03-11 14:43:29.525317,680,884,149, +13,2017-03-11 14:43:29.525317,634,971,553, +52,2017-03-11 14:43:29.525317,641,711,474, +78,2017-03-11 14:43:29.525317,308,746,275, +32,2017-03-11 14:43:29.525317,390,11,506, +79,2017-03-11 14:43:29.525317,763,355,484, +78,2017-03-11 14:43:29.525317,36,289,6, +49,2017-03-11 14:43:29.525317,286,413,96, +97,2017-03-11 14:43:29.525317,297,245,94, +93,2017-03-11 14:43:29.525317,216,647,451, +86,2017-03-11 14:43:29.525317,358,925,641, +67,2017-03-11 14:43:29.525317,671,916,984, +6,2017-03-11 14:43:29.525317,926,490,854, +69,2017-03-11 14:43:29.525317,845,338,465, +88,2017-03-11 14:43:29.525317,627,471,368, +91,2017-03-11 14:43:29.525317,884,464,878, +18,2017-03-11 14:43:29.525317,709,972,112, +92,2017-03-11 14:43:29.525317,619,563,781, +98,2017-03-11 14:43:29.525317,488,422,644, +16,2017-03-11 14:43:29.525317,337,628,219, +26,2017-03-11 14:43:29.525317,118,73,953, +96,2017-03-11 14:43:29.525317,410,418,843, +4,2017-03-11 14:43:29.525317,890,211,950, +77,2017-03-11 14:43:29.525317,674,828,954, +38,2017-03-11 14:43:29.525317,800,66,307, +42,2017-03-11 14:43:29.525317,630,88,396, +12,2017-03-11 14:43:29.525317,510,40,277, +85,2017-03-11 14:43:29.525317,668,496,111, +79,2017-03-11 14:43:29.525317,568,64,748, +98,2017-03-11 14:43:29.525317,483,590,16, +37,2017-03-11 14:43:29.525317,801,966,146, +48,2017-03-11 14:43:29.525317,794,100,859, +59,2017-03-11 14:43:29.525317,166,166,12, +80,2017-03-11 14:43:29.525317,254,408,914, +76,2017-03-11 14:43:29.525317,448,190,612, +12,2017-03-11 14:43:29.525317,686,723,901, +25,2017-03-11 14:43:29.525317,787,649,233, +27,2017-03-11 14:43:29.525317,239,249,641, +4,2017-03-11 14:43:29.525317,214,787,516, +1,2017-03-11 14:43:29.525317,887,374,601, +5,2017-03-11 14:43:29.525317,540,614,850, +79,2017-03-11 14:43:29.525317,22,764,559, +47,2017-03-11 14:43:29.525317,954,170,586, +64,2017-03-11 14:43:29.525317,893,487,894, +68,2017-03-11 14:43:29.525317,136,127,949, +37,2017-03-11 14:43:29.525317,375,590,415, +59,2017-03-11 14:43:29.525317,377,930,598, +26,2017-03-11 14:43:29.525317,304,199,319, +84,2017-03-11 14:43:29.525317,813,169,639, +83,2017-03-11 14:43:29.525317,932,197,305, +89,2017-03-11 14:43:29.525317,368,891,526, +26,2017-03-11 14:43:29.525317,378,419,940, +51,2017-03-11 14:43:29.525317,546,888,888, +92,2017-03-11 14:43:29.525317,478,303,512, +86,2017-03-11 14:43:29.525317,234,109,121, +54,2017-03-11 14:43:29.525317,309,439,383, +12,2017-03-11 14:43:29.525317,608,22,956, +54,2017-03-11 14:43:29.525317,219,261,426, +59,2017-03-11 14:43:29.525317,152,951,847, +53,2017-03-11 14:43:29.525317,371,786,43, +92,2017-03-11 14:43:29.525317,675,932,839, +15,2017-03-11 14:43:29.525317,235,350,9, +47,2017-03-11 14:43:29.525317,459,129,7, +77,2017-03-11 14:43:29.525317,569,390,889, +18,2017-03-11 14:43:29.525317,411,845,716, +63,2017-03-11 14:43:29.525317,106,142,217, +26,2017-03-11 14:43:29.525317,93,63,787, +46,2017-03-11 14:43:29.525317,850,830,381, +52,2017-03-11 14:43:29.525317,761,219,678, +100,2017-03-11 14:43:29.525317,570,687,465, +3,2017-03-11 14:43:29.525317,816,472,797, +38,2017-03-11 14:43:29.525317,862,686,561, +27,2017-03-11 14:43:29.525317,531,277,904, +64,2017-03-11 14:43:29.525317,419,121,895, +51,2017-03-11 14:43:29.525317,184,682,976, +3,2017-03-11 14:43:29.525317,511,357,559, +27,2017-03-11 14:43:29.525317,576,237,269, +15,2017-03-11 14:43:29.525317,923,734,175, +74,2017-03-11 14:43:29.525317,207,972,124, +7,2017-03-11 14:43:29.525317,658,685,342, +19,2017-03-11 14:43:29.525317,962,246,827, +38,2017-03-11 14:43:29.525317,367,721,893, +55,2017-03-11 14:43:29.525317,403,869,585, +91,2017-03-11 14:43:29.525317,226,143,187, +80,2017-03-11 14:43:29.525317,380,456,948, +30,2017-03-11 14:43:29.525317,191,122,43, +40,2017-03-11 14:43:29.525317,94,167,466, +75,2017-03-11 14:43:29.525317,852,808,942, +81,2017-03-11 14:43:29.525317,54,769,195, +42,2017-03-11 14:43:29.525317,490,88,971, +89,2017-03-11 14:43:29.525317,956,556,807, +18,2017-03-11 14:43:29.525317,699,994,984, +8,2017-03-11 14:43:29.525317,451,931,382, +64,2017-03-11 14:43:29.525317,54,425,39, +15,2017-03-11 14:43:29.525317,591,505,901, +44,2017-03-11 14:43:29.525317,313,843,257, +37,2017-03-11 14:43:29.525317,611,452,788, +10,2017-03-11 14:43:29.525317,539,760,994, +50,2017-03-11 14:43:29.525317,316,801,677, +1,2017-03-11 14:43:29.525317,796,661,94, +25,2017-03-11 14:43:29.525317,592,476,889, +65,2017-03-11 14:43:29.525317,901,927,794, +49,2017-03-11 14:43:29.525317,432,694,935, +75,2017-03-11 14:43:29.525317,537,192,113, +15,2017-03-11 14:43:29.525317,644,901,249, +18,2017-03-11 14:43:29.525317,660,244,678, +98,2017-03-11 14:43:29.525317,45,355,991, +84,2017-03-11 14:43:29.525317,16,85,88, +61,2017-03-11 14:43:29.525317,561,977,254, +46,2017-03-11 14:43:29.525317,904,48,954, +34,2017-03-11 14:43:29.525317,742,889,82, +28,2017-03-11 14:43:29.525317,81,194,428, +72,2017-03-11 14:43:29.525317,95,677,907, +76,2017-03-11 14:43:29.525317,921,586,732, +97,2017-03-11 14:43:29.525317,941,722,807, +96,2017-03-11 14:43:29.525317,807,895,565, +37,2017-03-11 14:43:29.525317,871,819,830, +78,2017-03-11 14:43:29.525317,867,784,112, +61,2017-03-11 14:43:29.525317,674,193,889, +75,2017-03-11 14:43:29.525317,388,316,480, +48,2017-03-11 14:43:29.525317,993,387,239, +91,2017-03-11 14:43:29.525317,973,971,880, +91,2017-03-11 14:43:29.525317,693,686,871, +50,2017-03-11 14:43:29.525317,581,436,869, +45,2017-03-11 14:43:29.525317,255,699,228, +12,2017-03-11 14:43:29.525317,483,340,732, +16,2017-03-11 14:43:29.525317,533,621,912, +92,2017-03-11 14:43:29.525317,937,392,404, +93,2017-03-11 14:43:29.525317,779,643,844, +75,2017-03-11 14:43:29.525317,614,724,665, +31,2017-03-11 14:43:29.525317,410,536,807, +99,2017-03-11 14:43:29.525317,972,676,444, +23,2017-03-11 14:43:29.525317,375,672,349, +86,2017-03-11 14:43:29.525317,12,81,15, +54,2017-03-11 14:43:29.525317,701,926,466, +64,2017-03-11 14:43:29.525317,318,870,569, +10,2017-03-11 14:43:29.525317,513,413,849, +13,2017-03-11 14:43:29.525317,137,514,434, +55,2017-03-11 14:43:29.525317,50,241,540, +2,2017-03-11 14:43:29.525317,917,984,249, +29,2017-03-11 14:43:29.525317,656,598,149, +67,2017-03-11 14:43:29.525317,679,164,212, +38,2017-03-11 14:43:29.525317,90,678,19, +41,2017-03-11 14:43:29.525317,548,588,505, +6,2017-03-11 14:43:29.525317,1,354,189, +14,2017-03-11 14:43:29.525317,868,623,686, +92,2017-03-11 14:43:29.525317,864,226,941, +78,2017-03-11 14:43:29.525317,209,190,72, +87,2017-03-11 14:43:29.525317,789,221,533, +47,2017-03-11 14:43:29.525317,385,745,848, +47,2017-03-11 14:43:29.525317,423,867,883, +97,2017-03-11 14:43:29.525317,455,388,33, +46,2017-03-11 14:43:29.525317,741,221,595, +61,2017-03-11 14:43:29.525317,844,281,528, +71,2017-03-11 14:43:29.525317,507,469,489, +72,2017-03-11 14:43:29.525317,659,561,582, +45,2017-03-11 14:43:29.525317,782,114,916, +17,2017-03-11 14:43:29.525317,860,764,641, +28,2017-03-11 14:43:29.525317,631,524,254, +9,2017-03-11 14:43:29.525317,912,287,543, +65,2017-03-11 14:43:29.525317,508,138,263, +35,2017-03-11 14:43:29.525317,419,791,60, +93,2017-03-11 14:43:29.525317,260,549,642, +92,2017-03-11 14:43:29.525317,109,223,367, +89,2017-03-11 14:43:29.525317,338,283,58, +20,2017-03-11 14:43:29.525317,47,699,480, +68,2017-03-11 14:43:29.525317,223,734,765, +14,2017-03-11 14:43:29.525317,20,308,788, +53,2017-03-11 14:43:29.525317,446,51,880, +86,2017-03-11 14:43:29.525317,842,940,790, +10,2017-03-11 14:43:29.525317,489,432,22, +60,2017-03-11 14:43:29.525317,655,389,489, +99,2017-03-11 14:43:29.525317,672,547,190, +72,2017-03-11 14:43:29.525317,246,670,398, +47,2017-03-11 14:43:29.525317,403,163,605, +42,2017-03-11 14:43:29.525317,472,393,952, +92,2017-03-11 14:43:29.525317,444,832,783, +29,2017-03-11 14:43:29.525317,773,573,389, +26,2017-03-11 14:43:29.525317,5,411,860, +66,2017-03-11 14:43:29.525317,800,349,653, +47,2017-03-11 14:43:29.525317,896,843,191, +14,2017-03-11 14:43:29.525317,513,589,611, +92,2017-03-11 14:43:29.525317,753,216,340, +22,2017-03-11 14:43:29.525317,609,292,142, +5,2017-03-11 14:43:29.525317,124,924,340, +90,2017-03-11 14:43:29.525317,497,728,158, +50,2017-03-11 14:43:29.525317,139,17,162, +94,2017-03-11 14:43:29.525317,366,815,411, +26,2017-03-11 14:43:29.525317,658,602,404, +17,2017-03-11 14:43:29.525317,192,15,87, +94,2017-03-11 14:43:29.525317,231,427,168, +84,2017-03-11 14:43:29.525317,719,310,894, +84,2017-03-11 14:43:29.525317,234,233,739, +73,2017-03-11 14:43:29.525317,962,897,234, +10,2017-03-11 14:43:29.525317,915,396,39, +28,2017-03-11 14:43:29.525317,211,450,543, +87,2017-03-11 14:43:29.525317,52,947,41, +24,2017-03-11 14:43:29.525317,962,128,188, +19,2017-03-11 14:43:29.525317,556,357,34, +27,2017-03-11 14:43:29.525317,667,928,118, +90,2017-03-11 14:43:29.525317,161,857,633, +12,2017-03-11 14:43:29.525317,754,866,223, +67,2017-03-11 14:43:29.525317,262,262,950, +47,2017-03-11 14:43:29.525317,712,492,344, +76,2017-03-11 14:43:29.525317,439,385,9, +40,2017-03-11 14:43:29.525317,513,197,595, +7,2017-03-11 14:43:29.525317,554,629,343, +22,2017-03-11 14:43:29.525317,557,461,122, +72,2017-03-11 14:43:29.525317,318,755,840, +7,2017-03-11 14:43:29.525317,621,63,741, +88,2017-03-11 14:43:29.525317,325,691,357, +4,2017-03-11 14:43:29.525317,183,701,802, +62,2017-03-11 14:43:29.525317,86,811,23, +60,2017-03-11 14:43:29.525317,8,618,667, +56,2017-03-11 14:43:29.525317,247,10,783, +80,2017-03-11 14:43:29.525317,471,905,521, +79,2017-03-11 14:43:29.525317,659,361,861, +28,2017-03-11 14:43:29.525317,424,602,164, +75,2017-03-11 14:43:29.525317,292,522,787, +48,2017-03-11 14:43:29.525317,223,589,97, +31,2017-03-11 14:43:29.525317,400,120,907, +41,2017-03-11 14:43:29.525317,739,574,970, +99,2017-03-11 14:43:29.525317,584,753,789, +6,2017-03-11 14:43:29.525317,657,310,844, +32,2017-03-11 14:43:29.525317,672,705,597, +10,2017-03-11 14:43:29.525317,306,761,846, +60,2017-03-11 14:43:29.525317,283,633,74, +51,2017-03-11 14:43:29.525317,222,171,814, +62,2017-03-11 14:43:29.525317,291,721,30, +3,2017-03-11 14:43:29.525317,295,0,15, +88,2017-03-11 14:43:29.525317,753,804,935, +41,2017-03-11 14:43:29.525317,115,779,726, +79,2017-03-11 14:43:29.525317,484,324,882, +79,2017-03-11 14:43:29.525317,85,728,389, +37,2017-03-11 14:43:29.525317,360,462,874, +58,2017-03-11 14:43:29.525317,633,689,204, +92,2017-03-11 14:43:29.525317,410,235,954, +71,2017-03-11 14:43:29.525317,235,969,585, +99,2017-03-11 14:43:29.525317,773,520,397, +89,2017-03-11 14:43:29.525317,298,123,674, +78,2017-03-11 14:43:29.525317,447,556,572, +53,2017-03-11 14:43:29.525317,284,961,900, +64,2017-03-11 14:43:29.525317,423,775,226, +6,2017-03-11 14:43:29.525317,463,431,980, +87,2017-03-11 14:43:29.525317,665,934,579, +90,2017-03-11 14:43:29.525317,903,163,887, +68,2017-03-11 14:43:29.525317,683,284,564, +98,2017-03-11 14:43:29.525317,407,238,764, +85,2017-03-11 14:43:29.525317,794,336,386, +8,2017-03-11 14:43:29.525317,297,287,722, +72,2017-03-11 14:43:29.525317,61,948,776, +52,2017-03-11 14:43:29.525317,378,756,398, +4,2017-03-11 14:43:29.525317,689,976,943, +59,2017-03-11 14:43:29.525317,140,830,268, +82,2017-03-11 14:43:29.525317,114,832,804, +52,2017-03-11 14:43:29.525317,71,567,376, +86,2017-03-11 14:43:29.525317,903,762,943, +20,2017-03-11 14:43:29.525317,48,664,920, +11,2017-03-11 14:43:29.525317,612,695,634, +99,2017-03-11 14:43:29.525317,451,31,34, +14,2017-03-11 14:43:29.525317,8,977,733, +15,2017-03-11 14:43:29.525317,807,1,970, +92,2017-03-11 14:43:29.525317,833,773,442, +90,2017-03-11 14:43:29.525317,341,818,769, +24,2017-03-11 14:43:29.525317,580,711,444, +63,2017-03-11 14:43:29.525317,376,363,737, +99,2017-03-11 14:43:29.525317,59,371,978, +51,2017-03-11 14:43:29.525317,402,12,650, +41,2017-03-11 14:43:29.525317,989,382,557, +80,2017-03-11 14:43:29.525317,383,527,718, +22,2017-03-11 14:43:29.525317,300,160,121, +64,2017-03-11 14:43:29.525317,977,889,885, +56,2017-03-11 14:43:29.525317,601,329,185, +98,2017-03-11 14:43:29.525317,692,922,964, +75,2017-03-11 14:43:29.525317,293,942,260, +70,2017-03-11 14:43:29.525317,954,910,105, +94,2017-03-11 14:43:29.525317,292,662,740, +68,2017-03-11 14:43:29.525317,189,458,892, +49,2017-03-11 14:43:29.525317,618,12,131, +60,2017-03-11 14:43:29.525317,902,16,152, +50,2017-03-11 14:43:29.525317,344,337,478, +4,2017-03-11 14:43:29.525317,259,442,787, +55,2017-03-11 14:43:29.525317,384,47,247, +34,2017-03-11 14:43:29.525317,957,352,283, +25,2017-03-11 14:43:29.525317,14,23,924, +20,2017-03-11 14:43:29.525317,481,816,693, +10,2017-03-11 14:43:29.525317,828,824,693, +73,2017-03-11 14:43:29.525317,840,845,232, +18,2017-03-11 14:43:29.525317,182,711,221, +44,2017-03-11 14:43:29.525317,153,7,992, +54,2017-03-11 14:43:29.525317,54,239,876, +1,2017-03-11 14:43:29.525317,591,159,259, +61,2017-03-11 14:43:29.525317,181,183,809, +66,2017-03-11 14:43:29.525317,999,502,760, +83,2017-03-11 14:43:29.525317,326,454,557, +17,2017-03-11 14:43:29.525317,299,789,350, +48,2017-03-11 14:43:29.525317,500,571,922, +65,2017-03-11 14:43:29.525317,578,915,190, +63,2017-03-11 14:43:29.525317,154,66,643, +74,2017-03-11 14:43:29.525317,225,902,350, +41,2017-03-11 14:43:29.525317,85,159,68, +8,2017-03-11 14:43:29.525317,661,829,911, +99,2017-03-11 14:43:29.525317,282,468,154, +58,2017-03-11 14:43:29.525317,257,504,63, +76,2017-03-11 14:43:29.525317,75,985,409, +65,2017-03-11 14:43:29.525317,900,599,286, +5,2017-03-11 14:43:29.525317,665,929,799, +89,2017-03-11 14:43:29.525317,831,149,296, +92,2017-03-11 14:43:29.525317,308,364,0, +97,2017-03-11 14:43:29.525317,193,911,957, +48,2017-03-11 14:43:29.525317,379,111,57, +64,2017-03-11 14:43:29.525317,615,120,392, +69,2017-03-11 14:43:29.525317,105,801,344, +0,2017-03-11 14:43:29.525317,401,630,59, +7,2017-03-11 14:43:29.525317,559,857,956, +39,2017-03-11 14:43:29.525317,7,252,307, +31,2017-03-11 14:43:29.525317,617,307,284, +81,2017-03-11 14:43:29.525317,218,242,285, +60,2017-03-11 14:43:29.525317,353,342,233, +97,2017-03-11 14:43:29.525317,461,625,659, +57,2017-03-11 14:43:29.525317,426,3,571, +83,2017-03-11 14:43:29.525317,633,629,893, +19,2017-03-11 14:43:29.525317,487,849,582, +49,2017-03-11 14:43:29.525317,101,889,808, +72,2017-03-11 14:43:29.525317,196,92,527, +41,2017-03-11 14:43:29.525317,334,812,11, +69,2017-03-11 14:43:29.525317,154,244,655, +62,2017-03-11 14:43:29.525317,869,314,181, +30,2017-03-11 14:43:29.525317,317,752,122, +95,2017-03-11 14:43:29.525317,382,14,141, +87,2017-03-11 14:43:29.525317,863,723,362, +96,2017-03-11 14:43:29.525317,612,170,681, +81,2017-03-11 14:43:29.525317,262,208,222, +60,2017-03-11 14:43:29.525317,20,233,283, +17,2017-03-11 14:43:29.525317,477,938,790, +35,2017-03-11 14:43:29.525317,252,971,641, +57,2017-03-11 14:43:29.525317,723,763,518, +11,2017-03-11 14:43:29.525317,777,659,974, +64,2017-03-11 14:43:29.525317,383,336,604, +99,2017-03-11 14:43:29.525317,506,285,802, +77,2017-03-11 14:43:29.525317,494,24,365, +51,2017-03-11 14:43:29.525317,258,648,688, +74,2017-03-11 14:43:29.525317,586,478,82, +84,2017-03-11 14:43:29.525317,449,723,406, +17,2017-03-11 14:43:29.525317,486,924,277, +26,2017-03-11 14:43:29.525317,583,251,904, +97,2017-03-11 14:43:29.525317,586,508,960, +9,2017-03-11 14:43:29.525317,794,763,860, +29,2017-03-11 14:43:29.525317,787,225,801, +4,2017-03-11 14:43:29.525317,872,489,780, +46,2017-03-11 14:43:29.525317,967,862,296, +42,2017-03-11 14:43:29.525317,585,702,588, +7,2017-03-11 14:43:29.525317,627,866,335, +21,2017-03-11 14:43:29.525317,117,239,175, +70,2017-03-11 14:43:29.525317,747,136,795, +54,2017-03-11 14:43:29.525317,898,655,828, +69,2017-03-11 14:43:29.525317,880,629,730, +75,2017-03-11 14:43:29.525317,119,510,211, +9,2017-03-11 14:43:29.525317,372,507,502, +96,2017-03-11 14:43:29.525317,209,90,28, +84,2017-03-11 14:43:29.525317,956,363,46, +7,2017-03-11 14:43:29.525317,602,221,776, +35,2017-03-11 14:43:29.525317,357,571,890, +26,2017-03-11 14:43:29.525317,226,718,941, +11,2017-03-11 14:43:29.525317,347,671,858, +47,2017-03-11 14:43:29.525317,182,69,551, +55,2017-03-11 14:43:29.525317,575,53,511, +78,2017-03-11 14:43:29.525317,143,539,620, +10,2017-03-11 14:43:29.525317,902,666,172, +50,2017-03-11 14:43:29.525317,887,947,852, +24,2017-03-11 14:43:29.525317,518,742,499, +74,2017-03-11 14:43:29.525317,460,440,849, +81,2017-03-11 14:43:29.525317,111,707,272, +29,2017-03-11 14:43:29.525317,776,823,847, +35,2017-03-11 14:43:29.525317,876,358,136, +2,2017-03-11 14:43:29.525317,897,756,119, +80,2017-03-11 14:43:29.525317,422,291,302, +31,2017-03-11 14:43:29.525317,238,154,553, +76,2017-03-11 14:43:29.525317,896,52,499, +36,2017-03-11 14:43:29.525317,492,349,163, +60,2017-03-11 14:43:29.525317,56,435,896, +83,2017-03-11 14:43:29.525317,258,743,183, +13,2017-03-11 14:43:29.525317,101,319,154, +100,2017-03-11 14:43:29.525317,75,273,796, +50,2017-03-11 14:43:29.525317,563,98,807, +80,2017-03-11 14:43:29.525317,252,360,557, +15,2017-03-11 14:43:29.525317,412,56,505, +90,2017-03-11 14:43:29.525317,405,668,507, +46,2017-03-11 14:43:29.525317,102,403,293, +36,2017-03-11 14:43:29.525317,146,476,494, +25,2017-03-11 14:43:29.525317,795,648,245, +87,2017-03-11 14:43:29.525317,920,41,368, +48,2017-03-11 14:43:29.525317,139,175,285, +39,2017-03-11 14:43:29.525317,535,841,540, +95,2017-03-11 14:43:29.525317,898,45,851, +30,2017-03-11 14:43:29.525317,713,358,764, +81,2017-03-11 14:43:29.525317,761,57,175, +91,2017-03-11 14:43:29.525317,533,669,155, +33,2017-03-11 14:43:29.525317,316,399,199, +24,2017-03-11 14:43:29.525317,440,567,720, +58,2017-03-11 14:43:29.525317,742,5,971, +28,2017-03-11 14:43:29.525317,846,511,223, +74,2017-03-11 14:43:29.525317,556,74,47, +27,2017-03-11 14:43:29.525317,433,811,84, +19,2017-03-11 14:43:29.525317,868,259,101, +40,2017-03-11 14:43:29.525317,927,256,729, +24,2017-03-11 14:43:29.525317,655,928,480, +10,2017-03-11 14:43:29.525317,495,201,675, +24,2017-03-11 14:43:29.525317,206,645,513, +5,2017-03-11 14:43:29.525317,156,736,796, +71,2017-03-11 14:43:29.525317,811,843,981, +24,2017-03-11 14:43:29.525317,654,65,437, +52,2017-03-11 14:43:29.525317,323,538,922, +25,2017-03-11 14:43:29.525317,794,651,494, +45,2017-03-11 14:43:29.525317,579,975,545, +7,2017-03-11 14:43:29.525317,175,220,310, +38,2017-03-11 14:43:29.525317,865,823,433, +2,2017-03-11 14:43:29.525317,559,229,733, +37,2017-03-11 14:43:29.525317,72,714,612, +73,2017-03-11 14:43:29.525317,778,49,247, +10,2017-03-11 14:43:29.525317,587,169,352, +38,2017-03-11 14:43:29.525317,820,846,831, +40,2017-03-11 14:43:29.525317,821,376,473, +100,2017-03-11 14:43:29.525317,596,783,377, +46,2017-03-11 14:43:29.525317,606,811,481, +16,2017-03-11 14:43:29.525317,40,214,534, +11,2017-03-11 14:43:29.525317,928,146,837, +71,2017-03-11 14:43:29.525317,195,84,808, +78,2017-03-11 14:43:29.525317,253,160,164, +7,2017-03-11 14:43:29.525317,6,995,473, +83,2017-03-11 14:43:29.525317,371,946,824, +97,2017-03-11 14:43:29.525317,730,201,427, +34,2017-03-11 14:43:29.525317,12,909,500, +5,2017-03-11 14:43:29.525317,123,33,163, +5,2017-03-11 14:43:29.525317,179,1,757, +37,2017-03-11 14:43:29.525317,85,565,156, +34,2017-03-11 14:43:29.525317,725,320,412, +73,2017-03-11 14:43:29.525317,315,886,559, +69,2017-03-11 14:43:29.525317,832,383,653, +56,2017-03-11 14:43:29.525317,584,80,897, +60,2017-03-11 14:43:29.525317,989,397,648, +11,2017-03-11 14:43:29.525317,430,811,162, +61,2017-03-11 14:43:29.525317,812,919,983, +90,2017-03-11 14:43:29.525317,483,139,235, +21,2017-03-11 14:43:29.525317,459,648,939, +77,2017-03-11 14:43:29.525317,533,498,461, +37,2017-03-11 14:43:29.525317,880,114,927, +46,2017-03-11 14:43:29.525317,194,824,60, +18,2017-03-11 14:43:29.525317,220,708,295, +65,2017-03-11 14:43:29.525317,519,457,259, +33,2017-03-11 14:43:29.525317,376,242,227, +86,2017-03-11 14:43:29.525317,381,463,67, +84,2017-03-11 14:43:29.525317,110,6,615, +64,2017-03-11 14:43:29.525317,504,76,8, +38,2017-03-11 14:43:29.525317,189,935,849, +38,2017-03-11 14:43:29.525317,759,909,566, +98,2017-03-11 14:43:29.525317,617,861,629, +14,2017-03-11 14:43:29.525317,318,887,466, +69,2017-03-11 14:43:29.525317,129,693,552, +51,2017-03-11 14:43:29.525317,156,619,351, +27,2017-03-11 14:43:29.525317,626,966,909, +13,2017-03-11 14:43:29.525317,41,917,515, +23,2017-03-11 14:43:29.525317,853,364,614, +61,2017-03-11 14:43:29.525317,273,180,590, +89,2017-03-11 14:43:29.525317,41,218,26, +36,2017-03-11 14:43:29.525317,106,492,53, +23,2017-03-11 14:43:29.525317,185,605,745, +34,2017-03-11 14:43:29.525317,225,96,606, +85,2017-03-11 14:43:29.525317,62,515,981, +10,2017-03-11 14:43:29.525317,433,495,333, +29,2017-03-11 14:43:29.525317,859,947,896, +13,2017-03-11 14:43:29.525317,128,486,22, +17,2017-03-11 14:43:29.525317,704,48,528, +81,2017-03-11 14:43:29.525317,540,581,45, +72,2017-03-11 14:43:29.525317,186,790,65, +41,2017-03-11 14:43:29.525317,886,671,261, +95,2017-03-11 14:43:29.525317,186,241,50, +62,2017-03-11 14:43:29.525317,737,384,904, +60,2017-03-11 14:43:29.525317,331,800,728, +46,2017-03-11 14:43:29.525317,286,751,627, +99,2017-03-11 14:43:29.525317,799,156,799, +34,2017-03-11 14:43:29.525317,737,844,63, +92,2017-03-11 14:43:29.525317,634,128,333, +52,2017-03-11 14:43:29.525317,798,594,467, +98,2017-03-11 14:43:29.525317,836,517,603, +57,2017-03-11 14:43:29.525317,901,506,169, +23,2017-03-11 14:43:29.525317,306,897,690, +59,2017-03-11 14:43:29.525317,648,318,581, +45,2017-03-11 14:43:29.525317,474,381,785, +21,2017-03-11 14:43:29.525317,225,848,133, +86,2017-03-11 14:43:29.525317,976,467,378, +77,2017-03-11 14:43:29.525317,61,845,758, +90,2017-03-11 14:43:29.525317,362,361,470, +26,2017-03-11 14:43:29.525317,867,638,495, +17,2017-03-11 14:43:29.525317,535,185,765, +18,2017-03-11 14:43:29.525317,503,346,629, +98,2017-03-11 14:43:29.525317,727,414,187, +95,2017-03-11 14:43:29.525317,262,320,809, +24,2017-03-11 14:43:29.525317,787,187,12, +85,2017-03-11 14:43:29.525317,32,770,746, +39,2017-03-11 14:43:29.525317,131,215,658, +100,2017-03-11 14:43:29.525317,854,153,172, +39,2017-03-11 14:43:29.525317,339,937,572, +84,2017-03-11 14:43:29.525317,283,202,818, +1,2017-03-11 14:43:29.525317,616,5,961, +88,2017-03-11 14:43:29.525317,325,770,117, +11,2017-03-11 14:43:29.525317,958,129,961, +99,2017-03-11 14:43:29.525317,899,707,385, +3,2017-03-11 14:43:29.525317,922,43,29, +78,2017-03-11 14:43:29.525317,197,201,165, +54,2017-03-11 14:43:29.525317,138,737,377, +42,2017-03-11 14:43:29.525317,939,195,431, +56,2017-03-11 14:43:29.525317,200,392,434, +53,2017-03-11 14:43:29.525317,163,550,638, +12,2017-03-11 14:43:29.525317,679,599,111, +58,2017-03-11 14:43:29.525317,306,496,608, +23,2017-03-11 14:43:29.525317,539,637,3, +74,2017-03-11 14:43:29.525317,838,168,271, +98,2017-03-11 14:43:29.525317,906,648,399, +84,2017-03-11 14:43:29.525317,843,830,400, +4,2017-03-11 14:43:29.525317,222,833,568, +38,2017-03-11 14:43:29.525317,384,206,505, +6,2017-03-11 14:43:29.525317,805,616,640, +11,2017-03-11 14:43:29.525317,112,248,338, +65,2017-03-11 14:43:29.525317,885,342,388, +72,2017-03-11 14:43:29.525317,510,659,700, +42,2017-03-11 14:43:29.525317,307,99,261, +15,2017-03-11 14:43:29.525317,929,661,192, +15,2017-03-11 14:43:29.525317,494,761,536, +88,2017-03-11 14:43:29.525317,967,41,940, +77,2017-03-11 14:43:29.525317,658,580,883, +77,2017-03-11 14:43:29.525317,828,221,422, +71,2017-03-11 14:43:29.525317,563,810,436, +7,2017-03-11 14:43:29.525317,469,136,490, +78,2017-03-11 14:43:29.525317,235,751,925, +16,2017-03-11 14:43:29.525317,411,118,314, +91,2017-03-11 14:43:29.525317,878,850,783, +85,2017-03-11 14:43:29.525317,891,723,617, +55,2017-03-11 14:43:29.525317,303,500,319, +13,2017-03-11 14:43:29.525317,721,740,843, +28,2017-03-11 14:43:29.525317,550,279,358, +2,2017-03-11 14:43:29.525317,415,848,794, +65,2017-03-11 14:43:29.525317,599,719,813, +1,2017-03-11 14:43:29.525317,837,127,915, +72,2017-03-11 14:43:29.525317,977,698,560, +87,2017-03-11 14:43:29.525317,421,177,416, +72,2017-03-11 14:43:29.525317,677,735,855, +40,2017-03-11 14:43:29.525317,475,697,683, +3,2017-03-11 14:43:29.525317,976,41,44, +39,2017-03-11 14:43:29.525317,890,838,40, +49,2017-03-11 14:43:29.525317,557,853,498, +39,2017-03-11 14:43:29.525317,980,413,109, +96,2017-03-11 14:43:29.525317,111,669,825, +53,2017-03-11 14:43:29.525317,847,241,256, +52,2017-03-11 14:43:29.525317,976,111,922, +45,2017-03-11 14:43:29.525317,808,605,477, +78,2017-03-11 14:43:29.525317,647,521,176, +54,2017-03-11 14:43:29.525317,359,216,24, +92,2017-03-11 14:43:29.525317,69,522,311, +5,2017-03-11 14:43:29.525317,936,420,6, +5,2017-03-11 14:43:29.525317,89,830,579, +94,2017-03-11 14:43:29.525317,71,836,460, +5,2017-03-11 14:43:29.525317,947,382,498, +76,2017-03-11 14:43:29.525317,987,975,540, +63,2017-03-11 14:43:29.525317,496,715,170, +85,2017-03-11 14:43:29.525317,931,194,771, +0,2017-03-11 14:43:29.525317,717,82,49, +65,2017-03-11 14:43:29.525317,502,55,699, +59,2017-03-11 14:43:29.525317,885,279,527, +96,2017-03-11 14:43:29.525317,114,987,3, +6,2017-03-11 14:43:29.525317,369,502,816, +36,2017-03-11 14:43:29.525317,477,356,990, +97,2017-03-11 14:43:29.525317,71,160,828, +0,2017-03-11 14:43:29.525317,354,599,3, +7,2017-03-11 14:43:29.525317,681,52,723, +18,2017-03-11 14:43:29.525317,106,423,774, +99,2017-03-11 14:43:29.525317,701,301,947, +82,2017-03-11 14:43:29.525317,288,950,877, +66,2017-03-11 14:43:29.525317,452,693,13, +93,2017-03-11 14:43:29.525317,49,2,901, +12,2017-03-11 14:43:29.525317,162,729,123, +52,2017-03-11 14:43:29.525317,328,126,587, +1,2017-03-11 14:43:29.525317,178,310,191, +28,2017-03-11 14:43:29.525317,733,965,275, +43,2017-03-11 14:43:29.525317,266,223,250, +55,2017-03-11 14:43:29.525317,173,126,211, +62,2017-03-11 14:43:29.525317,819,224,553, +87,2017-03-11 14:43:29.525317,226,454,989, +39,2017-03-11 14:43:29.525317,183,112,903, +51,2017-03-11 14:43:29.525317,238,490,519, +42,2017-03-11 14:43:29.525317,799,710,700, +53,2017-03-11 14:43:29.525317,675,975,966, +94,2017-03-11 14:43:29.525317,198,216,496, +37,2017-03-11 14:43:29.525317,342,707,995, +16,2017-03-11 14:43:29.525317,931,548,30, +16,2017-03-11 14:43:29.525317,2,19,544, +18,2017-03-11 14:43:29.525317,130,447,695, +37,2017-03-11 14:43:29.525317,937,214,784, +74,2017-03-11 14:43:29.525317,924,484,268, +60,2017-03-11 14:43:29.525317,459,234,541, +66,2017-03-11 14:43:29.525317,450,37,28, +79,2017-03-11 14:43:29.525317,744,23,953, +68,2017-03-11 14:43:29.525317,571,983,832, +57,2017-03-11 14:43:29.525317,2,376,757, +13,2017-03-11 14:43:29.525317,823,452,501, +76,2017-03-11 14:43:29.525317,665,285,496, +59,2017-03-11 14:43:29.525317,769,764,189, +23,2017-03-11 14:43:29.525317,998,729,886, +45,2017-03-11 14:43:29.525317,766,914,240, +51,2017-03-11 14:43:29.525317,936,193,185, +51,2017-03-11 14:43:29.525317,177,17,79, +18,2017-03-11 14:43:29.525317,393,836,311, +22,2017-03-11 14:43:29.525317,288,811,975, +95,2017-03-11 14:43:29.525317,96,471,542, +86,2017-03-11 14:43:29.525317,234,731,93, +23,2017-03-11 14:43:29.525317,460,978,681, +23,2017-03-11 14:43:29.525317,892,921,737, +83,2017-03-11 14:43:29.525317,114,922,335, +29,2017-03-11 14:43:29.525317,939,415,469, +33,2017-03-11 14:43:29.525317,251,780,547, +54,2017-03-11 14:43:29.525317,591,522,491, +69,2017-03-11 14:43:29.525317,992,34,551, +23,2017-03-11 14:43:29.525317,765,644,459, +23,2017-03-11 14:43:29.525317,622,140,452, +51,2017-03-11 14:43:29.525317,60,188,342, +17,2017-03-11 14:43:29.525317,110,678,465, +5,2017-03-11 14:43:29.525317,92,934,379, +34,2017-03-11 14:43:29.525317,714,926,881, +30,2017-03-11 14:43:29.525317,448,373,991, +44,2017-03-11 14:43:29.525317,406,542,666, +17,2017-03-11 14:43:29.525317,186,125,396, +81,2017-03-11 14:43:29.525317,265,848,322, +33,2017-03-11 14:43:29.525317,36,664,499, +15,2017-03-11 14:43:29.525317,342,964,194, +43,2017-03-11 14:43:29.525317,899,574,777, +61,2017-03-11 14:43:29.525317,500,658,917, +95,2017-03-11 14:43:29.525317,31,908,387, +44,2017-03-11 14:43:29.525317,450,54,609, +64,2017-03-11 14:43:29.525317,179,5,443, +44,2017-03-11 14:43:29.525317,853,765,769, +89,2017-03-11 14:43:29.525317,430,269,35, +77,2017-03-11 14:43:29.525317,233,229,206, +13,2017-03-11 14:43:29.525317,803,983,744, +30,2017-03-11 14:43:29.525317,642,661,250, +67,2017-03-11 14:43:29.525317,568,637,110, +2,2017-03-11 14:43:29.525317,691,718,653, +87,2017-03-11 14:43:29.525317,723,97,314, +58,2017-03-11 14:43:29.525317,862,83,465, +29,2017-03-11 14:43:29.525317,352,500,64, +58,2017-03-11 14:43:29.525317,729,270,717, +53,2017-03-11 14:43:29.525317,254,461,834, +90,2017-03-11 14:43:29.525317,122,84,567, +69,2017-03-11 14:43:29.525317,721,677,708, +41,2017-03-11 14:43:29.525317,395,362,281, +12,2017-03-11 14:43:29.525317,458,595,694, +32,2017-03-11 14:43:29.525317,678,159,613, +3,2017-03-11 14:43:29.525317,659,677,615, +39,2017-03-11 14:43:29.525317,947,332,920, +20,2017-03-11 14:43:29.525317,793,754,95, +91,2017-03-11 14:43:29.525317,838,663,605, +56,2017-03-11 14:43:29.525317,340,313,971, +73,2017-03-11 14:43:29.525317,675,253,853, +13,2017-03-11 14:43:29.525317,848,547,454, +53,2017-03-11 14:43:29.525317,706,66,556, +36,2017-03-11 14:43:29.525317,743,171,753, +69,2017-03-11 14:43:29.525317,503,673,890, +30,2017-03-11 14:43:29.525317,427,986,210, +27,2017-03-11 14:43:29.525317,648,815,825, +99,2017-03-11 14:43:29.525317,128,796,723, +80,2017-03-11 14:43:29.525317,49,575,936, +90,2017-03-11 14:43:29.525317,122,389,423, +83,2017-03-11 14:43:29.525317,456,980,192, +20,2017-03-11 14:43:29.525317,151,945,888, +65,2017-03-11 14:43:29.525317,618,779,949, +5,2017-03-11 14:43:29.525317,764,160,311, +41,2017-03-11 14:43:29.525317,974,136,401, +10,2017-03-11 14:43:29.525317,932,123,904, +98,2017-03-11 14:43:29.525317,699,840,879, +82,2017-03-11 14:43:29.525317,229,302,649, +68,2017-03-11 14:43:29.525317,282,841,883, +43,2017-03-11 14:43:29.525317,786,772,86, +40,2017-03-11 14:43:29.525317,550,36,449, +31,2017-03-11 14:43:29.525317,195,759,727, +17,2017-03-11 14:43:29.525317,895,128,271, +83,2017-03-11 14:43:29.525317,251,176,809, +95,2017-03-11 14:43:29.525317,16,688,771, +24,2017-03-11 14:43:29.525317,990,420,930, +27,2017-03-11 14:43:29.525317,260,813,704, +5,2017-03-11 14:43:29.525317,585,790,449, +14,2017-03-11 14:43:29.525317,826,898,450, +2,2017-03-11 14:43:29.525317,657,177,191, +55,2017-03-11 14:43:29.525317,304,462,380, +56,2017-03-11 14:43:29.525317,638,189,505, +65,2017-03-11 14:43:29.525317,876,276,898, +87,2017-03-11 14:43:29.525317,696,828,137, +96,2017-03-11 14:43:29.525317,641,841,2, +23,2017-03-11 14:43:29.525317,631,452,362, +46,2017-03-11 14:43:29.525317,350,812,478, +1,2017-03-11 14:43:29.525317,989,669,559, +29,2017-03-11 14:43:29.525317,131,939,849, +77,2017-03-11 14:43:29.525317,128,354,422, +0,2017-03-11 14:43:29.525317,631,320,870, +33,2017-03-11 14:43:29.525317,148,7,283, +79,2017-03-11 14:43:29.525317,848,285,16, +48,2017-03-11 14:43:29.525317,736,378,936, +9,2017-03-11 14:43:29.525317,190,414,93, +18,2017-03-11 14:43:29.525317,83,652,472, +21,2017-03-11 14:43:29.525317,591,321,982, +72,2017-03-11 14:43:29.525317,675,404,723, +31,2017-03-11 14:43:29.525317,724,593,632, +87,2017-03-11 14:43:29.525317,600,915,662, +45,2017-03-11 14:43:29.525317,199,678,927, +94,2017-03-11 14:43:29.525317,56,863,21, +25,2017-03-11 14:43:29.525317,277,114,425, +36,2017-03-11 14:43:29.525317,766,897,572, +36,2017-03-11 14:43:29.525317,218,554,76, +89,2017-03-11 14:43:29.525317,958,799,199, +68,2017-03-11 14:43:29.525317,392,831,554, +99,2017-03-11 14:43:29.525317,745,217,439, +94,2017-03-11 14:43:29.525317,895,365,880, +95,2017-03-11 14:43:29.525317,228,902,198, +50,2017-03-11 14:43:29.525317,16,623,864, +78,2017-03-11 14:43:29.525317,520,436,140, +74,2017-03-11 14:43:29.525317,990,216,630, +95,2017-03-11 14:43:29.525317,15,829,629, +41,2017-03-11 14:43:29.525317,660,184,398, +41,2017-03-11 14:43:29.525317,400,836,350, +30,2017-03-11 14:43:29.525317,201,231,247, +43,2017-03-11 14:43:29.525317,132,444,933, +15,2017-03-11 14:43:29.525317,67,797,931, +59,2017-03-11 14:43:29.525317,233,71,324, +22,2017-03-11 14:43:29.525317,287,955,170, +30,2017-03-11 14:43:29.525317,784,800,708, +44,2017-03-11 14:43:29.525317,984,106,849, +38,2017-03-11 14:43:29.525317,942,199,679, +14,2017-03-11 14:43:29.525317,430,926,572, +56,2017-03-11 14:43:29.525317,370,505,711, +44,2017-03-11 14:43:29.525317,302,642,24, +54,2017-03-11 14:43:29.525317,712,348,758, +100,2017-03-11 14:43:29.525317,303,928,301, +9,2017-03-11 14:43:29.525317,728,9,530, +71,2017-03-11 14:43:29.525317,114,379,95, +6,2017-03-11 14:43:29.525317,578,775,199, +1,2017-03-11 14:43:29.525317,701,771,571, +7,2017-03-11 14:43:29.525317,277,282,509, +58,2017-03-11 14:43:29.525317,923,533,114, +64,2017-03-11 14:43:29.525317,881,872,635, +18,2017-03-11 14:43:29.525317,800,935,270, +53,2017-03-11 14:43:29.525317,944,801,240, +6,2017-03-11 14:43:29.525317,180,335,114, +76,2017-03-11 14:43:29.525317,110,313,766, +81,2017-03-11 14:43:29.525317,85,337,882, +36,2017-03-11 14:43:29.525317,619,390,941, +54,2017-03-11 14:43:29.525317,923,55,178, +80,2017-03-11 14:43:29.525317,927,812,988, +73,2017-03-11 14:43:29.525317,748,259,256, +69,2017-03-11 14:43:29.525317,59,495,750, +24,2017-03-11 14:43:29.525317,830,864,997, +94,2017-03-11 14:43:29.525317,178,764,750, +26,2017-03-11 14:43:29.525317,101,632,624, +72,2017-03-11 14:43:29.525317,22,565,261, +95,2017-03-11 14:43:29.525317,620,439,750, +55,2017-03-11 14:43:29.525317,252,738,274, +100,2017-03-11 14:43:29.525317,997,530,691, +6,2017-03-11 14:43:29.525317,25,441,295, +86,2017-03-11 14:43:29.525317,305,293,795, +48,2017-03-11 14:43:29.525317,57,546,745, +16,2017-03-11 14:43:29.525317,178,369,877, +20,2017-03-11 14:43:29.525317,934,139,146, +55,2017-03-11 14:43:29.525317,578,896,101, +83,2017-03-11 14:43:29.525317,634,375,829, +63,2017-03-11 14:43:29.525317,905,520,687, +93,2017-03-11 14:43:29.525317,960,983,785, +27,2017-03-11 14:43:29.525317,275,580,748, +33,2017-03-11 14:43:29.525317,126,493,490, +30,2017-03-11 14:43:29.525317,862,367,505, +80,2017-03-11 14:43:29.525317,505,651,349, +8,2017-03-11 14:43:29.525317,547,450,913, +18,2017-03-11 14:43:29.525317,825,741,812, +73,2017-03-11 14:43:29.525317,261,499,659, +22,2017-03-11 14:43:29.525317,482,444,486, +76,2017-03-11 14:43:29.525317,25,234,89, +15,2017-03-11 14:43:29.525317,727,578,455, +59,2017-03-11 14:43:29.525317,945,960,384, +45,2017-03-11 14:43:29.525317,610,733,534, +16,2017-03-11 14:43:29.525317,183,446,338, +1,2017-03-11 14:43:29.525317,188,149,737, +45,2017-03-11 14:43:29.525317,649,396,669, +13,2017-03-11 14:43:29.525317,840,155,887, +86,2017-03-11 14:43:29.525317,389,976,15, +12,2017-03-11 14:43:29.525317,554,470,704, +50,2017-03-11 14:43:29.525317,430,88,950, +4,2017-03-11 14:43:29.525317,821,484,197, +0,2017-03-11 14:43:29.525317,930,534,11, +12,2017-03-11 14:43:29.525317,684,747,566, +33,2017-03-11 14:43:29.525317,143,235,462, +98,2017-03-11 14:43:29.525317,390,349,847, +78,2017-03-11 14:43:29.525317,325,862,895, +88,2017-03-11 14:43:29.525317,332,599,379, +76,2017-03-11 14:43:29.525317,686,329,801, +51,2017-03-11 14:43:29.525317,813,998,510, +74,2017-03-11 14:43:29.525317,532,520,862, +22,2017-03-11 14:43:29.525317,268,428,548, +41,2017-03-11 14:43:29.525317,663,11,393, +5,2017-03-11 14:43:29.525317,360,239,832, +69,2017-03-11 14:43:29.525317,101,727,565, +43,2017-03-11 14:43:29.525317,325,945,193, +1,2017-03-11 14:43:29.525317,274,994,518, +9,2017-03-11 14:43:29.525317,992,28,831, +52,2017-03-11 14:43:29.525317,549,693,740, +82,2017-03-11 14:43:29.525317,120,289,226, +78,2017-03-11 14:43:29.525317,300,619,836, +66,2017-03-11 14:43:29.525317,858,668,346, +96,2017-03-11 14:43:29.525317,395,911,391, +72,2017-03-11 14:43:29.525317,856,585,732, +13,2017-03-11 14:43:29.525317,579,250,218, +57,2017-03-11 14:43:29.525317,278,49,96, +83,2017-03-11 14:43:29.525317,741,836,643, +86,2017-03-11 14:43:29.525317,125,870,645, +42,2017-03-11 14:43:29.525317,489,481,85, +35,2017-03-11 14:43:29.525317,148,431,306, +54,2017-03-11 14:43:29.525317,342,698,264, +20,2017-03-11 14:43:29.525317,282,996,329, +86,2017-03-11 14:43:29.525317,246,546,433, +52,2017-03-11 14:43:29.525317,595,529,351, +34,2017-03-11 14:43:29.525317,365,995,198, +49,2017-03-11 14:43:29.525317,864,842,914, +35,2017-03-11 14:43:29.525317,323,999,700, +47,2017-03-11 14:43:29.525317,430,7,15, +77,2017-03-11 14:43:29.525317,704,278,971, +99,2017-03-11 14:43:29.525317,274,300,848, +52,2017-03-11 14:43:29.525317,846,281,44, +44,2017-03-11 14:43:29.525317,810,395,777, +17,2017-03-11 14:43:29.525317,390,975,664, +25,2017-03-11 14:43:29.525317,817,579,608, +14,2017-03-11 14:43:29.525317,578,308,612, +1,2017-03-11 14:43:29.525317,315,626,781, +2,2017-03-11 14:43:29.525317,905,752,6, +18,2017-03-11 14:43:29.525317,51,854,699, +90,2017-03-11 14:43:29.525317,135,742,338, +94,2017-03-11 14:43:29.525317,138,115,119, +53,2017-03-11 14:43:29.525317,89,783,782, +91,2017-03-11 14:43:29.525317,362,390,47, +94,2017-03-11 14:43:29.525317,698,658,948, +1,2017-03-11 14:43:29.525317,285,729,33, +19,2017-03-11 14:43:29.525317,481,38,369, +53,2017-03-11 14:43:29.525317,892,67,429, +3,2017-03-11 14:43:29.525317,810,767,971, +95,2017-03-11 14:43:29.525317,882,89,475, +97,2017-03-11 14:43:29.525317,872,258,878, +23,2017-03-11 14:43:29.525317,648,925,173, +35,2017-03-11 14:43:29.525317,583,121,360, +87,2017-03-11 14:43:29.525317,850,392,58, +33,2017-03-11 14:43:29.525317,431,426,863, +32,2017-03-11 14:43:29.525317,494,292,349, +30,2017-03-11 14:43:29.525317,59,319,251, +94,2017-03-11 14:43:29.525317,409,726,912, +28,2017-03-11 14:43:29.525317,984,790,514, +63,2017-03-11 14:43:29.525317,715,688,978, +30,2017-03-11 14:43:29.525317,809,338,166, +66,2017-03-11 14:43:29.525317,730,224,990, +16,2017-03-11 14:43:29.525317,650,853,483, +14,2017-03-11 14:43:29.525317,145,832,447, +20,2017-03-11 14:43:29.525317,152,698,146, +56,2017-03-11 14:43:29.525317,424,58,841, +41,2017-03-11 14:43:29.525317,849,356,39, +56,2017-03-11 14:43:29.525317,43,17,861, +85,2017-03-11 14:43:29.525317,355,27,512, +9,2017-03-11 14:43:29.525317,251,502,246, +90,2017-03-11 14:43:29.525317,356,730,45, +50,2017-03-11 14:43:29.525317,562,492,706, +71,2017-03-11 14:43:29.525317,189,852,275, +61,2017-03-11 14:43:29.525317,910,116,21, +76,2017-03-11 14:43:29.525317,471,60,322, +51,2017-03-11 14:43:29.525317,77,184,367, +43,2017-03-11 14:43:29.525317,211,879,518, +46,2017-03-11 14:43:29.525317,382,764,363, +74,2017-03-11 14:43:29.525317,494,407,239, +6,2017-03-11 14:43:29.525317,899,945,770, +9,2017-03-11 14:43:29.525317,797,45,701, +71,2017-03-11 14:43:29.525317,161,722,466, +63,2017-03-11 14:43:29.525317,782,788,147, +86,2017-03-11 14:43:29.525317,972,514,292, +18,2017-03-11 14:43:29.525317,393,810,645, +77,2017-03-11 14:43:29.525317,574,7,512, +7,2017-03-11 14:43:29.525317,414,750,124, +31,2017-03-11 14:43:29.525317,695,895,401, +49,2017-03-11 14:43:29.525317,940,102,198, +10,2017-03-11 14:43:29.525317,824,664,733, +61,2017-03-11 14:43:29.525317,452,879,466, +42,2017-03-11 14:43:29.525317,393,758,608, +79,2017-03-11 14:43:29.525317,567,252,560, +14,2017-03-11 14:43:29.525317,260,72,210, +67,2017-03-11 14:43:29.525317,822,334,987, +52,2017-03-11 14:43:29.525317,229,388,9, +17,2017-03-11 14:43:29.525317,490,207,269, +31,2017-03-11 14:43:29.525317,871,2,921, +32,2017-03-11 14:43:29.525317,881,386,748, +27,2017-03-11 14:43:29.525317,144,356,60, +71,2017-03-11 14:43:29.525317,608,620,853, +87,2017-03-11 14:43:29.525317,692,62,542, +51,2017-03-11 14:43:29.525317,396,529,32, +63,2017-03-11 14:43:29.525317,918,40,794, +41,2017-03-11 14:43:29.525317,248,64,723, +12,2017-03-11 14:43:29.525317,66,643,443, +95,2017-03-11 14:43:29.525317,30,191,221, +17,2017-03-11 14:43:29.525317,547,281,885, +16,2017-03-11 14:43:29.525317,900,737,24, +59,2017-03-11 14:43:29.525317,799,566,106, +20,2017-03-11 14:43:29.525317,95,138,821, +1,2017-03-11 14:43:29.525317,178,615,421, +43,2017-03-11 14:43:29.525317,679,144,545, +74,2017-03-11 14:43:29.525317,787,988,691, +82,2017-03-11 14:43:29.525317,179,912,990, +73,2017-03-11 14:43:29.525317,192,875,882, +9,2017-03-11 14:43:29.525317,612,906,685, +41,2017-03-11 14:43:29.525317,472,791,607, +57,2017-03-11 14:43:29.525317,929,428,580, +11,2017-03-11 14:43:29.525317,43,1,534, +72,2017-03-11 14:43:29.525317,145,79,466, +93,2017-03-11 14:43:29.525317,67,157,749, +25,2017-03-11 14:43:29.525317,69,739,973, +26,2017-03-11 14:43:29.525317,614,855,354, diff --git a/src/test/regress/data/users_table.data b/src/test/regress/data/users_table.data new file mode 100644 index 000000000..a6c44e516 --- /dev/null +++ b/src/test/regress/data/users_table.data @@ -0,0 +1,10001 @@ +63,2017-03-11 14:43:29.457788,820,562,544, +54,2017-03-11 14:43:29.457788,361,295,694, +62,2017-03-11 14:43:29.457788,112,267,95, +10,2017-03-11 14:43:29.457788,648,942,487, +78,2017-03-11 14:43:29.457788,663,865,342, +55,2017-03-11 14:43:29.457788,970,581,237, +82,2017-03-11 14:43:29.457788,217,154,503, +86,2017-03-11 14:43:29.457788,14,712,490, +83,2017-03-11 14:43:29.457788,274,33,372, +63,2017-03-11 14:43:29.457788,328,66,252, +44,2017-03-11 14:43:29.457788,333,346,540, +98,2017-03-11 14:43:29.457788,288,27,757, +95,2017-03-11 14:43:29.457788,892,99,500, +86,2017-03-11 14:43:29.457788,679,737,683, +90,2017-03-11 14:43:29.457788,891,186,759, +90,2017-03-11 14:43:29.457788,898,249,738, +17,2017-03-11 14:43:29.457788,282,110,808, +61,2017-03-11 14:43:29.457788,176,59,50, +51,2017-03-11 14:43:29.457788,406,590,490, +69,2017-03-11 14:43:29.457788,617,247,646, +51,2017-03-11 14:43:29.457788,345,146,371, +2,2017-03-11 14:43:29.457788,883,54,921, +77,2017-03-11 14:43:29.457788,241,680,678, +14,2017-03-11 14:43:29.457788,929,416,312, +21,2017-03-11 14:43:29.457788,526,120,821, +70,2017-03-11 14:43:29.457788,179,871,211, +58,2017-03-11 14:43:29.457788,461,700,279, +8,2017-03-11 14:43:29.457788,947,925,587, +29,2017-03-11 14:43:29.457788,71,958,317, +95,2017-03-11 14:43:29.457788,12,238,728, +25,2017-03-11 14:43:29.457788,919,406,392, +85,2017-03-11 14:43:29.457788,822,704,58, +35,2017-03-11 14:43:29.457788,824,879,49, +0,2017-03-11 14:43:29.457788,750,260,587, +21,2017-03-11 14:43:29.457788,960,866,289, +91,2017-03-11 14:43:29.457788,790,876,200, +86,2017-03-11 14:43:29.457788,834,517,815, +85,2017-03-11 14:43:29.457788,755,543,100, +67,2017-03-11 14:43:29.457788,949,492,521, +77,2017-03-11 14:43:29.457788,196,579,118, +2,2017-03-11 14:43:29.457788,458,168,23, +21,2017-03-11 14:43:29.457788,428,610,419, +39,2017-03-11 14:43:29.457788,476,708,295, +27,2017-03-11 14:43:29.457788,584,494,127, +42,2017-03-11 14:43:29.457788,11,942,265, +77,2017-03-11 14:43:29.457788,485,364,439, +43,2017-03-11 14:43:29.457788,856,960,206, +5,2017-03-11 14:43:29.457788,539,324,73, +100,2017-03-11 14:43:29.457788,492,95,206, +92,2017-03-11 14:43:29.457788,705,625,307, +18,2017-03-11 14:43:29.457788,333,602,447, +92,2017-03-11 14:43:29.457788,96,574,335, +11,2017-03-11 14:43:29.457788,517,600,873, +0,2017-03-11 14:43:29.457788,965,312,437, +82,2017-03-11 14:43:29.457788,272,642,874, +81,2017-03-11 14:43:29.457788,966,946,809, +46,2017-03-11 14:43:29.457788,42,15,377, +75,2017-03-11 14:43:29.457788,640,684,927, +97,2017-03-11 14:43:29.457788,286,374,890, +38,2017-03-11 14:43:29.457788,948,226,489, +46,2017-03-11 14:43:29.457788,826,362,467, +79,2017-03-11 14:43:29.457788,674,904,611, +95,2017-03-11 14:43:29.457788,546,485,759, +51,2017-03-11 14:43:29.457788,432,568,970, +47,2017-03-11 14:43:29.457788,583,347,220, +22,2017-03-11 14:43:29.457788,31,148,197, +32,2017-03-11 14:43:29.457788,522,87,699, +47,2017-03-11 14:43:29.457788,313,188,935, +14,2017-03-11 14:43:29.457788,550,402,929, +22,2017-03-11 14:43:29.457788,305,540,172, +85,2017-03-11 14:43:29.457788,25,931,363, +46,2017-03-11 14:43:29.457788,499,333,930, +8,2017-03-11 14:43:29.457788,680,150,306, +71,2017-03-11 14:43:29.457788,298,503,28, +82,2017-03-11 14:43:29.457788,589,727,290, +90,2017-03-11 14:43:29.457788,916,224,41, +47,2017-03-11 14:43:29.457788,626,969,691, +93,2017-03-11 14:43:29.457788,510,862,783, +53,2017-03-11 14:43:29.457788,793,146,992, +29,2017-03-11 14:43:29.457788,479,922,374, +16,2017-03-11 14:43:29.457788,72,680,870, +37,2017-03-11 14:43:29.457788,182,898,190, +77,2017-03-11 14:43:29.457788,626,479,674, +54,2017-03-11 14:43:29.457788,703,715,7, +33,2017-03-11 14:43:29.457788,684,698,261, +19,2017-03-11 14:43:29.457788,560,44,729, +35,2017-03-11 14:43:29.457788,189,720,645, +67,2017-03-11 14:43:29.457788,642,19,827, +71,2017-03-11 14:43:29.457788,699,697,85, +88,2017-03-11 14:43:29.457788,595,274,653, +22,2017-03-11 14:43:29.457788,753,327,762, +46,2017-03-11 14:43:29.457788,42,769,786, +73,2017-03-11 14:43:29.457788,466,47,919, +3,2017-03-11 14:43:29.457788,91,648,379, +28,2017-03-11 14:43:29.457788,368,24,949, +1,2017-03-11 14:43:29.457788,42,776,725, +74,2017-03-11 14:43:29.457788,473,810,622, +7,2017-03-11 14:43:29.457788,84,275,289, +84,2017-03-11 14:43:29.457788,602,51,294, +64,2017-03-11 14:43:29.457788,820,80,369, +29,2017-03-11 14:43:29.457788,128,288,313, +22,2017-03-11 14:43:29.457788,936,692,499, +30,2017-03-11 14:43:29.457788,716,448,315, +76,2017-03-11 14:43:29.457788,224,40,499, +70,2017-03-11 14:43:29.457788,850,121,765, +93,2017-03-11 14:43:29.457788,396,53,771, +100,2017-03-11 14:43:29.457788,104,65,641, +92,2017-03-11 14:43:29.457788,146,10,210, +27,2017-03-11 14:43:29.457788,299,522,492, +23,2017-03-11 14:43:29.457788,214,991,539, +93,2017-03-11 14:43:29.457788,440,855,688, +66,2017-03-11 14:43:29.457788,895,187,360, +74,2017-03-11 14:43:29.457788,308,125,679, +70,2017-03-11 14:43:29.457788,178,450,701, +28,2017-03-11 14:43:29.457788,515,342,206, +66,2017-03-11 14:43:29.457788,352,416,934, +65,2017-03-11 14:43:29.457788,938,426,886, +15,2017-03-11 14:43:29.457788,417,425,82, +86,2017-03-11 14:43:29.457788,280,770,520, +17,2017-03-11 14:43:29.457788,957,880,919, +26,2017-03-11 14:43:29.457788,5,598,968, +18,2017-03-11 14:43:29.457788,48,669,466, +56,2017-03-11 14:43:29.457788,11,672,224, +36,2017-03-11 14:43:29.457788,87,158,14, +3,2017-03-11 14:43:29.457788,584,900,178, +0,2017-03-11 14:43:29.457788,325,260,858, +61,2017-03-11 14:43:29.457788,30,379,780, +99,2017-03-11 14:43:29.457788,259,699,251, +26,2017-03-11 14:43:29.457788,297,219,448, +34,2017-03-11 14:43:29.457788,889,913,908, +90,2017-03-11 14:43:29.457788,585,133,264, +67,2017-03-11 14:43:29.457788,291,278,698, +88,2017-03-11 14:43:29.457788,178,876,877, +50,2017-03-11 14:43:29.457788,136,736,109, +17,2017-03-11 14:43:29.457788,114,889,153, +37,2017-03-11 14:43:29.457788,587,404,638, +88,2017-03-11 14:43:29.457788,623,85,229, +51,2017-03-11 14:43:29.457788,999,137,412, +58,2017-03-11 14:43:29.457788,270,676,256, +56,2017-03-11 14:43:29.457788,954,955,437, +13,2017-03-11 14:43:29.457788,831,315,636, +97,2017-03-11 14:43:29.457788,50,745,132, +16,2017-03-11 14:43:29.457788,634,285,538, +22,2017-03-11 14:43:29.457788,689,175,105, +31,2017-03-11 14:43:29.457788,261,334,825, +26,2017-03-11 14:43:29.457788,472,237,843, +74,2017-03-11 14:43:29.457788,913,100,304, +87,2017-03-11 14:43:29.457788,54,741,999, +88,2017-03-11 14:43:29.457788,55,635,851, +11,2017-03-11 14:43:29.457788,380,984,270, +1,2017-03-11 14:43:29.457788,269,808,235, +96,2017-03-11 14:43:29.457788,984,340,270, +24,2017-03-11 14:43:29.457788,674,95,504, +15,2017-03-11 14:43:29.457788,331,347,888, +24,2017-03-11 14:43:29.457788,447,192,110, +50,2017-03-11 14:43:29.457788,933,109,386, +99,2017-03-11 14:43:29.457788,744,237,94, +12,2017-03-11 14:43:29.457788,221,364,138, +49,2017-03-11 14:43:29.457788,172,372,447, +16,2017-03-11 14:43:29.457788,712,717,401, +39,2017-03-11 14:43:29.457788,812,905,533, +14,2017-03-11 14:43:29.457788,252,421,387, +70,2017-03-11 14:43:29.457788,613,498,200, +55,2017-03-11 14:43:29.457788,607,585,533, +35,2017-03-11 14:43:29.457788,822,627,475, +4,2017-03-11 14:43:29.457788,991,612,532, +16,2017-03-11 14:43:29.457788,985,979,320, +70,2017-03-11 14:43:29.457788,697,721,84, +51,2017-03-11 14:43:29.457788,625,616,652, +88,2017-03-11 14:43:29.457788,37,39,576, +65,2017-03-11 14:43:29.457788,537,776,195, +14,2017-03-11 14:43:29.457788,361,728,495, +18,2017-03-11 14:43:29.457788,356,970,226, +35,2017-03-11 14:43:29.457788,582,758,511, +57,2017-03-11 14:43:29.457788,737,831,264, +43,2017-03-11 14:43:29.457788,551,348,942, +18,2017-03-11 14:43:29.457788,964,594,54, +0,2017-03-11 14:43:29.457788,633,630,652, +17,2017-03-11 14:43:29.457788,406,847,314, +77,2017-03-11 14:43:29.457788,575,809,950, +93,2017-03-11 14:43:29.457788,779,176,278, +36,2017-03-11 14:43:29.457788,934,788,928, +67,2017-03-11 14:43:29.457788,619,192,105, +17,2017-03-11 14:43:29.457788,540,47,347, +50,2017-03-11 14:43:29.457788,641,401,506, +27,2017-03-11 14:43:29.457788,32,157,444, +44,2017-03-11 14:43:29.457788,4,758,205, +58,2017-03-11 14:43:29.457788,567,156,510, +35,2017-03-11 14:43:29.457788,332,788,707, +27,2017-03-11 14:43:29.457788,576,634,937, +19,2017-03-11 14:43:29.457788,826,41,365, +37,2017-03-11 14:43:29.457788,88,712,869, +73,2017-03-11 14:43:29.457788,114,375,2, +15,2017-03-11 14:43:29.457788,532,446,583, +54,2017-03-11 14:43:29.457788,205,789,116, +77,2017-03-11 14:43:29.457788,944,626,118, +28,2017-03-11 14:43:29.457788,414,824,541, +99,2017-03-11 14:43:29.457788,458,478,185, +28,2017-03-11 14:43:29.457788,519,550,650, +61,2017-03-11 14:43:29.457788,262,519,336, +38,2017-03-11 14:43:29.457788,894,338,521, +43,2017-03-11 14:43:29.457788,784,104,962, +99,2017-03-11 14:43:29.457788,892,78,761, +84,2017-03-11 14:43:29.457788,704,878,112, +12,2017-03-11 14:43:29.457788,702,654,107, +16,2017-03-11 14:43:29.457788,132,291,445, +65,2017-03-11 14:43:29.457788,841,95,259, +10,2017-03-11 14:43:29.457788,614,594,478, +51,2017-03-11 14:43:29.457788,932,999,935, +72,2017-03-11 14:43:29.457788,103,897,705, +100,2017-03-11 14:43:29.457788,975,466,832, +68,2017-03-11 14:43:29.457788,344,944,796, +5,2017-03-11 14:43:29.457788,598,903,207, +73,2017-03-11 14:43:29.457788,194,653,381, +4,2017-03-11 14:43:29.457788,748,640,138, +36,2017-03-11 14:43:29.457788,234,616,870, +17,2017-03-11 14:43:29.457788,615,805,883, +72,2017-03-11 14:43:29.457788,702,588,713, +68,2017-03-11 14:43:29.457788,54,544,355, +40,2017-03-11 14:43:29.457788,488,151,445, +9,2017-03-11 14:43:29.457788,54,652,816, +25,2017-03-11 14:43:29.457788,305,197,283, +5,2017-03-11 14:43:29.457788,837,421,414, +7,2017-03-11 14:43:29.457788,37,285,238, +65,2017-03-11 14:43:29.457788,90,121,370, +79,2017-03-11 14:43:29.457788,709,83,469, +76,2017-03-11 14:43:29.457788,628,824,160, +12,2017-03-11 14:43:29.457788,975,605,202, +3,2017-03-11 14:43:29.457788,257,18,276, +56,2017-03-11 14:43:29.457788,216,559,614, +5,2017-03-11 14:43:29.457788,980,28,125, +2,2017-03-11 14:43:29.457788,313,362,670, +40,2017-03-11 14:43:29.457788,483,41,195, +19,2017-03-11 14:43:29.457788,124,663,954, +75,2017-03-11 14:43:29.457788,487,114,867, +46,2017-03-11 14:43:29.457788,719,70,491, +98,2017-03-11 14:43:29.457788,88,767,537, +30,2017-03-11 14:43:29.457788,327,151,357, +31,2017-03-11 14:43:29.457788,179,481,325, +49,2017-03-11 14:43:29.457788,844,995,895, +33,2017-03-11 14:43:29.457788,36,89,519, +16,2017-03-11 14:43:29.457788,753,473,911, +24,2017-03-11 14:43:29.457788,587,779,702, +31,2017-03-11 14:43:29.457788,848,193,282, +94,2017-03-11 14:43:29.457788,960,819,240, +29,2017-03-11 14:43:29.457788,970,597,594, +15,2017-03-11 14:43:29.457788,78,919,641, +92,2017-03-11 14:43:29.457788,914,536,249, +95,2017-03-11 14:43:29.457788,625,768,110, +38,2017-03-11 14:43:29.457788,240,21,618, +83,2017-03-11 14:43:29.457788,800,320,133, +65,2017-03-11 14:43:29.457788,514,415,585, +47,2017-03-11 14:43:29.457788,234,825,761, +20,2017-03-11 14:43:29.457788,422,355,353, +50,2017-03-11 14:43:29.457788,274,994,423, +19,2017-03-11 14:43:29.457788,529,672,138, +15,2017-03-11 14:43:29.457788,440,249,533, +68,2017-03-11 14:43:29.457788,270,151,507, +7,2017-03-11 14:43:29.457788,471,640,719, +98,2017-03-11 14:43:29.457788,54,304,459, +29,2017-03-11 14:43:29.457788,129,220,491, +55,2017-03-11 14:43:29.457788,575,844,53, +85,2017-03-11 14:43:29.457788,838,476,37, +37,2017-03-11 14:43:29.457788,148,176,522, +59,2017-03-11 14:43:29.457788,424,54,267, +69,2017-03-11 14:43:29.457788,205,774,765, +68,2017-03-11 14:43:29.457788,414,484,661, +47,2017-03-11 14:43:29.457788,788,120,756, +92,2017-03-11 14:43:29.457788,340,247,469, +91,2017-03-11 14:43:29.457788,91,522,764, +93,2017-03-11 14:43:29.457788,997,801,296, +15,2017-03-11 14:43:29.457788,976,818,732, +40,2017-03-11 14:43:29.457788,872,1000,95, +8,2017-03-11 14:43:29.457788,774,859,753, +19,2017-03-11 14:43:29.457788,343,414,655, +13,2017-03-11 14:43:29.457788,533,411,48, +87,2017-03-11 14:43:29.457788,658,517,788, +75,2017-03-11 14:43:29.457788,39,551,678, +4,2017-03-11 14:43:29.457788,352,974,182, +33,2017-03-11 14:43:29.457788,792,914,729, +66,2017-03-11 14:43:29.457788,914,823,740, +69,2017-03-11 14:43:29.457788,683,493,875, +3,2017-03-11 14:43:29.457788,907,530,156, +44,2017-03-11 14:43:29.457788,942,204,314, +60,2017-03-11 14:43:29.457788,722,101,350, +76,2017-03-11 14:43:29.457788,653,28,797, +0,2017-03-11 14:43:29.457788,2,979,333, +79,2017-03-11 14:43:29.457788,893,62,458, +81,2017-03-11 14:43:29.457788,885,198,494, +57,2017-03-11 14:43:29.457788,691,369,593, +60,2017-03-11 14:43:29.457788,899,749,39, +84,2017-03-11 14:43:29.457788,953,352,441, +68,2017-03-11 14:43:29.457788,454,791,436, +11,2017-03-11 14:43:29.457788,819,233,111, +82,2017-03-11 14:43:29.457788,212,444,615, +10,2017-03-11 14:43:29.457788,506,73,911, +39,2017-03-11 14:43:29.457788,271,406,958, +96,2017-03-11 14:43:29.457788,775,551,560, +67,2017-03-11 14:43:29.457788,300,599,515, +25,2017-03-11 14:43:29.457788,951,956,928, +40,2017-03-11 14:43:29.457788,747,364,511, +57,2017-03-11 14:43:29.457788,597,622,386, +81,2017-03-11 14:43:29.457788,66,1,913, +57,2017-03-11 14:43:29.457788,74,825,962, +34,2017-03-11 14:43:29.457788,230,920,306, +1,2017-03-11 14:43:29.457788,471,866,680, +77,2017-03-11 14:43:29.457788,465,195,24, +42,2017-03-11 14:43:29.457788,151,952,820, +90,2017-03-11 14:43:29.457788,316,330,464, +91,2017-03-11 14:43:29.457788,952,850,722, +2,2017-03-11 14:43:29.457788,851,635,589, +93,2017-03-11 14:43:29.457788,459,552,270, +69,2017-03-11 14:43:29.457788,472,576,695, +94,2017-03-11 14:43:29.457788,442,375,713, +91,2017-03-11 14:43:29.457788,570,737,323, +72,2017-03-11 14:43:29.457788,690,143,619, +1,2017-03-11 14:43:29.457788,473,83,919, +43,2017-03-11 14:43:29.457788,933,641,443, +78,2017-03-11 14:43:29.457788,276,32,709, +74,2017-03-11 14:43:29.457788,584,979,425, +6,2017-03-11 14:43:29.457788,555,120,998, +100,2017-03-11 14:43:29.457788,495,711,904, +6,2017-03-11 14:43:29.457788,449,227,785, +14,2017-03-11 14:43:29.457788,370,404,144, +84,2017-03-11 14:43:29.457788,487,64,268, +42,2017-03-11 14:43:29.457788,705,711,203, +98,2017-03-11 14:43:29.457788,744,912,716, +33,2017-03-11 14:43:29.457788,891,141,383, +45,2017-03-11 14:43:29.457788,262,381,443, +76,2017-03-11 14:43:29.457788,92,348,820, +54,2017-03-11 14:43:29.457788,575,606,679, +95,2017-03-11 14:43:29.457788,10,823,789, +50,2017-03-11 14:43:29.457788,887,57,916, +59,2017-03-11 14:43:29.457788,768,120,573, +51,2017-03-11 14:43:29.457788,32,289,840, +92,2017-03-11 14:43:29.457788,430,223,369, +69,2017-03-11 14:43:29.457788,604,813,448, +70,2017-03-11 14:43:29.457788,160,269,237, +74,2017-03-11 14:43:29.457788,874,916,681, +88,2017-03-11 14:43:29.457788,740,469,381, +63,2017-03-11 14:43:29.457788,526,297,219, +29,2017-03-11 14:43:29.457788,416,791,807, +45,2017-03-11 14:43:29.457788,80,647,372, +51,2017-03-11 14:43:29.457788,869,741,202, +47,2017-03-11 14:43:29.457788,554,650,170, +71,2017-03-11 14:43:29.457788,919,407,449, +79,2017-03-11 14:43:29.457788,324,130,677, +6,2017-03-11 14:43:29.457788,599,57,690, +12,2017-03-11 14:43:29.457788,354,909,419, +77,2017-03-11 14:43:29.457788,700,226,219, +78,2017-03-11 14:43:29.457788,873,591,290, +74,2017-03-11 14:43:29.457788,332,492,215, +89,2017-03-11 14:43:29.457788,142,385,599, +6,2017-03-11 14:43:29.457788,793,48,854, +12,2017-03-11 14:43:29.457788,178,530,180, +78,2017-03-11 14:43:29.457788,588,870,902, +94,2017-03-11 14:43:29.457788,779,321,712, +48,2017-03-11 14:43:29.457788,547,931,259, +42,2017-03-11 14:43:29.457788,522,550,162, +85,2017-03-11 14:43:29.457788,42,377,739, +18,2017-03-11 14:43:29.457788,763,338,245, +56,2017-03-11 14:43:29.457788,386,99,672, +56,2017-03-11 14:43:29.457788,629,851,341, +22,2017-03-11 14:43:29.457788,722,242,159, +50,2017-03-11 14:43:29.457788,563,871,980, +11,2017-03-11 14:43:29.457788,803,239,530, +32,2017-03-11 14:43:29.457788,789,692,178, +83,2017-03-11 14:43:29.457788,69,917,15, +83,2017-03-11 14:43:29.457788,255,260,387, +64,2017-03-11 14:43:29.457788,359,59,205, +99,2017-03-11 14:43:29.457788,910,546,205, +63,2017-03-11 14:43:29.457788,789,364,132, +35,2017-03-11 14:43:29.457788,236,112,462, +4,2017-03-11 14:43:29.457788,351,993,363, +14,2017-03-11 14:43:29.457788,685,541,971, +75,2017-03-11 14:43:29.457788,458,985,586, +71,2017-03-11 14:43:29.457788,245,973,354, +60,2017-03-11 14:43:29.457788,31,560,591, +94,2017-03-11 14:43:29.457788,106,796,573, +89,2017-03-11 14:43:29.457788,160,705,247, +40,2017-03-11 14:43:29.457788,817,709,434, +17,2017-03-11 14:43:29.457788,702,797,308, +39,2017-03-11 14:43:29.457788,338,279,140, +80,2017-03-11 14:43:29.457788,264,726,509, +51,2017-03-11 14:43:29.457788,699,863,113, +73,2017-03-11 14:43:29.457788,423,704,672, +53,2017-03-11 14:43:29.457788,500,245,424, +66,2017-03-11 14:43:29.457788,950,670,57, +77,2017-03-11 14:43:29.457788,380,491,936, +8,2017-03-11 14:43:29.457788,288,244,468, +63,2017-03-11 14:43:29.457788,523,608,422, +79,2017-03-11 14:43:29.457788,334,931,296, +3,2017-03-11 14:43:29.457788,794,409,763, +22,2017-03-11 14:43:29.457788,113,435,746, +61,2017-03-11 14:43:29.457788,680,169,274, +63,2017-03-11 14:43:29.457788,840,331,397, +22,2017-03-11 14:43:29.457788,821,333,301, +11,2017-03-11 14:43:29.457788,577,769,735, +10,2017-03-11 14:43:29.457788,377,157,887, +71,2017-03-11 14:43:29.457788,88,184,743, +88,2017-03-11 14:43:29.457788,593,506,99, +71,2017-03-11 14:43:29.457788,941,845,319, +62,2017-03-11 14:43:29.457788,14,593,250, +85,2017-03-11 14:43:29.457788,924,647,73, +75,2017-03-11 14:43:29.457788,979,374,854, +56,2017-03-11 14:43:29.457788,142,589,656, +52,2017-03-11 14:43:29.457788,745,544,229, +83,2017-03-11 14:43:29.457788,728,973,715, +32,2017-03-11 14:43:29.457788,479,814,27, +42,2017-03-11 14:43:29.457788,658,346,41, +67,2017-03-11 14:43:29.457788,939,291,526, +86,2017-03-11 14:43:29.457788,938,599,608, +92,2017-03-11 14:43:29.457788,972,462,474, +11,2017-03-11 14:43:29.457788,51,130,633, +80,2017-03-11 14:43:29.457788,674,862,629, +40,2017-03-11 14:43:29.457788,835,344,722, +31,2017-03-11 14:43:29.457788,158,748,735, +82,2017-03-11 14:43:29.457788,94,775,488, +3,2017-03-11 14:43:29.457788,67,14,897, +0,2017-03-11 14:43:29.457788,613,505,922, +59,2017-03-11 14:43:29.457788,967,396,700, +2,2017-03-11 14:43:29.457788,526,333,815, +20,2017-03-11 14:43:29.457788,195,444,600, +3,2017-03-11 14:43:29.457788,788,322,344, +95,2017-03-11 14:43:29.457788,70,79,762, +16,2017-03-11 14:43:29.457788,854,250,198, +92,2017-03-11 14:43:29.457788,264,95,925, +88,2017-03-11 14:43:29.457788,600,847,462, +57,2017-03-11 14:43:29.457788,243,162,586, +77,2017-03-11 14:43:29.457788,495,401,968, +69,2017-03-11 14:43:29.457788,845,568,720, +63,2017-03-11 14:43:29.457788,890,64,578, +96,2017-03-11 14:43:29.457788,143,340,125, +100,2017-03-11 14:43:29.457788,589,323,918, +85,2017-03-11 14:43:29.457788,418,843,731, +2,2017-03-11 14:43:29.457788,690,193,585, +93,2017-03-11 14:43:29.457788,355,171,702, +85,2017-03-11 14:43:29.457788,572,669,539, +42,2017-03-11 14:43:29.457788,237,259,49, +13,2017-03-11 14:43:29.457788,323,627,87, +47,2017-03-11 14:43:29.457788,966,212,462, +56,2017-03-11 14:43:29.457788,534,380,409, +95,2017-03-11 14:43:29.457788,223,140,969, +91,2017-03-11 14:43:29.457788,333,555,847, +69,2017-03-11 14:43:29.457788,725,549,537, +30,2017-03-11 14:43:29.457788,218,76,713, +46,2017-03-11 14:43:29.457788,335,762,582, +66,2017-03-11 14:43:29.457788,388,670,122, +35,2017-03-11 14:43:29.457788,881,585,910, +42,2017-03-11 14:43:29.457788,965,319,368, +19,2017-03-11 14:43:29.457788,459,337,101, +79,2017-03-11 14:43:29.457788,892,948,479, +62,2017-03-11 14:43:29.457788,497,16,914, +71,2017-03-11 14:43:29.457788,92,627,170, +43,2017-03-11 14:43:29.457788,389,753,84, +78,2017-03-11 14:43:29.457788,422,207,132, +30,2017-03-11 14:43:29.457788,791,42,720, +76,2017-03-11 14:43:29.457788,361,87,943, +82,2017-03-11 14:43:29.457788,424,45,612, +32,2017-03-11 14:43:29.457788,993,92,933, +49,2017-03-11 14:43:29.457788,108,847,204, +20,2017-03-11 14:43:29.457788,475,374,627, +86,2017-03-11 14:43:29.457788,127,711,641, +55,2017-03-11 14:43:29.457788,918,773,853, +71,2017-03-11 14:43:29.457788,815,573,465, +18,2017-03-11 14:43:29.457788,660,408,997, +8,2017-03-11 14:43:29.457788,453,609,400, +45,2017-03-11 14:43:29.457788,701,334,935, +81,2017-03-11 14:43:29.457788,181,139,9, +66,2017-03-11 14:43:29.457788,513,636,520, +64,2017-03-11 14:43:29.457788,347,160,190, +27,2017-03-11 14:43:29.457788,933,43,974, +75,2017-03-11 14:43:29.457788,616,439,924, +28,2017-03-11 14:43:29.457788,847,920,360, +30,2017-03-11 14:43:29.457788,529,760,745, +23,2017-03-11 14:43:29.457788,94,680,39, +27,2017-03-11 14:43:29.457788,819,48,931, +33,2017-03-11 14:43:29.457788,684,450,972, +3,2017-03-11 14:43:29.457788,611,162,297, +54,2017-03-11 14:43:29.457788,206,271,292, +82,2017-03-11 14:43:29.457788,710,215,97, +56,2017-03-11 14:43:29.457788,136,457,856, +66,2017-03-11 14:43:29.457788,217,601,895, +31,2017-03-11 14:43:29.457788,281,934,586, +10,2017-03-11 14:43:29.457788,982,517,432, +67,2017-03-11 14:43:29.457788,967,404,697, +58,2017-03-11 14:43:29.457788,567,994,122, +77,2017-03-11 14:43:29.457788,265,414,593, +97,2017-03-11 14:43:29.457788,629,690,531, +76,2017-03-11 14:43:29.457788,147,388,429, +36,2017-03-11 14:43:29.457788,989,324,675, +27,2017-03-11 14:43:29.457788,258,261,370, +24,2017-03-11 14:43:29.457788,777,801,906, +74,2017-03-11 14:43:29.457788,206,603,323, +77,2017-03-11 14:43:29.457788,597,445,544, +86,2017-03-11 14:43:29.457788,858,137,837, +49,2017-03-11 14:43:29.457788,828,369,252, +97,2017-03-11 14:43:29.457788,757,681,338, +75,2017-03-11 14:43:29.457788,5,13,16, +26,2017-03-11 14:43:29.457788,274,386,503, +5,2017-03-11 14:43:29.457788,187,409,796, +39,2017-03-11 14:43:29.457788,12,118,165, +61,2017-03-11 14:43:29.457788,563,709,472, +42,2017-03-11 14:43:29.457788,847,309,909, +67,2017-03-11 14:43:29.457788,678,161,649, +43,2017-03-11 14:43:29.457788,842,987,180, +85,2017-03-11 14:43:29.457788,0,196,110, +27,2017-03-11 14:43:29.457788,582,613,325, +77,2017-03-11 14:43:29.457788,22,121,162, +3,2017-03-11 14:43:29.457788,239,327,644, +80,2017-03-11 14:43:29.457788,36,116,224, +88,2017-03-11 14:43:29.457788,425,133,557, +10,2017-03-11 14:43:29.457788,294,206,538, +14,2017-03-11 14:43:29.457788,193,718,982, +19,2017-03-11 14:43:29.457788,915,92,467, +50,2017-03-11 14:43:29.457788,705,792,266, +73,2017-03-11 14:43:29.457788,913,428,762, +15,2017-03-11 14:43:29.457788,755,405,955, +79,2017-03-11 14:43:29.457788,521,179,674, +95,2017-03-11 14:43:29.457788,312,231,50, +61,2017-03-11 14:43:29.457788,436,588,741, +63,2017-03-11 14:43:29.457788,307,723,822, +22,2017-03-11 14:43:29.457788,815,289,718, +52,2017-03-11 14:43:29.457788,82,984,248, +99,2017-03-11 14:43:29.457788,412,9,148, +17,2017-03-11 14:43:29.457788,415,103,959, +94,2017-03-11 14:43:29.457788,282,633,883, +59,2017-03-11 14:43:29.457788,864,933,200, +30,2017-03-11 14:43:29.457788,521,941,929, +83,2017-03-11 14:43:29.457788,664,751,49, +48,2017-03-11 14:43:29.457788,41,768,0, +12,2017-03-11 14:43:29.457788,752,248,117, +16,2017-03-11 14:43:29.457788,257,265,331, +67,2017-03-11 14:43:29.457788,367,290,609, +65,2017-03-11 14:43:29.457788,923,492,244, +79,2017-03-11 14:43:29.457788,425,445,86, +95,2017-03-11 14:43:29.457788,386,16,774, +5,2017-03-11 14:43:29.457788,767,824,530, +81,2017-03-11 14:43:29.457788,591,530,930, +34,2017-03-11 14:43:29.457788,778,47,507, +4,2017-03-11 14:43:29.457788,311,839,708, +68,2017-03-11 14:43:29.457788,129,317,328, +5,2017-03-11 14:43:29.457788,809,573,838, +23,2017-03-11 14:43:29.457788,17,924,180, +40,2017-03-11 14:43:29.457788,940,955,454, +71,2017-03-11 14:43:29.457788,779,984,515, +37,2017-03-11 14:43:29.457788,514,445,713, +29,2017-03-11 14:43:29.457788,491,220,328, +80,2017-03-11 14:43:29.457788,59,37,482, +19,2017-03-11 14:43:29.457788,353,810,239, +16,2017-03-11 14:43:29.457788,383,76,396, +40,2017-03-11 14:43:29.457788,1,576,803, +94,2017-03-11 14:43:29.457788,531,257,647, +31,2017-03-11 14:43:29.457788,241,162,680, +76,2017-03-11 14:43:29.457788,607,393,48, +10,2017-03-11 14:43:29.457788,613,376,901, +67,2017-03-11 14:43:29.457788,413,382,860, +77,2017-03-11 14:43:29.457788,192,99,928, +58,2017-03-11 14:43:29.457788,175,324,975, +18,2017-03-11 14:43:29.457788,901,778,116, +43,2017-03-11 14:43:29.457788,35,763,741, +28,2017-03-11 14:43:29.457788,925,421,32, +53,2017-03-11 14:43:29.457788,814,79,630, +43,2017-03-11 14:43:29.457788,455,531,99, +87,2017-03-11 14:43:29.457788,913,959,634, +11,2017-03-11 14:43:29.457788,58,562,680, +23,2017-03-11 14:43:29.457788,887,655,408, +79,2017-03-11 14:43:29.457788,434,524,219, +47,2017-03-11 14:43:29.457788,287,960,746, +21,2017-03-11 14:43:29.457788,381,777,744, +19,2017-03-11 14:43:29.457788,857,374,622, +31,2017-03-11 14:43:29.457788,904,722,180, +82,2017-03-11 14:43:29.457788,681,814,922, +74,2017-03-11 14:43:29.457788,377,602,971, +26,2017-03-11 14:43:29.457788,258,379,51, +69,2017-03-11 14:43:29.457788,903,270,160, +19,2017-03-11 14:43:29.457788,230,906,402, +61,2017-03-11 14:43:29.457788,683,147,806, +54,2017-03-11 14:43:29.457788,520,428,852, +42,2017-03-11 14:43:29.457788,150,32,242, +83,2017-03-11 14:43:29.457788,847,164,569, +22,2017-03-11 14:43:29.457788,767,540,487, +2,2017-03-11 14:43:29.457788,920,537,716, +82,2017-03-11 14:43:29.457788,807,876,13, +4,2017-03-11 14:43:29.457788,782,415,648, +47,2017-03-11 14:43:29.457788,562,455,5, +8,2017-03-11 14:43:29.457788,883,857,507, +3,2017-03-11 14:43:29.457788,889,749,864, +74,2017-03-11 14:43:29.457788,914,433,959, +68,2017-03-11 14:43:29.457788,973,445,705, +89,2017-03-11 14:43:29.457788,983,421,716, +79,2017-03-11 14:43:29.457788,297,729,827, +8,2017-03-11 14:43:29.457788,144,476,544, +71,2017-03-11 14:43:29.457788,930,549,789, +81,2017-03-11 14:43:29.457788,406,296,846, +29,2017-03-11 14:43:29.457788,45,710,31, +96,2017-03-11 14:43:29.457788,143,989,640, +12,2017-03-11 14:43:29.457788,435,345,9, +42,2017-03-11 14:43:29.457788,766,725,208, +6,2017-03-11 14:43:29.457788,454,35,142, +60,2017-03-11 14:43:29.457788,510,687,304, +44,2017-03-11 14:43:29.457788,236,93,254, +64,2017-03-11 14:43:29.457788,389,100,936, +43,2017-03-11 14:43:29.457788,810,967,393, +95,2017-03-11 14:43:29.457788,956,33,69, +39,2017-03-11 14:43:29.457788,379,78,809, +14,2017-03-11 14:43:29.457788,803,16,208, +26,2017-03-11 14:43:29.457788,51,351,854, +56,2017-03-11 14:43:29.457788,37,158,2, +27,2017-03-11 14:43:29.457788,251,255,914, +64,2017-03-11 14:43:29.457788,355,851,74, +16,2017-03-11 14:43:29.457788,818,467,117, +77,2017-03-11 14:43:29.457788,501,186,165, +88,2017-03-11 14:43:29.457788,264,973,24, +7,2017-03-11 14:43:29.457788,989,233,323, +4,2017-03-11 14:43:29.457788,583,177,601, +62,2017-03-11 14:43:29.457788,335,603,894, +59,2017-03-11 14:43:29.457788,859,808,226, +21,2017-03-11 14:43:29.457788,659,300,379, +48,2017-03-11 14:43:29.457788,768,496,251, +27,2017-03-11 14:43:29.457788,682,416,148, +95,2017-03-11 14:43:29.457788,389,172,12, +38,2017-03-11 14:43:29.457788,404,335,419, +99,2017-03-11 14:43:29.457788,511,20,609, +85,2017-03-11 14:43:29.457788,623,502,433, +48,2017-03-11 14:43:29.457788,310,660,696, +97,2017-03-11 14:43:29.457788,960,75,446, +73,2017-03-11 14:43:29.457788,571,696,996, +25,2017-03-11 14:43:29.457788,112,144,199, +50,2017-03-11 14:43:29.457788,316,211,879, +72,2017-03-11 14:43:29.457788,546,298,708, +6,2017-03-11 14:43:29.457788,318,316,904, +94,2017-03-11 14:43:29.457788,819,337,424, +13,2017-03-11 14:43:29.457788,997,120,98, +96,2017-03-11 14:43:29.457788,194,544,685, +77,2017-03-11 14:43:29.457788,241,681,19, +35,2017-03-11 14:43:29.457788,824,218,853, +14,2017-03-11 14:43:29.457788,429,733,860, +97,2017-03-11 14:43:29.457788,31,568,32, +35,2017-03-11 14:43:29.457788,884,935,291, +70,2017-03-11 14:43:29.457788,273,714,832, +27,2017-03-11 14:43:29.457788,834,930,226, +3,2017-03-11 14:43:29.457788,474,911,794, +72,2017-03-11 14:43:29.457788,592,813,68, +42,2017-03-11 14:43:29.457788,31,921,555, +46,2017-03-11 14:43:29.457788,654,415,434, +68,2017-03-11 14:43:29.457788,983,466,34, +87,2017-03-11 14:43:29.457788,401,324,569, +67,2017-03-11 14:43:29.457788,39,401,943, +87,2017-03-11 14:43:29.457788,332,170,901, +81,2017-03-11 14:43:29.457788,81,695,521, +67,2017-03-11 14:43:29.457788,507,588,88, +54,2017-03-11 14:43:29.457788,509,644,998, +16,2017-03-11 14:43:29.457788,59,432,848, +4,2017-03-11 14:43:29.457788,898,882,909, +30,2017-03-11 14:43:29.457788,206,478,973, +24,2017-03-11 14:43:29.457788,879,916,117, +21,2017-03-11 14:43:29.457788,86,18,17, +17,2017-03-11 14:43:29.457788,713,538,840, +22,2017-03-11 14:43:29.457788,126,928,758, +64,2017-03-11 14:43:29.457788,572,756,799, +63,2017-03-11 14:43:29.457788,188,647,673, +9,2017-03-11 14:43:29.457788,528,581,385, +73,2017-03-11 14:43:29.457788,59,358,979, +94,2017-03-11 14:43:29.457788,274,96,150, +36,2017-03-11 14:43:29.457788,114,166,528, +83,2017-03-11 14:43:29.457788,704,367,47, +83,2017-03-11 14:43:29.457788,295,805,466, +87,2017-03-11 14:43:29.457788,560,265,498, +75,2017-03-11 14:43:29.457788,912,171,834, +44,2017-03-11 14:43:29.457788,752,219,174, +81,2017-03-11 14:43:29.457788,577,153,750, +85,2017-03-11 14:43:29.457788,250,900,212, +36,2017-03-11 14:43:29.457788,67,740,191, +77,2017-03-11 14:43:29.457788,108,238,601, +40,2017-03-11 14:43:29.457788,43,67,270, +60,2017-03-11 14:43:29.457788,332,769,351, +24,2017-03-11 14:43:29.457788,940,186,684, +69,2017-03-11 14:43:29.457788,405,858,504, +98,2017-03-11 14:43:29.457788,11,254,834, +26,2017-03-11 14:43:29.457788,154,46,625, +22,2017-03-11 14:43:29.457788,787,816,991, +89,2017-03-11 14:43:29.457788,54,592,297, +10,2017-03-11 14:43:29.457788,660,568,699, +99,2017-03-11 14:43:29.457788,337,51,235, +28,2017-03-11 14:43:29.457788,236,919,968, +64,2017-03-11 14:43:29.457788,777,472,624, +79,2017-03-11 14:43:29.457788,726,458,49, +88,2017-03-11 14:43:29.457788,504,674,101, +29,2017-03-11 14:43:29.457788,490,92,185, +54,2017-03-11 14:43:29.457788,685,482,641, +34,2017-03-11 14:43:29.457788,50,340,336, +39,2017-03-11 14:43:29.457788,391,572,663, +63,2017-03-11 14:43:29.457788,491,632,269, +27,2017-03-11 14:43:29.457788,104,892,55, +83,2017-03-11 14:43:29.457788,350,104,710, +85,2017-03-11 14:43:29.457788,778,811,145, +27,2017-03-11 14:43:29.457788,904,330,812, +59,2017-03-11 14:43:29.457788,812,452,933, +86,2017-03-11 14:43:29.457788,792,270,249, +18,2017-03-11 14:43:29.457788,841,912,810, +33,2017-03-11 14:43:29.457788,543,79,599, +65,2017-03-11 14:43:29.457788,971,654,477, +32,2017-03-11 14:43:29.457788,758,188,175, +54,2017-03-11 14:43:29.457788,999,320,803, +90,2017-03-11 14:43:29.457788,649,615,492, +46,2017-03-11 14:43:29.457788,67,425,323, +86,2017-03-11 14:43:29.457788,695,572,42, +54,2017-03-11 14:43:29.457788,484,852,868, +3,2017-03-11 14:43:29.457788,931,467,675, +90,2017-03-11 14:43:29.457788,121,152,223, +88,2017-03-11 14:43:29.457788,339,399,415, +34,2017-03-11 14:43:29.457788,718,218,241, +37,2017-03-11 14:43:29.457788,833,733,829, +90,2017-03-11 14:43:29.457788,158,152,758, +85,2017-03-11 14:43:29.457788,724,800,389, +21,2017-03-11 14:43:29.457788,653,256,235, +58,2017-03-11 14:43:29.457788,723,910,486, +84,2017-03-11 14:43:29.457788,62,710,723, +40,2017-03-11 14:43:29.457788,108,138,740, +83,2017-03-11 14:43:29.457788,355,981,194, +19,2017-03-11 14:43:29.457788,715,23,87, +87,2017-03-11 14:43:29.457788,175,846,726, +90,2017-03-11 14:43:29.457788,646,114,108, +30,2017-03-11 14:43:29.457788,371,343,883, +9,2017-03-11 14:43:29.457788,253,369,938, +32,2017-03-11 14:43:29.457788,78,661,716, +19,2017-03-11 14:43:29.457788,799,456,13, +15,2017-03-11 14:43:29.457788,438,207,342, +15,2017-03-11 14:43:29.457788,230,430,25, +40,2017-03-11 14:43:29.457788,276,751,304, +92,2017-03-11 14:43:29.457788,865,412,221, +24,2017-03-11 14:43:29.457788,755,103,330, +1,2017-03-11 14:43:29.457788,472,269,323, +55,2017-03-11 14:43:29.457788,930,40,737, +73,2017-03-11 14:43:29.457788,496,749,884, +93,2017-03-11 14:43:29.457788,956,226,86, +19,2017-03-11 14:43:29.457788,656,111,591, +93,2017-03-11 14:43:29.457788,862,895,853, +73,2017-03-11 14:43:29.457788,307,74,964, +6,2017-03-11 14:43:29.457788,177,294,71, +65,2017-03-11 14:43:29.457788,562,394,199, +49,2017-03-11 14:43:29.457788,434,936,221, +93,2017-03-11 14:43:29.457788,685,105,864, +64,2017-03-11 14:43:29.457788,331,951,827, +99,2017-03-11 14:43:29.457788,62,418,918, +92,2017-03-11 14:43:29.457788,313,771,652, +62,2017-03-11 14:43:29.457788,845,616,682, +2,2017-03-11 14:43:29.457788,909,753,671, +47,2017-03-11 14:43:29.457788,148,870,964, +58,2017-03-11 14:43:29.457788,806,186,512, +49,2017-03-11 14:43:29.457788,291,377,132, +62,2017-03-11 14:43:29.457788,327,959,609, +39,2017-03-11 14:43:29.457788,377,527,314, +69,2017-03-11 14:43:29.457788,299,966,309, +14,2017-03-11 14:43:29.457788,582,992,166, +49,2017-03-11 14:43:29.457788,745,837,963, +89,2017-03-11 14:43:29.457788,707,927,474, +51,2017-03-11 14:43:29.457788,112,987,4, +40,2017-03-11 14:43:29.457788,363,136,25, +69,2017-03-11 14:43:29.457788,96,633,80, +47,2017-03-11 14:43:29.457788,160,395,162, +46,2017-03-11 14:43:29.457788,361,471,603, +94,2017-03-11 14:43:29.457788,463,768,433, +21,2017-03-11 14:43:29.457788,605,396,100, +31,2017-03-11 14:43:29.457788,322,575,825, +43,2017-03-11 14:43:29.457788,561,829,837, +92,2017-03-11 14:43:29.457788,965,862,616, +6,2017-03-11 14:43:29.457788,495,696,534, +66,2017-03-11 14:43:29.457788,91,695,115, +45,2017-03-11 14:43:29.457788,167,717,393, +63,2017-03-11 14:43:29.457788,486,826,837, +9,2017-03-11 14:43:29.457788,222,937,403, +54,2017-03-11 14:43:29.457788,512,228,979, +7,2017-03-11 14:43:29.457788,57,816,998, +2,2017-03-11 14:43:29.457788,678,614,84, +17,2017-03-11 14:43:29.457788,310,617,829, +40,2017-03-11 14:43:29.457788,313,943,852, +48,2017-03-11 14:43:29.457788,661,245,108, +15,2017-03-11 14:43:29.457788,71,945,238, +29,2017-03-11 14:43:29.457788,883,641,837, +39,2017-03-11 14:43:29.457788,869,816,468, +93,2017-03-11 14:43:29.457788,632,466,948, +31,2017-03-11 14:43:29.457788,80,32,483, +39,2017-03-11 14:43:29.457788,649,311,791, +96,2017-03-11 14:43:29.457788,254,642,440, +92,2017-03-11 14:43:29.457788,888,549,62, +96,2017-03-11 14:43:29.457788,494,299,252, +38,2017-03-11 14:43:29.457788,940,90,772, +81,2017-03-11 14:43:29.457788,906,240,734, +54,2017-03-11 14:43:29.457788,706,682,848, +79,2017-03-11 14:43:29.457788,714,331,176, +36,2017-03-11 14:43:29.457788,642,967,324, +90,2017-03-11 14:43:29.457788,609,764,811, +50,2017-03-11 14:43:29.457788,313,873,456, +81,2017-03-11 14:43:29.457788,173,708,184, +11,2017-03-11 14:43:29.457788,798,955,922, +70,2017-03-11 14:43:29.457788,195,656,241, +90,2017-03-11 14:43:29.457788,339,89,687, +5,2017-03-11 14:43:29.457788,420,863,415, +6,2017-03-11 14:43:29.457788,830,739,958, +44,2017-03-11 14:43:29.457788,503,769,937, +82,2017-03-11 14:43:29.457788,642,392,624, +82,2017-03-11 14:43:29.457788,100,807,928, +90,2017-03-11 14:43:29.457788,763,850,601, +96,2017-03-11 14:43:29.457788,506,843,859, +84,2017-03-11 14:43:29.457788,932,546,897, +35,2017-03-11 14:43:29.457788,409,312,413, +24,2017-03-11 14:43:29.457788,51,370,679, +55,2017-03-11 14:43:29.457788,140,616,371, +78,2017-03-11 14:43:29.457788,8,994,597, +11,2017-03-11 14:43:29.457788,802,525,7, +56,2017-03-11 14:43:29.457788,375,608,523, +88,2017-03-11 14:43:29.457788,450,382,725, +38,2017-03-11 14:43:29.457788,928,621,733, +34,2017-03-11 14:43:29.457788,934,146,577, +98,2017-03-11 14:43:29.457788,516,257,539, +66,2017-03-11 14:43:29.457788,872,910,438, +88,2017-03-11 14:43:29.457788,905,35,989, +71,2017-03-11 14:43:29.457788,560,996,271, +93,2017-03-11 14:43:29.457788,604,794,815, +5,2017-03-11 14:43:29.457788,176,540,436, +10,2017-03-11 14:43:29.457788,161,169,442, +9,2017-03-11 14:43:29.457788,315,19,79, +83,2017-03-11 14:43:29.457788,276,619,487, +15,2017-03-11 14:43:29.457788,529,925,29, +43,2017-03-11 14:43:29.457788,960,18,140, +52,2017-03-11 14:43:29.457788,14,411,455, +62,2017-03-11 14:43:29.457788,205,270,672, +38,2017-03-11 14:43:29.457788,810,108,486, +97,2017-03-11 14:43:29.457788,278,928,65, +59,2017-03-11 14:43:29.457788,947,144,424, +22,2017-03-11 14:43:29.457788,763,911,371, +29,2017-03-11 14:43:29.457788,836,400,725, +80,2017-03-11 14:43:29.457788,419,865,317, +43,2017-03-11 14:43:29.457788,276,772,51, +48,2017-03-11 14:43:29.457788,42,724,862, +85,2017-03-11 14:43:29.457788,832,348,822, +11,2017-03-11 14:43:29.457788,276,887,702, +22,2017-03-11 14:43:29.457788,32,126,446, +79,2017-03-11 14:43:29.457788,37,817,86, +87,2017-03-11 14:43:29.457788,218,811,670, +64,2017-03-11 14:43:29.457788,675,986,69, +95,2017-03-11 14:43:29.457788,758,121,432, +80,2017-03-11 14:43:29.457788,845,294,652, +68,2017-03-11 14:43:29.457788,643,474,787, +92,2017-03-11 14:43:29.457788,362,489,142, +39,2017-03-11 14:43:29.457788,615,588,187, +65,2017-03-11 14:43:29.457788,406,273,525, +62,2017-03-11 14:43:29.457788,84,195,259, +76,2017-03-11 14:43:29.457788,181,329,710, +94,2017-03-11 14:43:29.457788,449,142,740, +29,2017-03-11 14:43:29.457788,436,392,971, +8,2017-03-11 14:43:29.457788,866,757,997, +23,2017-03-11 14:43:29.457788,246,140,621, +86,2017-03-11 14:43:29.457788,728,808,513, +13,2017-03-11 14:43:29.457788,82,38,757, +17,2017-03-11 14:43:29.457788,233,17,925, +41,2017-03-11 14:43:29.457788,345,635,354, +79,2017-03-11 14:43:29.457788,776,94,89, +21,2017-03-11 14:43:29.457788,486,60,291, +35,2017-03-11 14:43:29.457788,817,288,580, +6,2017-03-11 14:43:29.457788,428,201,925, +16,2017-03-11 14:43:29.457788,10,438,290, +9,2017-03-11 14:43:29.457788,476,47,257, +71,2017-03-11 14:43:29.457788,63,182,124, +41,2017-03-11 14:43:29.457788,817,477,203, +59,2017-03-11 14:43:29.457788,571,292,806, +6,2017-03-11 14:43:29.457788,351,97,409, +17,2017-03-11 14:43:29.457788,385,989,232, +81,2017-03-11 14:43:29.457788,190,156,968, +20,2017-03-11 14:43:29.457788,594,257,291, +7,2017-03-11 14:43:29.457788,304,549,780, +37,2017-03-11 14:43:29.457788,731,904,776, +55,2017-03-11 14:43:29.457788,381,979,141, +95,2017-03-11 14:43:29.457788,271,947,9, +62,2017-03-11 14:43:29.457788,43,419,790, +43,2017-03-11 14:43:29.457788,408,22,240, +60,2017-03-11 14:43:29.457788,178,208,798, +77,2017-03-11 14:43:29.457788,466,89,843, +77,2017-03-11 14:43:29.457788,638,624,137, +37,2017-03-11 14:43:29.457788,528,913,916, +91,2017-03-11 14:43:29.457788,892,57,862, +16,2017-03-11 14:43:29.457788,4,871,784, +5,2017-03-11 14:43:29.457788,290,575,475, +70,2017-03-11 14:43:29.457788,597,716,296, +78,2017-03-11 14:43:29.457788,924,93,548, +39,2017-03-11 14:43:29.457788,182,391,160, +82,2017-03-11 14:43:29.457788,15,297,188, +54,2017-03-11 14:43:29.457788,210,104,452, +10,2017-03-11 14:43:29.457788,161,314,264, +17,2017-03-11 14:43:29.457788,186,48,212, +48,2017-03-11 14:43:29.457788,623,688,173, +22,2017-03-11 14:43:29.457788,403,469,995, +33,2017-03-11 14:43:29.457788,562,543,717, +74,2017-03-11 14:43:29.457788,934,877,564, +95,2017-03-11 14:43:29.457788,174,753,492, +38,2017-03-11 14:43:29.457788,857,945,485, +2,2017-03-11 14:43:29.457788,259,749,183, +44,2017-03-11 14:43:29.457788,796,395,920, +42,2017-03-11 14:43:29.457788,83,93,639, +49,2017-03-11 14:43:29.457788,562,634,814, +12,2017-03-11 14:43:29.457788,177,531,868, +11,2017-03-11 14:43:29.457788,409,432,61, +58,2017-03-11 14:43:29.457788,185,553,966, +4,2017-03-11 14:43:29.457788,498,451,59, +76,2017-03-11 14:43:29.457788,200,242,201, +100,2017-03-11 14:43:29.457788,637,121,415, +72,2017-03-11 14:43:29.457788,215,54,207, +78,2017-03-11 14:43:29.457788,688,21,900, +86,2017-03-11 14:43:29.457788,553,768,976, +96,2017-03-11 14:43:29.457788,200,37,544, +38,2017-03-11 14:43:29.457788,590,510,426, +9,2017-03-11 14:43:29.457788,961,485,845, +16,2017-03-11 14:43:29.457788,727,46,157, +36,2017-03-11 14:43:29.457788,168,573,85, +38,2017-03-11 14:43:29.457788,627,293,158, +31,2017-03-11 14:43:29.457788,314,58,180, +87,2017-03-11 14:43:29.457788,826,156,828, +3,2017-03-11 14:43:29.457788,193,372,410, +78,2017-03-11 14:43:29.457788,883,836,871, +84,2017-03-11 14:43:29.457788,321,716,5, +5,2017-03-11 14:43:29.457788,762,162,413, +93,2017-03-11 14:43:29.457788,735,499,311, +36,2017-03-11 14:43:29.457788,791,470,677, +11,2017-03-11 14:43:29.457788,528,857,972, +35,2017-03-11 14:43:29.457788,13,800,379, +21,2017-03-11 14:43:29.457788,173,790,989, +6,2017-03-11 14:43:29.457788,626,859,899, +95,2017-03-11 14:43:29.457788,575,905,996, +34,2017-03-11 14:43:29.457788,67,409,266, +80,2017-03-11 14:43:29.457788,908,577,164, +70,2017-03-11 14:43:29.457788,47,841,805, +57,2017-03-11 14:43:29.457788,698,777,928, +71,2017-03-11 14:43:29.457788,577,307,917, +75,2017-03-11 14:43:29.457788,96,905,805, +72,2017-03-11 14:43:29.457788,764,705,669, +34,2017-03-11 14:43:29.457788,609,665,676, +68,2017-03-11 14:43:29.457788,75,942,479, +98,2017-03-11 14:43:29.457788,519,643,682, +57,2017-03-11 14:43:29.457788,484,487,139, +18,2017-03-11 14:43:29.457788,263,67,893, +84,2017-03-11 14:43:29.457788,373,809,591, +47,2017-03-11 14:43:29.457788,715,396,192, +48,2017-03-11 14:43:29.457788,101,861,818, +71,2017-03-11 14:43:29.457788,527,494,387, +60,2017-03-11 14:43:29.457788,436,865,584, +95,2017-03-11 14:43:29.457788,508,267,519, +99,2017-03-11 14:43:29.457788,753,658,174, +2,2017-03-11 14:43:29.457788,725,67,858, +10,2017-03-11 14:43:29.457788,877,448,568, +59,2017-03-11 14:43:29.457788,844,760,70, +94,2017-03-11 14:43:29.457788,621,889,655, +15,2017-03-11 14:43:29.457788,383,42,750, +82,2017-03-11 14:43:29.457788,907,334,773, +42,2017-03-11 14:43:29.457788,601,292,408, +35,2017-03-11 14:43:29.457788,951,582,371, +68,2017-03-11 14:43:29.457788,649,229,774, +53,2017-03-11 14:43:29.457788,677,342,117, +52,2017-03-11 14:43:29.457788,102,188,466, +72,2017-03-11 14:43:29.457788,77,121,872, +46,2017-03-11 14:43:29.457788,163,621,278, +7,2017-03-11 14:43:29.457788,955,51,485, +56,2017-03-11 14:43:29.457788,344,892,910, +29,2017-03-11 14:43:29.457788,474,281,970, +12,2017-03-11 14:43:29.457788,510,744,649, +19,2017-03-11 14:43:29.457788,86,767,707, +19,2017-03-11 14:43:29.457788,954,173,912, +3,2017-03-11 14:43:29.457788,294,783,490, +46,2017-03-11 14:43:29.457788,405,769,526, +36,2017-03-11 14:43:29.457788,820,11,916, +16,2017-03-11 14:43:29.457788,903,826,458, +38,2017-03-11 14:43:29.457788,107,427,501, +62,2017-03-11 14:43:29.457788,171,151,803, +26,2017-03-11 14:43:29.457788,917,510,445, +87,2017-03-11 14:43:29.457788,684,357,902, +98,2017-03-11 14:43:29.457788,140,393,434, +54,2017-03-11 14:43:29.457788,161,960,905, +98,2017-03-11 14:43:29.457788,971,821,145, +87,2017-03-11 14:43:29.457788,647,603,252, +75,2017-03-11 14:43:29.457788,30,753,370, +20,2017-03-11 14:43:29.457788,904,174,458, +82,2017-03-11 14:43:29.457788,684,904,692, +37,2017-03-11 14:43:29.457788,261,595,345, +40,2017-03-11 14:43:29.457788,987,779,946, +15,2017-03-11 14:43:29.457788,740,851,130, +71,2017-03-11 14:43:29.457788,671,275,585, +32,2017-03-11 14:43:29.457788,878,838,72, +91,2017-03-11 14:43:29.457788,591,442,110, +50,2017-03-11 14:43:29.457788,616,568,316, +30,2017-03-11 14:43:29.457788,472,9,667, +73,2017-03-11 14:43:29.457788,603,13,133, +59,2017-03-11 14:43:29.457788,792,79,739, +53,2017-03-11 14:43:29.457788,930,869,243, +60,2017-03-11 14:43:29.457788,145,828,919, +2,2017-03-11 14:43:29.457788,666,990,932, +26,2017-03-11 14:43:29.457788,433,42,752, +5,2017-03-11 14:43:29.457788,610,68,348, +8,2017-03-11 14:43:29.457788,77,15,815, +68,2017-03-11 14:43:29.457788,28,948,271, +82,2017-03-11 14:43:29.457788,27,10,353, +96,2017-03-11 14:43:29.457788,879,595,558, +2,2017-03-11 14:43:29.457788,424,477,47, +9,2017-03-11 14:43:29.457788,467,979,347, +90,2017-03-11 14:43:29.457788,21,99,948, +63,2017-03-11 14:43:29.457788,168,296,713, +24,2017-03-11 14:43:29.457788,312,528,925, +34,2017-03-11 14:43:29.457788,476,196,160, +50,2017-03-11 14:43:29.457788,205,513,461, +8,2017-03-11 14:43:29.457788,108,19,109, +53,2017-03-11 14:43:29.457788,496,156,622, +96,2017-03-11 14:43:29.457788,135,969,863, +16,2017-03-11 14:43:29.457788,69,811,786, +24,2017-03-11 14:43:29.457788,107,500,482, +42,2017-03-11 14:43:29.457788,28,407,758, +50,2017-03-11 14:43:29.457788,603,919,8, +81,2017-03-11 14:43:29.457788,432,469,893, +54,2017-03-11 14:43:29.457788,488,1,72, +98,2017-03-11 14:43:29.457788,157,695,947, +29,2017-03-11 14:43:29.457788,664,810,447, +73,2017-03-11 14:43:29.457788,621,233,969, +73,2017-03-11 14:43:29.457788,733,451,147, +76,2017-03-11 14:43:29.457788,858,905,265, +46,2017-03-11 14:43:29.457788,824,272,268, +26,2017-03-11 14:43:29.457788,741,161,796, +23,2017-03-11 14:43:29.457788,162,868,213, +32,2017-03-11 14:43:29.457788,563,161,610, +23,2017-03-11 14:43:29.457788,971,57,959, +59,2017-03-11 14:43:29.457788,290,928,320, +2,2017-03-11 14:43:29.457788,379,466,784, +24,2017-03-11 14:43:29.457788,371,48,697, +19,2017-03-11 14:43:29.457788,321,965,450, +6,2017-03-11 14:43:29.457788,126,245,292, +29,2017-03-11 14:43:29.457788,114,505,606, +68,2017-03-11 14:43:29.457788,666,217,903, +64,2017-03-11 14:43:29.457788,274,862,228, +56,2017-03-11 14:43:29.457788,790,547,587, +17,2017-03-11 14:43:29.457788,13,371,406, +38,2017-03-11 14:43:29.457788,419,103,579, +74,2017-03-11 14:43:29.457788,68,29,802, +19,2017-03-11 14:43:29.457788,274,93,482, +39,2017-03-11 14:43:29.457788,598,88,64, +26,2017-03-11 14:43:29.457788,304,967,900, +58,2017-03-11 14:43:29.457788,828,128,142, +62,2017-03-11 14:43:29.457788,675,729,788, +69,2017-03-11 14:43:29.457788,100,194,73, +52,2017-03-11 14:43:29.457788,297,652,259, +36,2017-03-11 14:43:29.457788,681,60,559, +96,2017-03-11 14:43:29.457788,154,40,343, +75,2017-03-11 14:43:29.457788,128,407,16, +43,2017-03-11 14:43:29.457788,374,917,11, +20,2017-03-11 14:43:29.457788,44,153,821, +72,2017-03-11 14:43:29.457788,882,609,409, +98,2017-03-11 14:43:29.457788,802,482,501, +10,2017-03-11 14:43:29.457788,134,760,463, +81,2017-03-11 14:43:29.457788,820,22,770, +97,2017-03-11 14:43:29.457788,62,113,726, +19,2017-03-11 14:43:29.457788,521,743,623, +89,2017-03-11 14:43:29.457788,659,633,97, +70,2017-03-11 14:43:29.457788,786,918,423, +67,2017-03-11 14:43:29.457788,527,832,650, +33,2017-03-11 14:43:29.457788,314,151,427, +45,2017-03-11 14:43:29.457788,911,891,262, +73,2017-03-11 14:43:29.457788,912,32,705, +97,2017-03-11 14:43:29.457788,146,432,165, +67,2017-03-11 14:43:29.457788,174,787,561, +83,2017-03-11 14:43:29.457788,421,658,537, +21,2017-03-11 14:43:29.457788,576,961,875, +10,2017-03-11 14:43:29.457788,792,525,431, +11,2017-03-11 14:43:29.457788,676,859,554, +59,2017-03-11 14:43:29.457788,749,816,318, +66,2017-03-11 14:43:29.457788,848,23,636, +99,2017-03-11 14:43:29.457788,455,801,661, +63,2017-03-11 14:43:29.457788,588,222,463, +1,2017-03-11 14:43:29.457788,880,0,215, +46,2017-03-11 14:43:29.457788,961,89,559, +75,2017-03-11 14:43:29.457788,614,990,859, +29,2017-03-11 14:43:29.457788,849,413,877, +60,2017-03-11 14:43:29.457788,229,195,260, +8,2017-03-11 14:43:29.457788,218,896,71, +67,2017-03-11 14:43:29.457788,697,732,303, +28,2017-03-11 14:43:29.457788,953,766,293, +83,2017-03-11 14:43:29.457788,766,508,289, +73,2017-03-11 14:43:29.457788,597,848,480, +21,2017-03-11 14:43:29.457788,838,339,501, +69,2017-03-11 14:43:29.457788,752,378,285, +98,2017-03-11 14:43:29.457788,573,545,57, +79,2017-03-11 14:43:29.457788,441,128,465, +14,2017-03-11 14:43:29.457788,860,768,423, +81,2017-03-11 14:43:29.457788,534,715,646, +30,2017-03-11 14:43:29.457788,223,936,27, +82,2017-03-11 14:43:29.457788,784,507,32, +62,2017-03-11 14:43:29.457788,846,533,309, +60,2017-03-11 14:43:29.457788,911,594,578, +48,2017-03-11 14:43:29.457788,140,635,276, +58,2017-03-11 14:43:29.457788,764,742,719, +62,2017-03-11 14:43:29.457788,510,142,437, +4,2017-03-11 14:43:29.457788,857,84,345, +8,2017-03-11 14:43:29.457788,19,372,901, +80,2017-03-11 14:43:29.457788,879,933,425, +72,2017-03-11 14:43:29.457788,466,733,322, +38,2017-03-11 14:43:29.457788,328,900,862, +47,2017-03-11 14:43:29.457788,536,138,48, +30,2017-03-11 14:43:29.457788,880,768,923, +39,2017-03-11 14:43:29.457788,909,361,434, +77,2017-03-11 14:43:29.457788,444,778,847, +46,2017-03-11 14:43:29.457788,150,748,266, +3,2017-03-11 14:43:29.457788,681,691,754, +15,2017-03-11 14:43:29.457788,425,76,524, +75,2017-03-11 14:43:29.457788,976,386,220, +51,2017-03-11 14:43:29.457788,524,268,811, +40,2017-03-11 14:43:29.457788,36,734,793, +94,2017-03-11 14:43:29.457788,95,227,711, +54,2017-03-11 14:43:29.457788,5,558,3, +16,2017-03-11 14:43:29.457788,306,269,184, +99,2017-03-11 14:43:29.457788,961,938,133, +39,2017-03-11 14:43:29.457788,14,657,137, +99,2017-03-11 14:43:29.457788,43,357,502, +57,2017-03-11 14:43:29.457788,625,313,970, +66,2017-03-11 14:43:29.457788,47,763,606, +14,2017-03-11 14:43:29.457788,989,318,682, +99,2017-03-11 14:43:29.457788,876,685,150, +18,2017-03-11 14:43:29.457788,954,334,169, +91,2017-03-11 14:43:29.457788,272,302,300, +29,2017-03-11 14:43:29.457788,959,437,275, +0,2017-03-11 14:43:29.457788,794,777,568, +42,2017-03-11 14:43:29.457788,89,538,81, +14,2017-03-11 14:43:29.457788,301,687,279, +29,2017-03-11 14:43:29.457788,5,960,285, +88,2017-03-11 14:43:29.457788,645,434,62, +60,2017-03-11 14:43:29.457788,768,231,513, +4,2017-03-11 14:43:29.457788,533,813,326, +49,2017-03-11 14:43:29.457788,250,601,493, +4,2017-03-11 14:43:29.457788,378,61,464, +47,2017-03-11 14:43:29.457788,599,545,604, +90,2017-03-11 14:43:29.457788,232,882,189, +24,2017-03-11 14:43:29.457788,843,474,117, +49,2017-03-11 14:43:29.457788,908,179,87, +68,2017-03-11 14:43:29.457788,410,600,717, +94,2017-03-11 14:43:29.457788,413,42,435, +66,2017-03-11 14:43:29.457788,643,928,708, +2,2017-03-11 14:43:29.457788,989,172,488, +59,2017-03-11 14:43:29.457788,717,91,488, +95,2017-03-11 14:43:29.457788,974,677,185, +82,2017-03-11 14:43:29.457788,151,302,304, +6,2017-03-11 14:43:29.457788,481,391,736, +89,2017-03-11 14:43:29.457788,991,453,835, +40,2017-03-11 14:43:29.457788,495,270,67, +14,2017-03-11 14:43:29.457788,198,775,159, +19,2017-03-11 14:43:29.457788,947,647,775, +66,2017-03-11 14:43:29.457788,738,263,612, +71,2017-03-11 14:43:29.457788,940,797,528, +9,2017-03-11 14:43:29.457788,99,832,150, +58,2017-03-11 14:43:29.457788,223,886,472, +21,2017-03-11 14:43:29.457788,338,307,617, +83,2017-03-11 14:43:29.457788,576,684,972, +77,2017-03-11 14:43:29.457788,459,131,961, +41,2017-03-11 14:43:29.457788,777,736,69, +52,2017-03-11 14:43:29.457788,998,681,227, +94,2017-03-11 14:43:29.457788,478,755,28, +58,2017-03-11 14:43:29.457788,587,178,158, +81,2017-03-11 14:43:29.457788,64,630,24, +40,2017-03-11 14:43:29.457788,937,641,236, +51,2017-03-11 14:43:29.457788,326,208,287, +78,2017-03-11 14:43:29.457788,338,248,190, +12,2017-03-11 14:43:29.457788,984,259,631, +98,2017-03-11 14:43:29.457788,940,857,920, +42,2017-03-11 14:43:29.457788,613,949,996, +20,2017-03-11 14:43:29.457788,127,154,10, +19,2017-03-11 14:43:29.457788,784,34,593, +72,2017-03-11 14:43:29.457788,675,829,234, +0,2017-03-11 14:43:29.457788,36,522,786, +37,2017-03-11 14:43:29.457788,770,976,490, +75,2017-03-11 14:43:29.457788,235,121,736, +18,2017-03-11 14:43:29.457788,978,656,594, +59,2017-03-11 14:43:29.457788,605,590,790, +73,2017-03-11 14:43:29.457788,744,801,922, +53,2017-03-11 14:43:29.457788,835,515,250, +51,2017-03-11 14:43:29.457788,344,484,511, +38,2017-03-11 14:43:29.457788,6,296,755, +78,2017-03-11 14:43:29.457788,272,245,529, +51,2017-03-11 14:43:29.457788,366,265,683, +34,2017-03-11 14:43:29.457788,921,277,935, +53,2017-03-11 14:43:29.457788,867,725,257, +61,2017-03-11 14:43:29.457788,526,179,140, +36,2017-03-11 14:43:29.457788,695,389,870, +4,2017-03-11 14:43:29.457788,874,381,420, +88,2017-03-11 14:43:29.457788,677,175,655, +95,2017-03-11 14:43:29.457788,421,184,457, +79,2017-03-11 14:43:29.457788,448,140,131, +37,2017-03-11 14:43:29.457788,417,65,894, +28,2017-03-11 14:43:29.457788,790,152,895, +32,2017-03-11 14:43:29.457788,331,34,676, +3,2017-03-11 14:43:29.457788,424,546,65, +30,2017-03-11 14:43:29.457788,926,485,177, +60,2017-03-11 14:43:29.457788,661,832,553, +8,2017-03-11 14:43:29.457788,15,10,868, +46,2017-03-11 14:43:29.457788,150,998,833, +57,2017-03-11 14:43:29.457788,63,727,851, +85,2017-03-11 14:43:29.457788,879,746,169, +21,2017-03-11 14:43:29.457788,780,845,236, +20,2017-03-11 14:43:29.457788,391,301,501, +32,2017-03-11 14:43:29.457788,786,678,921, +45,2017-03-11 14:43:29.457788,510,474,528, +52,2017-03-11 14:43:29.457788,484,395,988, +63,2017-03-11 14:43:29.457788,394,821,202, +46,2017-03-11 14:43:29.457788,548,52,310, +43,2017-03-11 14:43:29.457788,798,479,636, +58,2017-03-11 14:43:29.457788,325,872,782, +72,2017-03-11 14:43:29.457788,173,283,33, +96,2017-03-11 14:43:29.457788,961,954,405, +47,2017-03-11 14:43:29.457788,428,933,996, +91,2017-03-11 14:43:29.457788,328,984,547, +72,2017-03-11 14:43:29.457788,805,748,178, +35,2017-03-11 14:43:29.457788,800,489,780, +60,2017-03-11 14:43:29.457788,968,416,176, +29,2017-03-11 14:43:29.457788,288,958,8, +46,2017-03-11 14:43:29.457788,241,41,419, +20,2017-03-11 14:43:29.457788,994,825,673, +42,2017-03-11 14:43:29.457788,757,669,334, +9,2017-03-11 14:43:29.457788,653,880,807, +46,2017-03-11 14:43:29.457788,629,985,811, +43,2017-03-11 14:43:29.457788,474,591,27, +44,2017-03-11 14:43:29.457788,8,204,735, +30,2017-03-11 14:43:29.457788,162,743,757, +40,2017-03-11 14:43:29.457788,784,176,605, +78,2017-03-11 14:43:29.457788,1,279,200, +76,2017-03-11 14:43:29.457788,947,534,843, +60,2017-03-11 14:43:29.457788,414,650,58, +4,2017-03-11 14:43:29.457788,636,869,472, +11,2017-03-11 14:43:29.457788,460,499,552, +47,2017-03-11 14:43:29.457788,703,287,763, +87,2017-03-11 14:43:29.457788,30,520,268, +81,2017-03-11 14:43:29.457788,696,874,591, +70,2017-03-11 14:43:29.457788,152,791,455, +10,2017-03-11 14:43:29.457788,325,298,699, +74,2017-03-11 14:43:29.457788,949,757,782, +58,2017-03-11 14:43:29.457788,626,254,694, +9,2017-03-11 14:43:29.457788,753,245,553, +46,2017-03-11 14:43:29.457788,532,316,321, +56,2017-03-11 14:43:29.457788,836,590,375, +53,2017-03-11 14:43:29.457788,463,966,229, +62,2017-03-11 14:43:29.457788,757,684,715, +8,2017-03-11 14:43:29.457788,982,414,820, +93,2017-03-11 14:43:29.457788,171,602,515, +80,2017-03-11 14:43:29.457788,856,208,882, +61,2017-03-11 14:43:29.457788,454,435,65, +99,2017-03-11 14:43:29.457788,751,386,547, +59,2017-03-11 14:43:29.457788,976,922,119, +44,2017-03-11 14:43:29.457788,888,348,55, +64,2017-03-11 14:43:29.457788,32,770,726, +1,2017-03-11 14:43:29.457788,184,546,945, +36,2017-03-11 14:43:29.457788,148,460,152, +0,2017-03-11 14:43:29.457788,668,35,612, +12,2017-03-11 14:43:29.457788,470,677,108, +22,2017-03-11 14:43:29.457788,63,655,808, +4,2017-03-11 14:43:29.457788,577,926,478, +46,2017-03-11 14:43:29.457788,274,533,109, +31,2017-03-11 14:43:29.457788,303,835,320, +49,2017-03-11 14:43:29.457788,381,265,842, +53,2017-03-11 14:43:29.457788,725,995,533, +39,2017-03-11 14:43:29.457788,30,145,516, +50,2017-03-11 14:43:29.457788,822,624,720, +89,2017-03-11 14:43:29.457788,279,528,924, +86,2017-03-11 14:43:29.457788,454,402,320, +73,2017-03-11 14:43:29.457788,935,429,35, +24,2017-03-11 14:43:29.457788,264,355,725, +65,2017-03-11 14:43:29.457788,620,568,174, +35,2017-03-11 14:43:29.457788,563,707,739, +59,2017-03-11 14:43:29.457788,852,255,91, +67,2017-03-11 14:43:29.457788,879,812,560, +16,2017-03-11 14:43:29.457788,339,484,13, +79,2017-03-11 14:43:29.457788,886,332,522, +82,2017-03-11 14:43:29.457788,761,557,60, +3,2017-03-11 14:43:29.457788,912,785,670, +53,2017-03-11 14:43:29.457788,353,845,877, +92,2017-03-11 14:43:29.457788,552,616,508, +40,2017-03-11 14:43:29.457788,871,599,79, +75,2017-03-11 14:43:29.457788,411,638,907, +75,2017-03-11 14:43:29.457788,122,919,544, +1,2017-03-11 14:43:29.457788,252,66,830, +1,2017-03-11 14:43:29.457788,622,891,39, +53,2017-03-11 14:43:29.457788,676,709,66, +3,2017-03-11 14:43:29.457788,554,943,945, +11,2017-03-11 14:43:29.457788,559,453,510, +43,2017-03-11 14:43:29.457788,53,589,180, +46,2017-03-11 14:43:29.457788,227,87,214, +35,2017-03-11 14:43:29.457788,6,758,358, +26,2017-03-11 14:43:29.457788,824,188,272, +45,2017-03-11 14:43:29.457788,79,310,980, +76,2017-03-11 14:43:29.457788,20,45,785, +57,2017-03-11 14:43:29.457788,988,730,680, +55,2017-03-11 14:43:29.457788,183,190,977, +24,2017-03-11 14:43:29.457788,779,157,700, +1,2017-03-11 14:43:29.457788,244,914,355, +25,2017-03-11 14:43:29.457788,672,713,509, +50,2017-03-11 14:43:29.457788,902,780,941, +98,2017-03-11 14:43:29.457788,91,921,736, +11,2017-03-11 14:43:29.457788,966,520,685, +95,2017-03-11 14:43:29.457788,250,364,502, +43,2017-03-11 14:43:29.457788,555,479,670, +33,2017-03-11 14:43:29.457788,636,369,340, +88,2017-03-11 14:43:29.457788,283,695,131, +95,2017-03-11 14:43:29.457788,408,640,450, +31,2017-03-11 14:43:29.457788,420,391,290, +51,2017-03-11 14:43:29.457788,312,26,622, +28,2017-03-11 14:43:29.457788,547,307,233, +80,2017-03-11 14:43:29.457788,671,734,231, +23,2017-03-11 14:43:29.457788,214,900,559, +85,2017-03-11 14:43:29.457788,269,899,731, +55,2017-03-11 14:43:29.457788,594,862,507, +0,2017-03-11 14:43:29.457788,502,957,312, +92,2017-03-11 14:43:29.457788,348,602,433, +66,2017-03-11 14:43:29.457788,628,55,938, +18,2017-03-11 14:43:29.457788,362,170,972, +3,2017-03-11 14:43:29.457788,905,203,259, +12,2017-03-11 14:43:29.457788,103,818,968, +37,2017-03-11 14:43:29.457788,717,699,925, +31,2017-03-11 14:43:29.457788,561,432,313, +6,2017-03-11 14:43:29.457788,389,625,984, +74,2017-03-11 14:43:29.457788,228,418,396, +86,2017-03-11 14:43:29.457788,473,334,31, +84,2017-03-11 14:43:29.457788,504,3,869, +41,2017-03-11 14:43:29.457788,206,128,528, +31,2017-03-11 14:43:29.457788,946,496,680, +66,2017-03-11 14:43:29.457788,195,605,974, +76,2017-03-11 14:43:29.457788,37,287,818, +43,2017-03-11 14:43:29.457788,913,802,162, +14,2017-03-11 14:43:29.457788,220,559,996, +69,2017-03-11 14:43:29.457788,893,27,529, +40,2017-03-11 14:43:29.457788,30,398,806, +24,2017-03-11 14:43:29.457788,526,334,544, +47,2017-03-11 14:43:29.457788,830,224,134, +3,2017-03-11 14:43:29.457788,829,108,781, +87,2017-03-11 14:43:29.457788,396,599,292, +31,2017-03-11 14:43:29.457788,401,454,449, +62,2017-03-11 14:43:29.457788,13,445,315, +91,2017-03-11 14:43:29.457788,472,845,303, +50,2017-03-11 14:43:29.457788,243,109,738, +77,2017-03-11 14:43:29.457788,443,282,240, +27,2017-03-11 14:43:29.457788,506,374,299, +34,2017-03-11 14:43:29.457788,482,79,201, +88,2017-03-11 14:43:29.457788,678,493,187, +8,2017-03-11 14:43:29.457788,947,635,701, +96,2017-03-11 14:43:29.457788,80,17,865, +55,2017-03-11 14:43:29.457788,861,168,55, +10,2017-03-11 14:43:29.457788,277,793,872, +72,2017-03-11 14:43:29.457788,75,112,994, +58,2017-03-11 14:43:29.457788,485,292,916, +97,2017-03-11 14:43:29.457788,372,118,846, +5,2017-03-11 14:43:29.457788,611,32,129, +56,2017-03-11 14:43:29.457788,668,830,518, +75,2017-03-11 14:43:29.457788,847,383,300, +71,2017-03-11 14:43:29.457788,551,355,812, +83,2017-03-11 14:43:29.457788,148,684,549, +22,2017-03-11 14:43:29.457788,796,542,805, +28,2017-03-11 14:43:29.457788,834,721,249, +21,2017-03-11 14:43:29.457788,839,94,256, +45,2017-03-11 14:43:29.457788,127,385,8, +79,2017-03-11 14:43:29.457788,216,526,542, +6,2017-03-11 14:43:29.457788,909,842,771, +46,2017-03-11 14:43:29.457788,198,583,289, +35,2017-03-11 14:43:29.457788,267,838,570, +6,2017-03-11 14:43:29.457788,380,374,344, +21,2017-03-11 14:43:29.457788,95,593,420, +93,2017-03-11 14:43:29.457788,687,676,384, +81,2017-03-11 14:43:29.457788,61,392,608, +28,2017-03-11 14:43:29.457788,917,150,339, +83,2017-03-11 14:43:29.457788,993,110,287, +19,2017-03-11 14:43:29.457788,693,575,537, +96,2017-03-11 14:43:29.457788,413,106,23, +79,2017-03-11 14:43:29.457788,481,367,7, +58,2017-03-11 14:43:29.457788,960,427,511, +65,2017-03-11 14:43:29.457788,103,895,461, +16,2017-03-11 14:43:29.457788,286,69,441, +20,2017-03-11 14:43:29.457788,220,781,29, +21,2017-03-11 14:43:29.457788,891,316,403, +58,2017-03-11 14:43:29.457788,891,939,545, +30,2017-03-11 14:43:29.457788,46,568,97, +53,2017-03-11 14:43:29.457788,935,104,103, +90,2017-03-11 14:43:29.457788,532,614,543, +64,2017-03-11 14:43:29.457788,508,4,800, +79,2017-03-11 14:43:29.457788,74,241,997, +29,2017-03-11 14:43:29.457788,22,27,505, +91,2017-03-11 14:43:29.457788,343,908,497, +23,2017-03-11 14:43:29.457788,848,42,538, +89,2017-03-11 14:43:29.457788,610,636,420, +54,2017-03-11 14:43:29.457788,740,524,440, +27,2017-03-11 14:43:29.457788,137,983,907, +65,2017-03-11 14:43:29.457788,987,707,440, +6,2017-03-11 14:43:29.457788,948,437,354, +97,2017-03-11 14:43:29.457788,464,859,883, +81,2017-03-11 14:43:29.457788,767,381,40, +62,2017-03-11 14:43:29.457788,422,579,509, +3,2017-03-11 14:43:29.457788,215,929,577, +95,2017-03-11 14:43:29.457788,453,16,227, +59,2017-03-11 14:43:29.457788,999,134,235, +99,2017-03-11 14:43:29.457788,841,675,46, +79,2017-03-11 14:43:29.457788,112,400,759, +58,2017-03-11 14:43:29.457788,259,643,382, +3,2017-03-11 14:43:29.457788,23,423,641, +45,2017-03-11 14:43:29.457788,2,150,478, +22,2017-03-11 14:43:29.457788,79,54,171, +53,2017-03-11 14:43:29.457788,71,398,122, +7,2017-03-11 14:43:29.457788,532,357,55, +37,2017-03-11 14:43:29.457788,32,102,163, +14,2017-03-11 14:43:29.457788,501,922,720, +76,2017-03-11 14:43:29.457788,565,102,786, +59,2017-03-11 14:43:29.457788,525,427,34, +53,2017-03-11 14:43:29.457788,577,511,743, +66,2017-03-11 14:43:29.457788,566,914,188, +64,2017-03-11 14:43:29.457788,312,309,706, +84,2017-03-11 14:43:29.457788,666,762,218, +70,2017-03-11 14:43:29.457788,863,380,842, +36,2017-03-11 14:43:29.457788,303,562,124, +87,2017-03-11 14:43:29.457788,664,910,456, +19,2017-03-11 14:43:29.457788,337,489,715, +91,2017-03-11 14:43:29.457788,1,458,570, +57,2017-03-11 14:43:29.457788,372,758,203, +68,2017-03-11 14:43:29.457788,67,909,528, +73,2017-03-11 14:43:29.457788,671,745,432, +53,2017-03-11 14:43:29.457788,126,274,898, +43,2017-03-11 14:43:29.457788,836,23,296, +50,2017-03-11 14:43:29.457788,933,752,689, +27,2017-03-11 14:43:29.457788,241,404,185, +24,2017-03-11 14:43:29.457788,862,755,809, +23,2017-03-11 14:43:29.457788,513,11,917, +58,2017-03-11 14:43:29.457788,921,445,313, +59,2017-03-11 14:43:29.457788,190,745,125, +32,2017-03-11 14:43:29.457788,19,24,744, +86,2017-03-11 14:43:29.457788,46,40,356, +98,2017-03-11 14:43:29.457788,792,45,250, +3,2017-03-11 14:43:29.457788,450,435,275, +31,2017-03-11 14:43:29.457788,190,84,546, +70,2017-03-11 14:43:29.457788,95,463,283, +2,2017-03-11 14:43:29.457788,908,597,607, +10,2017-03-11 14:43:29.457788,342,732,413, +36,2017-03-11 14:43:29.457788,756,157,217, +80,2017-03-11 14:43:29.457788,198,572,781, +99,2017-03-11 14:43:29.457788,618,31,22, +7,2017-03-11 14:43:29.457788,466,298,379, +66,2017-03-11 14:43:29.457788,381,925,360, +48,2017-03-11 14:43:29.457788,388,643,492, +30,2017-03-11 14:43:29.457788,240,100,393, +58,2017-03-11 14:43:29.457788,832,807,943, +59,2017-03-11 14:43:29.457788,964,159,390, +16,2017-03-11 14:43:29.457788,732,171,151, +35,2017-03-11 14:43:29.457788,202,173,416, +67,2017-03-11 14:43:29.457788,471,795,326, +85,2017-03-11 14:43:29.457788,720,686,329, +11,2017-03-11 14:43:29.457788,329,822,403, +57,2017-03-11 14:43:29.457788,921,796,150, +75,2017-03-11 14:43:29.457788,603,93,341, +57,2017-03-11 14:43:29.457788,252,730,729, +98,2017-03-11 14:43:29.457788,901,880,333, +10,2017-03-11 14:43:29.457788,53,749,772, +52,2017-03-11 14:43:29.457788,544,98,377, +26,2017-03-11 14:43:29.457788,784,706,372, +11,2017-03-11 14:43:29.457788,527,775,681, +45,2017-03-11 14:43:29.457788,572,831,202, +17,2017-03-11 14:43:29.457788,924,542,742, +18,2017-03-11 14:43:29.457788,272,470,159, +17,2017-03-11 14:43:29.457788,350,492,277, +40,2017-03-11 14:43:29.457788,241,49,927, +78,2017-03-11 14:43:29.457788,147,304,49, +93,2017-03-11 14:43:29.457788,9,421,43, +54,2017-03-11 14:43:29.457788,197,723,985, +77,2017-03-11 14:43:29.457788,555,187,943, +48,2017-03-11 14:43:29.457788,729,684,654, +0,2017-03-11 14:43:29.457788,155,813,174, +50,2017-03-11 14:43:29.457788,305,451,907, +55,2017-03-11 14:43:29.457788,500,834,331, +65,2017-03-11 14:43:29.457788,138,380,577, +15,2017-03-11 14:43:29.457788,802,619,684, +100,2017-03-11 14:43:29.457788,343,670,767, +90,2017-03-11 14:43:29.457788,857,710,376, +59,2017-03-11 14:43:29.457788,394,30,587, +55,2017-03-11 14:43:29.457788,843,761,53, +15,2017-03-11 14:43:29.457788,212,960,693, +71,2017-03-11 14:43:29.457788,794,24,358, +93,2017-03-11 14:43:29.457788,404,935,80, +21,2017-03-11 14:43:29.457788,554,764,204, +90,2017-03-11 14:43:29.457788,433,971,794, +29,2017-03-11 14:43:29.457788,680,169,876, +7,2017-03-11 14:43:29.457788,199,463,623, +4,2017-03-11 14:43:29.457788,224,675,190, +44,2017-03-11 14:43:29.457788,635,883,148, +43,2017-03-11 14:43:29.457788,907,507,362, +31,2017-03-11 14:43:29.457788,442,442,517, +100,2017-03-11 14:43:29.457788,205,721,893, +64,2017-03-11 14:43:29.457788,691,686,929, +37,2017-03-11 14:43:29.457788,856,805,446, +5,2017-03-11 14:43:29.457788,268,68,97, +49,2017-03-11 14:43:29.457788,744,286,929, +38,2017-03-11 14:43:29.457788,169,77,809, +8,2017-03-11 14:43:29.457788,584,171,388, +3,2017-03-11 14:43:29.457788,612,904,21, +82,2017-03-11 14:43:29.457788,625,914,456, +32,2017-03-11 14:43:29.457788,601,385,688, +46,2017-03-11 14:43:29.457788,190,134,511, +46,2017-03-11 14:43:29.457788,202,608,950, +95,2017-03-11 14:43:29.457788,894,879,324, +6,2017-03-11 14:43:29.457788,956,133,140, +54,2017-03-11 14:43:29.457788,304,528,566, +92,2017-03-11 14:43:29.457788,432,587,734, +6,2017-03-11 14:43:29.457788,501,190,374, +10,2017-03-11 14:43:29.457788,575,62,558, +77,2017-03-11 14:43:29.457788,196,69,223, +40,2017-03-11 14:43:29.457788,678,173,343, +57,2017-03-11 14:43:29.457788,52,667,635, +1,2017-03-11 14:43:29.457788,800,775,548, +10,2017-03-11 14:43:29.457788,303,113,20, +74,2017-03-11 14:43:29.457788,701,753,792, +20,2017-03-11 14:43:29.457788,943,166,303, +52,2017-03-11 14:43:29.457788,228,861,283, +42,2017-03-11 14:43:29.457788,931,506,821, +61,2017-03-11 14:43:29.457788,679,164,180, +73,2017-03-11 14:43:29.457788,831,816,739, +63,2017-03-11 14:43:29.457788,591,287,735, +89,2017-03-11 14:43:29.457788,400,755,629, +10,2017-03-11 14:43:29.457788,508,422,302, +45,2017-03-11 14:43:29.457788,588,606,969, +82,2017-03-11 14:43:29.457788,467,252,240, +40,2017-03-11 14:43:29.457788,759,62,6, +44,2017-03-11 14:43:29.457788,226,187,169, +6,2017-03-11 14:43:29.457788,3,908,688, +59,2017-03-11 14:43:29.457788,194,423,488, +59,2017-03-11 14:43:29.457788,177,117,695, +69,2017-03-11 14:43:29.457788,539,998,136, +13,2017-03-11 14:43:29.457788,603,105,943, +7,2017-03-11 14:43:29.457788,357,183,469, +12,2017-03-11 14:43:29.457788,245,475,554, +47,2017-03-11 14:43:29.457788,662,722,528, +66,2017-03-11 14:43:29.457788,630,216,258, +82,2017-03-11 14:43:29.457788,638,746,419, +82,2017-03-11 14:43:29.457788,863,114,501, +40,2017-03-11 14:43:29.457788,112,637,528, +72,2017-03-11 14:43:29.457788,742,471,786, +10,2017-03-11 14:43:29.457788,654,254,215, +90,2017-03-11 14:43:29.457788,729,769,370, +39,2017-03-11 14:43:29.457788,491,898,56, +12,2017-03-11 14:43:29.457788,113,314,946, +75,2017-03-11 14:43:29.457788,60,365,567, +92,2017-03-11 14:43:29.457788,479,68,324, +59,2017-03-11 14:43:29.457788,705,852,306, +45,2017-03-11 14:43:29.457788,323,92,546, +98,2017-03-11 14:43:29.457788,346,761,877, +8,2017-03-11 14:43:29.457788,530,247,467, +2,2017-03-11 14:43:29.457788,144,523,142, +26,2017-03-11 14:43:29.457788,836,88,9, +90,2017-03-11 14:43:29.457788,452,577,818, +93,2017-03-11 14:43:29.457788,645,143,522, +35,2017-03-11 14:43:29.457788,995,828,797, +32,2017-03-11 14:43:29.457788,920,344,296, +27,2017-03-11 14:43:29.457788,105,173,341, +63,2017-03-11 14:43:29.457788,420,808,656, +56,2017-03-11 14:43:29.457788,331,798,822, +17,2017-03-11 14:43:29.457788,885,831,63, +34,2017-03-11 14:43:29.457788,408,881,269, +5,2017-03-11 14:43:29.457788,24,791,404, +2,2017-03-11 14:43:29.457788,619,201,338, +54,2017-03-11 14:43:29.457788,545,634,805, +65,2017-03-11 14:43:29.457788,807,146,284, +23,2017-03-11 14:43:29.457788,954,940,791, +29,2017-03-11 14:43:29.457788,737,613,452, +62,2017-03-11 14:43:29.457788,444,515,960, +85,2017-03-11 14:43:29.457788,397,229,906, +42,2017-03-11 14:43:29.457788,20,309,440, +64,2017-03-11 14:43:29.457788,510,777,178, +6,2017-03-11 14:43:29.457788,411,983,705, +22,2017-03-11 14:43:29.457788,129,989,445, +8,2017-03-11 14:43:29.457788,929,236,368, +67,2017-03-11 14:43:29.457788,849,820,289, +29,2017-03-11 14:43:29.457788,336,249,146, +73,2017-03-11 14:43:29.457788,478,51,153, +50,2017-03-11 14:43:29.457788,361,592,138, +87,2017-03-11 14:43:29.457788,369,316,926, +78,2017-03-11 14:43:29.457788,299,631,998, +43,2017-03-11 14:43:29.457788,620,443,511, +55,2017-03-11 14:43:29.457788,678,880,214, +53,2017-03-11 14:43:29.457788,700,503,820, +4,2017-03-11 14:43:29.457788,752,966,768, +23,2017-03-11 14:43:29.457788,17,921,728, +38,2017-03-11 14:43:29.457788,513,867,249, +88,2017-03-11 14:43:29.457788,183,175,663, +48,2017-03-11 14:43:29.457788,806,661,911, +43,2017-03-11 14:43:29.457788,103,422,974, +78,2017-03-11 14:43:29.457788,302,188,309, +0,2017-03-11 14:43:29.457788,691,129,37, +44,2017-03-11 14:43:29.457788,94,805,672, +11,2017-03-11 14:43:29.457788,726,401,489, +24,2017-03-11 14:43:29.457788,268,738,121, +45,2017-03-11 14:43:29.457788,913,784,933, +72,2017-03-11 14:43:29.457788,445,844,144, +55,2017-03-11 14:43:29.457788,266,118,330, +57,2017-03-11 14:43:29.457788,307,639,569, +100,2017-03-11 14:43:29.457788,767,606,440, +86,2017-03-11 14:43:29.457788,411,113,973, +14,2017-03-11 14:43:29.457788,514,462,375, +78,2017-03-11 14:43:29.457788,199,496,232, +11,2017-03-11 14:43:29.457788,281,165,831, +73,2017-03-11 14:43:29.457788,9,975,274, +27,2017-03-11 14:43:29.457788,93,604,842, +40,2017-03-11 14:43:29.457788,243,411,398, +1,2017-03-11 14:43:29.457788,16,838,872, +43,2017-03-11 14:43:29.457788,951,844,564, +46,2017-03-11 14:43:29.457788,306,939,246, +51,2017-03-11 14:43:29.457788,436,478,618, +72,2017-03-11 14:43:29.457788,643,449,442, +65,2017-03-11 14:43:29.457788,424,716,927, +52,2017-03-11 14:43:29.457788,320,769,917, +56,2017-03-11 14:43:29.457788,179,315,573, +20,2017-03-11 14:43:29.457788,153,444,623, +10,2017-03-11 14:43:29.457788,289,187,569, +59,2017-03-11 14:43:29.457788,126,815,100, +56,2017-03-11 14:43:29.457788,293,718,278, +94,2017-03-11 14:43:29.457788,167,720,588, +59,2017-03-11 14:43:29.457788,436,515,107, +76,2017-03-11 14:43:29.457788,284,25,318, +46,2017-03-11 14:43:29.457788,340,890,659, +49,2017-03-11 14:43:29.457788,335,281,597, +62,2017-03-11 14:43:29.457788,468,166,218, +59,2017-03-11 14:43:29.457788,980,318,156, +27,2017-03-11 14:43:29.457788,36,434,209, +20,2017-03-11 14:43:29.457788,154,797,793, +59,2017-03-11 14:43:29.457788,313,900,345, +60,2017-03-11 14:43:29.457788,925,663,59, +26,2017-03-11 14:43:29.457788,553,718,758, +89,2017-03-11 14:43:29.457788,999,355,511, +47,2017-03-11 14:43:29.457788,520,729,62, +50,2017-03-11 14:43:29.457788,47,218,773, +8,2017-03-11 14:43:29.457788,653,982,286, +81,2017-03-11 14:43:29.457788,780,79,397, +9,2017-03-11 14:43:29.457788,980,742,689, +90,2017-03-11 14:43:29.457788,405,748,169, +96,2017-03-11 14:43:29.457788,466,927,846, +46,2017-03-11 14:43:29.457788,282,357,932, +80,2017-03-11 14:43:29.457788,86,994,302, +13,2017-03-11 14:43:29.457788,213,75,216, +87,2017-03-11 14:43:29.457788,58,502,673, +84,2017-03-11 14:43:29.457788,581,70,930, +56,2017-03-11 14:43:29.457788,812,619,465, +22,2017-03-11 14:43:29.457788,367,635,174, +83,2017-03-11 14:43:29.457788,562,20,297, +84,2017-03-11 14:43:29.457788,377,229,645, +46,2017-03-11 14:43:29.457788,223,947,596, +44,2017-03-11 14:43:29.457788,23,812,301, +8,2017-03-11 14:43:29.457788,314,974,919, +89,2017-03-11 14:43:29.457788,44,849,456, +86,2017-03-11 14:43:29.457788,468,921,71, +83,2017-03-11 14:43:29.457788,555,246,667, +12,2017-03-11 14:43:29.457788,266,963,961, +64,2017-03-11 14:43:29.457788,192,606,106, +42,2017-03-11 14:43:29.457788,553,702,852, +58,2017-03-11 14:43:29.457788,513,153,657, +83,2017-03-11 14:43:29.457788,127,576,722, +17,2017-03-11 14:43:29.457788,424,177,26, +89,2017-03-11 14:43:29.457788,98,97,726, +65,2017-03-11 14:43:29.457788,343,393,771, +61,2017-03-11 14:43:29.457788,356,732,253, +55,2017-03-11 14:43:29.457788,338,359,964, +89,2017-03-11 14:43:29.457788,61,816,467, +57,2017-03-11 14:43:29.457788,969,124,401, +10,2017-03-11 14:43:29.457788,700,123,267, +12,2017-03-11 14:43:29.457788,301,292,16, +40,2017-03-11 14:43:29.457788,389,743,52, +73,2017-03-11 14:43:29.457788,135,823,341, +49,2017-03-11 14:43:29.457788,555,594,40, +89,2017-03-11 14:43:29.457788,953,5,783, +1,2017-03-11 14:43:29.457788,821,251,588, +79,2017-03-11 14:43:29.457788,375,989,886, +7,2017-03-11 14:43:29.457788,112,153,199, +41,2017-03-11 14:43:29.457788,446,215,812, +84,2017-03-11 14:43:29.457788,958,864,567, +9,2017-03-11 14:43:29.457788,687,909,585, +24,2017-03-11 14:43:29.457788,503,625,135, +46,2017-03-11 14:43:29.457788,630,918,470, +45,2017-03-11 14:43:29.457788,169,57,241, +54,2017-03-11 14:43:29.457788,46,127,618, +16,2017-03-11 14:43:29.457788,281,816,572, +73,2017-03-11 14:43:29.457788,31,383,561, +99,2017-03-11 14:43:29.457788,247,129,82, +93,2017-03-11 14:43:29.457788,37,667,176, +54,2017-03-11 14:43:29.457788,292,311,996, +92,2017-03-11 14:43:29.457788,229,466,373, +40,2017-03-11 14:43:29.457788,523,614,941, +57,2017-03-11 14:43:29.457788,742,559,728, +2,2017-03-11 14:43:29.457788,375,300,748, +41,2017-03-11 14:43:29.457788,683,310,395, +93,2017-03-11 14:43:29.457788,438,477,864, +48,2017-03-11 14:43:29.457788,144,40,16, +44,2017-03-11 14:43:29.457788,351,12,358, +58,2017-03-11 14:43:29.457788,478,731,977, +0,2017-03-11 14:43:29.457788,345,918,570, +9,2017-03-11 14:43:29.457788,476,298,109, +85,2017-03-11 14:43:29.457788,598,857,258, +28,2017-03-11 14:43:29.457788,167,653,211, +61,2017-03-11 14:43:29.457788,131,74,81, +27,2017-03-11 14:43:29.457788,114,97,710, +47,2017-03-11 14:43:29.457788,109,68,45, +59,2017-03-11 14:43:29.457788,798,21,588, +14,2017-03-11 14:43:29.457788,939,158,230, +42,2017-03-11 14:43:29.457788,456,338,267, +5,2017-03-11 14:43:29.457788,195,525,336, +36,2017-03-11 14:43:29.457788,178,546,967, +31,2017-03-11 14:43:29.457788,621,48,584, +74,2017-03-11 14:43:29.457788,145,294,200, +25,2017-03-11 14:43:29.457788,362,245,841, +16,2017-03-11 14:43:29.457788,266,429,303, +21,2017-03-11 14:43:29.457788,587,533,621, +4,2017-03-11 14:43:29.457788,871,888,98, +7,2017-03-11 14:43:29.457788,413,433,428, +59,2017-03-11 14:43:29.457788,980,396,901, +60,2017-03-11 14:43:29.457788,444,484,336, +59,2017-03-11 14:43:29.457788,778,536,843, +14,2017-03-11 14:43:29.457788,781,685,300, +5,2017-03-11 14:43:29.457788,114,603,253, +70,2017-03-11 14:43:29.457788,136,874,744, +1,2017-03-11 14:43:29.457788,762,842,74, +18,2017-03-11 14:43:29.457788,275,502,767, +26,2017-03-11 14:43:29.457788,898,668,856, +34,2017-03-11 14:43:29.457788,152,191,930, +93,2017-03-11 14:43:29.457788,727,774,70, +51,2017-03-11 14:43:29.457788,458,370,555, +57,2017-03-11 14:43:29.457788,974,808,273, +11,2017-03-11 14:43:29.457788,682,17,117, +44,2017-03-11 14:43:29.457788,859,191,619, +13,2017-03-11 14:43:29.457788,693,386,389, +59,2017-03-11 14:43:29.457788,54,245,932, +21,2017-03-11 14:43:29.457788,437,863,137, +16,2017-03-11 14:43:29.457788,637,207,672, +9,2017-03-11 14:43:29.457788,577,227,667, +55,2017-03-11 14:43:29.457788,35,940,661, +72,2017-03-11 14:43:29.457788,957,778,161, +82,2017-03-11 14:43:29.457788,969,780,950, +66,2017-03-11 14:43:29.457788,166,339,253, +22,2017-03-11 14:43:29.457788,584,186,425, +2,2017-03-11 14:43:29.457788,49,562,185, +69,2017-03-11 14:43:29.457788,769,857,780, +35,2017-03-11 14:43:29.457788,84,447,896, +12,2017-03-11 14:43:29.457788,387,557,836, +34,2017-03-11 14:43:29.457788,335,997,159, +30,2017-03-11 14:43:29.457788,776,109,966, +94,2017-03-11 14:43:29.457788,448,220,161, +3,2017-03-11 14:43:29.457788,406,587,53, +45,2017-03-11 14:43:29.457788,149,238,140, +92,2017-03-11 14:43:29.457788,94,920,263, +18,2017-03-11 14:43:29.457788,367,160,297, +75,2017-03-11 14:43:29.457788,717,134,98, +5,2017-03-11 14:43:29.457788,130,257,356, +91,2017-03-11 14:43:29.457788,365,322,848, +81,2017-03-11 14:43:29.457788,542,10,845, +95,2017-03-11 14:43:29.457788,596,898,403, +74,2017-03-11 14:43:29.457788,135,543,662, +23,2017-03-11 14:43:29.457788,463,926,408, +83,2017-03-11 14:43:29.457788,85,705,585, +80,2017-03-11 14:43:29.457788,839,683,854, +97,2017-03-11 14:43:29.457788,940,210,876, +31,2017-03-11 14:43:29.457788,532,724,118, +7,2017-03-11 14:43:29.457788,734,963,22, +33,2017-03-11 14:43:29.457788,861,425,75, +100,2017-03-11 14:43:29.457788,968,737,225, +43,2017-03-11 14:43:29.457788,663,633,262, +75,2017-03-11 14:43:29.457788,338,847,551, +18,2017-03-11 14:43:29.457788,530,404,146, +47,2017-03-11 14:43:29.457788,614,22,775, +15,2017-03-11 14:43:29.457788,746,893,220, +48,2017-03-11 14:43:29.457788,856,242,810, +72,2017-03-11 14:43:29.457788,666,885,712, +63,2017-03-11 14:43:29.457788,622,937,65, +28,2017-03-11 14:43:29.457788,570,327,33, +91,2017-03-11 14:43:29.457788,173,584,86, +70,2017-03-11 14:43:29.457788,988,232,172, +60,2017-03-11 14:43:29.457788,254,947,747, +100,2017-03-11 14:43:29.457788,839,967,479, +70,2017-03-11 14:43:29.457788,209,289,411, +87,2017-03-11 14:43:29.457788,173,123,509, +80,2017-03-11 14:43:29.457788,61,574,80, +63,2017-03-11 14:43:29.457788,901,113,540, +7,2017-03-11 14:43:29.457788,697,626,777, +68,2017-03-11 14:43:29.457788,857,949,287, +11,2017-03-11 14:43:29.457788,896,34,111, +73,2017-03-11 14:43:29.457788,1,590,430, +21,2017-03-11 14:43:29.457788,879,841,85, +5,2017-03-11 14:43:29.457788,965,594,848, +3,2017-03-11 14:43:29.457788,168,928,657, +7,2017-03-11 14:43:29.457788,41,197,142, +74,2017-03-11 14:43:29.457788,823,919,423, +68,2017-03-11 14:43:29.457788,868,709,791, +76,2017-03-11 14:43:29.457788,744,902,498, +74,2017-03-11 14:43:29.457788,492,928,955, +37,2017-03-11 14:43:29.457788,769,40,423, +73,2017-03-11 14:43:29.457788,634,271,760, +80,2017-03-11 14:43:29.457788,199,417,870, +24,2017-03-11 14:43:29.457788,614,12,977, +44,2017-03-11 14:43:29.457788,931,400,117, +80,2017-03-11 14:43:29.457788,109,908,562, +85,2017-03-11 14:43:29.457788,810,60,598, +30,2017-03-11 14:43:29.457788,988,553,673, +76,2017-03-11 14:43:29.457788,592,96,492, +23,2017-03-11 14:43:29.457788,367,252,27, +57,2017-03-11 14:43:29.457788,669,898,805, +28,2017-03-11 14:43:29.457788,910,782,719, +84,2017-03-11 14:43:29.457788,181,836,639, +29,2017-03-11 14:43:29.457788,744,201,143, +55,2017-03-11 14:43:29.457788,261,741,856, +25,2017-03-11 14:43:29.457788,293,528,6, +89,2017-03-11 14:43:29.457788,624,497,111, +99,2017-03-11 14:43:29.457788,749,139,556, +42,2017-03-11 14:43:29.457788,36,361,700, +95,2017-03-11 14:43:29.457788,143,420,787, +32,2017-03-11 14:43:29.457788,256,426,615, +0,2017-03-11 14:43:29.457788,628,758,554, +89,2017-03-11 14:43:29.457788,498,410,137, +79,2017-03-11 14:43:29.457788,938,143,677, +56,2017-03-11 14:43:29.457788,641,788,554, +39,2017-03-11 14:43:29.457788,927,110,807, +96,2017-03-11 14:43:29.457788,471,507,910, +61,2017-03-11 14:43:29.457788,927,697,938, +18,2017-03-11 14:43:29.457788,123,553,183, +75,2017-03-11 14:43:29.457788,311,737,639, +81,2017-03-11 14:43:29.457788,147,776,600, +9,2017-03-11 14:43:29.457788,920,277,648, +56,2017-03-11 14:43:29.457788,66,202,949, +99,2017-03-11 14:43:29.457788,312,756,956, +78,2017-03-11 14:43:29.457788,264,866,398, +19,2017-03-11 14:43:29.457788,562,336,373, +69,2017-03-11 14:43:29.457788,889,555,436, +20,2017-03-11 14:43:29.457788,292,75,9, +44,2017-03-11 14:43:29.457788,852,609,524, +77,2017-03-11 14:43:29.457788,886,173,331, +95,2017-03-11 14:43:29.457788,375,281,945, +69,2017-03-11 14:43:29.457788,37,901,471, +30,2017-03-11 14:43:29.457788,767,869,491, +33,2017-03-11 14:43:29.457788,205,864,15, +9,2017-03-11 14:43:29.457788,419,451,294, +71,2017-03-11 14:43:29.457788,526,303,151, +38,2017-03-11 14:43:29.457788,912,675,150, +80,2017-03-11 14:43:29.457788,848,481,751, +22,2017-03-11 14:43:29.457788,762,695,909, +80,2017-03-11 14:43:29.457788,596,380,100, +36,2017-03-11 14:43:29.457788,248,591,692, +45,2017-03-11 14:43:29.457788,455,707,548, +87,2017-03-11 14:43:29.457788,157,842,586, +68,2017-03-11 14:43:29.457788,146,737,62, +6,2017-03-11 14:43:29.457788,412,211,856, +26,2017-03-11 14:43:29.457788,693,607,482, +45,2017-03-11 14:43:29.457788,302,391,254, +90,2017-03-11 14:43:29.457788,771,354,261, +2,2017-03-11 14:43:29.457788,946,953,473, +40,2017-03-11 14:43:29.457788,660,21,276, +82,2017-03-11 14:43:29.457788,863,862,501, +1,2017-03-11 14:43:29.457788,599,563,66, +1,2017-03-11 14:43:29.457788,774,923,271, +47,2017-03-11 14:43:29.457788,530,753,921, +83,2017-03-11 14:43:29.457788,144,175,730, +92,2017-03-11 14:43:29.457788,530,992,934, +48,2017-03-11 14:43:29.457788,945,407,876, +60,2017-03-11 14:43:29.457788,428,152,422, +29,2017-03-11 14:43:29.457788,14,923,299, +61,2017-03-11 14:43:29.457788,486,365,624, +26,2017-03-11 14:43:29.457788,288,895,727, +82,2017-03-11 14:43:29.457788,648,649,650, +79,2017-03-11 14:43:29.457788,824,380,707, +35,2017-03-11 14:43:29.457788,372,642,829, +32,2017-03-11 14:43:29.457788,49,705,922, +48,2017-03-11 14:43:29.457788,857,344,767, +87,2017-03-11 14:43:29.457788,267,66,483, +75,2017-03-11 14:43:29.457788,431,107,14, +72,2017-03-11 14:43:29.457788,2,742,537, +65,2017-03-11 14:43:29.457788,391,187,442, +21,2017-03-11 14:43:29.457788,567,149,568, +94,2017-03-11 14:43:29.457788,790,397,257, +84,2017-03-11 14:43:29.457788,102,179,315, +96,2017-03-11 14:43:29.457788,523,82,830, +79,2017-03-11 14:43:29.457788,148,314,544, +58,2017-03-11 14:43:29.457788,421,558,298, +42,2017-03-11 14:43:29.457788,300,835,72, +69,2017-03-11 14:43:29.457788,22,514,905, +59,2017-03-11 14:43:29.457788,662,473,529, +45,2017-03-11 14:43:29.457788,871,785,292, +97,2017-03-11 14:43:29.457788,964,607,933, +49,2017-03-11 14:43:29.457788,689,763,277, +84,2017-03-11 14:43:29.457788,76,820,415, +50,2017-03-11 14:43:29.457788,378,713,919, +68,2017-03-11 14:43:29.457788,548,991,368, +57,2017-03-11 14:43:29.457788,505,273,159, +17,2017-03-11 14:43:29.457788,746,688,620, +62,2017-03-11 14:43:29.457788,473,912,590, +44,2017-03-11 14:43:29.457788,519,523,923, +21,2017-03-11 14:43:29.457788,285,200,44, +36,2017-03-11 14:43:29.457788,20,460,858, +40,2017-03-11 14:43:29.457788,173,778,77, +72,2017-03-11 14:43:29.457788,769,445,291, +27,2017-03-11 14:43:29.457788,718,450,442, +46,2017-03-11 14:43:29.457788,138,62,82, +61,2017-03-11 14:43:29.457788,974,672,48, +49,2017-03-11 14:43:29.457788,195,972,700, +48,2017-03-11 14:43:29.457788,172,744,842, +19,2017-03-11 14:43:29.457788,204,700,591, +38,2017-03-11 14:43:29.457788,477,668,98, +25,2017-03-11 14:43:29.457788,113,389,521, +83,2017-03-11 14:43:29.457788,840,962,296, +98,2017-03-11 14:43:29.457788,24,378,590, +100,2017-03-11 14:43:29.457788,50,638,490, +24,2017-03-11 14:43:29.457788,610,191,724, +78,2017-03-11 14:43:29.457788,935,566,974, +14,2017-03-11 14:43:29.457788,266,565,516, +74,2017-03-11 14:43:29.457788,233,615,990, +35,2017-03-11 14:43:29.457788,4,510,177, +84,2017-03-11 14:43:29.457788,473,473,822, +50,2017-03-11 14:43:29.457788,851,411,495, +90,2017-03-11 14:43:29.457788,49,986,145, +66,2017-03-11 14:43:29.457788,176,869,441, +11,2017-03-11 14:43:29.457788,435,415,251, +70,2017-03-11 14:43:29.457788,980,767,444, +21,2017-03-11 14:43:29.457788,382,434,559, +39,2017-03-11 14:43:29.457788,944,736,229, +42,2017-03-11 14:43:29.457788,209,50,914, +6,2017-03-11 14:43:29.457788,461,410,961, +51,2017-03-11 14:43:29.457788,395,106,170, +57,2017-03-11 14:43:29.457788,975,611,683, +41,2017-03-11 14:43:29.457788,25,933,111, +1,2017-03-11 14:43:29.457788,701,555,218, +8,2017-03-11 14:43:29.457788,989,777,467, +93,2017-03-11 14:43:29.457788,513,696,351, +72,2017-03-11 14:43:29.457788,747,265,783, +21,2017-03-11 14:43:29.457788,675,744,719, +7,2017-03-11 14:43:29.457788,850,889,641, +83,2017-03-11 14:43:29.457788,499,324,235, +52,2017-03-11 14:43:29.457788,257,346,530, +96,2017-03-11 14:43:29.457788,902,748,40, +89,2017-03-11 14:43:29.457788,525,508,824, +4,2017-03-11 14:43:29.457788,204,175,762, +95,2017-03-11 14:43:29.457788,440,545,159, +11,2017-03-11 14:43:29.457788,289,878,184, +14,2017-03-11 14:43:29.457788,766,826,964, +27,2017-03-11 14:43:29.457788,150,199,790, +41,2017-03-11 14:43:29.457788,546,320,365, +45,2017-03-11 14:43:29.457788,68,405,338, +59,2017-03-11 14:43:29.457788,913,162,632, +12,2017-03-11 14:43:29.457788,337,394,67, +78,2017-03-11 14:43:29.457788,939,226,892, +23,2017-03-11 14:43:29.457788,104,76,367, +87,2017-03-11 14:43:29.457788,902,331,136, +5,2017-03-11 14:43:29.457788,531,926,459, +8,2017-03-11 14:43:29.457788,246,824,523, +31,2017-03-11 14:43:29.457788,229,861,908, +14,2017-03-11 14:43:29.457788,23,540,259, +36,2017-03-11 14:43:29.457788,934,326,138, +87,2017-03-11 14:43:29.457788,553,29,102, +66,2017-03-11 14:43:29.457788,106,469,528, +1,2017-03-11 14:43:29.457788,800,664,59, +33,2017-03-11 14:43:29.457788,591,518,407, +84,2017-03-11 14:43:29.457788,342,930,152, +57,2017-03-11 14:43:29.457788,792,60,714, +82,2017-03-11 14:43:29.457788,600,972,176, +53,2017-03-11 14:43:29.457788,298,313,408, +85,2017-03-11 14:43:29.457788,343,510,508, +45,2017-03-11 14:43:29.457788,978,36,456, +78,2017-03-11 14:43:29.457788,700,516,109, +29,2017-03-11 14:43:29.457788,34,516,128, +38,2017-03-11 14:43:29.457788,447,280,948, +24,2017-03-11 14:43:29.457788,340,661,54, +94,2017-03-11 14:43:29.457788,633,230,474, +93,2017-03-11 14:43:29.457788,543,882,783, +89,2017-03-11 14:43:29.457788,392,291,334, +37,2017-03-11 14:43:29.457788,327,790,149, +3,2017-03-11 14:43:29.457788,306,258,318, +34,2017-03-11 14:43:29.457788,775,446,716, +22,2017-03-11 14:43:29.457788,726,664,461, +7,2017-03-11 14:43:29.457788,325,515,6, +96,2017-03-11 14:43:29.457788,744,480,890, +29,2017-03-11 14:43:29.457788,363,673,173, +75,2017-03-11 14:43:29.457788,964,507,125, +29,2017-03-11 14:43:29.457788,297,274,319, +60,2017-03-11 14:43:29.457788,533,637,943, +31,2017-03-11 14:43:29.457788,84,660,529, +81,2017-03-11 14:43:29.457788,323,990,876, +65,2017-03-11 14:43:29.457788,504,882,606, +25,2017-03-11 14:43:29.457788,362,497,536, +72,2017-03-11 14:43:29.457788,170,709,480, +13,2017-03-11 14:43:29.457788,216,605,426, +51,2017-03-11 14:43:29.457788,879,745,116, +41,2017-03-11 14:43:29.457788,382,60,719, +47,2017-03-11 14:43:29.457788,719,248,276, +4,2017-03-11 14:43:29.457788,238,153,691, +74,2017-03-11 14:43:29.457788,35,297,991, +40,2017-03-11 14:43:29.457788,794,526,122, +96,2017-03-11 14:43:29.457788,235,601,97, +45,2017-03-11 14:43:29.457788,206,523,964, +9,2017-03-11 14:43:29.457788,268,80,496, +65,2017-03-11 14:43:29.457788,140,215,116, +86,2017-03-11 14:43:29.457788,463,393,902, +70,2017-03-11 14:43:29.457788,545,593,444, +58,2017-03-11 14:43:29.457788,890,434,977, +68,2017-03-11 14:43:29.457788,961,99,646, +20,2017-03-11 14:43:29.457788,700,744,646, +91,2017-03-11 14:43:29.457788,267,610,991, +54,2017-03-11 14:43:29.457788,690,488,185, +83,2017-03-11 14:43:29.457788,703,302,689, +17,2017-03-11 14:43:29.457788,694,591,868, +24,2017-03-11 14:43:29.457788,184,311,819, +7,2017-03-11 14:43:29.457788,746,796,757, +71,2017-03-11 14:43:29.457788,895,403,902, +59,2017-03-11 14:43:29.457788,147,548,501, +41,2017-03-11 14:43:29.457788,158,493,949, +85,2017-03-11 14:43:29.457788,980,135,678, +68,2017-03-11 14:43:29.457788,436,367,850, +13,2017-03-11 14:43:29.457788,958,718,370, +14,2017-03-11 14:43:29.457788,29,190,215, +77,2017-03-11 14:43:29.457788,986,972,481, +88,2017-03-11 14:43:29.457788,375,383,475, +52,2017-03-11 14:43:29.457788,932,977,936, +9,2017-03-11 14:43:29.457788,469,885,938, +45,2017-03-11 14:43:29.457788,19,616,133, +46,2017-03-11 14:43:29.457788,984,983,587, +94,2017-03-11 14:43:29.457788,701,957,84, +73,2017-03-11 14:43:29.457788,147,299,505, +13,2017-03-11 14:43:29.457788,271,986,13, +65,2017-03-11 14:43:29.457788,369,489,168, +30,2017-03-11 14:43:29.457788,465,103,391, +93,2017-03-11 14:43:29.457788,988,330,384, +1,2017-03-11 14:43:29.457788,946,517,463, +93,2017-03-11 14:43:29.457788,500,50,872, +20,2017-03-11 14:43:29.457788,7,956,931, +15,2017-03-11 14:43:29.457788,255,435,286, +53,2017-03-11 14:43:29.457788,421,299,172, +79,2017-03-11 14:43:29.457788,788,340,92, +25,2017-03-11 14:43:29.457788,443,483,187, +43,2017-03-11 14:43:29.457788,813,571,439, +76,2017-03-11 14:43:29.457788,88,902,690, +59,2017-03-11 14:43:29.457788,952,561,788, +96,2017-03-11 14:43:29.457788,517,719,112, +77,2017-03-11 14:43:29.457788,154,398,298, +58,2017-03-11 14:43:29.457788,697,471,366, +48,2017-03-11 14:43:29.457788,811,458,737, +25,2017-03-11 14:43:29.457788,942,924,685, +76,2017-03-11 14:43:29.457788,495,124,515, +58,2017-03-11 14:43:29.457788,26,205,170, +98,2017-03-11 14:43:29.457788,766,959,936, +28,2017-03-11 14:43:29.457788,677,47,55, +83,2017-03-11 14:43:29.457788,445,353,407, +14,2017-03-11 14:43:29.457788,824,774,626, +63,2017-03-11 14:43:29.457788,232,363,888, +17,2017-03-11 14:43:29.457788,287,573,929, +78,2017-03-11 14:43:29.457788,697,444,365, +72,2017-03-11 14:43:29.457788,648,536,700, +41,2017-03-11 14:43:29.457788,494,636,697, +17,2017-03-11 14:43:29.457788,683,752,3, +13,2017-03-11 14:43:29.457788,106,411,270, +93,2017-03-11 14:43:29.457788,184,896,564, +42,2017-03-11 14:43:29.457788,259,453,590, +55,2017-03-11 14:43:29.457788,26,519,329, +72,2017-03-11 14:43:29.457788,963,694,446, +61,2017-03-11 14:43:29.457788,230,146,25, +72,2017-03-11 14:43:29.457788,782,722,896, +47,2017-03-11 14:43:29.457788,475,900,594, +58,2017-03-11 14:43:29.457788,310,864,510, +49,2017-03-11 14:43:29.457788,761,74,910, +2,2017-03-11 14:43:29.457788,527,500,567, +55,2017-03-11 14:43:29.457788,19,896,277, +98,2017-03-11 14:43:29.457788,590,723,592, +82,2017-03-11 14:43:29.457788,870,617,545, +65,2017-03-11 14:43:29.457788,340,441,118, +81,2017-03-11 14:43:29.457788,341,712,395, +65,2017-03-11 14:43:29.457788,576,905,145, +34,2017-03-11 14:43:29.457788,979,55,356, +51,2017-03-11 14:43:29.457788,555,923,60, +57,2017-03-11 14:43:29.457788,819,337,555, +41,2017-03-11 14:43:29.457788,60,147,229, +93,2017-03-11 14:43:29.457788,765,774,582, +10,2017-03-11 14:43:29.457788,215,699,919, +56,2017-03-11 14:43:29.457788,411,313,206, +99,2017-03-11 14:43:29.457788,218,351,323, +20,2017-03-11 14:43:29.457788,407,679,704, +96,2017-03-11 14:43:29.457788,602,764,536, +42,2017-03-11 14:43:29.457788,101,91,830, +16,2017-03-11 14:43:29.457788,239,59,90, +0,2017-03-11 14:43:29.457788,834,672,108, +5,2017-03-11 14:43:29.457788,371,26,604, +78,2017-03-11 14:43:29.457788,339,811,768, +56,2017-03-11 14:43:29.457788,162,91,755, +57,2017-03-11 14:43:29.457788,771,459,531, +37,2017-03-11 14:43:29.457788,222,66,794, +32,2017-03-11 14:43:29.457788,158,624,484, +40,2017-03-11 14:43:29.457788,683,574,399, +52,2017-03-11 14:43:29.457788,246,507,566, +62,2017-03-11 14:43:29.457788,533,170,399, +87,2017-03-11 14:43:29.457788,981,167,430, +14,2017-03-11 14:43:29.457788,258,184,712, +3,2017-03-11 14:43:29.457788,643,242,402, +87,2017-03-11 14:43:29.457788,309,196,188, +47,2017-03-11 14:43:29.457788,820,672,862, +50,2017-03-11 14:43:29.457788,246,262,21, +49,2017-03-11 14:43:29.457788,768,586,109, +30,2017-03-11 14:43:29.457788,756,508,174, +74,2017-03-11 14:43:29.457788,675,603,880, +93,2017-03-11 14:43:29.457788,788,592,962, +43,2017-03-11 14:43:29.457788,834,365,296, +14,2017-03-11 14:43:29.457788,561,484,609, +38,2017-03-11 14:43:29.457788,157,471,885, +40,2017-03-11 14:43:29.457788,732,905,895, +50,2017-03-11 14:43:29.457788,491,4,802, +25,2017-03-11 14:43:29.457788,512,976,985, +19,2017-03-11 14:43:29.457788,579,865,120, +37,2017-03-11 14:43:29.457788,456,82,797, +29,2017-03-11 14:43:29.457788,447,93,433, +1,2017-03-11 14:43:29.457788,577,41,389, +73,2017-03-11 14:43:29.457788,512,273,137, +24,2017-03-11 14:43:29.457788,179,32,745, +67,2017-03-11 14:43:29.457788,36,547,918, +55,2017-03-11 14:43:29.457788,523,903,734, +10,2017-03-11 14:43:29.457788,767,854,469, +22,2017-03-11 14:43:29.457788,936,266,514, +38,2017-03-11 14:43:29.457788,358,947,390, +94,2017-03-11 14:43:29.457788,988,779,669, +50,2017-03-11 14:43:29.457788,52,806,745, +23,2017-03-11 14:43:29.457788,837,490,901, +87,2017-03-11 14:43:29.457788,37,819,420, +56,2017-03-11 14:43:29.457788,721,154,663, +49,2017-03-11 14:43:29.457788,8,131,712, +94,2017-03-11 14:43:29.457788,397,226,326, +76,2017-03-11 14:43:29.457788,173,716,691, +16,2017-03-11 14:43:29.457788,495,360,661, +55,2017-03-11 14:43:29.457788,166,406,777, +0,2017-03-11 14:43:29.457788,896,678,876, +93,2017-03-11 14:43:29.457788,497,296,493, +22,2017-03-11 14:43:29.457788,450,156,706, +46,2017-03-11 14:43:29.457788,287,419,401, +68,2017-03-11 14:43:29.457788,645,727,439, +82,2017-03-11 14:43:29.457788,443,130,979, +94,2017-03-11 14:43:29.457788,490,640,484, +66,2017-03-11 14:43:29.457788,46,261,660, +94,2017-03-11 14:43:29.457788,939,536,874, +44,2017-03-11 14:43:29.457788,832,367,654, +28,2017-03-11 14:43:29.457788,523,360,741, +81,2017-03-11 14:43:29.457788,779,142,495, +42,2017-03-11 14:43:29.457788,869,934,242, +31,2017-03-11 14:43:29.457788,64,221,249, +55,2017-03-11 14:43:29.457788,861,733,211, +91,2017-03-11 14:43:29.457788,994,871,847, +93,2017-03-11 14:43:29.457788,407,721,370, +24,2017-03-11 14:43:29.457788,88,24,522, +61,2017-03-11 14:43:29.457788,384,263,422, +16,2017-03-11 14:43:29.457788,405,917,587, +27,2017-03-11 14:43:29.457788,851,829,585, +92,2017-03-11 14:43:29.457788,49,834,470, +91,2017-03-11 14:43:29.457788,567,682,816, +56,2017-03-11 14:43:29.457788,553,663,494, +96,2017-03-11 14:43:29.457788,384,864,199, +47,2017-03-11 14:43:29.457788,888,722,85, +27,2017-03-11 14:43:29.457788,985,507,435, +39,2017-03-11 14:43:29.457788,424,22,663, +28,2017-03-11 14:43:29.457788,850,249,191, +90,2017-03-11 14:43:29.457788,83,661,809, +65,2017-03-11 14:43:29.457788,343,625,211, +90,2017-03-11 14:43:29.457788,288,706,856, +67,2017-03-11 14:43:29.457788,570,55,146, +46,2017-03-11 14:43:29.457788,777,230,729, +76,2017-03-11 14:43:29.457788,737,164,151, +16,2017-03-11 14:43:29.457788,186,815,436, +4,2017-03-11 14:43:29.457788,63,627,935, +15,2017-03-11 14:43:29.457788,288,744,797, +63,2017-03-11 14:43:29.457788,369,8,527, +66,2017-03-11 14:43:29.457788,713,383,331, +28,2017-03-11 14:43:29.457788,438,476,741, +22,2017-03-11 14:43:29.457788,706,470,977, +44,2017-03-11 14:43:29.457788,634,128,605, +82,2017-03-11 14:43:29.457788,943,41,855, +1,2017-03-11 14:43:29.457788,667,790,153, +96,2017-03-11 14:43:29.457788,535,950,586, +90,2017-03-11 14:43:29.457788,957,113,562, +67,2017-03-11 14:43:29.457788,496,893,954, +93,2017-03-11 14:43:29.457788,369,695,150, +8,2017-03-11 14:43:29.457788,165,127,519, +80,2017-03-11 14:43:29.457788,255,124,619, +20,2017-03-11 14:43:29.457788,165,474,204, +83,2017-03-11 14:43:29.457788,265,357,787, +80,2017-03-11 14:43:29.457788,307,373,704, +26,2017-03-11 14:43:29.457788,486,266,935, +98,2017-03-11 14:43:29.457788,159,889,917, +53,2017-03-11 14:43:29.457788,584,66,604, +75,2017-03-11 14:43:29.457788,193,123,549, +45,2017-03-11 14:43:29.457788,247,167,646, +41,2017-03-11 14:43:29.457788,642,850,244, +91,2017-03-11 14:43:29.457788,207,31,706, +51,2017-03-11 14:43:29.457788,404,410,778, +89,2017-03-11 14:43:29.457788,676,713,873, +83,2017-03-11 14:43:29.457788,603,790,363, +19,2017-03-11 14:43:29.457788,856,967,937, +5,2017-03-11 14:43:29.457788,90,485,496, +34,2017-03-11 14:43:29.457788,653,142,749, +29,2017-03-11 14:43:29.457788,992,993,201, +20,2017-03-11 14:43:29.457788,24,907,713, +43,2017-03-11 14:43:29.457788,317,492,319, +99,2017-03-11 14:43:29.457788,205,192,828, +81,2017-03-11 14:43:29.457788,982,191,995, +84,2017-03-11 14:43:29.457788,158,932,886, +25,2017-03-11 14:43:29.457788,417,383,585, +7,2017-03-11 14:43:29.457788,525,334,364, +52,2017-03-11 14:43:29.457788,326,565,717, +35,2017-03-11 14:43:29.457788,473,430,778, +79,2017-03-11 14:43:29.457788,922,97,783, +13,2017-03-11 14:43:29.457788,289,611,934, +27,2017-03-11 14:43:29.457788,802,929,109, +96,2017-03-11 14:43:29.457788,861,995,207, +28,2017-03-11 14:43:29.457788,378,792,348, +90,2017-03-11 14:43:29.457788,126,712,420, +45,2017-03-11 14:43:29.457788,278,137,803, +75,2017-03-11 14:43:29.457788,567,581,541, +49,2017-03-11 14:43:29.457788,677,324,615, +97,2017-03-11 14:43:29.457788,935,549,237, +74,2017-03-11 14:43:29.457788,479,346,696, +34,2017-03-11 14:43:29.457788,341,903,618, +72,2017-03-11 14:43:29.457788,695,966,621, +82,2017-03-11 14:43:29.457788,679,41,274, +96,2017-03-11 14:43:29.457788,178,77,707, +74,2017-03-11 14:43:29.457788,657,248,233, +33,2017-03-11 14:43:29.457788,572,848,301, +51,2017-03-11 14:43:29.457788,397,538,243, +88,2017-03-11 14:43:29.457788,883,939,215, +22,2017-03-11 14:43:29.457788,842,833,942, +54,2017-03-11 14:43:29.457788,799,564,359, +48,2017-03-11 14:43:29.457788,605,633,434, +78,2017-03-11 14:43:29.457788,710,141,528, +37,2017-03-11 14:43:29.457788,389,761,702, +96,2017-03-11 14:43:29.457788,609,3,467, +1,2017-03-11 14:43:29.457788,541,710,881, +42,2017-03-11 14:43:29.457788,648,96,648, +49,2017-03-11 14:43:29.457788,929,590,27, +73,2017-03-11 14:43:29.457788,154,386,207, +76,2017-03-11 14:43:29.457788,19,641,543, +73,2017-03-11 14:43:29.457788,783,71,96, +17,2017-03-11 14:43:29.457788,832,798,133, +44,2017-03-11 14:43:29.457788,801,600,447, +34,2017-03-11 14:43:29.457788,309,328,765, +96,2017-03-11 14:43:29.457788,424,413,448, +35,2017-03-11 14:43:29.457788,4,475,82, +16,2017-03-11 14:43:29.457788,862,289,917, +88,2017-03-11 14:43:29.457788,930,460,610, +71,2017-03-11 14:43:29.457788,531,706,884, +36,2017-03-11 14:43:29.457788,504,17,804, +30,2017-03-11 14:43:29.457788,617,250,645, +93,2017-03-11 14:43:29.457788,578,411,884, +0,2017-03-11 14:43:29.457788,824,332,355, +83,2017-03-11 14:43:29.457788,807,437,986, +67,2017-03-11 14:43:29.457788,726,903,550, +66,2017-03-11 14:43:29.457788,363,159,368, +89,2017-03-11 14:43:29.457788,865,253,257, +37,2017-03-11 14:43:29.457788,269,60,673, +89,2017-03-11 14:43:29.457788,311,318,812, +89,2017-03-11 14:43:29.457788,729,696,891, +55,2017-03-11 14:43:29.457788,28,246,380, +84,2017-03-11 14:43:29.457788,683,366,504, +41,2017-03-11 14:43:29.457788,269,54,65, +63,2017-03-11 14:43:29.457788,214,434,526, +8,2017-03-11 14:43:29.457788,686,783,448, +96,2017-03-11 14:43:29.457788,843,120,842, +15,2017-03-11 14:43:29.457788,439,654,43, +17,2017-03-11 14:43:29.457788,349,933,720, +38,2017-03-11 14:43:29.457788,179,101,212, +86,2017-03-11 14:43:29.457788,467,716,272, +74,2017-03-11 14:43:29.457788,771,337,369, +98,2017-03-11 14:43:29.457788,771,895,63, +46,2017-03-11 14:43:29.457788,678,510,413, +52,2017-03-11 14:43:29.457788,631,255,675, +7,2017-03-11 14:43:29.457788,908,718,237, +26,2017-03-11 14:43:29.457788,651,957,635, +83,2017-03-11 14:43:29.457788,58,847,692, +53,2017-03-11 14:43:29.457788,564,964,262, +33,2017-03-11 14:43:29.457788,300,630,319, +7,2017-03-11 14:43:29.457788,525,381,528, +20,2017-03-11 14:43:29.457788,892,941,724, +52,2017-03-11 14:43:29.457788,196,399,592, +10,2017-03-11 14:43:29.457788,117,829,362, +77,2017-03-11 14:43:29.457788,786,997,598, +84,2017-03-11 14:43:29.457788,845,290,370, +41,2017-03-11 14:43:29.457788,253,631,743, +55,2017-03-11 14:43:29.457788,262,62,625, +79,2017-03-11 14:43:29.457788,443,153,990, +33,2017-03-11 14:43:29.457788,94,714,857, +29,2017-03-11 14:43:29.457788,113,449,395, +23,2017-03-11 14:43:29.457788,277,757,998, +6,2017-03-11 14:43:29.457788,754,595,908, +60,2017-03-11 14:43:29.457788,885,278,8, +14,2017-03-11 14:43:29.457788,909,752,692, +17,2017-03-11 14:43:29.457788,813,317,958, +26,2017-03-11 14:43:29.457788,470,948,591, +56,2017-03-11 14:43:29.457788,661,448,854, +77,2017-03-11 14:43:29.457788,897,249,4, +17,2017-03-11 14:43:29.457788,6,2,238, +76,2017-03-11 14:43:29.457788,597,146,359, +48,2017-03-11 14:43:29.457788,424,367,620, +33,2017-03-11 14:43:29.457788,119,312,504, +93,2017-03-11 14:43:29.457788,629,462,189, +10,2017-03-11 14:43:29.457788,410,780,663, +7,2017-03-11 14:43:29.457788,229,517,845, +13,2017-03-11 14:43:29.457788,766,849,299, +77,2017-03-11 14:43:29.457788,851,537,531, +45,2017-03-11 14:43:29.457788,683,891,930, +11,2017-03-11 14:43:29.457788,258,550,440, +38,2017-03-11 14:43:29.457788,862,944,310, +49,2017-03-11 14:43:29.457788,407,499,589, +82,2017-03-11 14:43:29.457788,279,252,888, +51,2017-03-11 14:43:29.457788,769,733,633, +53,2017-03-11 14:43:29.457788,582,933,306, +43,2017-03-11 14:43:29.457788,470,838,881, +15,2017-03-11 14:43:29.457788,728,811,260, +99,2017-03-11 14:43:29.457788,361,699,364, +22,2017-03-11 14:43:29.457788,644,673,713, +5,2017-03-11 14:43:29.457788,172,302,867, +45,2017-03-11 14:43:29.457788,554,754,960, +32,2017-03-11 14:43:29.457788,487,593,858, +7,2017-03-11 14:43:29.457788,526,164,503, +100,2017-03-11 14:43:29.457788,2,384,149, +73,2017-03-11 14:43:29.457788,195,409,716, +56,2017-03-11 14:43:29.457788,108,80,778, +75,2017-03-11 14:43:29.457788,754,492,802, +93,2017-03-11 14:43:29.457788,794,669,378, +35,2017-03-11 14:43:29.457788,423,338,671, +91,2017-03-11 14:43:29.457788,931,528,979, +46,2017-03-11 14:43:29.457788,692,482,454, +69,2017-03-11 14:43:29.457788,867,603,424, +6,2017-03-11 14:43:29.457788,12,140,618, +12,2017-03-11 14:43:29.457788,220,396,872, +97,2017-03-11 14:43:29.457788,888,674,900, +68,2017-03-11 14:43:29.457788,343,277,29, +77,2017-03-11 14:43:29.457788,615,700,676, +55,2017-03-11 14:43:29.457788,228,655,4, +92,2017-03-11 14:43:29.457788,137,457,614, +0,2017-03-11 14:43:29.457788,61,38,66, +7,2017-03-11 14:43:29.457788,178,683,193, +40,2017-03-11 14:43:29.457788,80,65,371, +97,2017-03-11 14:43:29.457788,739,271,649, +8,2017-03-11 14:43:29.457788,548,678,848, +16,2017-03-11 14:43:29.457788,378,523,709, +61,2017-03-11 14:43:29.457788,179,713,526, +32,2017-03-11 14:43:29.457788,170,140,320, +23,2017-03-11 14:43:29.457788,177,386,303, +36,2017-03-11 14:43:29.457788,69,496,753, +15,2017-03-11 14:43:29.457788,561,124,116, +30,2017-03-11 14:43:29.457788,395,765,383, +94,2017-03-11 14:43:29.457788,443,231,106, +82,2017-03-11 14:43:29.457788,754,815,426, +93,2017-03-11 14:43:29.457788,527,952,249, +70,2017-03-11 14:43:29.457788,92,568,928, +27,2017-03-11 14:43:29.457788,954,231,624, +2,2017-03-11 14:43:29.457788,727,377,172, +29,2017-03-11 14:43:29.457788,501,288,589, +90,2017-03-11 14:43:29.457788,53,972,838, +50,2017-03-11 14:43:29.457788,203,943,317, +96,2017-03-11 14:43:29.457788,758,743,889, +29,2017-03-11 14:43:29.457788,695,138,983, +79,2017-03-11 14:43:29.457788,706,911,56, +66,2017-03-11 14:43:29.457788,142,680,683, +87,2017-03-11 14:43:29.457788,57,855,158, +56,2017-03-11 14:43:29.457788,143,748,453, +20,2017-03-11 14:43:29.457788,719,290,692, +92,2017-03-11 14:43:29.457788,234,9,879, +99,2017-03-11 14:43:29.457788,752,768,277, +45,2017-03-11 14:43:29.457788,905,260,233, +61,2017-03-11 14:43:29.457788,171,288,272, +31,2017-03-11 14:43:29.457788,968,955,183, +2,2017-03-11 14:43:29.457788,810,342,582, +95,2017-03-11 14:43:29.457788,89,35,149, +81,2017-03-11 14:43:29.457788,325,842,731, +56,2017-03-11 14:43:29.457788,851,609,550, +60,2017-03-11 14:43:29.457788,377,828,48, +28,2017-03-11 14:43:29.457788,88,281,894, +26,2017-03-11 14:43:29.457788,569,166,573, +54,2017-03-11 14:43:29.457788,121,757,562, +93,2017-03-11 14:43:29.457788,98,144,884, +19,2017-03-11 14:43:29.457788,179,34,996, +50,2017-03-11 14:43:29.457788,875,727,62, +73,2017-03-11 14:43:29.457788,337,612,328, +71,2017-03-11 14:43:29.457788,440,376,996, +53,2017-03-11 14:43:29.457788,657,890,788, +23,2017-03-11 14:43:29.457788,57,361,763, +18,2017-03-11 14:43:29.457788,117,325,109, +22,2017-03-11 14:43:29.457788,469,993,403, +65,2017-03-11 14:43:29.457788,27,400,151, +90,2017-03-11 14:43:29.457788,127,213,628, +46,2017-03-11 14:43:29.457788,825,956,177, +27,2017-03-11 14:43:29.457788,333,173,794, +99,2017-03-11 14:43:29.457788,64,581,216, +12,2017-03-11 14:43:29.457788,942,980,298, +6,2017-03-11 14:43:29.457788,305,407,275, +77,2017-03-11 14:43:29.457788,400,678,422, +43,2017-03-11 14:43:29.457788,78,573,329, +20,2017-03-11 14:43:29.457788,786,957,668, +61,2017-03-11 14:43:29.457788,913,845,876, +25,2017-03-11 14:43:29.457788,18,670,236, +8,2017-03-11 14:43:29.457788,251,453,202, +19,2017-03-11 14:43:29.457788,432,500,252, +74,2017-03-11 14:43:29.457788,907,527,511, +31,2017-03-11 14:43:29.457788,205,933,733, +28,2017-03-11 14:43:29.457788,505,61,487, +29,2017-03-11 14:43:29.457788,18,155,902, +93,2017-03-11 14:43:29.457788,1,778,178, +2,2017-03-11 14:43:29.457788,448,415,101, +70,2017-03-11 14:43:29.457788,867,304,891, +30,2017-03-11 14:43:29.457788,804,143,37, +71,2017-03-11 14:43:29.457788,670,548,17, +88,2017-03-11 14:43:29.457788,481,750,158, +99,2017-03-11 14:43:29.457788,811,645,277, +83,2017-03-11 14:43:29.457788,800,179,761, +80,2017-03-11 14:43:29.457788,957,939,820, +40,2017-03-11 14:43:29.457788,354,921,104, +22,2017-03-11 14:43:29.457788,225,995,521, +3,2017-03-11 14:43:29.457788,138,559,739, +81,2017-03-11 14:43:29.457788,107,756,684, +59,2017-03-11 14:43:29.457788,506,841,575, +32,2017-03-11 14:43:29.457788,486,852,146, +29,2017-03-11 14:43:29.457788,31,908,87, +99,2017-03-11 14:43:29.457788,847,907,393, +20,2017-03-11 14:43:29.457788,828,497,423, +5,2017-03-11 14:43:29.457788,492,944,81, +63,2017-03-11 14:43:29.457788,503,820,439, +61,2017-03-11 14:43:29.457788,576,122,198, +8,2017-03-11 14:43:29.457788,963,773,399, +45,2017-03-11 14:43:29.457788,625,546,736, +66,2017-03-11 14:43:29.457788,454,823,645, +30,2017-03-11 14:43:29.457788,731,38,502, +56,2017-03-11 14:43:29.457788,535,925,611, +3,2017-03-11 14:43:29.457788,869,692,656, +37,2017-03-11 14:43:29.457788,512,95,982, +9,2017-03-11 14:43:29.457788,217,180,171, +18,2017-03-11 14:43:29.457788,953,571,630, +58,2017-03-11 14:43:29.457788,117,366,235, +57,2017-03-11 14:43:29.457788,189,880,871, +92,2017-03-11 14:43:29.457788,918,373,478, +45,2017-03-11 14:43:29.457788,298,89,479, +17,2017-03-11 14:43:29.457788,782,136,539, +29,2017-03-11 14:43:29.457788,231,521,383, +45,2017-03-11 14:43:29.457788,701,554,628, +65,2017-03-11 14:43:29.457788,125,258,233, +24,2017-03-11 14:43:29.457788,623,468,812, +81,2017-03-11 14:43:29.457788,348,684,732, +27,2017-03-11 14:43:29.457788,57,210,719, +36,2017-03-11 14:43:29.457788,299,198,523, +8,2017-03-11 14:43:29.457788,334,62,375, +56,2017-03-11 14:43:29.457788,583,758,12, +28,2017-03-11 14:43:29.457788,312,640,938, +44,2017-03-11 14:43:29.457788,897,170,679, +52,2017-03-11 14:43:29.457788,638,491,333, +99,2017-03-11 14:43:29.457788,175,65,252, +23,2017-03-11 14:43:29.457788,275,971,588, +57,2017-03-11 14:43:29.457788,169,110,655, +50,2017-03-11 14:43:29.457788,172,30,67, +75,2017-03-11 14:43:29.457788,788,79,38, +10,2017-03-11 14:43:29.457788,719,976,537, +62,2017-03-11 14:43:29.457788,146,217,137, +78,2017-03-11 14:43:29.457788,708,469,770, +88,2017-03-11 14:43:29.457788,534,22,115, +81,2017-03-11 14:43:29.457788,993,703,383, +16,2017-03-11 14:43:29.457788,813,37,665, +99,2017-03-11 14:43:29.457788,67,732,740, +86,2017-03-11 14:43:29.457788,811,778,955, +53,2017-03-11 14:43:29.457788,754,493,145, +90,2017-03-11 14:43:29.457788,709,282,685, +42,2017-03-11 14:43:29.457788,751,456,300, +29,2017-03-11 14:43:29.457788,478,416,94, +47,2017-03-11 14:43:29.457788,119,477,634, +93,2017-03-11 14:43:29.457788,514,298,918, +58,2017-03-11 14:43:29.457788,30,658,437, +84,2017-03-11 14:43:29.457788,436,392,370, +19,2017-03-11 14:43:29.457788,884,515,91, +59,2017-03-11 14:43:29.457788,797,777,11, +55,2017-03-11 14:43:29.457788,232,311,833, +71,2017-03-11 14:43:29.457788,727,928,182, +85,2017-03-11 14:43:29.457788,405,815,778, +92,2017-03-11 14:43:29.457788,114,696,500, +14,2017-03-11 14:43:29.457788,354,937,985, +79,2017-03-11 14:43:29.457788,329,355,982, +21,2017-03-11 14:43:29.457788,870,73,807, +67,2017-03-11 14:43:29.457788,850,817,214, +8,2017-03-11 14:43:29.457788,129,48,792, +86,2017-03-11 14:43:29.457788,975,974,702, +38,2017-03-11 14:43:29.457788,789,480,299, +90,2017-03-11 14:43:29.457788,176,799,47, +53,2017-03-11 14:43:29.457788,736,31,321, +6,2017-03-11 14:43:29.457788,386,303,278, +26,2017-03-11 14:43:29.457788,376,85,922, +23,2017-03-11 14:43:29.457788,902,136,307, +3,2017-03-11 14:43:29.457788,184,100,886, +16,2017-03-11 14:43:29.457788,73,588,539, +86,2017-03-11 14:43:29.457788,68,838,765, +24,2017-03-11 14:43:29.457788,637,812,775, +37,2017-03-11 14:43:29.457788,843,97,438, +23,2017-03-11 14:43:29.457788,400,716,485, +78,2017-03-11 14:43:29.457788,800,406,1, +70,2017-03-11 14:43:29.457788,542,309,732, +73,2017-03-11 14:43:29.457788,408,618,885, +48,2017-03-11 14:43:29.457788,206,424,344, +27,2017-03-11 14:43:29.457788,262,109,519, +90,2017-03-11 14:43:29.457788,921,294,272, +76,2017-03-11 14:43:29.457788,390,709,994, +79,2017-03-11 14:43:29.457788,425,478,566, +22,2017-03-11 14:43:29.457788,885,567,927, +43,2017-03-11 14:43:29.457788,876,659,153, +28,2017-03-11 14:43:29.457788,277,39,766, +48,2017-03-11 14:43:29.457788,463,110,758, +72,2017-03-11 14:43:29.457788,219,276,624, +14,2017-03-11 14:43:29.457788,570,895,905, +96,2017-03-11 14:43:29.457788,604,899,751, +3,2017-03-11 14:43:29.457788,377,316,254, +26,2017-03-11 14:43:29.457788,884,181,689, +76,2017-03-11 14:43:29.457788,840,843,44, +12,2017-03-11 14:43:29.457788,881,810,601, +34,2017-03-11 14:43:29.457788,920,359,69, +14,2017-03-11 14:43:29.457788,635,692,279, +21,2017-03-11 14:43:29.457788,588,184,166, +19,2017-03-11 14:43:29.457788,82,917,221, +46,2017-03-11 14:43:29.457788,233,475,721, +12,2017-03-11 14:43:29.457788,655,410,876, +50,2017-03-11 14:43:29.457788,253,920,612, +13,2017-03-11 14:43:29.457788,730,213,478, +65,2017-03-11 14:43:29.457788,572,547,788, +21,2017-03-11 14:43:29.457788,239,67,413, +83,2017-03-11 14:43:29.457788,251,579,19, +33,2017-03-11 14:43:29.457788,496,240,793, +73,2017-03-11 14:43:29.457788,714,514,845, +37,2017-03-11 14:43:29.457788,924,722,865, +18,2017-03-11 14:43:29.457788,642,478,311, +37,2017-03-11 14:43:29.457788,691,789,21, +26,2017-03-11 14:43:29.457788,337,809,471, +58,2017-03-11 14:43:29.457788,876,883,403, +13,2017-03-11 14:43:29.457788,462,422,460, +96,2017-03-11 14:43:29.457788,661,253,686, +38,2017-03-11 14:43:29.457788,767,532,746, +69,2017-03-11 14:43:29.457788,253,611,869, +90,2017-03-11 14:43:29.457788,89,180,267, +78,2017-03-11 14:43:29.457788,969,288,43, +31,2017-03-11 14:43:29.457788,97,513,882, +97,2017-03-11 14:43:29.457788,397,285,100, +86,2017-03-11 14:43:29.457788,707,560,816, +37,2017-03-11 14:43:29.457788,813,503,744, +58,2017-03-11 14:43:29.457788,34,490,271, +29,2017-03-11 14:43:29.457788,101,140,183, +19,2017-03-11 14:43:29.457788,320,450,969, +29,2017-03-11 14:43:29.457788,738,12,595, +83,2017-03-11 14:43:29.457788,526,477,807, +92,2017-03-11 14:43:29.457788,762,907,781, +47,2017-03-11 14:43:29.457788,467,597,837, +28,2017-03-11 14:43:29.457788,100,581,860, +13,2017-03-11 14:43:29.457788,71,132,423, +17,2017-03-11 14:43:29.457788,272,606,361, +59,2017-03-11 14:43:29.457788,56,331,881, +79,2017-03-11 14:43:29.457788,343,476,628, +87,2017-03-11 14:43:29.457788,953,435,790, +71,2017-03-11 14:43:29.457788,342,571,183, +81,2017-03-11 14:43:29.457788,169,19,89, +27,2017-03-11 14:43:29.457788,600,950,404, +67,2017-03-11 14:43:29.457788,82,826,842, +35,2017-03-11 14:43:29.457788,432,203,945, +49,2017-03-11 14:43:29.457788,534,825,281, +88,2017-03-11 14:43:29.457788,301,909,745, +25,2017-03-11 14:43:29.457788,343,535,968, +69,2017-03-11 14:43:29.457788,107,151,494, +28,2017-03-11 14:43:29.457788,170,584,544, +77,2017-03-11 14:43:29.457788,533,948,441, +62,2017-03-11 14:43:29.457788,774,283,968, +21,2017-03-11 14:43:29.457788,486,913,694, +2,2017-03-11 14:43:29.457788,739,975,897, +4,2017-03-11 14:43:29.457788,884,642,293, +23,2017-03-11 14:43:29.457788,177,261,912, +28,2017-03-11 14:43:29.457788,412,406,559, +58,2017-03-11 14:43:29.457788,990,104,352, +52,2017-03-11 14:43:29.457788,52,792,139, +83,2017-03-11 14:43:29.457788,75,107,32, +56,2017-03-11 14:43:29.457788,20,726,582, +76,2017-03-11 14:43:29.457788,701,479,799, +58,2017-03-11 14:43:29.457788,121,92,811, +30,2017-03-11 14:43:29.457788,353,724,582, +77,2017-03-11 14:43:29.457788,130,141,347, +12,2017-03-11 14:43:29.457788,245,699,643, +30,2017-03-11 14:43:29.457788,491,782,122, +57,2017-03-11 14:43:29.457788,889,154,128, +91,2017-03-11 14:43:29.457788,880,710,668, +58,2017-03-11 14:43:29.457788,189,467,165, +31,2017-03-11 14:43:29.457788,559,977,608, +91,2017-03-11 14:43:29.457788,700,190,678, +83,2017-03-11 14:43:29.457788,331,25,951, +58,2017-03-11 14:43:29.457788,724,594,873, +22,2017-03-11 14:43:29.457788,376,995,783, +27,2017-03-11 14:43:29.457788,149,911,175, +3,2017-03-11 14:43:29.457788,621,843,610, +81,2017-03-11 14:43:29.457788,310,775,121, +87,2017-03-11 14:43:29.457788,752,729,783, +45,2017-03-11 14:43:29.457788,919,461,283, +25,2017-03-11 14:43:29.457788,486,234,827, +21,2017-03-11 14:43:29.457788,828,699,427, +20,2017-03-11 14:43:29.457788,694,209,469, +84,2017-03-11 14:43:29.457788,120,644,872, +74,2017-03-11 14:43:29.457788,487,482,552, +80,2017-03-11 14:43:29.457788,257,672,667, +1,2017-03-11 14:43:29.457788,401,450,462, +32,2017-03-11 14:43:29.457788,911,745,571, +40,2017-03-11 14:43:29.457788,979,398,608, +81,2017-03-11 14:43:29.457788,97,35,11, +79,2017-03-11 14:43:29.457788,245,480,634, +37,2017-03-11 14:43:29.457788,124,507,107, +61,2017-03-11 14:43:29.457788,989,658,408, +25,2017-03-11 14:43:29.457788,331,75,256, +73,2017-03-11 14:43:29.457788,525,718,52, +44,2017-03-11 14:43:29.457788,464,623,834, +44,2017-03-11 14:43:29.457788,20,442,250, +12,2017-03-11 14:43:29.457788,477,261,908, +72,2017-03-11 14:43:29.457788,741,543,87, +86,2017-03-11 14:43:29.457788,49,194,475, +4,2017-03-11 14:43:29.457788,852,883,284, +18,2017-03-11 14:43:29.457788,959,540,914, +48,2017-03-11 14:43:29.457788,258,966,920, +72,2017-03-11 14:43:29.457788,588,754,164, +61,2017-03-11 14:43:29.457788,196,414,726, +67,2017-03-11 14:43:29.457788,675,634,395, +42,2017-03-11 14:43:29.457788,176,482,280, +23,2017-03-11 14:43:29.457788,675,755,263, +53,2017-03-11 14:43:29.457788,639,547,710, +60,2017-03-11 14:43:29.457788,87,624,82, +35,2017-03-11 14:43:29.457788,589,2,66, +18,2017-03-11 14:43:29.457788,755,231,786, +95,2017-03-11 14:43:29.457788,645,512,624, +32,2017-03-11 14:43:29.457788,145,18,735, +32,2017-03-11 14:43:29.457788,500,15,547, +18,2017-03-11 14:43:29.457788,770,811,702, +41,2017-03-11 14:43:29.457788,358,412,7, +45,2017-03-11 14:43:29.457788,35,88,790, +62,2017-03-11 14:43:29.457788,90,857,802, +85,2017-03-11 14:43:29.457788,87,589,796, +73,2017-03-11 14:43:29.457788,100,420,51, +25,2017-03-11 14:43:29.457788,438,786,567, +94,2017-03-11 14:43:29.457788,801,115,113, +57,2017-03-11 14:43:29.457788,925,815,980, +28,2017-03-11 14:43:29.457788,227,987,728, +26,2017-03-11 14:43:29.457788,75,518,887, +17,2017-03-11 14:43:29.457788,375,689,10, +46,2017-03-11 14:43:29.457788,278,806,194, +38,2017-03-11 14:43:29.457788,226,245,624, +66,2017-03-11 14:43:29.457788,31,191,601, +83,2017-03-11 14:43:29.457788,306,714,403, +23,2017-03-11 14:43:29.457788,529,383,514, +76,2017-03-11 14:43:29.457788,370,243,19, +45,2017-03-11 14:43:29.457788,761,906,611, +14,2017-03-11 14:43:29.457788,595,621,598, +87,2017-03-11 14:43:29.457788,428,792,252, +65,2017-03-11 14:43:29.457788,38,875,317, +7,2017-03-11 14:43:29.457788,67,919,902, +37,2017-03-11 14:43:29.457788,633,305,604, +16,2017-03-11 14:43:29.457788,688,118,919, +6,2017-03-11 14:43:29.457788,361,938,504, +12,2017-03-11 14:43:29.457788,844,114,258, +44,2017-03-11 14:43:29.457788,735,856,312, +16,2017-03-11 14:43:29.457788,649,564,817, +69,2017-03-11 14:43:29.457788,439,134,756, +51,2017-03-11 14:43:29.457788,53,658,879, +69,2017-03-11 14:43:29.457788,962,483,848, +65,2017-03-11 14:43:29.457788,601,767,708, +96,2017-03-11 14:43:29.457788,705,212,84, +55,2017-03-11 14:43:29.457788,326,342,987, +6,2017-03-11 14:43:29.457788,198,299,224, +85,2017-03-11 14:43:29.457788,863,41,533, +30,2017-03-11 14:43:29.457788,175,289,809, +23,2017-03-11 14:43:29.457788,947,688,913, +91,2017-03-11 14:43:29.457788,170,761,559, +77,2017-03-11 14:43:29.457788,527,267,734, +23,2017-03-11 14:43:29.457788,479,817,780, +81,2017-03-11 14:43:29.457788,159,767,867, +36,2017-03-11 14:43:29.457788,67,91,204, +93,2017-03-11 14:43:29.457788,132,737,233, +31,2017-03-11 14:43:29.457788,26,42,534, +97,2017-03-11 14:43:29.457788,729,446,882, +90,2017-03-11 14:43:29.457788,207,441,671, +73,2017-03-11 14:43:29.457788,709,405,967, +19,2017-03-11 14:43:29.457788,222,747,993, +38,2017-03-11 14:43:29.457788,514,860,739, +58,2017-03-11 14:43:29.457788,951,943,511, +8,2017-03-11 14:43:29.457788,680,744,389, +71,2017-03-11 14:43:29.457788,785,923,679, +51,2017-03-11 14:43:29.457788,369,561,415, +58,2017-03-11 14:43:29.457788,2,86,311, +71,2017-03-11 14:43:29.457788,491,277,899, +71,2017-03-11 14:43:29.457788,24,892,95, +54,2017-03-11 14:43:29.457788,751,834,119, +70,2017-03-11 14:43:29.457788,776,629,785, +46,2017-03-11 14:43:29.457788,373,174,162, +16,2017-03-11 14:43:29.457788,97,841,673, +47,2017-03-11 14:43:29.457788,402,88,42, +40,2017-03-11 14:43:29.457788,174,353,115, +66,2017-03-11 14:43:29.457788,631,13,378, +65,2017-03-11 14:43:29.457788,905,473,193, +66,2017-03-11 14:43:29.457788,307,312,359, +8,2017-03-11 14:43:29.457788,941,143,540, +31,2017-03-11 14:43:29.457788,317,702,473, +41,2017-03-11 14:43:29.457788,543,146,880, +94,2017-03-11 14:43:29.457788,233,922,349, +41,2017-03-11 14:43:29.457788,276,464,72, +91,2017-03-11 14:43:29.457788,477,450,561, +38,2017-03-11 14:43:29.457788,923,754,39, +23,2017-03-11 14:43:29.457788,66,397,314, +1,2017-03-11 14:43:29.457788,541,854,321, +86,2017-03-11 14:43:29.457788,555,794,272, +10,2017-03-11 14:43:29.457788,939,152,43, +17,2017-03-11 14:43:29.457788,75,392,580, +35,2017-03-11 14:43:29.457788,856,652,257, +33,2017-03-11 14:43:29.457788,102,819,716, +2,2017-03-11 14:43:29.457788,573,754,255, +64,2017-03-11 14:43:29.457788,152,569,646, +69,2017-03-11 14:43:29.457788,423,967,551, +98,2017-03-11 14:43:29.457788,760,823,76, +70,2017-03-11 14:43:29.457788,975,120,872, +5,2017-03-11 14:43:29.457788,512,452,401, +37,2017-03-11 14:43:29.457788,104,658,701, +21,2017-03-11 14:43:29.457788,476,417,231, +5,2017-03-11 14:43:29.457788,171,486,688, +32,2017-03-11 14:43:29.457788,55,333,16, +48,2017-03-11 14:43:29.457788,300,567,456, +6,2017-03-11 14:43:29.457788,390,532,760, +37,2017-03-11 14:43:29.457788,652,633,415, +16,2017-03-11 14:43:29.457788,85,816,532, +19,2017-03-11 14:43:29.457788,473,233,394, +95,2017-03-11 14:43:29.457788,650,625,998, +82,2017-03-11 14:43:29.457788,111,686,144, +17,2017-03-11 14:43:29.457788,20,160,643, +32,2017-03-11 14:43:29.457788,727,99,380, +12,2017-03-11 14:43:29.457788,632,141,482, +28,2017-03-11 14:43:29.457788,773,897,448, +86,2017-03-11 14:43:29.457788,713,979,47, +19,2017-03-11 14:43:29.457788,212,441,135, +86,2017-03-11 14:43:29.457788,66,134,683, +18,2017-03-11 14:43:29.457788,820,827,342, +84,2017-03-11 14:43:29.457788,987,985,159, +71,2017-03-11 14:43:29.457788,84,540,830, +72,2017-03-11 14:43:29.457788,680,312,1000, +45,2017-03-11 14:43:29.457788,209,448,311, +92,2017-03-11 14:43:29.457788,427,358,107, +64,2017-03-11 14:43:29.457788,799,243,501, +86,2017-03-11 14:43:29.457788,376,184,40, +20,2017-03-11 14:43:29.457788,11,382,36, +100,2017-03-11 14:43:29.457788,367,195,711, +45,2017-03-11 14:43:29.457788,735,541,167, +42,2017-03-11 14:43:29.457788,853,167,868, +6,2017-03-11 14:43:29.457788,615,180,983, +4,2017-03-11 14:43:29.457788,538,90,681, +34,2017-03-11 14:43:29.457788,332,183,201, +71,2017-03-11 14:43:29.457788,367,241,905, +38,2017-03-11 14:43:29.457788,623,941,375, +99,2017-03-11 14:43:29.457788,137,87,441, +87,2017-03-11 14:43:29.457788,628,609,287, +48,2017-03-11 14:43:29.457788,776,156,542, +39,2017-03-11 14:43:29.457788,335,524,433, +87,2017-03-11 14:43:29.457788,614,115,209, +95,2017-03-11 14:43:29.457788,297,410,655, +66,2017-03-11 14:43:29.457788,651,561,41, +27,2017-03-11 14:43:29.457788,502,417,264, +64,2017-03-11 14:43:29.457788,503,706,511, +13,2017-03-11 14:43:29.457788,315,798,612, +9,2017-03-11 14:43:29.457788,954,153,482, +29,2017-03-11 14:43:29.457788,678,916,162, +29,2017-03-11 14:43:29.457788,30,371,238, +33,2017-03-11 14:43:29.457788,782,893,991, +43,2017-03-11 14:43:29.457788,454,33,707, +96,2017-03-11 14:43:29.457788,449,972,595, +95,2017-03-11 14:43:29.457788,678,106,84, +99,2017-03-11 14:43:29.457788,904,695,84, +86,2017-03-11 14:43:29.457788,849,566,146, +53,2017-03-11 14:43:29.457788,482,308,818, +51,2017-03-11 14:43:29.457788,680,57,839, +46,2017-03-11 14:43:29.457788,950,831,894, +40,2017-03-11 14:43:29.457788,864,601,360, +31,2017-03-11 14:43:29.457788,573,955,266, +25,2017-03-11 14:43:29.457788,60,350,243, +96,2017-03-11 14:43:29.457788,45,327,821, +89,2017-03-11 14:43:29.457788,893,967,420, +37,2017-03-11 14:43:29.457788,275,238,887, +95,2017-03-11 14:43:29.457788,295,726,416, +24,2017-03-11 14:43:29.457788,557,310,649, +42,2017-03-11 14:43:29.457788,911,9,733, +48,2017-03-11 14:43:29.457788,963,999,735, +2,2017-03-11 14:43:29.457788,349,979,987, +39,2017-03-11 14:43:29.457788,305,808,287, +20,2017-03-11 14:43:29.457788,775,707,573, +5,2017-03-11 14:43:29.457788,946,460,5, +24,2017-03-11 14:43:29.457788,186,421,485, +74,2017-03-11 14:43:29.457788,731,134,163, +64,2017-03-11 14:43:29.457788,143,896,127, +11,2017-03-11 14:43:29.457788,895,862,130, +24,2017-03-11 14:43:29.457788,841,118,637, +15,2017-03-11 14:43:29.457788,926,925,344, +70,2017-03-11 14:43:29.457788,632,917,752, +58,2017-03-11 14:43:29.457788,377,757,818, +56,2017-03-11 14:43:29.457788,178,303,305, +91,2017-03-11 14:43:29.457788,437,468,551, +58,2017-03-11 14:43:29.457788,364,678,687, +26,2017-03-11 14:43:29.457788,540,817,503, +38,2017-03-11 14:43:29.457788,934,140,526, +86,2017-03-11 14:43:29.457788,64,871,562, +70,2017-03-11 14:43:29.457788,788,313,274, +17,2017-03-11 14:43:29.457788,70,91,728, +25,2017-03-11 14:43:29.457788,394,33,156, +83,2017-03-11 14:43:29.457788,501,707,412, +86,2017-03-11 14:43:29.457788,385,99,123, +93,2017-03-11 14:43:29.457788,916,626,305, +85,2017-03-11 14:43:29.457788,765,832,711, +83,2017-03-11 14:43:29.457788,703,273,526, +49,2017-03-11 14:43:29.457788,586,800,656, +66,2017-03-11 14:43:29.457788,891,384,904, +29,2017-03-11 14:43:29.457788,417,61,117, +92,2017-03-11 14:43:29.457788,768,530,782, +15,2017-03-11 14:43:29.457788,629,905,78, +54,2017-03-11 14:43:29.457788,531,384,395, +30,2017-03-11 14:43:29.457788,215,106,126, +92,2017-03-11 14:43:29.457788,379,652,409, +96,2017-03-11 14:43:29.457788,452,66,621, +34,2017-03-11 14:43:29.457788,450,525,628, +87,2017-03-11 14:43:29.457788,586,746,785, +35,2017-03-11 14:43:29.457788,275,567,507, +90,2017-03-11 14:43:29.457788,473,585,449, +0,2017-03-11 14:43:29.457788,969,844,299, +18,2017-03-11 14:43:29.457788,950,425,102, +33,2017-03-11 14:43:29.457788,77,512,294, +53,2017-03-11 14:43:29.457788,577,915,872, +3,2017-03-11 14:43:29.457788,440,500,895, +3,2017-03-11 14:43:29.457788,245,680,380, +52,2017-03-11 14:43:29.457788,247,887,425, +72,2017-03-11 14:43:29.457788,472,873,723, +44,2017-03-11 14:43:29.457788,717,23,625, +67,2017-03-11 14:43:29.457788,448,727,996, +53,2017-03-11 14:43:29.457788,239,290,54, +82,2017-03-11 14:43:29.457788,205,926,843, +65,2017-03-11 14:43:29.457788,425,738,671, +67,2017-03-11 14:43:29.457788,418,51,192, +67,2017-03-11 14:43:29.457788,938,616,385, +41,2017-03-11 14:43:29.457788,490,109,850, +21,2017-03-11 14:43:29.457788,131,475,875, +58,2017-03-11 14:43:29.457788,202,871,104, +44,2017-03-11 14:43:29.457788,161,158,257, +37,2017-03-11 14:43:29.457788,83,100,12, +51,2017-03-11 14:43:29.457788,838,683,180, +26,2017-03-11 14:43:29.457788,734,371,921, +67,2017-03-11 14:43:29.457788,987,306,81, +48,2017-03-11 14:43:29.457788,415,931,684, +55,2017-03-11 14:43:29.457788,406,559,125, +61,2017-03-11 14:43:29.457788,430,229,48, +59,2017-03-11 14:43:29.457788,386,305,958, +47,2017-03-11 14:43:29.457788,405,970,979, +24,2017-03-11 14:43:29.457788,653,158,499, +39,2017-03-11 14:43:29.457788,529,420,58, +52,2017-03-11 14:43:29.457788,727,139,994, +14,2017-03-11 14:43:29.457788,69,678,688, +47,2017-03-11 14:43:29.457788,237,812,83, +67,2017-03-11 14:43:29.457788,41,131,259, +43,2017-03-11 14:43:29.457788,436,217,897, +84,2017-03-11 14:43:29.457788,186,876,85, +84,2017-03-11 14:43:29.457788,34,584,226, +56,2017-03-11 14:43:29.457788,4,284,80, +73,2017-03-11 14:43:29.457788,422,74,873, +49,2017-03-11 14:43:29.457788,751,560,967, +99,2017-03-11 14:43:29.457788,373,49,655, +41,2017-03-11 14:43:29.457788,180,914,842, +62,2017-03-11 14:43:29.457788,130,739,458, +32,2017-03-11 14:43:29.457788,615,543,156, +65,2017-03-11 14:43:29.457788,127,382,213, +13,2017-03-11 14:43:29.457788,666,292,863, +9,2017-03-11 14:43:29.457788,366,736,580, +12,2017-03-11 14:43:29.457788,296,547,106, +67,2017-03-11 14:43:29.457788,596,761,83, +78,2017-03-11 14:43:29.457788,675,925,393, +81,2017-03-11 14:43:29.457788,664,851,122, +28,2017-03-11 14:43:29.457788,394,279,928, +52,2017-03-11 14:43:29.457788,661,140,653, +33,2017-03-11 14:43:29.457788,433,515,415, +80,2017-03-11 14:43:29.457788,251,995,916, +55,2017-03-11 14:43:29.457788,542,22,216, +14,2017-03-11 14:43:29.457788,784,299,915, +46,2017-03-11 14:43:29.457788,224,309,264, +89,2017-03-11 14:43:29.457788,160,386,166, +55,2017-03-11 14:43:29.457788,665,93,76, +33,2017-03-11 14:43:29.457788,234,728,652, +67,2017-03-11 14:43:29.457788,244,67,465, +49,2017-03-11 14:43:29.457788,62,381,42, +60,2017-03-11 14:43:29.457788,404,258,743, +19,2017-03-11 14:43:29.457788,557,659,646, +78,2017-03-11 14:43:29.457788,968,910,668, +13,2017-03-11 14:43:29.457788,296,834,682, +96,2017-03-11 14:43:29.457788,927,758,287, +16,2017-03-11 14:43:29.457788,486,939,827, +73,2017-03-11 14:43:29.457788,7,292,225, +7,2017-03-11 14:43:29.457788,673,267,674, +8,2017-03-11 14:43:29.457788,525,417,264, +8,2017-03-11 14:43:29.457788,76,910,863, +4,2017-03-11 14:43:29.457788,820,531,171, +12,2017-03-11 14:43:29.457788,365,853,78, +29,2017-03-11 14:43:29.457788,611,365,453, +10,2017-03-11 14:43:29.457788,304,280,828, +31,2017-03-11 14:43:29.457788,572,53,380, +25,2017-03-11 14:43:29.457788,320,54,323, +85,2017-03-11 14:43:29.457788,471,587,928, +55,2017-03-11 14:43:29.457788,498,791,590, +32,2017-03-11 14:43:29.457788,323,761,435, +69,2017-03-11 14:43:29.457788,614,513,980, +22,2017-03-11 14:43:29.457788,878,433,322, +18,2017-03-11 14:43:29.457788,713,150,493, +29,2017-03-11 14:43:29.457788,202,873,531, +52,2017-03-11 14:43:29.457788,927,854,368, +40,2017-03-11 14:43:29.457788,442,296,944, +94,2017-03-11 14:43:29.457788,87,533,258, +41,2017-03-11 14:43:29.457788,294,692,98, +91,2017-03-11 14:43:29.457788,205,78,133, +8,2017-03-11 14:43:29.457788,511,455,264, +22,2017-03-11 14:43:29.457788,605,757,511, +81,2017-03-11 14:43:29.457788,630,42,330, +56,2017-03-11 14:43:29.457788,897,698,954, +34,2017-03-11 14:43:29.457788,994,897,278, +8,2017-03-11 14:43:29.457788,431,536,491, +72,2017-03-11 14:43:29.457788,228,589,633, +43,2017-03-11 14:43:29.457788,667,766,515, +18,2017-03-11 14:43:29.457788,221,780,404, +83,2017-03-11 14:43:29.457788,537,914,634, +17,2017-03-11 14:43:29.457788,957,964,724, +85,2017-03-11 14:43:29.457788,661,677,192, +66,2017-03-11 14:43:29.457788,575,470,736, +1,2017-03-11 14:43:29.457788,6,228,730, +23,2017-03-11 14:43:29.457788,817,363,667, +48,2017-03-11 14:43:29.457788,129,182,663, +35,2017-03-11 14:43:29.457788,961,67,177, +50,2017-03-11 14:43:29.457788,981,811,665, +94,2017-03-11 14:43:29.457788,774,389,791, +44,2017-03-11 14:43:29.457788,66,983,91, +64,2017-03-11 14:43:29.457788,453,827,646, +46,2017-03-11 14:43:29.457788,55,377,692, +87,2017-03-11 14:43:29.457788,740,358,356, +87,2017-03-11 14:43:29.457788,540,19,220, +50,2017-03-11 14:43:29.457788,86,397,0, +7,2017-03-11 14:43:29.457788,208,665,5, +98,2017-03-11 14:43:29.457788,54,797,418, +12,2017-03-11 14:43:29.457788,780,508,761, +23,2017-03-11 14:43:29.457788,336,407,690, +39,2017-03-11 14:43:29.457788,784,382,262, +52,2017-03-11 14:43:29.457788,741,618,393, +28,2017-03-11 14:43:29.457788,638,614,783, +72,2017-03-11 14:43:29.457788,11,783,791, +22,2017-03-11 14:43:29.457788,448,797,201, +50,2017-03-11 14:43:29.457788,593,619,622, +37,2017-03-11 14:43:29.457788,127,383,605, +46,2017-03-11 14:43:29.457788,791,296,854, +57,2017-03-11 14:43:29.457788,678,116,99, +42,2017-03-11 14:43:29.457788,734,492,699, +37,2017-03-11 14:43:29.457788,106,482,95, +12,2017-03-11 14:43:29.457788,264,887,336, +71,2017-03-11 14:43:29.457788,683,537,214, +28,2017-03-11 14:43:29.457788,156,837,650, +28,2017-03-11 14:43:29.457788,220,255,747, +1,2017-03-11 14:43:29.457788,551,600,586, +23,2017-03-11 14:43:29.457788,716,685,647, +45,2017-03-11 14:43:29.457788,177,346,822, +28,2017-03-11 14:43:29.457788,828,917,400, +9,2017-03-11 14:43:29.457788,804,736,805, +49,2017-03-11 14:43:29.457788,274,20,764, +43,2017-03-11 14:43:29.457788,856,413,714, +8,2017-03-11 14:43:29.457788,668,461,88, +22,2017-03-11 14:43:29.457788,62,673,447, +78,2017-03-11 14:43:29.457788,358,94,228, +53,2017-03-11 14:43:29.457788,440,50,818, +27,2017-03-11 14:43:29.457788,967,218,361, +77,2017-03-11 14:43:29.457788,954,166,258, +23,2017-03-11 14:43:29.457788,186,22,658, +4,2017-03-11 14:43:29.457788,435,372,119, +10,2017-03-11 14:43:29.457788,833,206,322, +89,2017-03-11 14:43:29.457788,880,769,672, +24,2017-03-11 14:43:29.457788,864,900,772, +30,2017-03-11 14:43:29.457788,950,590,573, +92,2017-03-11 14:43:29.457788,808,934,689, +76,2017-03-11 14:43:29.457788,100,947,989, +29,2017-03-11 14:43:29.457788,969,647,329, +40,2017-03-11 14:43:29.457788,19,448,508, +85,2017-03-11 14:43:29.457788,654,830,746, +53,2017-03-11 14:43:29.457788,600,418,771, +46,2017-03-11 14:43:29.457788,318,544,767, +27,2017-03-11 14:43:29.457788,134,340,186, +94,2017-03-11 14:43:29.457788,274,875,703, +37,2017-03-11 14:43:29.457788,822,692,661, +79,2017-03-11 14:43:29.457788,339,990,195, +36,2017-03-11 14:43:29.457788,437,703,209, +9,2017-03-11 14:43:29.457788,534,956,625, +13,2017-03-11 14:43:29.457788,374,396,596, +69,2017-03-11 14:43:29.457788,940,364,961, +7,2017-03-11 14:43:29.457788,703,147,15, +98,2017-03-11 14:43:29.457788,22,718,352, +84,2017-03-11 14:43:29.457788,410,13,635, +75,2017-03-11 14:43:29.457788,2,830,107, +44,2017-03-11 14:43:29.457788,534,316,531, +7,2017-03-11 14:43:29.457788,271,155,200, +65,2017-03-11 14:43:29.457788,552,797,338, +49,2017-03-11 14:43:29.457788,160,298,565, +86,2017-03-11 14:43:29.457788,445,580,841, +47,2017-03-11 14:43:29.457788,298,193,311, +71,2017-03-11 14:43:29.457788,205,946,457, +21,2017-03-11 14:43:29.457788,776,563,647, +31,2017-03-11 14:43:29.457788,879,178,377, +15,2017-03-11 14:43:29.457788,333,577,796, +88,2017-03-11 14:43:29.457788,373,134,376, +53,2017-03-11 14:43:29.457788,432,941,397, +88,2017-03-11 14:43:29.457788,521,238,345, +82,2017-03-11 14:43:29.457788,431,656,527, +64,2017-03-11 14:43:29.457788,602,984,844, +38,2017-03-11 14:43:29.457788,547,491,687, +43,2017-03-11 14:43:29.457788,669,64,577, +0,2017-03-11 14:43:29.457788,641,374,887, +1,2017-03-11 14:43:29.457788,507,263,548, +94,2017-03-11 14:43:29.457788,204,945,817, +72,2017-03-11 14:43:29.457788,183,162,544, +61,2017-03-11 14:43:29.457788,818,71,251, +42,2017-03-11 14:43:29.457788,55,95,797, +60,2017-03-11 14:43:29.457788,586,484,29, +26,2017-03-11 14:43:29.457788,548,607,257, +19,2017-03-11 14:43:29.457788,980,144,202, +49,2017-03-11 14:43:29.457788,407,750,427, +61,2017-03-11 14:43:29.457788,695,244,336, +88,2017-03-11 14:43:29.457788,406,880,492, +22,2017-03-11 14:43:29.457788,951,742,642, +1,2017-03-11 14:43:29.457788,837,439,609, +42,2017-03-11 14:43:29.457788,923,638,679, +47,2017-03-11 14:43:29.457788,245,936,659, +22,2017-03-11 14:43:29.457788,80,861,712, +49,2017-03-11 14:43:29.457788,611,139,98, +31,2017-03-11 14:43:29.457788,383,433,183, +79,2017-03-11 14:43:29.457788,313,675,12, +26,2017-03-11 14:43:29.457788,417,655,270, +25,2017-03-11 14:43:29.457788,94,878,677, +2,2017-03-11 14:43:29.457788,516,356,488, +76,2017-03-11 14:43:29.457788,292,147,986, +37,2017-03-11 14:43:29.457788,9,698,859, +62,2017-03-11 14:43:29.457788,837,957,926, +22,2017-03-11 14:43:29.457788,390,109,10, +70,2017-03-11 14:43:29.457788,784,22,967, +20,2017-03-11 14:43:29.457788,676,236,455, +77,2017-03-11 14:43:29.457788,114,132,787, +63,2017-03-11 14:43:29.457788,488,276,391, +78,2017-03-11 14:43:29.457788,423,377,153, +43,2017-03-11 14:43:29.457788,75,12,52, +91,2017-03-11 14:43:29.457788,970,978,133, +36,2017-03-11 14:43:29.457788,87,143,63, +87,2017-03-11 14:43:29.457788,165,29,72, +84,2017-03-11 14:43:29.457788,265,527,611, +38,2017-03-11 14:43:29.457788,659,399,10, +15,2017-03-11 14:43:29.457788,674,401,928, +10,2017-03-11 14:43:29.457788,778,81,529, +85,2017-03-11 14:43:29.457788,94,581,764, +6,2017-03-11 14:43:29.457788,559,897,423, +65,2017-03-11 14:43:29.457788,40,486,516, +20,2017-03-11 14:43:29.457788,515,588,45, +78,2017-03-11 14:43:29.457788,114,657,160, +77,2017-03-11 14:43:29.457788,55,170,921, +73,2017-03-11 14:43:29.457788,571,849,827, +35,2017-03-11 14:43:29.457788,930,356,201, +2,2017-03-11 14:43:29.457788,937,965,87, +50,2017-03-11 14:43:29.457788,862,510,141, +90,2017-03-11 14:43:29.457788,995,657,106, +51,2017-03-11 14:43:29.457788,244,151,290, +36,2017-03-11 14:43:29.457788,808,450,132, +86,2017-03-11 14:43:29.457788,619,52,593, +19,2017-03-11 14:43:29.457788,901,420,538, +83,2017-03-11 14:43:29.457788,776,739,855, +71,2017-03-11 14:43:29.457788,704,942,208, +57,2017-03-11 14:43:29.457788,452,349,467, +45,2017-03-11 14:43:29.457788,5,573,957, +25,2017-03-11 14:43:29.457788,725,247,608, +53,2017-03-11 14:43:29.457788,697,740,396, +32,2017-03-11 14:43:29.457788,792,989,506, +69,2017-03-11 14:43:29.457788,409,44,524, +19,2017-03-11 14:43:29.457788,783,379,898, +49,2017-03-11 14:43:29.457788,321,106,52, +77,2017-03-11 14:43:29.457788,454,519,220, +46,2017-03-11 14:43:29.457788,93,177,709, +82,2017-03-11 14:43:29.457788,425,318,351, +12,2017-03-11 14:43:29.457788,57,747,438, +85,2017-03-11 14:43:29.457788,736,944,542, +15,2017-03-11 14:43:29.457788,988,66,331, +77,2017-03-11 14:43:29.457788,445,228,257, +77,2017-03-11 14:43:29.457788,334,309,538, +79,2017-03-11 14:43:29.457788,828,758,248, +92,2017-03-11 14:43:29.457788,936,958,738, +36,2017-03-11 14:43:29.457788,275,89,482, +33,2017-03-11 14:43:29.457788,836,920,182, +57,2017-03-11 14:43:29.457788,864,724,717, +85,2017-03-11 14:43:29.457788,790,48,622, +24,2017-03-11 14:43:29.457788,276,879,1, +61,2017-03-11 14:43:29.457788,188,539,398, +2,2017-03-11 14:43:29.457788,298,647,936, +23,2017-03-11 14:43:29.457788,604,675,593, +88,2017-03-11 14:43:29.457788,763,75,212, +60,2017-03-11 14:43:29.457788,995,393,171, +86,2017-03-11 14:43:29.457788,117,888,711, +91,2017-03-11 14:43:29.457788,936,333,142, +21,2017-03-11 14:43:29.457788,212,143,822, +40,2017-03-11 14:43:29.457788,682,220,416, +98,2017-03-11 14:43:29.457788,867,352,212, +47,2017-03-11 14:43:29.457788,26,806,350, +79,2017-03-11 14:43:29.457788,881,562,388, +88,2017-03-11 14:43:29.457788,955,559,736, +7,2017-03-11 14:43:29.457788,447,447,979, +38,2017-03-11 14:43:29.457788,780,120,595, +99,2017-03-11 14:43:29.457788,263,417,392, +94,2017-03-11 14:43:29.457788,637,807,924, +50,2017-03-11 14:43:29.457788,159,136,976, +19,2017-03-11 14:43:29.457788,942,326,975, +82,2017-03-11 14:43:29.457788,888,363,700, +84,2017-03-11 14:43:29.457788,923,436,915, +37,2017-03-11 14:43:29.457788,883,894,752, +66,2017-03-11 14:43:29.457788,14,347,655, +28,2017-03-11 14:43:29.457788,764,46,221, +40,2017-03-11 14:43:29.457788,853,145,906, +1,2017-03-11 14:43:29.457788,282,881,198, +22,2017-03-11 14:43:29.457788,207,173,47, +10,2017-03-11 14:43:29.457788,536,747,939, +46,2017-03-11 14:43:29.457788,183,854,828, +7,2017-03-11 14:43:29.457788,748,581,729, +76,2017-03-11 14:43:29.457788,928,384,39, +69,2017-03-11 14:43:29.457788,430,260,93, +28,2017-03-11 14:43:29.457788,406,999,296, +69,2017-03-11 14:43:29.457788,880,493,911, +9,2017-03-11 14:43:29.457788,666,958,183, +20,2017-03-11 14:43:29.457788,705,122,660, +89,2017-03-11 14:43:29.457788,976,489,954, +72,2017-03-11 14:43:29.457788,69,683,486, +100,2017-03-11 14:43:29.457788,67,525,689, +50,2017-03-11 14:43:29.457788,785,782,779, +19,2017-03-11 14:43:29.457788,781,75,878, +66,2017-03-11 14:43:29.457788,568,788,749, +23,2017-03-11 14:43:29.457788,746,932,436, +45,2017-03-11 14:43:29.457788,54,96,339, +3,2017-03-11 14:43:29.457788,585,293,755, +65,2017-03-11 14:43:29.457788,976,241,651, +4,2017-03-11 14:43:29.457788,765,340,539, +55,2017-03-11 14:43:29.457788,122,319,741, +90,2017-03-11 14:43:29.457788,394,619,564, +96,2017-03-11 14:43:29.457788,407,313,196, +15,2017-03-11 14:43:29.457788,246,632,604, +30,2017-03-11 14:43:29.457788,728,944,331, +31,2017-03-11 14:43:29.457788,237,85,968, +21,2017-03-11 14:43:29.457788,326,619,256, +9,2017-03-11 14:43:29.457788,959,795,642, +8,2017-03-11 14:43:29.457788,114,383,984, +51,2017-03-11 14:43:29.457788,1,548,470, +41,2017-03-11 14:43:29.457788,862,666,562, +11,2017-03-11 14:43:29.457788,298,166,408, +3,2017-03-11 14:43:29.457788,110,738,339, +35,2017-03-11 14:43:29.457788,823,307,560, +15,2017-03-11 14:43:29.457788,926,816,241, +88,2017-03-11 14:43:29.457788,611,882,965, +73,2017-03-11 14:43:29.457788,265,949,233, +27,2017-03-11 14:43:29.457788,497,703,675, +36,2017-03-11 14:43:29.457788,368,236,467, +67,2017-03-11 14:43:29.457788,403,874,692, +51,2017-03-11 14:43:29.457788,612,31,859, +44,2017-03-11 14:43:29.457788,338,419,585, +26,2017-03-11 14:43:29.457788,235,826,148, +85,2017-03-11 14:43:29.457788,708,113,571, +97,2017-03-11 14:43:29.457788,62,804,239, +56,2017-03-11 14:43:29.457788,507,913,918, +87,2017-03-11 14:43:29.457788,150,385,541, +55,2017-03-11 14:43:29.457788,259,233,65, +87,2017-03-11 14:43:29.457788,264,925,308, +60,2017-03-11 14:43:29.457788,344,893,866, +58,2017-03-11 14:43:29.457788,719,13,425, +43,2017-03-11 14:43:29.457788,126,996,400, +19,2017-03-11 14:43:29.457788,800,638,748, +31,2017-03-11 14:43:29.457788,552,666,182, +70,2017-03-11 14:43:29.457788,51,722,254, +31,2017-03-11 14:43:29.457788,955,320,182, +22,2017-03-11 14:43:29.457788,245,490,821, +59,2017-03-11 14:43:29.457788,383,686,168, +10,2017-03-11 14:43:29.457788,699,593,528, +83,2017-03-11 14:43:29.457788,589,928,14, +39,2017-03-11 14:43:29.457788,566,762,696, +12,2017-03-11 14:43:29.457788,427,878,820, +48,2017-03-11 14:43:29.457788,600,74,789, +56,2017-03-11 14:43:29.457788,394,971,774, +64,2017-03-11 14:43:29.457788,460,594,227, +84,2017-03-11 14:43:29.457788,280,395,944, +98,2017-03-11 14:43:29.457788,988,473,806, +58,2017-03-11 14:43:29.457788,401,820,967, +97,2017-03-11 14:43:29.457788,581,663,85, +1,2017-03-11 14:43:29.457788,541,905,487, +14,2017-03-11 14:43:29.457788,979,276,696, +37,2017-03-11 14:43:29.457788,246,470,12, +71,2017-03-11 14:43:29.457788,65,239,550, +35,2017-03-11 14:43:29.457788,634,494,325, +62,2017-03-11 14:43:29.457788,967,131,200, +37,2017-03-11 14:43:29.457788,951,166,335, +53,2017-03-11 14:43:29.457788,829,420,541, +37,2017-03-11 14:43:29.457788,325,28,512, +30,2017-03-11 14:43:29.457788,304,208,677, +55,2017-03-11 14:43:29.457788,678,689,257, +74,2017-03-11 14:43:29.457788,928,806,88, +56,2017-03-11 14:43:29.457788,300,413,185, +27,2017-03-11 14:43:29.457788,544,384,635, +49,2017-03-11 14:43:29.457788,551,970,27, +38,2017-03-11 14:43:29.457788,389,567,750, +71,2017-03-11 14:43:29.457788,595,262,18, +90,2017-03-11 14:43:29.457788,470,696,449, +15,2017-03-11 14:43:29.457788,384,705,892, +31,2017-03-11 14:43:29.457788,511,980,875, +81,2017-03-11 14:43:29.457788,393,59,79, +94,2017-03-11 14:43:29.457788,444,713,432, +99,2017-03-11 14:43:29.457788,683,459,374, +7,2017-03-11 14:43:29.457788,26,125,787, +62,2017-03-11 14:43:29.457788,387,805,520, +86,2017-03-11 14:43:29.457788,501,969,5, +89,2017-03-11 14:43:29.457788,674,897,198, +19,2017-03-11 14:43:29.457788,877,72,997, +27,2017-03-11 14:43:29.457788,132,76,207, +58,2017-03-11 14:43:29.457788,789,639,569, +47,2017-03-11 14:43:29.457788,98,944,544, +12,2017-03-11 14:43:29.457788,68,331,745, +45,2017-03-11 14:43:29.457788,137,265,311, +64,2017-03-11 14:43:29.457788,234,317,523, +91,2017-03-11 14:43:29.457788,213,721,93, +9,2017-03-11 14:43:29.457788,793,90,360, +92,2017-03-11 14:43:29.457788,166,567,500, +95,2017-03-11 14:43:29.457788,207,69,427, +30,2017-03-11 14:43:29.457788,13,971,429, +8,2017-03-11 14:43:29.457788,303,175,536, +44,2017-03-11 14:43:29.457788,440,847,77, +67,2017-03-11 14:43:29.457788,164,600,582, +38,2017-03-11 14:43:29.457788,320,675,467, +11,2017-03-11 14:43:29.457788,765,827,38, +93,2017-03-11 14:43:29.457788,394,537,885, +60,2017-03-11 14:43:29.457788,607,312,906, +62,2017-03-11 14:43:29.457788,284,335,700, +59,2017-03-11 14:43:29.457788,510,236,26, +95,2017-03-11 14:43:29.457788,83,103,624, +25,2017-03-11 14:43:29.457788,703,205,624, +2,2017-03-11 14:43:29.457788,880,91,136, +64,2017-03-11 14:43:29.457788,918,174,575, +31,2017-03-11 14:43:29.457788,711,461,914, +32,2017-03-11 14:43:29.457788,773,820,937, +6,2017-03-11 14:43:29.457788,155,637,643, +67,2017-03-11 14:43:29.457788,873,669,616, +96,2017-03-11 14:43:29.457788,772,240,203, +48,2017-03-11 14:43:29.457788,445,826,498, +33,2017-03-11 14:43:29.457788,917,634,970, +84,2017-03-11 14:43:29.457788,808,545,148, +52,2017-03-11 14:43:29.457788,5,62,838, +78,2017-03-11 14:43:29.457788,882,775,835, +4,2017-03-11 14:43:29.457788,412,479,704, +29,2017-03-11 14:43:29.457788,148,319,242, +92,2017-03-11 14:43:29.457788,559,444,395, +0,2017-03-11 14:43:29.457788,271,894,329, +19,2017-03-11 14:43:29.457788,528,299,24, +34,2017-03-11 14:43:29.457788,844,172,856, +85,2017-03-11 14:43:29.457788,235,693,627, +12,2017-03-11 14:43:29.457788,468,463,155, +88,2017-03-11 14:43:29.457788,941,859,166, +9,2017-03-11 14:43:29.457788,178,408,10, +74,2017-03-11 14:43:29.457788,853,405,741, +12,2017-03-11 14:43:29.457788,299,70,312, +83,2017-03-11 14:43:29.457788,369,335,163, +21,2017-03-11 14:43:29.457788,508,18,61, +74,2017-03-11 14:43:29.457788,712,689,860, +18,2017-03-11 14:43:29.457788,151,15,61, +9,2017-03-11 14:43:29.457788,874,227,182, +5,2017-03-11 14:43:29.457788,635,192,789, +49,2017-03-11 14:43:29.457788,598,530,611, +90,2017-03-11 14:43:29.457788,600,923,724, +97,2017-03-11 14:43:29.457788,258,886,181, +77,2017-03-11 14:43:29.457788,905,242,509, +62,2017-03-11 14:43:29.457788,931,368,797, +8,2017-03-11 14:43:29.457788,383,857,175, +26,2017-03-11 14:43:29.457788,84,358,309, +72,2017-03-11 14:43:29.457788,550,98,208, +15,2017-03-11 14:43:29.457788,627,819,45, +23,2017-03-11 14:43:29.457788,742,768,195, +0,2017-03-11 14:43:29.457788,655,376,766, +56,2017-03-11 14:43:29.457788,618,275,176, +55,2017-03-11 14:43:29.457788,644,973,631, +3,2017-03-11 14:43:29.457788,830,806,284, +91,2017-03-11 14:43:29.457788,164,593,634, +71,2017-03-11 14:43:29.457788,690,842,862, +32,2017-03-11 14:43:29.457788,661,906,545, +40,2017-03-11 14:43:29.457788,675,740,403, +33,2017-03-11 14:43:29.457788,116,170,889, +73,2017-03-11 14:43:29.457788,445,65,283, +9,2017-03-11 14:43:29.457788,38,914,115, +87,2017-03-11 14:43:29.457788,720,399,782, +88,2017-03-11 14:43:29.457788,992,417,597, +68,2017-03-11 14:43:29.457788,259,459,999, +92,2017-03-11 14:43:29.457788,366,544,323, +4,2017-03-11 14:43:29.457788,284,726,370, +40,2017-03-11 14:43:29.457788,896,259,134, +34,2017-03-11 14:43:29.457788,324,417,430, +36,2017-03-11 14:43:29.457788,331,545,230, +5,2017-03-11 14:43:29.457788,945,13,935, +94,2017-03-11 14:43:29.457788,430,532,618, +69,2017-03-11 14:43:29.457788,991,618,608, +36,2017-03-11 14:43:29.457788,162,931,397, +45,2017-03-11 14:43:29.457788,657,767,846, +55,2017-03-11 14:43:29.457788,26,980,895, +35,2017-03-11 14:43:29.457788,397,325,713, +73,2017-03-11 14:43:29.457788,870,944,778, +81,2017-03-11 14:43:29.457788,957,713,751, +39,2017-03-11 14:43:29.457788,245,370,74, +24,2017-03-11 14:43:29.457788,987,683,593, +15,2017-03-11 14:43:29.457788,613,990,595, +27,2017-03-11 14:43:29.457788,757,440,824, +78,2017-03-11 14:43:29.457788,420,719,135, +82,2017-03-11 14:43:29.457788,44,848,544, +91,2017-03-11 14:43:29.457788,792,323,729, +75,2017-03-11 14:43:29.457788,36,480,134, +28,2017-03-11 14:43:29.457788,850,209,516, +84,2017-03-11 14:43:29.457788,891,109,986, +50,2017-03-11 14:43:29.457788,99,581,776, +86,2017-03-11 14:43:29.457788,21,600,640, +44,2017-03-11 14:43:29.457788,319,775,258, +36,2017-03-11 14:43:29.457788,622,802,276, +41,2017-03-11 14:43:29.457788,125,5,162, +16,2017-03-11 14:43:29.457788,485,297,441, +33,2017-03-11 14:43:29.457788,506,957,171, +40,2017-03-11 14:43:29.457788,67,157,902, +17,2017-03-11 14:43:29.457788,738,678,22, +76,2017-03-11 14:43:29.457788,277,662,201, +60,2017-03-11 14:43:29.457788,437,459,958, +6,2017-03-11 14:43:29.457788,261,235,474, +39,2017-03-11 14:43:29.457788,240,636,547, +72,2017-03-11 14:43:29.457788,933,988,59, +44,2017-03-11 14:43:29.457788,945,230,835, +1,2017-03-11 14:43:29.457788,387,737,178, +13,2017-03-11 14:43:29.457788,415,200,885, +69,2017-03-11 14:43:29.457788,863,86,288, +30,2017-03-11 14:43:29.457788,545,247,359, +81,2017-03-11 14:43:29.457788,481,833,192, +72,2017-03-11 14:43:29.457788,469,739,445, +40,2017-03-11 14:43:29.457788,727,504,839, +67,2017-03-11 14:43:29.457788,734,675,684, +12,2017-03-11 14:43:29.457788,412,862,247, +83,2017-03-11 14:43:29.457788,62,132,520, +93,2017-03-11 14:43:29.457788,218,808,225, +76,2017-03-11 14:43:29.457788,54,584,569, +54,2017-03-11 14:43:29.457788,417,762,256, +89,2017-03-11 14:43:29.457788,501,701,287, +23,2017-03-11 14:43:29.457788,205,126,900, +94,2017-03-11 14:43:29.457788,801,585,60, +21,2017-03-11 14:43:29.457788,447,307,40, +51,2017-03-11 14:43:29.457788,439,560,435, +66,2017-03-11 14:43:29.457788,368,659,421, +42,2017-03-11 14:43:29.457788,243,990,958, +66,2017-03-11 14:43:29.457788,752,214,546, +25,2017-03-11 14:43:29.457788,914,833,481, +12,2017-03-11 14:43:29.457788,959,382,58, +76,2017-03-11 14:43:29.457788,966,118,973, +41,2017-03-11 14:43:29.457788,425,13,923, +86,2017-03-11 14:43:29.457788,573,357,522, +94,2017-03-11 14:43:29.457788,17,943,363, +26,2017-03-11 14:43:29.457788,933,321,920, +68,2017-03-11 14:43:29.457788,534,466,938, +45,2017-03-11 14:43:29.457788,299,419,568, +26,2017-03-11 14:43:29.457788,800,626,17, +77,2017-03-11 14:43:29.457788,743,990,180, +17,2017-03-11 14:43:29.457788,3,103,33, +58,2017-03-11 14:43:29.457788,460,555,517, +48,2017-03-11 14:43:29.457788,497,880,736, +43,2017-03-11 14:43:29.457788,200,657,115, +73,2017-03-11 14:43:29.457788,123,52,183, +42,2017-03-11 14:43:29.457788,471,750,680, +27,2017-03-11 14:43:29.457788,376,697,38, +12,2017-03-11 14:43:29.457788,686,218,288, +69,2017-03-11 14:43:29.457788,320,320,265, +78,2017-03-11 14:43:29.457788,875,782,257, +37,2017-03-11 14:43:29.457788,661,993,802, +86,2017-03-11 14:43:29.457788,650,917,596, +77,2017-03-11 14:43:29.457788,970,778,196, +44,2017-03-11 14:43:29.457788,529,875,712, +90,2017-03-11 14:43:29.457788,572,750,24, +26,2017-03-11 14:43:29.457788,968,312,948, +29,2017-03-11 14:43:29.457788,633,213,69, +51,2017-03-11 14:43:29.457788,994,326,880, +66,2017-03-11 14:43:29.457788,319,682,517, +97,2017-03-11 14:43:29.457788,599,112,742, +57,2017-03-11 14:43:29.457788,891,938,10, +42,2017-03-11 14:43:29.457788,813,722,324, +39,2017-03-11 14:43:29.457788,472,349,643, +44,2017-03-11 14:43:29.457788,661,591,730, +29,2017-03-11 14:43:29.457788,804,799,801, +80,2017-03-11 14:43:29.457788,124,681,453, +44,2017-03-11 14:43:29.457788,363,970,412, +96,2017-03-11 14:43:29.457788,83,155,531, +97,2017-03-11 14:43:29.457788,92,541,393, +91,2017-03-11 14:43:29.457788,263,718,291, +74,2017-03-11 14:43:29.457788,66,934,176, +73,2017-03-11 14:43:29.457788,525,905,21, +33,2017-03-11 14:43:29.457788,704,822,127, +83,2017-03-11 14:43:29.457788,503,580,272, +87,2017-03-11 14:43:29.457788,550,684,828, +63,2017-03-11 14:43:29.457788,839,359,606, +93,2017-03-11 14:43:29.457788,900,999,837, +16,2017-03-11 14:43:29.457788,717,128,898, +78,2017-03-11 14:43:29.457788,62,74,510, +59,2017-03-11 14:43:29.457788,979,531,915, +68,2017-03-11 14:43:29.457788,353,42,512, +86,2017-03-11 14:43:29.457788,622,784,722, +17,2017-03-11 14:43:29.457788,469,550,805, +31,2017-03-11 14:43:29.457788,909,411,239, +81,2017-03-11 14:43:29.457788,411,76,972, +13,2017-03-11 14:43:29.457788,203,870,911, +27,2017-03-11 14:43:29.457788,944,421,852, +92,2017-03-11 14:43:29.457788,953,767,607, +31,2017-03-11 14:43:29.457788,809,119,162, +43,2017-03-11 14:43:29.457788,903,883,603, +37,2017-03-11 14:43:29.457788,433,408,679, +34,2017-03-11 14:43:29.457788,819,918,152, +23,2017-03-11 14:43:29.457788,994,124,358, +20,2017-03-11 14:43:29.457788,994,268,462, +94,2017-03-11 14:43:29.457788,690,314,861, +64,2017-03-11 14:43:29.457788,81,468,948, +89,2017-03-11 14:43:29.457788,587,110,320, +49,2017-03-11 14:43:29.457788,993,923,862, +43,2017-03-11 14:43:29.457788,330,541,769, +15,2017-03-11 14:43:29.457788,459,921,379, +45,2017-03-11 14:43:29.457788,45,737,650, +4,2017-03-11 14:43:29.457788,5,112,978, +70,2017-03-11 14:43:29.457788,426,839,338, +51,2017-03-11 14:43:29.457788,307,286,397, +89,2017-03-11 14:43:29.457788,396,716,384, +39,2017-03-11 14:43:29.457788,639,246,815, +97,2017-03-11 14:43:29.457788,787,584,119, +25,2017-03-11 14:43:29.457788,505,498,698, +55,2017-03-11 14:43:29.457788,234,348,590, +24,2017-03-11 14:43:29.457788,460,568,935, +89,2017-03-11 14:43:29.457788,407,272,394, +71,2017-03-11 14:43:29.457788,558,790,609, +95,2017-03-11 14:43:29.457788,507,993,343, +15,2017-03-11 14:43:29.457788,239,158,115, +3,2017-03-11 14:43:29.457788,742,233,271, +25,2017-03-11 14:43:29.457788,731,969,798, +97,2017-03-11 14:43:29.457788,317,388,205, +78,2017-03-11 14:43:29.457788,956,140,664, +36,2017-03-11 14:43:29.457788,412,57,77, +97,2017-03-11 14:43:29.457788,848,686,924, +35,2017-03-11 14:43:29.457788,680,267,500, +92,2017-03-11 14:43:29.457788,425,615,945, +17,2017-03-11 14:43:29.457788,848,216,414, +58,2017-03-11 14:43:29.457788,185,212,545, +50,2017-03-11 14:43:29.457788,600,750,279, +56,2017-03-11 14:43:29.457788,890,943,919, +30,2017-03-11 14:43:29.457788,1000,997,272, +85,2017-03-11 14:43:29.457788,683,197,202, +36,2017-03-11 14:43:29.457788,463,702,281, +89,2017-03-11 14:43:29.457788,317,226,54, +17,2017-03-11 14:43:29.457788,442,468,745, +63,2017-03-11 14:43:29.457788,681,290,129, +28,2017-03-11 14:43:29.457788,40,408,837, +93,2017-03-11 14:43:29.457788,351,756,231, +35,2017-03-11 14:43:29.457788,753,504,198, +44,2017-03-11 14:43:29.457788,700,400,798, +16,2017-03-11 14:43:29.457788,102,80,51, +42,2017-03-11 14:43:29.457788,306,106,584, +75,2017-03-11 14:43:29.457788,574,329,375, +25,2017-03-11 14:43:29.457788,618,504,535, +66,2017-03-11 14:43:29.457788,912,372,587, +26,2017-03-11 14:43:29.457788,129,819,614, +88,2017-03-11 14:43:29.457788,322,812,317, +2,2017-03-11 14:43:29.457788,212,116,186, +31,2017-03-11 14:43:29.457788,195,237,733, +50,2017-03-11 14:43:29.457788,343,318,249, +92,2017-03-11 14:43:29.457788,647,625,171, +27,2017-03-11 14:43:29.457788,129,707,923, +4,2017-03-11 14:43:29.457788,79,510,305, +21,2017-03-11 14:43:29.457788,329,919,89, +65,2017-03-11 14:43:29.457788,730,406,674, +94,2017-03-11 14:43:29.457788,522,860,257, +72,2017-03-11 14:43:29.457788,97,991,218, +44,2017-03-11 14:43:29.457788,308,468,357, +96,2017-03-11 14:43:29.457788,92,528,220, +22,2017-03-11 14:43:29.457788,234,143,263, +31,2017-03-11 14:43:29.457788,654,568,521, +98,2017-03-11 14:43:29.457788,487,610,634, +22,2017-03-11 14:43:29.457788,16,308,160, +54,2017-03-11 14:43:29.457788,168,417,255, +26,2017-03-11 14:43:29.457788,407,473,705, +72,2017-03-11 14:43:29.457788,941,61,671, +3,2017-03-11 14:43:29.457788,589,891,255, +82,2017-03-11 14:43:29.457788,34,518,137, +69,2017-03-11 14:43:29.457788,86,658,671, +57,2017-03-11 14:43:29.457788,268,305,790, +28,2017-03-11 14:43:29.457788,612,950,822, +78,2017-03-11 14:43:29.457788,367,76,45, +77,2017-03-11 14:43:29.457788,549,750,490, +49,2017-03-11 14:43:29.457788,811,161,523, +40,2017-03-11 14:43:29.457788,52,778,224, +9,2017-03-11 14:43:29.457788,296,361,774, +38,2017-03-11 14:43:29.457788,19,445,955, +29,2017-03-11 14:43:29.457788,749,746,571, +36,2017-03-11 14:43:29.457788,695,392,142, +6,2017-03-11 14:43:29.457788,468,187,837, +2,2017-03-11 14:43:29.457788,937,327,507, +75,2017-03-11 14:43:29.457788,488,30,149, +54,2017-03-11 14:43:29.457788,808,373,626, +10,2017-03-11 14:43:29.457788,734,400,487, +75,2017-03-11 14:43:29.457788,844,442,39, +59,2017-03-11 14:43:29.457788,188,610,955, +88,2017-03-11 14:43:29.457788,2,97,945, +47,2017-03-11 14:43:29.457788,285,782,488, +22,2017-03-11 14:43:29.457788,109,996,971, +60,2017-03-11 14:43:29.457788,26,119,136, +83,2017-03-11 14:43:29.457788,492,761,939, +23,2017-03-11 14:43:29.457788,161,426,978, +1,2017-03-11 14:43:29.457788,868,18,599, +6,2017-03-11 14:43:29.457788,628,555,939, +63,2017-03-11 14:43:29.457788,652,885,101, +94,2017-03-11 14:43:29.457788,666,590,158, +78,2017-03-11 14:43:29.457788,586,129,371, +61,2017-03-11 14:43:29.457788,248,507,446, +74,2017-03-11 14:43:29.457788,268,385,966, +43,2017-03-11 14:43:29.457788,811,945,435, +68,2017-03-11 14:43:29.457788,963,34,735, +59,2017-03-11 14:43:29.457788,588,674,221, +24,2017-03-11 14:43:29.457788,558,322,177, +22,2017-03-11 14:43:29.457788,912,335,1000, +50,2017-03-11 14:43:29.457788,464,371,110, +71,2017-03-11 14:43:29.457788,878,556,453, +15,2017-03-11 14:43:29.457788,941,419,575, +75,2017-03-11 14:43:29.457788,364,9,431, +33,2017-03-11 14:43:29.457788,43,166,917, +63,2017-03-11 14:43:29.457788,840,138,871, +40,2017-03-11 14:43:29.457788,461,48,623, +37,2017-03-11 14:43:29.457788,383,623,871, +85,2017-03-11 14:43:29.457788,994,981,559, +87,2017-03-11 14:43:29.457788,536,12,18, +48,2017-03-11 14:43:29.457788,432,592,229, +80,2017-03-11 14:43:29.457788,601,660,123, +64,2017-03-11 14:43:29.457788,826,40,275, +67,2017-03-11 14:43:29.457788,178,146,64, +64,2017-03-11 14:43:29.457788,194,687,12, +58,2017-03-11 14:43:29.457788,310,883,424, +30,2017-03-11 14:43:29.457788,864,983,177, +40,2017-03-11 14:43:29.457788,996,194,878, +43,2017-03-11 14:43:29.457788,786,107,223, +39,2017-03-11 14:43:29.457788,768,346,32, +59,2017-03-11 14:43:29.457788,386,307,260, +56,2017-03-11 14:43:29.457788,453,324,204, +65,2017-03-11 14:43:29.457788,11,216,224, +32,2017-03-11 14:43:29.457788,99,648,626, +96,2017-03-11 14:43:29.457788,631,803,364, +63,2017-03-11 14:43:29.457788,997,241,54, +78,2017-03-11 14:43:29.457788,349,277,171, +12,2017-03-11 14:43:29.457788,623,202,711, +1,2017-03-11 14:43:29.457788,509,971,574, +96,2017-03-11 14:43:29.457788,295,777,609, +31,2017-03-11 14:43:29.457788,993,833,628, +9,2017-03-11 14:43:29.457788,480,254,56, +11,2017-03-11 14:43:29.457788,57,419,737, +5,2017-03-11 14:43:29.457788,661,791,837, +1,2017-03-11 14:43:29.457788,68,7,126, +69,2017-03-11 14:43:29.457788,210,837,700, +72,2017-03-11 14:43:29.457788,808,274,680, +10,2017-03-11 14:43:29.457788,51,289,409, +4,2017-03-11 14:43:29.457788,121,36,137, +60,2017-03-11 14:43:29.457788,291,193,712, +35,2017-03-11 14:43:29.457788,612,449,401, +27,2017-03-11 14:43:29.457788,240,238,283, +31,2017-03-11 14:43:29.457788,245,409,999, +45,2017-03-11 14:43:29.457788,246,699,173, +5,2017-03-11 14:43:29.457788,973,853,156, +2,2017-03-11 14:43:29.457788,142,565,69, +26,2017-03-11 14:43:29.457788,601,207,865, +89,2017-03-11 14:43:29.457788,400,577,239, +1,2017-03-11 14:43:29.457788,27,640,285, +27,2017-03-11 14:43:29.457788,878,568,575, +12,2017-03-11 14:43:29.457788,977,574,579, +22,2017-03-11 14:43:29.457788,273,752,277, +25,2017-03-11 14:43:29.457788,605,433,271, +75,2017-03-11 14:43:29.457788,998,341,10, +60,2017-03-11 14:43:29.457788,547,875,491, +95,2017-03-11 14:43:29.457788,453,730,959, +48,2017-03-11 14:43:29.457788,370,244,746, +25,2017-03-11 14:43:29.457788,812,321,372, +79,2017-03-11 14:43:29.457788,895,951,11, +17,2017-03-11 14:43:29.457788,703,288,414, +31,2017-03-11 14:43:29.457788,721,686,55, +72,2017-03-11 14:43:29.457788,26,65,318, +57,2017-03-11 14:43:29.457788,941,809,520, +39,2017-03-11 14:43:29.457788,539,479,873, +91,2017-03-11 14:43:29.457788,723,619,158, +53,2017-03-11 14:43:29.457788,940,530,323, +83,2017-03-11 14:43:29.457788,481,335,2, +18,2017-03-11 14:43:29.457788,623,417,491, +34,2017-03-11 14:43:29.457788,102,546,63, +13,2017-03-11 14:43:29.457788,612,381,702, +55,2017-03-11 14:43:29.457788,189,222,946, +73,2017-03-11 14:43:29.457788,702,818,637, +42,2017-03-11 14:43:29.457788,437,795,959, +38,2017-03-11 14:43:29.457788,325,283,212, +81,2017-03-11 14:43:29.457788,617,214,989, +24,2017-03-11 14:43:29.457788,631,481,584, +73,2017-03-11 14:43:29.457788,27,646,861, +64,2017-03-11 14:43:29.457788,27,563,191, +22,2017-03-11 14:43:29.457788,785,137,944, +49,2017-03-11 14:43:29.457788,955,581,912, +39,2017-03-11 14:43:29.457788,376,871,770, +70,2017-03-11 14:43:29.457788,154,981,506, +77,2017-03-11 14:43:29.457788,195,495,11, +83,2017-03-11 14:43:29.457788,976,595,559, +0,2017-03-11 14:43:29.457788,241,420,642, +27,2017-03-11 14:43:29.457788,983,833,484, +77,2017-03-11 14:43:29.457788,970,428,256, +93,2017-03-11 14:43:29.457788,9,168,318, +39,2017-03-11 14:43:29.457788,39,88,86, +19,2017-03-11 14:43:29.457788,69,592,963, +26,2017-03-11 14:43:29.457788,88,974,90, +6,2017-03-11 14:43:29.457788,569,649,66, +81,2017-03-11 14:43:29.457788,69,708,77, +5,2017-03-11 14:43:29.457788,541,561,821, +51,2017-03-11 14:43:29.457788,989,77,436, +100,2017-03-11 14:43:29.457788,245,754,384, +28,2017-03-11 14:43:29.457788,841,470,476, +91,2017-03-11 14:43:29.457788,62,439,175, +15,2017-03-11 14:43:29.457788,414,264,213, +98,2017-03-11 14:43:29.457788,913,280,792, +98,2017-03-11 14:43:29.457788,988,869,35, +53,2017-03-11 14:43:29.457788,430,856,39, +42,2017-03-11 14:43:29.457788,934,475,418, +18,2017-03-11 14:43:29.457788,229,802,462, +7,2017-03-11 14:43:29.457788,272,938,981, +33,2017-03-11 14:43:29.457788,377,155,485, +79,2017-03-11 14:43:29.457788,420,698,773, +33,2017-03-11 14:43:29.457788,978,566,315, +97,2017-03-11 14:43:29.457788,435,350,494, +87,2017-03-11 14:43:29.457788,206,533,285, +14,2017-03-11 14:43:29.457788,8,703,319, +24,2017-03-11 14:43:29.457788,505,781,307, +78,2017-03-11 14:43:29.457788,719,287,112, +10,2017-03-11 14:43:29.457788,443,596,887, +86,2017-03-11 14:43:29.457788,294,661,195, +27,2017-03-11 14:43:29.457788,226,510,238, +66,2017-03-11 14:43:29.457788,860,732,527, +7,2017-03-11 14:43:29.457788,265,811,207, +27,2017-03-11 14:43:29.457788,514,525,509, +2,2017-03-11 14:43:29.457788,306,816,796, +2,2017-03-11 14:43:29.457788,103,908,121, +55,2017-03-11 14:43:29.457788,504,8,408, +80,2017-03-11 14:43:29.457788,669,603,70, +90,2017-03-11 14:43:29.457788,113,308,557, +97,2017-03-11 14:43:29.457788,39,83,40, +30,2017-03-11 14:43:29.457788,895,247,576, +41,2017-03-11 14:43:29.457788,772,85,428, +8,2017-03-11 14:43:29.457788,901,224,103, +0,2017-03-11 14:43:29.457788,132,223,550, +64,2017-03-11 14:43:29.457788,232,959,434, +90,2017-03-11 14:43:29.457788,562,504,796, +67,2017-03-11 14:43:29.457788,812,353,649, +85,2017-03-11 14:43:29.457788,436,689,155, +33,2017-03-11 14:43:29.457788,936,731,739, +71,2017-03-11 14:43:29.457788,816,167,786, +72,2017-03-11 14:43:29.457788,391,888,722, +52,2017-03-11 14:43:29.457788,112,272,159, +34,2017-03-11 14:43:29.457788,231,593,244, +79,2017-03-11 14:43:29.457788,97,40,467, +91,2017-03-11 14:43:29.457788,392,116,759, +83,2017-03-11 14:43:29.457788,805,914,158, +74,2017-03-11 14:43:29.457788,645,897,448, +46,2017-03-11 14:43:29.457788,64,234,178, +46,2017-03-11 14:43:29.457788,122,900,978, +23,2017-03-11 14:43:29.457788,173,137,577, +40,2017-03-11 14:43:29.457788,729,820,196, +83,2017-03-11 14:43:29.457788,860,663,734, +25,2017-03-11 14:43:29.457788,779,494,81, +58,2017-03-11 14:43:29.457788,408,239,324, +5,2017-03-11 14:43:29.457788,136,773,513, +20,2017-03-11 14:43:29.457788,6,691,656, +13,2017-03-11 14:43:29.457788,592,634,362, +76,2017-03-11 14:43:29.457788,770,938,168, +50,2017-03-11 14:43:29.457788,759,364,326, +62,2017-03-11 14:43:29.457788,27,60,871, +81,2017-03-11 14:43:29.457788,554,952,391, +96,2017-03-11 14:43:29.457788,191,715,14, +33,2017-03-11 14:43:29.457788,488,527,527, +49,2017-03-11 14:43:29.457788,219,183,622, +81,2017-03-11 14:43:29.457788,816,983,574, +59,2017-03-11 14:43:29.457788,922,742,86, +68,2017-03-11 14:43:29.457788,106,412,299, +13,2017-03-11 14:43:29.457788,472,170,939, +3,2017-03-11 14:43:29.457788,122,330,987, +31,2017-03-11 14:43:29.457788,45,1,639, +53,2017-03-11 14:43:29.457788,528,166,26, +75,2017-03-11 14:43:29.457788,349,648,557, +17,2017-03-11 14:43:29.457788,632,131,752, +55,2017-03-11 14:43:29.457788,873,838,233, +98,2017-03-11 14:43:29.457788,250,532,111, +72,2017-03-11 14:43:29.457788,702,50,747, +82,2017-03-11 14:43:29.457788,380,734,136, +43,2017-03-11 14:43:29.457788,735,775,957, +26,2017-03-11 14:43:29.457788,941,984,10, +29,2017-03-11 14:43:29.457788,632,567,456, +26,2017-03-11 14:43:29.457788,698,208,817, +57,2017-03-11 14:43:29.457788,46,50,549, +30,2017-03-11 14:43:29.457788,582,661,18, +28,2017-03-11 14:43:29.457788,711,765,108, +9,2017-03-11 14:43:29.457788,500,244,516, +23,2017-03-11 14:43:29.457788,19,474,498, +96,2017-03-11 14:43:29.457788,457,508,250, +9,2017-03-11 14:43:29.457788,75,706,352, +77,2017-03-11 14:43:29.457788,914,169,344, +96,2017-03-11 14:43:29.457788,219,893,257, +80,2017-03-11 14:43:29.457788,554,275,85, +26,2017-03-11 14:43:29.457788,40,193,356, +54,2017-03-11 14:43:29.457788,437,872,774, +46,2017-03-11 14:43:29.457788,346,272,416, +80,2017-03-11 14:43:29.457788,780,667,892, +86,2017-03-11 14:43:29.457788,373,244,628, +29,2017-03-11 14:43:29.457788,413,972,247, +63,2017-03-11 14:43:29.457788,865,504,433, +42,2017-03-11 14:43:29.457788,779,519,683, +82,2017-03-11 14:43:29.457788,712,39,358, +15,2017-03-11 14:43:29.457788,911,133,606, +26,2017-03-11 14:43:29.457788,405,22,59, +19,2017-03-11 14:43:29.457788,689,951,41, +6,2017-03-11 14:43:29.457788,195,669,348, +61,2017-03-11 14:43:29.457788,641,596,240, +51,2017-03-11 14:43:29.457788,100,673,925, +88,2017-03-11 14:43:29.457788,192,608,697, +90,2017-03-11 14:43:29.457788,647,56,54, +56,2017-03-11 14:43:29.457788,189,659,814, +59,2017-03-11 14:43:29.457788,681,874,780, +37,2017-03-11 14:43:29.457788,825,821,431, +2,2017-03-11 14:43:29.457788,490,780,628, +13,2017-03-11 14:43:29.457788,376,868,637, +48,2017-03-11 14:43:29.457788,542,562,354, +73,2017-03-11 14:43:29.457788,169,51,638, +82,2017-03-11 14:43:29.457788,107,691,374, +30,2017-03-11 14:43:29.457788,351,188,890, +3,2017-03-11 14:43:29.457788,62,670,402, +89,2017-03-11 14:43:29.457788,491,834,907, +98,2017-03-11 14:43:29.457788,614,535,112, +99,2017-03-11 14:43:29.457788,403,749,464, +94,2017-03-11 14:43:29.457788,311,818,678, +48,2017-03-11 14:43:29.457788,870,316,296, +98,2017-03-11 14:43:29.457788,7,670,273, +36,2017-03-11 14:43:29.457788,858,163,390, +92,2017-03-11 14:43:29.457788,833,792,807, +32,2017-03-11 14:43:29.457788,626,713,305, +24,2017-03-11 14:43:29.457788,248,417,228, +65,2017-03-11 14:43:29.457788,167,693,596, +48,2017-03-11 14:43:29.457788,511,275,958, +38,2017-03-11 14:43:29.457788,590,255,357, +60,2017-03-11 14:43:29.457788,925,630,955, +78,2017-03-11 14:43:29.457788,794,345,703, +63,2017-03-11 14:43:29.457788,138,509,951, +76,2017-03-11 14:43:29.457788,223,257,3, +47,2017-03-11 14:43:29.457788,674,231,123, +84,2017-03-11 14:43:29.457788,924,719,319, +43,2017-03-11 14:43:29.457788,994,277,815, +58,2017-03-11 14:43:29.457788,532,172,182, +46,2017-03-11 14:43:29.457788,803,137,239, +60,2017-03-11 14:43:29.457788,482,942,224, +62,2017-03-11 14:43:29.457788,451,175,383, +67,2017-03-11 14:43:29.457788,432,386,145, +11,2017-03-11 14:43:29.457788,617,268,947, +54,2017-03-11 14:43:29.457788,987,266,975, +98,2017-03-11 14:43:29.457788,543,791,564, +7,2017-03-11 14:43:29.457788,963,746,531, +77,2017-03-11 14:43:29.457788,883,770,363, +36,2017-03-11 14:43:29.457788,711,586,985, +16,2017-03-11 14:43:29.457788,762,368,836, +19,2017-03-11 14:43:29.457788,754,981,300, +37,2017-03-11 14:43:29.457788,249,247,912, +24,2017-03-11 14:43:29.457788,513,887,215, +6,2017-03-11 14:43:29.457788,677,780,131, +64,2017-03-11 14:43:29.457788,525,662,406, +41,2017-03-11 14:43:29.457788,432,769,773, +14,2017-03-11 14:43:29.457788,355,758,305, +12,2017-03-11 14:43:29.457788,126,141,311, +88,2017-03-11 14:43:29.457788,122,610,251, +37,2017-03-11 14:43:29.457788,857,162,605, +37,2017-03-11 14:43:29.457788,49,821,427, +73,2017-03-11 14:43:29.457788,601,558,367, +13,2017-03-11 14:43:29.457788,220,774,534, +65,2017-03-11 14:43:29.457788,542,307,794, +90,2017-03-11 14:43:29.457788,64,99,15, +19,2017-03-11 14:43:29.457788,240,325,70, +36,2017-03-11 14:43:29.457788,936,320,732, +79,2017-03-11 14:43:29.457788,483,337,164, +53,2017-03-11 14:43:29.457788,158,591,258, +76,2017-03-11 14:43:29.457788,149,625,885, +37,2017-03-11 14:43:29.457788,399,418,20, +94,2017-03-11 14:43:29.457788,725,814,839, +79,2017-03-11 14:43:29.457788,913,854,980, +15,2017-03-11 14:43:29.457788,179,50,515, +12,2017-03-11 14:43:29.457788,370,247,908, +85,2017-03-11 14:43:29.457788,584,72,385, +74,2017-03-11 14:43:29.457788,663,643,501, +81,2017-03-11 14:43:29.457788,268,386,180, +67,2017-03-11 14:43:29.457788,804,201,609, +53,2017-03-11 14:43:29.457788,15,448,319, +93,2017-03-11 14:43:29.457788,302,299,82, +48,2017-03-11 14:43:29.457788,349,597,597, +72,2017-03-11 14:43:29.457788,844,505,572, +43,2017-03-11 14:43:29.457788,577,957,171, +24,2017-03-11 14:43:29.457788,600,672,52, +87,2017-03-11 14:43:29.457788,58,232,536, +86,2017-03-11 14:43:29.457788,433,145,392, +45,2017-03-11 14:43:29.457788,593,711,376, +90,2017-03-11 14:43:29.457788,11,458,377, +36,2017-03-11 14:43:29.457788,55,974,79, +90,2017-03-11 14:43:29.457788,479,651,327, +6,2017-03-11 14:43:29.457788,608,497,297, +21,2017-03-11 14:43:29.457788,169,348,76, +23,2017-03-11 14:43:29.457788,581,612,90, +1,2017-03-11 14:43:29.457788,756,482,461, +35,2017-03-11 14:43:29.457788,194,838,244, +20,2017-03-11 14:43:29.457788,296,621,564, +35,2017-03-11 14:43:29.457788,595,643,249, +7,2017-03-11 14:43:29.457788,294,575,131, +90,2017-03-11 14:43:29.457788,73,427,109, +24,2017-03-11 14:43:29.457788,776,185,469, +36,2017-03-11 14:43:29.457788,796,559,370, +55,2017-03-11 14:43:29.457788,42,832,902, +24,2017-03-11 14:43:29.457788,669,146,440, +96,2017-03-11 14:43:29.457788,767,4,315, +36,2017-03-11 14:43:29.457788,646,564,437, +94,2017-03-11 14:43:29.457788,139,567,841, +21,2017-03-11 14:43:29.457788,995,950,454, +77,2017-03-11 14:43:29.457788,134,923,127, +93,2017-03-11 14:43:29.457788,482,497,483, +52,2017-03-11 14:43:29.457788,329,385,759, +100,2017-03-11 14:43:29.457788,531,199,963, +30,2017-03-11 14:43:29.457788,203,278,660, +85,2017-03-11 14:43:29.457788,842,97,789, +98,2017-03-11 14:43:29.457788,664,630,193, +66,2017-03-11 14:43:29.457788,579,647,430, +71,2017-03-11 14:43:29.457788,570,557,644, +5,2017-03-11 14:43:29.457788,55,127,576, +38,2017-03-11 14:43:29.457788,512,335,382, +4,2017-03-11 14:43:29.457788,534,345,341, +74,2017-03-11 14:43:29.457788,624,1,586, +47,2017-03-11 14:43:29.457788,99,374,447, +76,2017-03-11 14:43:29.457788,4,641,422, +58,2017-03-11 14:43:29.457788,287,852,297, +86,2017-03-11 14:43:29.457788,409,941,909, +46,2017-03-11 14:43:29.457788,69,484,848, +58,2017-03-11 14:43:29.457788,819,230,624, +35,2017-03-11 14:43:29.457788,575,965,90, +20,2017-03-11 14:43:29.457788,966,676,665, +6,2017-03-11 14:43:29.457788,50,112,828, +5,2017-03-11 14:43:29.457788,753,250,638, +4,2017-03-11 14:43:29.457788,102,934,897, +51,2017-03-11 14:43:29.457788,876,805,976, +94,2017-03-11 14:43:29.457788,289,823,525, +11,2017-03-11 14:43:29.457788,53,149,462, +63,2017-03-11 14:43:29.457788,113,553,827, +8,2017-03-11 14:43:29.457788,229,491,144, +28,2017-03-11 14:43:29.457788,603,972,333, +36,2017-03-11 14:43:29.457788,222,971,396, +32,2017-03-11 14:43:29.457788,905,292,836, +78,2017-03-11 14:43:29.457788,97,812,725, +39,2017-03-11 14:43:29.457788,635,250,495, +69,2017-03-11 14:43:29.457788,399,958,316, +51,2017-03-11 14:43:29.457788,510,142,592, +74,2017-03-11 14:43:29.457788,633,736,18, +24,2017-03-11 14:43:29.457788,708,351,593, +93,2017-03-11 14:43:29.457788,322,988,255, +23,2017-03-11 14:43:29.457788,280,92,8, +38,2017-03-11 14:43:29.457788,904,733,765, +54,2017-03-11 14:43:29.457788,983,260,226, +38,2017-03-11 14:43:29.457788,218,542,894, +73,2017-03-11 14:43:29.457788,684,485,467, +32,2017-03-11 14:43:29.457788,221,484,555, +93,2017-03-11 14:43:29.457788,835,147,860, +16,2017-03-11 14:43:29.457788,136,116,385, +42,2017-03-11 14:43:29.457788,207,393,794, +11,2017-03-11 14:43:29.457788,126,558,649, +11,2017-03-11 14:43:29.457788,818,876,491, +4,2017-03-11 14:43:29.457788,418,384,764, +10,2017-03-11 14:43:29.457788,870,230,420, +9,2017-03-11 14:43:29.457788,715,975,20, +55,2017-03-11 14:43:29.457788,122,881,708, +26,2017-03-11 14:43:29.457788,996,92,674, +20,2017-03-11 14:43:29.457788,485,468,314, +61,2017-03-11 14:43:29.457788,26,964,720, +84,2017-03-11 14:43:29.457788,840,210,880, +26,2017-03-11 14:43:29.457788,595,644,360, +46,2017-03-11 14:43:29.457788,874,781,555, +59,2017-03-11 14:43:29.457788,756,576,139, +88,2017-03-11 14:43:29.457788,456,847,136, +45,2017-03-11 14:43:29.457788,939,810,656, +42,2017-03-11 14:43:29.457788,278,971,34, +30,2017-03-11 14:43:29.457788,935,754,148, +77,2017-03-11 14:43:29.457788,964,28,32, +56,2017-03-11 14:43:29.457788,672,393,23, +55,2017-03-11 14:43:29.457788,174,578,135, +93,2017-03-11 14:43:29.457788,154,274,808, +61,2017-03-11 14:43:29.457788,121,944,63, +6,2017-03-11 14:43:29.457788,754,719,483, +3,2017-03-11 14:43:29.457788,690,517,336, +62,2017-03-11 14:43:29.457788,271,483,399, +23,2017-03-11 14:43:29.457788,511,431,793, +18,2017-03-11 14:43:29.457788,824,816,728, +100,2017-03-11 14:43:29.457788,394,863,927, +55,2017-03-11 14:43:29.457788,137,735,158, +26,2017-03-11 14:43:29.457788,679,221,317, +43,2017-03-11 14:43:29.457788,940,800,465, +63,2017-03-11 14:43:29.457788,317,801,255, +59,2017-03-11 14:43:29.457788,284,653,823, +79,2017-03-11 14:43:29.457788,85,616,978, +91,2017-03-11 14:43:29.457788,433,706,906, +83,2017-03-11 14:43:29.457788,569,832,375, +71,2017-03-11 14:43:29.457788,567,533,964, +25,2017-03-11 14:43:29.457788,755,282,679, +69,2017-03-11 14:43:29.457788,82,144,325, +40,2017-03-11 14:43:29.457788,945,579,988, +23,2017-03-11 14:43:29.457788,233,811,24, +32,2017-03-11 14:43:29.457788,427,2,226, +86,2017-03-11 14:43:29.457788,708,131,687, +28,2017-03-11 14:43:29.457788,964,62,984, +53,2017-03-11 14:43:29.457788,595,948,777, +35,2017-03-11 14:43:29.457788,230,457,45, +31,2017-03-11 14:43:29.457788,601,370,711, +55,2017-03-11 14:43:29.457788,949,699,775, +18,2017-03-11 14:43:29.457788,510,799,500, +94,2017-03-11 14:43:29.457788,801,725,796, +51,2017-03-11 14:43:29.457788,857,483,785, +82,2017-03-11 14:43:29.457788,545,769,351, +14,2017-03-11 14:43:29.457788,717,128,490, +95,2017-03-11 14:43:29.457788,585,535,259, +19,2017-03-11 14:43:29.457788,905,970,732, +85,2017-03-11 14:43:29.457788,669,507,36, +18,2017-03-11 14:43:29.457788,306,535,115, +11,2017-03-11 14:43:29.457788,261,911,615, +12,2017-03-11 14:43:29.457788,394,401,938, +94,2017-03-11 14:43:29.457788,169,289,79, +89,2017-03-11 14:43:29.457788,417,569,833, +0,2017-03-11 14:43:29.457788,104,92,188, +1,2017-03-11 14:43:29.457788,62,921,863, +73,2017-03-11 14:43:29.457788,428,899,910, +73,2017-03-11 14:43:29.457788,434,25,841, +70,2017-03-11 14:43:29.457788,936,457,812, +33,2017-03-11 14:43:29.457788,857,750,269, +3,2017-03-11 14:43:29.457788,39,349,913, +46,2017-03-11 14:43:29.457788,918,746,458, +2,2017-03-11 14:43:29.457788,838,646,32, +90,2017-03-11 14:43:29.457788,567,895,631, +100,2017-03-11 14:43:29.457788,794,541,729, +23,2017-03-11 14:43:29.457788,566,571,923, +50,2017-03-11 14:43:29.457788,28,736,833, +88,2017-03-11 14:43:29.457788,485,103,912, +52,2017-03-11 14:43:29.457788,451,825,980, +37,2017-03-11 14:43:29.457788,571,438,392, +41,2017-03-11 14:43:29.457788,84,423,310, +65,2017-03-11 14:43:29.457788,318,941,646, +11,2017-03-11 14:43:29.457788,482,376,340, +5,2017-03-11 14:43:29.457788,947,263,551, +97,2017-03-11 14:43:29.457788,998,384,859, +48,2017-03-11 14:43:29.457788,486,771,8, +94,2017-03-11 14:43:29.457788,596,988,307, +17,2017-03-11 14:43:29.457788,426,698,576, +51,2017-03-11 14:43:29.457788,122,886,161, +44,2017-03-11 14:43:29.457788,827,808,551, +31,2017-03-11 14:43:29.457788,184,891,357, +13,2017-03-11 14:43:29.457788,154,908,105, +15,2017-03-11 14:43:29.457788,292,964,636, +78,2017-03-11 14:43:29.457788,735,644,716, +33,2017-03-11 14:43:29.457788,632,23,497, +6,2017-03-11 14:43:29.457788,721,74,567, +84,2017-03-11 14:43:29.457788,960,729,283, +79,2017-03-11 14:43:29.457788,536,834,96, +72,2017-03-11 14:43:29.457788,726,453,850, +88,2017-03-11 14:43:29.457788,362,955,32, +65,2017-03-11 14:43:29.457788,918,669,432, +65,2017-03-11 14:43:29.457788,313,148,983, +94,2017-03-11 14:43:29.457788,171,480,2, +89,2017-03-11 14:43:29.457788,554,569,736, +51,2017-03-11 14:43:29.457788,298,19,300, +83,2017-03-11 14:43:29.457788,853,396,554, +58,2017-03-11 14:43:29.457788,849,404,458, +21,2017-03-11 14:43:29.457788,359,490,865, +28,2017-03-11 14:43:29.457788,159,297,930, +47,2017-03-11 14:43:29.457788,445,914,416, +62,2017-03-11 14:43:29.457788,394,418,509, +95,2017-03-11 14:43:29.457788,988,245,462, +29,2017-03-11 14:43:29.457788,264,762,120, +12,2017-03-11 14:43:29.457788,158,674,696, +1,2017-03-11 14:43:29.457788,79,154,218, +44,2017-03-11 14:43:29.457788,644,83,716, +80,2017-03-11 14:43:29.457788,380,646,275, +82,2017-03-11 14:43:29.457788,560,691,442, +95,2017-03-11 14:43:29.457788,109,951,902, +10,2017-03-11 14:43:29.457788,196,364,383, +46,2017-03-11 14:43:29.457788,125,503,576, +28,2017-03-11 14:43:29.457788,177,272,290, +26,2017-03-11 14:43:29.457788,426,508,694, +7,2017-03-11 14:43:29.457788,591,410,874, +97,2017-03-11 14:43:29.457788,56,149,796, +62,2017-03-11 14:43:29.457788,840,237,570, +95,2017-03-11 14:43:29.457788,188,472,46, +38,2017-03-11 14:43:29.457788,836,429,843, +96,2017-03-11 14:43:29.457788,932,420,244, +11,2017-03-11 14:43:29.457788,692,535,365, +12,2017-03-11 14:43:29.457788,43,59,188, +63,2017-03-11 14:43:29.457788,470,62,605, +53,2017-03-11 14:43:29.457788,210,401,142, +5,2017-03-11 14:43:29.457788,638,712,999, +83,2017-03-11 14:43:29.457788,184,45,210, +2,2017-03-11 14:43:29.457788,474,54,981, +41,2017-03-11 14:43:29.457788,474,225,514, +17,2017-03-11 14:43:29.457788,760,879,284, +80,2017-03-11 14:43:29.457788,938,472,437, +41,2017-03-11 14:43:29.457788,533,42,934, +74,2017-03-11 14:43:29.457788,443,76,793, +8,2017-03-11 14:43:29.457788,788,792,908, +97,2017-03-11 14:43:29.457788,837,118,992, +31,2017-03-11 14:43:29.457788,172,973,715, +65,2017-03-11 14:43:29.457788,198,229,812, +96,2017-03-11 14:43:29.457788,108,95,760, +5,2017-03-11 14:43:29.457788,567,197,455, +10,2017-03-11 14:43:29.457788,239,388,843, +68,2017-03-11 14:43:29.457788,464,636,763, +25,2017-03-11 14:43:29.457788,427,671,224, +26,2017-03-11 14:43:29.457788,789,216,574, +96,2017-03-11 14:43:29.457788,189,289,607, +39,2017-03-11 14:43:29.457788,518,418,345, +63,2017-03-11 14:43:29.457788,513,105,673, +8,2017-03-11 14:43:29.457788,302,128,180, +54,2017-03-11 14:43:29.457788,516,22,224, +98,2017-03-11 14:43:29.457788,658,987,232, +9,2017-03-11 14:43:29.457788,658,456,349, +45,2017-03-11 14:43:29.457788,672,923,407, +86,2017-03-11 14:43:29.457788,212,14,247, +73,2017-03-11 14:43:29.457788,432,592,358, +95,2017-03-11 14:43:29.457788,697,31,26, +100,2017-03-11 14:43:29.457788,159,205,541, +68,2017-03-11 14:43:29.457788,228,765,656, +89,2017-03-11 14:43:29.457788,752,888,971, +41,2017-03-11 14:43:29.457788,344,320,856, +2,2017-03-11 14:43:29.457788,244,264,877, +46,2017-03-11 14:43:29.457788,278,124,187, +71,2017-03-11 14:43:29.457788,716,545,656, +41,2017-03-11 14:43:29.457788,576,682,413, +73,2017-03-11 14:43:29.457788,887,954,410, +11,2017-03-11 14:43:29.457788,719,66,0, +47,2017-03-11 14:43:29.457788,954,972,880, +30,2017-03-11 14:43:29.457788,292,736,314, +54,2017-03-11 14:43:29.457788,1000,191,992, +28,2017-03-11 14:43:29.457788,315,179,988, +3,2017-03-11 14:43:29.457788,723,643,444, +30,2017-03-11 14:43:29.457788,325,857,33, +21,2017-03-11 14:43:29.457788,811,443,326, +53,2017-03-11 14:43:29.457788,509,327,1, +46,2017-03-11 14:43:29.457788,298,881,761, +59,2017-03-11 14:43:29.457788,617,76,126, +62,2017-03-11 14:43:29.457788,266,117,895, +58,2017-03-11 14:43:29.457788,296,882,612, +2,2017-03-11 14:43:29.457788,525,57,318, +85,2017-03-11 14:43:29.457788,914,351,62, +72,2017-03-11 14:43:29.457788,795,389,255, +30,2017-03-11 14:43:29.457788,715,255,767, +1,2017-03-11 14:43:29.457788,136,528,604, +75,2017-03-11 14:43:29.457788,604,730,371, +87,2017-03-11 14:43:29.457788,847,265,452, +14,2017-03-11 14:43:29.457788,148,64,162, +67,2017-03-11 14:43:29.457788,121,480,523, +3,2017-03-11 14:43:29.457788,831,586,759, +63,2017-03-11 14:43:29.457788,974,14,929, +69,2017-03-11 14:43:29.457788,269,696,703, +41,2017-03-11 14:43:29.457788,224,307,159, +83,2017-03-11 14:43:29.457788,37,530,698, +88,2017-03-11 14:43:29.457788,796,150,27, +94,2017-03-11 14:43:29.457788,214,190,616, +33,2017-03-11 14:43:29.457788,670,140,369, +50,2017-03-11 14:43:29.457788,725,128,126, +70,2017-03-11 14:43:29.457788,141,56,389, +41,2017-03-11 14:43:29.457788,752,92,816, +98,2017-03-11 14:43:29.457788,399,975,805, +44,2017-03-11 14:43:29.457788,505,503,320, +30,2017-03-11 14:43:29.457788,653,347,244, +87,2017-03-11 14:43:29.457788,537,860,201, +21,2017-03-11 14:43:29.457788,0,570,707, +73,2017-03-11 14:43:29.457788,698,833,425, +84,2017-03-11 14:43:29.457788,889,814,249, +64,2017-03-11 14:43:29.457788,906,65,617, +31,2017-03-11 14:43:29.457788,40,422,741, +55,2017-03-11 14:43:29.457788,925,61,846, +58,2017-03-11 14:43:29.457788,409,90,445, +95,2017-03-11 14:43:29.457788,950,646,152, +95,2017-03-11 14:43:29.457788,216,859,676, +91,2017-03-11 14:43:29.457788,692,101,753, +58,2017-03-11 14:43:29.457788,915,2,222, +82,2017-03-11 14:43:29.457788,67,839,127, +11,2017-03-11 14:43:29.457788,261,868,652, +19,2017-03-11 14:43:29.457788,929,498,764, +34,2017-03-11 14:43:29.457788,587,208,283, +54,2017-03-11 14:43:29.457788,854,435,488, +7,2017-03-11 14:43:29.457788,294,164,985, +99,2017-03-11 14:43:29.457788,265,738,567, +18,2017-03-11 14:43:29.457788,740,789,2, +81,2017-03-11 14:43:29.457788,628,128,913, +89,2017-03-11 14:43:29.457788,996,565,75, +93,2017-03-11 14:43:29.457788,63,839,263, +65,2017-03-11 14:43:29.457788,47,546,188, +90,2017-03-11 14:43:29.457788,981,675,972, +27,2017-03-11 14:43:29.457788,839,956,261, +10,2017-03-11 14:43:29.457788,694,828,284, +43,2017-03-11 14:43:29.457788,617,286,240, +25,2017-03-11 14:43:29.457788,414,154,134, +41,2017-03-11 14:43:29.457788,719,210,336, +78,2017-03-11 14:43:29.457788,48,599,432, +10,2017-03-11 14:43:29.457788,145,619,997, +13,2017-03-11 14:43:29.457788,295,969,402, +13,2017-03-11 14:43:29.457788,925,662,238, +62,2017-03-11 14:43:29.457788,490,522,53, +11,2017-03-11 14:43:29.457788,807,293,352, +22,2017-03-11 14:43:29.457788,447,486,632, +17,2017-03-11 14:43:29.457788,696,967,947, +74,2017-03-11 14:43:29.457788,566,379,840, +71,2017-03-11 14:43:29.457788,998,836,839, +29,2017-03-11 14:43:29.457788,805,240,427, +73,2017-03-11 14:43:29.457788,902,665,349, +39,2017-03-11 14:43:29.457788,187,402,499, +99,2017-03-11 14:43:29.457788,695,851,216, +14,2017-03-11 14:43:29.457788,338,847,307, +3,2017-03-11 14:43:29.457788,815,254,778, +38,2017-03-11 14:43:29.457788,632,618,93, +63,2017-03-11 14:43:29.457788,455,932,923, +26,2017-03-11 14:43:29.457788,172,350,989, +7,2017-03-11 14:43:29.457788,15,338,467, +20,2017-03-11 14:43:29.457788,740,966,197, +43,2017-03-11 14:43:29.457788,818,412,576, +16,2017-03-11 14:43:29.457788,260,883,189, +7,2017-03-11 14:43:29.457788,137,967,456, +77,2017-03-11 14:43:29.457788,585,549,399, +4,2017-03-11 14:43:29.457788,481,323,299, +65,2017-03-11 14:43:29.457788,673,289,727, +69,2017-03-11 14:43:29.457788,627,194,891, +37,2017-03-11 14:43:29.457788,161,87,802, +98,2017-03-11 14:43:29.457788,500,379,133, +76,2017-03-11 14:43:29.457788,262,323,834, +40,2017-03-11 14:43:29.457788,290,290,167, +88,2017-03-11 14:43:29.457788,839,567,915, +32,2017-03-11 14:43:29.457788,889,215,974, +56,2017-03-11 14:43:29.457788,504,701,250, +13,2017-03-11 14:43:29.457788,895,141,499, +6,2017-03-11 14:43:29.457788,228,301,34, +73,2017-03-11 14:43:29.457788,680,168,487, +94,2017-03-11 14:43:29.457788,490,321,340, +78,2017-03-11 14:43:29.457788,612,507,656, +45,2017-03-11 14:43:29.457788,74,571,772, +96,2017-03-11 14:43:29.457788,786,745,525, +29,2017-03-11 14:43:29.457788,446,775,421, +34,2017-03-11 14:43:29.457788,916,919,397, +14,2017-03-11 14:43:29.457788,220,431,872, +90,2017-03-11 14:43:29.457788,599,360,842, +9,2017-03-11 14:43:29.457788,681,182,869, +29,2017-03-11 14:43:29.457788,689,525,744, +76,2017-03-11 14:43:29.457788,96,516,725, +88,2017-03-11 14:43:29.457788,261,250,172, +71,2017-03-11 14:43:29.457788,25,593,48, +94,2017-03-11 14:43:29.457788,512,446,86, +73,2017-03-11 14:43:29.457788,877,959,633, +48,2017-03-11 14:43:29.457788,318,474,565, +100,2017-03-11 14:43:29.457788,656,435,292, +34,2017-03-11 14:43:29.457788,960,36,107, +6,2017-03-11 14:43:29.457788,552,832,938, +81,2017-03-11 14:43:29.457788,81,110,520, +11,2017-03-11 14:43:29.457788,703,568,48, +21,2017-03-11 14:43:29.457788,14,134,947, +89,2017-03-11 14:43:29.457788,92,580,367, +41,2017-03-11 14:43:29.457788,54,933,410, +71,2017-03-11 14:43:29.457788,368,702,55, +33,2017-03-11 14:43:29.457788,738,162,384, +29,2017-03-11 14:43:29.457788,993,322,103, +7,2017-03-11 14:43:29.457788,432,623,181, +13,2017-03-11 14:43:29.457788,191,228,350, +20,2017-03-11 14:43:29.457788,362,297,96, +45,2017-03-11 14:43:29.457788,877,464,865, +93,2017-03-11 14:43:29.457788,397,275,641, +76,2017-03-11 14:43:29.457788,977,696,92, +72,2017-03-11 14:43:29.457788,858,476,5, +85,2017-03-11 14:43:29.457788,798,108,925, +23,2017-03-11 14:43:29.457788,731,106,366, +92,2017-03-11 14:43:29.457788,334,715,127, +70,2017-03-11 14:43:29.457788,12,223,150, +89,2017-03-11 14:43:29.457788,687,15,819, +8,2017-03-11 14:43:29.457788,289,460,848, +27,2017-03-11 14:43:29.457788,156,940,981, +1,2017-03-11 14:43:29.457788,416,986,865, +21,2017-03-11 14:43:29.457788,95,790,445, +83,2017-03-11 14:43:29.457788,896,810,748, +23,2017-03-11 14:43:29.457788,525,875,926, +54,2017-03-11 14:43:29.457788,98,76,426, +78,2017-03-11 14:43:29.457788,91,245,867, +38,2017-03-11 14:43:29.457788,706,715,646, +86,2017-03-11 14:43:29.457788,655,627,876, +7,2017-03-11 14:43:29.457788,613,741,284, +71,2017-03-11 14:43:29.457788,531,729,534, +43,2017-03-11 14:43:29.457788,539,282,657, +6,2017-03-11 14:43:29.457788,157,582,602, +25,2017-03-11 14:43:29.457788,658,27,38, +75,2017-03-11 14:43:29.457788,273,906,129, +98,2017-03-11 14:43:29.457788,621,775,840, +28,2017-03-11 14:43:29.457788,401,717,345, +1,2017-03-11 14:43:29.457788,458,630,723, +99,2017-03-11 14:43:29.457788,359,257,416, +90,2017-03-11 14:43:29.457788,539,72,962, +70,2017-03-11 14:43:29.457788,655,564,950, +31,2017-03-11 14:43:29.457788,591,988,62, +86,2017-03-11 14:43:29.457788,894,191,842, +51,2017-03-11 14:43:29.457788,965,683,790, +37,2017-03-11 14:43:29.457788,399,135,381, +86,2017-03-11 14:43:29.457788,765,104,846, +12,2017-03-11 14:43:29.457788,361,262,22, +90,2017-03-11 14:43:29.457788,334,984,596, +99,2017-03-11 14:43:29.457788,547,545,302, +14,2017-03-11 14:43:29.457788,533,364,3, +43,2017-03-11 14:43:29.457788,555,845,942, +52,2017-03-11 14:43:29.457788,528,731,886, +93,2017-03-11 14:43:29.457788,866,268,784, +63,2017-03-11 14:43:29.457788,372,630,755, +73,2017-03-11 14:43:29.457788,892,777,634, +23,2017-03-11 14:43:29.457788,760,229,216, +31,2017-03-11 14:43:29.457788,775,518,446, +31,2017-03-11 14:43:29.457788,883,449,735, +44,2017-03-11 14:43:29.457788,294,677,957, +82,2017-03-11 14:43:29.457788,408,843,748, +27,2017-03-11 14:43:29.457788,111,533,906, +48,2017-03-11 14:43:29.457788,163,661,217, +6,2017-03-11 14:43:29.457788,437,850,282, +20,2017-03-11 14:43:29.457788,80,498,505, +85,2017-03-11 14:43:29.457788,16,951,162, +90,2017-03-11 14:43:29.457788,400,898,336, +69,2017-03-11 14:43:29.457788,575,293,514, +98,2017-03-11 14:43:29.457788,136,263,257, +25,2017-03-11 14:43:29.457788,795,163,731, +96,2017-03-11 14:43:29.457788,823,947,13, +26,2017-03-11 14:43:29.457788,797,295,458, +88,2017-03-11 14:43:29.457788,793,963,731, +81,2017-03-11 14:43:29.457788,914,894,708, +31,2017-03-11 14:43:29.457788,792,45,6, +37,2017-03-11 14:43:29.457788,338,521,349, +47,2017-03-11 14:43:29.457788,783,606,722, +58,2017-03-11 14:43:29.457788,768,452,536, +59,2017-03-11 14:43:29.457788,399,550,852, +20,2017-03-11 14:43:29.457788,845,310,74, +64,2017-03-11 14:43:29.457788,272,805,448, +19,2017-03-11 14:43:29.457788,699,156,499, +49,2017-03-11 14:43:29.457788,201,505,856, +54,2017-03-11 14:43:29.457788,26,205,12, +81,2017-03-11 14:43:29.457788,811,734,387, +58,2017-03-11 14:43:29.457788,186,924,170, +59,2017-03-11 14:43:29.457788,473,22,782, +32,2017-03-11 14:43:29.457788,332,855,956, +60,2017-03-11 14:43:29.457788,660,404,790, +36,2017-03-11 14:43:29.457788,560,289,849, +76,2017-03-11 14:43:29.457788,795,705,300, +82,2017-03-11 14:43:29.457788,911,312,629, +72,2017-03-11 14:43:29.457788,46,17,300, +23,2017-03-11 14:43:29.457788,940,470,817, +41,2017-03-11 14:43:29.457788,493,599,732, +82,2017-03-11 14:43:29.457788,454,688,429, +11,2017-03-11 14:43:29.457788,92,220,473, +65,2017-03-11 14:43:29.457788,509,322,414, +30,2017-03-11 14:43:29.457788,27,713,124, +94,2017-03-11 14:43:29.457788,25,753,659, +7,2017-03-11 14:43:29.457788,770,959,303, +71,2017-03-11 14:43:29.457788,430,120,124, +92,2017-03-11 14:43:29.457788,719,855,747, +17,2017-03-11 14:43:29.457788,543,177,287, +64,2017-03-11 14:43:29.457788,396,759,288, +91,2017-03-11 14:43:29.457788,81,702,209, +11,2017-03-11 14:43:29.457788,415,333,46, +44,2017-03-11 14:43:29.457788,86,705,511, +86,2017-03-11 14:43:29.457788,664,814,566, +9,2017-03-11 14:43:29.457788,934,690,16, +65,2017-03-11 14:43:29.457788,545,764,826, +9,2017-03-11 14:43:29.457788,940,113,724, +34,2017-03-11 14:43:29.457788,872,12,242, +95,2017-03-11 14:43:29.457788,714,450,62, +13,2017-03-11 14:43:29.457788,783,108,568, +87,2017-03-11 14:43:29.457788,814,80,725, +48,2017-03-11 14:43:29.457788,894,291,572, +83,2017-03-11 14:43:29.457788,980,588,481, +53,2017-03-11 14:43:29.457788,352,308,614, +29,2017-03-11 14:43:29.457788,420,338,629, +29,2017-03-11 14:43:29.457788,350,870,246, +6,2017-03-11 14:43:29.457788,321,308,192, +10,2017-03-11 14:43:29.457788,417,760,972, +23,2017-03-11 14:43:29.457788,840,697,708, +73,2017-03-11 14:43:29.457788,988,281,562, +97,2017-03-11 14:43:29.457788,869,43,494, +22,2017-03-11 14:43:29.457788,351,108,513, +77,2017-03-11 14:43:29.457788,446,142,64, +80,2017-03-11 14:43:29.457788,12,310,859, +33,2017-03-11 14:43:29.457788,618,51,437, +3,2017-03-11 14:43:29.457788,812,409,265, +65,2017-03-11 14:43:29.457788,106,974,386, +9,2017-03-11 14:43:29.457788,254,948,62, +12,2017-03-11 14:43:29.457788,991,556,344, +34,2017-03-11 14:43:29.457788,664,857,114, +11,2017-03-11 14:43:29.457788,999,178,905, +1,2017-03-11 14:43:29.457788,488,764,344, +11,2017-03-11 14:43:29.457788,816,780,141, +63,2017-03-11 14:43:29.457788,189,406,279, +30,2017-03-11 14:43:29.457788,379,665,389, +63,2017-03-11 14:43:29.457788,612,452,757, +60,2017-03-11 14:43:29.457788,8,100,946, +67,2017-03-11 14:43:29.457788,957,59,781, +96,2017-03-11 14:43:29.457788,237,687,967, +72,2017-03-11 14:43:29.457788,451,311,831, +27,2017-03-11 14:43:29.457788,91,971,894, +28,2017-03-11 14:43:29.457788,377,173,575, +76,2017-03-11 14:43:29.457788,838,964,390, +45,2017-03-11 14:43:29.457788,416,147,54, +42,2017-03-11 14:43:29.457788,247,1000,95, +20,2017-03-11 14:43:29.457788,59,877,160, +30,2017-03-11 14:43:29.457788,563,127,21, +1,2017-03-11 14:43:29.457788,438,852,281, +53,2017-03-11 14:43:29.457788,823,175,808, +20,2017-03-11 14:43:29.457788,348,383,957, +19,2017-03-11 14:43:29.457788,348,347,637, +76,2017-03-11 14:43:29.457788,493,691,188, +74,2017-03-11 14:43:29.457788,691,283,944, +75,2017-03-11 14:43:29.457788,160,105,46, +72,2017-03-11 14:43:29.457788,232,67,737, +67,2017-03-11 14:43:29.457788,919,18,198, +74,2017-03-11 14:43:29.457788,194,7,942, +54,2017-03-11 14:43:29.457788,390,899,728, +74,2017-03-11 14:43:29.457788,246,365,502, +74,2017-03-11 14:43:29.457788,56,690,479, +75,2017-03-11 14:43:29.457788,973,424,497, +13,2017-03-11 14:43:29.457788,529,543,856, +76,2017-03-11 14:43:29.457788,610,594,431, +53,2017-03-11 14:43:29.457788,612,629,272, +81,2017-03-11 14:43:29.457788,636,214,348, +3,2017-03-11 14:43:29.457788,113,76,764, +36,2017-03-11 14:43:29.457788,441,266,99, +50,2017-03-11 14:43:29.457788,956,578,243, +93,2017-03-11 14:43:29.457788,2,739,62, +53,2017-03-11 14:43:29.457788,282,918,291, +89,2017-03-11 14:43:29.457788,512,722,422, +12,2017-03-11 14:43:29.457788,351,694,929, +99,2017-03-11 14:43:29.457788,908,277,13, +2,2017-03-11 14:43:29.457788,353,777,381, +79,2017-03-11 14:43:29.457788,43,480,290, +100,2017-03-11 14:43:29.457788,58,533,928, +6,2017-03-11 14:43:29.457788,272,990,590, +55,2017-03-11 14:43:29.457788,908,881,447, +42,2017-03-11 14:43:29.457788,604,870,543, +96,2017-03-11 14:43:29.457788,564,472,942, +47,2017-03-11 14:43:29.457788,749,955,494, +10,2017-03-11 14:43:29.457788,732,875,895, +77,2017-03-11 14:43:29.457788,355,185,773, +41,2017-03-11 14:43:29.457788,718,701,472, +99,2017-03-11 14:43:29.457788,690,62,545, +60,2017-03-11 14:43:29.457788,943,992,17, +55,2017-03-11 14:43:29.457788,862,561,502, +43,2017-03-11 14:43:29.457788,33,444,898, +78,2017-03-11 14:43:29.457788,399,392,884, +13,2017-03-11 14:43:29.457788,267,779,905, +62,2017-03-11 14:43:29.457788,964,678,33, +68,2017-03-11 14:43:29.457788,379,505,672, +7,2017-03-11 14:43:29.457788,566,217,667, +51,2017-03-11 14:43:29.457788,209,685,56, +7,2017-03-11 14:43:29.457788,245,558,497, +28,2017-03-11 14:43:29.457788,2,395,60, +40,2017-03-11 14:43:29.457788,787,944,531, +5,2017-03-11 14:43:29.457788,724,436,675, +69,2017-03-11 14:43:29.457788,115,708,370, +49,2017-03-11 14:43:29.457788,213,42,563, +78,2017-03-11 14:43:29.457788,259,230,289, +47,2017-03-11 14:43:29.457788,914,345,540, +16,2017-03-11 14:43:29.457788,903,38,438, +90,2017-03-11 14:43:29.457788,433,498,305, +22,2017-03-11 14:43:29.457788,442,836,274, +17,2017-03-11 14:43:29.457788,273,949,854, +39,2017-03-11 14:43:29.457788,657,224,881, +87,2017-03-11 14:43:29.457788,267,443,649, +53,2017-03-11 14:43:29.457788,673,938,995, +59,2017-03-11 14:43:29.457788,283,535,747, +19,2017-03-11 14:43:29.457788,573,185,90, +1,2017-03-11 14:43:29.457788,683,395,225, +13,2017-03-11 14:43:29.457788,231,499,291, +50,2017-03-11 14:43:29.457788,448,146,891, +10,2017-03-11 14:43:29.457788,370,772,975, +64,2017-03-11 14:43:29.457788,216,624,163, +89,2017-03-11 14:43:29.457788,563,158,476, +85,2017-03-11 14:43:29.457788,694,223,31, +27,2017-03-11 14:43:29.457788,408,121,272, +9,2017-03-11 14:43:29.457788,516,497,216, +75,2017-03-11 14:43:29.457788,997,507,251, +44,2017-03-11 14:43:29.457788,653,143,549, +2,2017-03-11 14:43:29.457788,915,524,660, +13,2017-03-11 14:43:29.457788,148,823,19, +71,2017-03-11 14:43:29.457788,982,495,557, +68,2017-03-11 14:43:29.457788,719,588,942, +13,2017-03-11 14:43:29.457788,709,213,217, +23,2017-03-11 14:43:29.457788,711,432,973, +71,2017-03-11 14:43:29.457788,939,224,152, +59,2017-03-11 14:43:29.457788,367,701,615, +28,2017-03-11 14:43:29.457788,225,275,412, +37,2017-03-11 14:43:29.457788,98,431,85, +8,2017-03-11 14:43:29.457788,926,641,755, +64,2017-03-11 14:43:29.457788,229,696,771, +94,2017-03-11 14:43:29.457788,910,988,164, +62,2017-03-11 14:43:29.457788,420,137,328, +36,2017-03-11 14:43:29.457788,361,480,952, +73,2017-03-11 14:43:29.457788,181,567,10, +41,2017-03-11 14:43:29.457788,842,422,781, +94,2017-03-11 14:43:29.457788,853,865,19, +78,2017-03-11 14:43:29.457788,507,774,423, +74,2017-03-11 14:43:29.457788,470,194,675, +38,2017-03-11 14:43:29.457788,182,839,0, +60,2017-03-11 14:43:29.457788,976,328,962, +34,2017-03-11 14:43:29.457788,808,914,65, +99,2017-03-11 14:43:29.457788,480,75,396, +32,2017-03-11 14:43:29.457788,497,177,261, +35,2017-03-11 14:43:29.457788,42,280,128, +55,2017-03-11 14:43:29.457788,54,551,285, +52,2017-03-11 14:43:29.457788,745,960,903, +93,2017-03-11 14:43:29.457788,799,903,529, +77,2017-03-11 14:43:29.457788,231,491,112, +4,2017-03-11 14:43:29.457788,404,177,29, +88,2017-03-11 14:43:29.457788,252,426,206, +75,2017-03-11 14:43:29.457788,603,468,98, +65,2017-03-11 14:43:29.457788,748,226,195, +80,2017-03-11 14:43:29.457788,777,480,325, +52,2017-03-11 14:43:29.457788,440,228,449, +24,2017-03-11 14:43:29.457788,131,978,13, +36,2017-03-11 14:43:29.457788,469,125,402, +87,2017-03-11 14:43:29.457788,302,431,757, +55,2017-03-11 14:43:29.457788,857,964,303, +46,2017-03-11 14:43:29.457788,432,401,105, +18,2017-03-11 14:43:29.457788,627,300,981, +40,2017-03-11 14:43:29.457788,780,306,927, +22,2017-03-11 14:43:29.457788,535,376,459, +67,2017-03-11 14:43:29.457788,354,472,28, +82,2017-03-11 14:43:29.457788,597,430,695, +90,2017-03-11 14:43:29.457788,861,453,453, +72,2017-03-11 14:43:29.457788,417,755,178, +85,2017-03-11 14:43:29.457788,156,283,28, +78,2017-03-11 14:43:29.457788,582,9,187, +36,2017-03-11 14:43:29.457788,315,114,582, +85,2017-03-11 14:43:29.457788,489,40,516, +84,2017-03-11 14:43:29.457788,513,544,665, +11,2017-03-11 14:43:29.457788,974,361,9, +84,2017-03-11 14:43:29.457788,813,461,553, +23,2017-03-11 14:43:29.457788,216,731,78, +37,2017-03-11 14:43:29.457788,14,106,155, +60,2017-03-11 14:43:29.457788,115,342,958, +43,2017-03-11 14:43:29.457788,456,540,280, +95,2017-03-11 14:43:29.457788,580,796,789, +9,2017-03-11 14:43:29.457788,340,454,202, +31,2017-03-11 14:43:29.457788,815,211,149, +63,2017-03-11 14:43:29.457788,672,702,858, +89,2017-03-11 14:43:29.457788,433,936,261, +45,2017-03-11 14:43:29.457788,42,416,42, +16,2017-03-11 14:43:29.457788,758,1000,588, +21,2017-03-11 14:43:29.457788,539,868,160, +12,2017-03-11 14:43:29.457788,664,948,212, +0,2017-03-11 14:43:29.457788,402,415,317, +22,2017-03-11 14:43:29.457788,626,466,845, +30,2017-03-11 14:43:29.457788,168,704,187, +60,2017-03-11 14:43:29.457788,640,448,47, +68,2017-03-11 14:43:29.457788,864,89,840, +62,2017-03-11 14:43:29.457788,89,427,837, +63,2017-03-11 14:43:29.457788,295,997,748, +96,2017-03-11 14:43:29.457788,945,960,963, +35,2017-03-11 14:43:29.457788,375,281,565, +0,2017-03-11 14:43:29.457788,747,410,299, +91,2017-03-11 14:43:29.457788,114,486,515, +75,2017-03-11 14:43:29.457788,934,562,436, +80,2017-03-11 14:43:29.457788,651,276,420, +74,2017-03-11 14:43:29.457788,704,257,368, +100,2017-03-11 14:43:29.457788,254,116,958, +20,2017-03-11 14:43:29.457788,76,921,547, +45,2017-03-11 14:43:29.457788,202,111,451, +95,2017-03-11 14:43:29.457788,522,750,863, +64,2017-03-11 14:43:29.457788,236,379,389, +17,2017-03-11 14:43:29.457788,941,826,968, +59,2017-03-11 14:43:29.457788,102,388,332, +81,2017-03-11 14:43:29.457788,645,700,805, +90,2017-03-11 14:43:29.457788,816,763,98, +89,2017-03-11 14:43:29.457788,684,645,344, +89,2017-03-11 14:43:29.457788,756,795,835, +28,2017-03-11 14:43:29.457788,545,698,913, +78,2017-03-11 14:43:29.457788,77,303,951, +2,2017-03-11 14:43:29.457788,128,919,610, +23,2017-03-11 14:43:29.457788,307,942,36, +95,2017-03-11 14:43:29.457788,643,840,852, +46,2017-03-11 14:43:29.457788,603,950,352, +29,2017-03-11 14:43:29.457788,595,695,174, +35,2017-03-11 14:43:29.457788,490,9,630, +4,2017-03-11 14:43:29.457788,707,543,817, +78,2017-03-11 14:43:29.457788,846,768,803, +97,2017-03-11 14:43:29.457788,686,413,205, +99,2017-03-11 14:43:29.457788,355,240,946, +100,2017-03-11 14:43:29.457788,80,797,457, +68,2017-03-11 14:43:29.457788,748,809,971, +34,2017-03-11 14:43:29.457788,504,145,695, +99,2017-03-11 14:43:29.457788,154,325,30, +86,2017-03-11 14:43:29.457788,868,847,646, +71,2017-03-11 14:43:29.457788,614,448,689, +30,2017-03-11 14:43:29.457788,861,893,293, +22,2017-03-11 14:43:29.457788,134,239,215, +21,2017-03-11 14:43:29.457788,36,672,898, +78,2017-03-11 14:43:29.457788,481,869,127, +99,2017-03-11 14:43:29.457788,13,822,980, +17,2017-03-11 14:43:29.457788,147,10,28, +1,2017-03-11 14:43:29.457788,857,674,729, +47,2017-03-11 14:43:29.457788,122,418,771, +98,2017-03-11 14:43:29.457788,311,65,200, +44,2017-03-11 14:43:29.457788,304,415,659, +34,2017-03-11 14:43:29.457788,88,556,124, +57,2017-03-11 14:43:29.457788,425,251,555, +44,2017-03-11 14:43:29.457788,73,535,605, +22,2017-03-11 14:43:29.457788,545,633,234, +40,2017-03-11 14:43:29.457788,307,963,872, +43,2017-03-11 14:43:29.457788,381,644,413, +69,2017-03-11 14:43:29.457788,708,613,137, +1,2017-03-11 14:43:29.457788,29,795,351, +12,2017-03-11 14:43:29.457788,352,475,685, +78,2017-03-11 14:43:29.457788,726,240,215, +80,2017-03-11 14:43:29.457788,775,820,18, +32,2017-03-11 14:43:29.457788,454,252,721, +76,2017-03-11 14:43:29.457788,215,594,190, +60,2017-03-11 14:43:29.457788,237,603,288, +95,2017-03-11 14:43:29.457788,216,425,957, +24,2017-03-11 14:43:29.457788,220,309,361, +57,2017-03-11 14:43:29.457788,784,46,349, +51,2017-03-11 14:43:29.457788,286,564,308, +6,2017-03-11 14:43:29.457788,384,326,380, +84,2017-03-11 14:43:29.457788,578,102,599, +79,2017-03-11 14:43:29.457788,696,789,390, +93,2017-03-11 14:43:29.457788,392,678,879, +61,2017-03-11 14:43:29.457788,103,836,853, +32,2017-03-11 14:43:29.457788,145,214,896, +93,2017-03-11 14:43:29.457788,260,245,438, +55,2017-03-11 14:43:29.457788,809,747,606, +19,2017-03-11 14:43:29.457788,73,987,31, +65,2017-03-11 14:43:29.457788,88,630,445, +78,2017-03-11 14:43:29.457788,420,834,717, +81,2017-03-11 14:43:29.457788,512,596,421, +62,2017-03-11 14:43:29.457788,432,274,939, +58,2017-03-11 14:43:29.457788,487,834,505, +75,2017-03-11 14:43:29.457788,79,943,293, +89,2017-03-11 14:43:29.457788,690,899,80, +76,2017-03-11 14:43:29.457788,886,112,414, +97,2017-03-11 14:43:29.457788,742,858,758, +16,2017-03-11 14:43:29.457788,692,475,974, +20,2017-03-11 14:43:29.457788,71,395,820, +50,2017-03-11 14:43:29.457788,668,758,79, +16,2017-03-11 14:43:29.457788,592,583,903, +67,2017-03-11 14:43:29.457788,526,195,559, +22,2017-03-11 14:43:29.457788,94,639,978, +98,2017-03-11 14:43:29.457788,751,392,954, +49,2017-03-11 14:43:29.457788,250,712,655, +94,2017-03-11 14:43:29.457788,187,629,147, +26,2017-03-11 14:43:29.457788,24,966,760, +69,2017-03-11 14:43:29.457788,724,838,848, +32,2017-03-11 14:43:29.457788,421,751,988, +95,2017-03-11 14:43:29.457788,947,547,163, +4,2017-03-11 14:43:29.457788,186,141,21, +94,2017-03-11 14:43:29.457788,533,975,430, +78,2017-03-11 14:43:29.457788,687,85,725, +87,2017-03-11 14:43:29.457788,714,871,131, +74,2017-03-11 14:43:29.457788,837,891,430, +56,2017-03-11 14:43:29.457788,729,278,878, +15,2017-03-11 14:43:29.457788,29,866,98, +98,2017-03-11 14:43:29.457788,413,261,17, +60,2017-03-11 14:43:29.457788,402,38,535, +93,2017-03-11 14:43:29.457788,13,965,717, +70,2017-03-11 14:43:29.457788,50,442,573, +76,2017-03-11 14:43:29.457788,313,704,501, +15,2017-03-11 14:43:29.457788,594,931,711, +32,2017-03-11 14:43:29.457788,209,589,474, +24,2017-03-11 14:43:29.457788,455,572,214, +87,2017-03-11 14:43:29.457788,833,231,467, +24,2017-03-11 14:43:29.457788,268,2,171, +28,2017-03-11 14:43:29.457788,967,888,980, +2,2017-03-11 14:43:29.457788,330,553,780, +64,2017-03-11 14:43:29.457788,256,281,793, +85,2017-03-11 14:43:29.457788,211,505,174, +42,2017-03-11 14:43:29.457788,94,648,658, +55,2017-03-11 14:43:29.457788,221,872,417, +5,2017-03-11 14:43:29.457788,102,884,290, +37,2017-03-11 14:43:29.457788,886,460,651, +85,2017-03-11 14:43:29.457788,348,631,870, +68,2017-03-11 14:43:29.457788,184,650,321, +44,2017-03-11 14:43:29.457788,930,114,291, +14,2017-03-11 14:43:29.457788,619,465,562, +71,2017-03-11 14:43:29.457788,114,220,262, +33,2017-03-11 14:43:29.457788,92,679,388, +19,2017-03-11 14:43:29.457788,563,678,565, +45,2017-03-11 14:43:29.457788,139,217,302, +49,2017-03-11 14:43:29.457788,848,171,166, +3,2017-03-11 14:43:29.457788,821,487,472, +75,2017-03-11 14:43:29.457788,601,764,893, +22,2017-03-11 14:43:29.457788,229,455,933, +34,2017-03-11 14:43:29.457788,675,195,677, +77,2017-03-11 14:43:29.457788,874,65,962, +44,2017-03-11 14:43:29.457788,743,527,886, +88,2017-03-11 14:43:29.457788,743,187,369, +59,2017-03-11 14:43:29.457788,359,535,623, +18,2017-03-11 14:43:29.457788,22,96,931, +62,2017-03-11 14:43:29.457788,859,824,843, +9,2017-03-11 14:43:29.457788,279,776,430, +95,2017-03-11 14:43:29.457788,971,107,722, +84,2017-03-11 14:43:29.457788,172,683,282, +92,2017-03-11 14:43:29.457788,210,168,797, +95,2017-03-11 14:43:29.457788,355,166,544, +71,2017-03-11 14:43:29.457788,701,167,894, +72,2017-03-11 14:43:29.457788,263,825,345, +12,2017-03-11 14:43:29.457788,649,188,210, +93,2017-03-11 14:43:29.457788,964,641,883, +93,2017-03-11 14:43:29.457788,748,604,779, +92,2017-03-11 14:43:29.457788,287,61,835, +50,2017-03-11 14:43:29.457788,228,632,450, +58,2017-03-11 14:43:29.457788,798,994,297, +50,2017-03-11 14:43:29.457788,162,191,222, +42,2017-03-11 14:43:29.457788,15,567,547, +66,2017-03-11 14:43:29.457788,755,757,593, +72,2017-03-11 14:43:29.457788,398,475,653, +15,2017-03-11 14:43:29.457788,80,432,65, +37,2017-03-11 14:43:29.457788,493,899,865, +72,2017-03-11 14:43:29.457788,531,315,305, +33,2017-03-11 14:43:29.457788,309,602,829, +47,2017-03-11 14:43:29.457788,792,51,895, +81,2017-03-11 14:43:29.457788,618,442,472, +37,2017-03-11 14:43:29.457788,199,64,92, +60,2017-03-11 14:43:29.457788,540,746,741, +62,2017-03-11 14:43:29.457788,178,806,987, +67,2017-03-11 14:43:29.457788,705,851,393, +24,2017-03-11 14:43:29.457788,166,697,566, +47,2017-03-11 14:43:29.457788,299,394,945, +9,2017-03-11 14:43:29.457788,445,840,899, +6,2017-03-11 14:43:29.457788,282,370,436, +48,2017-03-11 14:43:29.457788,435,529,77, +97,2017-03-11 14:43:29.457788,275,818,594, +45,2017-03-11 14:43:29.457788,624,581,124, +33,2017-03-11 14:43:29.457788,432,517,565, +60,2017-03-11 14:43:29.457788,214,131,73, +51,2017-03-11 14:43:29.457788,525,18,604, +97,2017-03-11 14:43:29.457788,858,503,33, +14,2017-03-11 14:43:29.457788,873,469,621, +31,2017-03-11 14:43:29.457788,998,697,283, +27,2017-03-11 14:43:29.457788,515,877,726, +14,2017-03-11 14:43:29.457788,458,850,467, +89,2017-03-11 14:43:29.457788,367,32,488, +58,2017-03-11 14:43:29.457788,163,561,94, +69,2017-03-11 14:43:29.457788,579,699,658, +44,2017-03-11 14:43:29.457788,202,691,578, +7,2017-03-11 14:43:29.457788,161,198,383, +16,2017-03-11 14:43:29.457788,896,666,432, +41,2017-03-11 14:43:29.457788,543,157,549, +0,2017-03-11 14:43:29.457788,7,16,890, +37,2017-03-11 14:43:29.457788,48,378,956, +21,2017-03-11 14:43:29.457788,939,50,899, +52,2017-03-11 14:43:29.457788,749,557,956, +95,2017-03-11 14:43:29.457788,248,533,25, +41,2017-03-11 14:43:29.457788,732,408,567, +63,2017-03-11 14:43:29.457788,74,999,38, +62,2017-03-11 14:43:29.457788,156,588,617, +16,2017-03-11 14:43:29.457788,604,507,537, +65,2017-03-11 14:43:29.457788,885,493,863, +82,2017-03-11 14:43:29.457788,543,762,342, +29,2017-03-11 14:43:29.457788,318,298,242, +57,2017-03-11 14:43:29.457788,831,267,974, +56,2017-03-11 14:43:29.457788,675,541,191, +75,2017-03-11 14:43:29.457788,540,229,365, +70,2017-03-11 14:43:29.457788,816,981,859, +42,2017-03-11 14:43:29.457788,488,396,72, +37,2017-03-11 14:43:29.457788,889,935,197, +43,2017-03-11 14:43:29.457788,697,539,723, +2,2017-03-11 14:43:29.457788,836,965,581, +67,2017-03-11 14:43:29.457788,231,556,230, +91,2017-03-11 14:43:29.457788,97,421,654, +64,2017-03-11 14:43:29.457788,650,19,333, +47,2017-03-11 14:43:29.457788,0,192,886, +49,2017-03-11 14:43:29.457788,588,959,861, +48,2017-03-11 14:43:29.457788,894,58,910, +59,2017-03-11 14:43:29.457788,597,633,607, +43,2017-03-11 14:43:29.457788,598,188,101, +83,2017-03-11 14:43:29.457788,744,331,736, +84,2017-03-11 14:43:29.457788,752,390,478, +40,2017-03-11 14:43:29.457788,409,811,868, +41,2017-03-11 14:43:29.457788,3,754,898, +59,2017-03-11 14:43:29.457788,713,759,69, +61,2017-03-11 14:43:29.457788,818,978,198, +41,2017-03-11 14:43:29.457788,611,805,848, +21,2017-03-11 14:43:29.457788,993,949,39, +74,2017-03-11 14:43:29.457788,280,775,577, +3,2017-03-11 14:43:29.457788,165,55,433, +57,2017-03-11 14:43:29.457788,866,301,983, +87,2017-03-11 14:43:29.457788,55,881,460, +77,2017-03-11 14:43:29.457788,640,529,374, +46,2017-03-11 14:43:29.457788,508,572,872, +12,2017-03-11 14:43:29.457788,377,720,329, +37,2017-03-11 14:43:29.457788,669,368,106, +95,2017-03-11 14:43:29.457788,143,683,980, +31,2017-03-11 14:43:29.457788,738,413,881, +60,2017-03-11 14:43:29.457788,714,864,474, +77,2017-03-11 14:43:29.457788,745,934,536, +38,2017-03-11 14:43:29.457788,464,910,842, +97,2017-03-11 14:43:29.457788,482,714,90, +86,2017-03-11 14:43:29.457788,434,419,229, +10,2017-03-11 14:43:29.457788,787,334,52, +93,2017-03-11 14:43:29.457788,18,32,237, +76,2017-03-11 14:43:29.457788,446,118,361, +16,2017-03-11 14:43:29.457788,982,834,929, +73,2017-03-11 14:43:29.457788,769,465,112, +23,2017-03-11 14:43:29.457788,375,954,204, +86,2017-03-11 14:43:29.457788,668,294,716, +10,2017-03-11 14:43:29.457788,713,945,206, +50,2017-03-11 14:43:29.457788,279,258,429, +30,2017-03-11 14:43:29.457788,290,666,53, +74,2017-03-11 14:43:29.457788,784,413,896, +77,2017-03-11 14:43:29.457788,248,824,494, +2,2017-03-11 14:43:29.457788,289,606,249, +66,2017-03-11 14:43:29.457788,559,453,521, +23,2017-03-11 14:43:29.457788,747,237,329, +46,2017-03-11 14:43:29.457788,182,535,959, +46,2017-03-11 14:43:29.457788,793,388,759, +8,2017-03-11 14:43:29.457788,54,811,819, +84,2017-03-11 14:43:29.457788,225,715,605, +47,2017-03-11 14:43:29.457788,539,99,489, +83,2017-03-11 14:43:29.457788,705,739,492, +26,2017-03-11 14:43:29.457788,192,13,492, +94,2017-03-11 14:43:29.457788,250,821,398, +43,2017-03-11 14:43:29.457788,356,357,894, +15,2017-03-11 14:43:29.457788,745,652,232, +80,2017-03-11 14:43:29.457788,464,50,638, +69,2017-03-11 14:43:29.457788,765,244,161, +30,2017-03-11 14:43:29.457788,343,651,133, +5,2017-03-11 14:43:29.457788,389,625,312, +58,2017-03-11 14:43:29.457788,638,804,519, +89,2017-03-11 14:43:29.457788,625,917,320, +98,2017-03-11 14:43:29.457788,274,214,130, +2,2017-03-11 14:43:29.457788,866,361,818, +33,2017-03-11 14:43:29.457788,412,457,19, +18,2017-03-11 14:43:29.457788,700,180,482, +4,2017-03-11 14:43:29.457788,831,615,91, +22,2017-03-11 14:43:29.457788,239,404,801, +88,2017-03-11 14:43:29.457788,208,320,765, +83,2017-03-11 14:43:29.457788,237,84,814, +51,2017-03-11 14:43:29.457788,298,943,530, +16,2017-03-11 14:43:29.457788,305,348,494, +72,2017-03-11 14:43:29.457788,805,512,893, +51,2017-03-11 14:43:29.457788,692,375,549, +52,2017-03-11 14:43:29.457788,990,640,743, +23,2017-03-11 14:43:29.457788,44,544,106, +25,2017-03-11 14:43:29.457788,864,871,84, +10,2017-03-11 14:43:29.457788,955,898,612, +25,2017-03-11 14:43:29.457788,841,141,417, +15,2017-03-11 14:43:29.457788,490,911,862, +29,2017-03-11 14:43:29.457788,423,756,800, +12,2017-03-11 14:43:29.457788,131,349,638, +12,2017-03-11 14:43:29.457788,989,381,350, +3,2017-03-11 14:43:29.457788,925,456,285, +79,2017-03-11 14:43:29.457788,326,369,889, +28,2017-03-11 14:43:29.457788,267,501,534, +11,2017-03-11 14:43:29.457788,643,950,254, +13,2017-03-11 14:43:29.457788,861,116,427, +28,2017-03-11 14:43:29.457788,872,227,399, +0,2017-03-11 14:43:29.457788,575,38,123, +56,2017-03-11 14:43:29.457788,419,473,597, +34,2017-03-11 14:43:29.457788,928,882,132, +25,2017-03-11 14:43:29.457788,251,21,535, +52,2017-03-11 14:43:29.457788,523,69,625, +17,2017-03-11 14:43:29.457788,20,879,297, +88,2017-03-11 14:43:29.457788,995,724,165, +87,2017-03-11 14:43:29.457788,951,564,869, +53,2017-03-11 14:43:29.457788,602,992,91, +2,2017-03-11 14:43:29.457788,465,688,364, +39,2017-03-11 14:43:29.457788,569,495,648, +82,2017-03-11 14:43:29.457788,517,184,337, +4,2017-03-11 14:43:29.457788,253,963,205, +27,2017-03-11 14:43:29.457788,842,502,153, +84,2017-03-11 14:43:29.457788,227,318,704, +18,2017-03-11 14:43:29.457788,882,573,704, +48,2017-03-11 14:43:29.457788,565,794,504, +3,2017-03-11 14:43:29.457788,482,867,424, +5,2017-03-11 14:43:29.457788,363,72,872, +88,2017-03-11 14:43:29.457788,255,209,919, +51,2017-03-11 14:43:29.457788,172,124,780, +1,2017-03-11 14:43:29.457788,626,933,851, +85,2017-03-11 14:43:29.457788,251,554,30, +13,2017-03-11 14:43:29.457788,127,734,617, +69,2017-03-11 14:43:29.457788,529,120,722, +1,2017-03-11 14:43:29.457788,988,146,62, +35,2017-03-11 14:43:29.457788,218,934,230, +47,2017-03-11 14:43:29.457788,143,149,981, +31,2017-03-11 14:43:29.457788,273,761,329, +90,2017-03-11 14:43:29.457788,695,179,753, +95,2017-03-11 14:43:29.457788,733,783,79, +86,2017-03-11 14:43:29.457788,517,695,552, +5,2017-03-11 14:43:29.457788,816,274,56, +80,2017-03-11 14:43:29.457788,420,119,154, +64,2017-03-11 14:43:29.457788,53,384,111, +20,2017-03-11 14:43:29.457788,533,92,511, +81,2017-03-11 14:43:29.457788,854,839,707, +55,2017-03-11 14:43:29.457788,19,459,495, +75,2017-03-11 14:43:29.457788,242,574,612, +76,2017-03-11 14:43:29.457788,269,164,805, +8,2017-03-11 14:43:29.457788,438,861,888, +86,2017-03-11 14:43:29.457788,980,42,497, +3,2017-03-11 14:43:29.457788,426,608,229, +96,2017-03-11 14:43:29.457788,701,740,766, +55,2017-03-11 14:43:29.457788,579,473,103, +60,2017-03-11 14:43:29.457788,932,598,349, +17,2017-03-11 14:43:29.457788,171,961,934, +44,2017-03-11 14:43:29.457788,125,739,525, +56,2017-03-11 14:43:29.457788,600,413,422, +58,2017-03-11 14:43:29.457788,455,919,613, +88,2017-03-11 14:43:29.457788,527,842,841, +23,2017-03-11 14:43:29.457788,581,607,783, +16,2017-03-11 14:43:29.457788,80,886,758, +1,2017-03-11 14:43:29.457788,484,107,187, +66,2017-03-11 14:43:29.457788,69,121,96, +19,2017-03-11 14:43:29.457788,860,621,757, +46,2017-03-11 14:43:29.457788,35,179,40, +49,2017-03-11 14:43:29.457788,99,653,372, +63,2017-03-11 14:43:29.457788,495,213,854, +8,2017-03-11 14:43:29.457788,820,637,236, +90,2017-03-11 14:43:29.457788,523,994,912, +1,2017-03-11 14:43:29.457788,102,99,663, +17,2017-03-11 14:43:29.457788,220,759,364, +8,2017-03-11 14:43:29.457788,380,121,539, +41,2017-03-11 14:43:29.457788,300,579,905, +40,2017-03-11 14:43:29.457788,232,277,25, +73,2017-03-11 14:43:29.457788,489,879,803, +31,2017-03-11 14:43:29.457788,516,40,209, +4,2017-03-11 14:43:29.457788,34,121,46, +14,2017-03-11 14:43:29.457788,220,708,306, +44,2017-03-11 14:43:29.457788,467,669,520, +85,2017-03-11 14:43:29.457788,790,59,262, +9,2017-03-11 14:43:29.457788,639,166,490, +87,2017-03-11 14:43:29.457788,443,515,599, +93,2017-03-11 14:43:29.457788,394,402,241, +91,2017-03-11 14:43:29.457788,442,450,949, +48,2017-03-11 14:43:29.457788,571,995,611, +79,2017-03-11 14:43:29.457788,703,917,232, +17,2017-03-11 14:43:29.457788,586,752,17, +38,2017-03-11 14:43:29.457788,812,278,467, +45,2017-03-11 14:43:29.457788,445,957,322, +89,2017-03-11 14:43:29.457788,472,920,820, +87,2017-03-11 14:43:29.457788,322,62,776, +76,2017-03-11 14:43:29.457788,512,725,240, +8,2017-03-11 14:43:29.457788,719,851,875, +42,2017-03-11 14:43:29.457788,768,108,592, +35,2017-03-11 14:43:29.457788,860,609,731, +67,2017-03-11 14:43:29.457788,887,198,122, +33,2017-03-11 14:43:29.457788,155,444,220, +63,2017-03-11 14:43:29.457788,365,40,493, +69,2017-03-11 14:43:29.457788,102,269,451, +61,2017-03-11 14:43:29.457788,993,691,697, +71,2017-03-11 14:43:29.457788,542,573,135, +31,2017-03-11 14:43:29.457788,681,727,665, +54,2017-03-11 14:43:29.457788,336,395,213, +22,2017-03-11 14:43:29.457788,593,335,556, +75,2017-03-11 14:43:29.457788,779,776,375, +14,2017-03-11 14:43:29.457788,816,867,831, +92,2017-03-11 14:43:29.457788,136,282,532, +13,2017-03-11 14:43:29.457788,973,229,842, +52,2017-03-11 14:43:29.457788,802,978,826, +48,2017-03-11 14:43:29.457788,705,490,23, +4,2017-03-11 14:43:29.457788,886,236,265, +48,2017-03-11 14:43:29.457788,571,821,226, +35,2017-03-11 14:43:29.457788,597,601,494, +41,2017-03-11 14:43:29.457788,468,325,331, +60,2017-03-11 14:43:29.457788,607,862,734, +58,2017-03-11 14:43:29.457788,91,576,96, +89,2017-03-11 14:43:29.457788,554,922,376, +26,2017-03-11 14:43:29.457788,412,399,301, +30,2017-03-11 14:43:29.457788,635,566,776, +21,2017-03-11 14:43:29.457788,388,2,556, +98,2017-03-11 14:43:29.457788,603,50,397, +7,2017-03-11 14:43:29.457788,375,728,676, +98,2017-03-11 14:43:29.457788,590,410,562, +68,2017-03-11 14:43:29.457788,986,658,575, +54,2017-03-11 14:43:29.457788,580,951,800, +99,2017-03-11 14:43:29.457788,350,101,289, +98,2017-03-11 14:43:29.457788,667,65,190, +5,2017-03-11 14:43:29.457788,67,746,40, +67,2017-03-11 14:43:29.457788,796,437,742, +17,2017-03-11 14:43:29.457788,165,418,153, +76,2017-03-11 14:43:29.457788,828,715,437, +81,2017-03-11 14:43:29.457788,373,12,355, +95,2017-03-11 14:43:29.457788,963,155,944, +31,2017-03-11 14:43:29.457788,255,234,297, +92,2017-03-11 14:43:29.457788,299,487,978, +37,2017-03-11 14:43:29.457788,233,17,37, +3,2017-03-11 14:43:29.457788,454,779,200, +62,2017-03-11 14:43:29.457788,197,352,375, +2,2017-03-11 14:43:29.457788,67,812,839, +44,2017-03-11 14:43:29.457788,824,194,392, +79,2017-03-11 14:43:29.457788,348,337,99, +60,2017-03-11 14:43:29.457788,570,396,526, +87,2017-03-11 14:43:29.457788,883,504,235, +12,2017-03-11 14:43:29.457788,521,272,145, +98,2017-03-11 14:43:29.457788,50,345,594, +25,2017-03-11 14:43:29.457788,697,969,272, +76,2017-03-11 14:43:29.457788,781,111,203, +60,2017-03-11 14:43:29.457788,305,596,390, +65,2017-03-11 14:43:29.457788,933,489,257, +50,2017-03-11 14:43:29.457788,885,783,372, +77,2017-03-11 14:43:29.457788,287,607,883, +81,2017-03-11 14:43:29.457788,879,28,784, +93,2017-03-11 14:43:29.457788,373,378,176, +7,2017-03-11 14:43:29.457788,347,448,833, +13,2017-03-11 14:43:29.457788,559,37,732, +86,2017-03-11 14:43:29.457788,632,122,517, +56,2017-03-11 14:43:29.457788,611,774,68, +50,2017-03-11 14:43:29.457788,557,440,263, +84,2017-03-11 14:43:29.457788,47,146,653, +93,2017-03-11 14:43:29.457788,175,437,855, +55,2017-03-11 14:43:29.457788,815,31,617, +16,2017-03-11 14:43:29.457788,479,450,289, +4,2017-03-11 14:43:29.457788,487,21,903, +12,2017-03-11 14:43:29.457788,143,420,684, +75,2017-03-11 14:43:29.457788,194,752,249, +75,2017-03-11 14:43:29.457788,192,512,596, +24,2017-03-11 14:43:29.457788,659,249,164, +83,2017-03-11 14:43:29.457788,686,19,381, +50,2017-03-11 14:43:29.457788,50,998,662, +53,2017-03-11 14:43:29.457788,448,951,568, +94,2017-03-11 14:43:29.457788,972,471,55, +11,2017-03-11 14:43:29.457788,891,739,868, +8,2017-03-11 14:43:29.457788,491,118,836, +68,2017-03-11 14:43:29.457788,630,432,922, +29,2017-03-11 14:43:29.457788,681,86,122, +37,2017-03-11 14:43:29.457788,105,503,866, +15,2017-03-11 14:43:29.457788,501,528,684, +95,2017-03-11 14:43:29.457788,479,253,885, +45,2017-03-11 14:43:29.457788,724,939,565, +61,2017-03-11 14:43:29.457788,678,433,699, +17,2017-03-11 14:43:29.457788,551,535,852, +18,2017-03-11 14:43:29.457788,967,774,470, +65,2017-03-11 14:43:29.457788,860,592,14, +96,2017-03-11 14:43:29.457788,95,880,120, +60,2017-03-11 14:43:29.457788,408,804,545, +89,2017-03-11 14:43:29.457788,57,429,337, +78,2017-03-11 14:43:29.457788,368,902,395, +5,2017-03-11 14:43:29.457788,335,95,216, +89,2017-03-11 14:43:29.457788,630,68,66, +60,2017-03-11 14:43:29.457788,842,536,244, +70,2017-03-11 14:43:29.457788,128,258,666, +22,2017-03-11 14:43:29.457788,138,786,818, +55,2017-03-11 14:43:29.457788,590,363,433, +65,2017-03-11 14:43:29.457788,792,770,428, +16,2017-03-11 14:43:29.457788,672,823,207, +1,2017-03-11 14:43:29.457788,918,422,892, +55,2017-03-11 14:43:29.457788,490,958,144, +33,2017-03-11 14:43:29.457788,495,388,33, +62,2017-03-11 14:43:29.457788,646,700,845, +78,2017-03-11 14:43:29.457788,486,663,330, +8,2017-03-11 14:43:29.457788,26,763,724, +82,2017-03-11 14:43:29.457788,533,152,978, +20,2017-03-11 14:43:29.457788,975,184,211, +89,2017-03-11 14:43:29.457788,606,103,440, +10,2017-03-11 14:43:29.457788,62,584,428, +56,2017-03-11 14:43:29.457788,973,462,179, +62,2017-03-11 14:43:29.457788,162,25,402, +65,2017-03-11 14:43:29.457788,688,732,724, +71,2017-03-11 14:43:29.457788,495,448,531, +3,2017-03-11 14:43:29.457788,600,509,233, +57,2017-03-11 14:43:29.457788,693,444,468, +30,2017-03-11 14:43:29.457788,548,908,396, +61,2017-03-11 14:43:29.457788,492,825,166, +46,2017-03-11 14:43:29.457788,286,345,83, +45,2017-03-11 14:43:29.457788,370,486,95, +6,2017-03-11 14:43:29.457788,218,819,772, +71,2017-03-11 14:43:29.457788,267,303,742, +87,2017-03-11 14:43:29.457788,812,975,441, +51,2017-03-11 14:43:29.457788,419,909,805, +97,2017-03-11 14:43:29.457788,817,202,576, +31,2017-03-11 14:43:29.457788,26,742,774, +31,2017-03-11 14:43:29.457788,87,858,761, +46,2017-03-11 14:43:29.457788,343,856,515, +56,2017-03-11 14:43:29.457788,675,286,275, +94,2017-03-11 14:43:29.457788,589,16,809, +40,2017-03-11 14:43:29.457788,991,250,907, +41,2017-03-11 14:43:29.457788,159,713,376, +98,2017-03-11 14:43:29.457788,915,952,285, +94,2017-03-11 14:43:29.457788,693,59,254, +78,2017-03-11 14:43:29.457788,916,14,237, +26,2017-03-11 14:43:29.457788,870,752,821, +55,2017-03-11 14:43:29.457788,38,96,488, +63,2017-03-11 14:43:29.457788,112,297,29, +10,2017-03-11 14:43:29.457788,547,936,512, +71,2017-03-11 14:43:29.457788,649,888,682, +56,2017-03-11 14:43:29.457788,840,966,504, +53,2017-03-11 14:43:29.457788,25,758,313, +94,2017-03-11 14:43:29.457788,772,550,201, +64,2017-03-11 14:43:29.457788,302,22,188, +34,2017-03-11 14:43:29.457788,118,676,967, +23,2017-03-11 14:43:29.457788,973,996,333, +52,2017-03-11 14:43:29.457788,932,845,226, +58,2017-03-11 14:43:29.457788,733,907,144, +57,2017-03-11 14:43:29.457788,873,648,106, +90,2017-03-11 14:43:29.457788,406,420,840, +18,2017-03-11 14:43:29.457788,970,42,821, +27,2017-03-11 14:43:29.457788,64,8,612, +18,2017-03-11 14:43:29.457788,684,578,412, +66,2017-03-11 14:43:29.457788,574,745,177, +51,2017-03-11 14:43:29.457788,590,402,86, +32,2017-03-11 14:43:29.457788,310,230,896, +18,2017-03-11 14:43:29.457788,878,2,82, +28,2017-03-11 14:43:29.457788,422,922,462, +39,2017-03-11 14:43:29.457788,964,283,664, +3,2017-03-11 14:43:29.457788,291,276,210, +98,2017-03-11 14:43:29.457788,854,622,633, +43,2017-03-11 14:43:29.457788,367,809,933, +96,2017-03-11 14:43:29.457788,212,19,280, +52,2017-03-11 14:43:29.457788,249,176,704, +13,2017-03-11 14:43:29.457788,179,786,411, +60,2017-03-11 14:43:29.457788,708,873,993, +67,2017-03-11 14:43:29.457788,156,657,700, +45,2017-03-11 14:43:29.457788,932,910,423, +79,2017-03-11 14:43:29.457788,532,56,214, +90,2017-03-11 14:43:29.457788,865,147,857, +8,2017-03-11 14:43:29.457788,167,137,598, +42,2017-03-11 14:43:29.457788,313,302,543, +49,2017-03-11 14:43:29.457788,88,954,93, +80,2017-03-11 14:43:29.457788,827,86,468, +98,2017-03-11 14:43:29.457788,743,168,431, +68,2017-03-11 14:43:29.457788,78,854,461, +61,2017-03-11 14:43:29.457788,910,675,510, +78,2017-03-11 14:43:29.457788,823,367,852, +99,2017-03-11 14:43:29.457788,504,450,406, +82,2017-03-11 14:43:29.457788,753,948,310, +84,2017-03-11 14:43:29.457788,902,403,638, +73,2017-03-11 14:43:29.457788,489,106,713, +23,2017-03-11 14:43:29.457788,274,144,907, +35,2017-03-11 14:43:29.457788,999,368,963, +91,2017-03-11 14:43:29.457788,43,474,684, +87,2017-03-11 14:43:29.457788,841,536,856, +35,2017-03-11 14:43:29.457788,986,261,163, +74,2017-03-11 14:43:29.457788,210,473,580, +11,2017-03-11 14:43:29.457788,876,218,842, +36,2017-03-11 14:43:29.457788,324,556,596, +60,2017-03-11 14:43:29.457788,700,503,950, +70,2017-03-11 14:43:29.457788,871,914,608, +91,2017-03-11 14:43:29.457788,387,291,780, +23,2017-03-11 14:43:29.457788,827,636,573, +81,2017-03-11 14:43:29.457788,897,736,553, +11,2017-03-11 14:43:29.457788,208,133,220, +8,2017-03-11 14:43:29.457788,351,62,449, +67,2017-03-11 14:43:29.457788,617,45,273, +32,2017-03-11 14:43:29.457788,548,223,16, +42,2017-03-11 14:43:29.457788,137,624,333, +52,2017-03-11 14:43:29.457788,915,113,752, +74,2017-03-11 14:43:29.457788,749,325,556, +65,2017-03-11 14:43:29.457788,60,109,754, +27,2017-03-11 14:43:29.457788,243,974,353, +59,2017-03-11 14:43:29.457788,35,802,269, +65,2017-03-11 14:43:29.457788,847,542,970, +40,2017-03-11 14:43:29.457788,765,986,814, +90,2017-03-11 14:43:29.457788,610,147,426, +52,2017-03-11 14:43:29.457788,260,177,268, +1,2017-03-11 14:43:29.457788,502,824,656, +56,2017-03-11 14:43:29.457788,933,410,831, +18,2017-03-11 14:43:29.457788,384,184,770, +42,2017-03-11 14:43:29.457788,986,39,71, +83,2017-03-11 14:43:29.457788,580,42,228, +34,2017-03-11 14:43:29.457788,28,42,246, +64,2017-03-11 14:43:29.457788,189,672,163, +45,2017-03-11 14:43:29.457788,849,430,459, +35,2017-03-11 14:43:29.457788,254,115,914, +19,2017-03-11 14:43:29.457788,525,745,364, +91,2017-03-11 14:43:29.457788,928,133,328, +91,2017-03-11 14:43:29.457788,172,399,747, +75,2017-03-11 14:43:29.457788,441,975,97, +47,2017-03-11 14:43:29.457788,18,344,106, +21,2017-03-11 14:43:29.457788,16,269,657, +86,2017-03-11 14:43:29.457788,699,116,216, +95,2017-03-11 14:43:29.457788,231,130,141, +76,2017-03-11 14:43:29.457788,874,504,666, +80,2017-03-11 14:43:29.457788,638,993,717, +81,2017-03-11 14:43:29.457788,392,464,562, +83,2017-03-11 14:43:29.457788,439,659,301, +46,2017-03-11 14:43:29.457788,2,407,664, +2,2017-03-11 14:43:29.457788,676,321,883, +38,2017-03-11 14:43:29.457788,437,99,328, +67,2017-03-11 14:43:29.457788,228,469,425, +10,2017-03-11 14:43:29.457788,973,91,905, +61,2017-03-11 14:43:29.457788,84,621,420, +48,2017-03-11 14:43:29.457788,85,982,309, +52,2017-03-11 14:43:29.457788,641,611,981, +64,2017-03-11 14:43:29.457788,18,645,661, +69,2017-03-11 14:43:29.457788,965,544,69, +40,2017-03-11 14:43:29.457788,643,397,70, +87,2017-03-11 14:43:29.457788,866,495,973, +84,2017-03-11 14:43:29.457788,586,878,449, +67,2017-03-11 14:43:29.457788,500,869,146, +58,2017-03-11 14:43:29.457788,851,455,109, +49,2017-03-11 14:43:29.457788,66,90,135, +8,2017-03-11 14:43:29.457788,734,796,778, +70,2017-03-11 14:43:29.457788,340,848,102, +98,2017-03-11 14:43:29.457788,245,172,854, +11,2017-03-11 14:43:29.457788,668,827,949, +25,2017-03-11 14:43:29.457788,705,398,923, +20,2017-03-11 14:43:29.457788,267,69,790, +12,2017-03-11 14:43:29.457788,524,899,609, +59,2017-03-11 14:43:29.457788,988,744,674, +72,2017-03-11 14:43:29.457788,539,453,422, +88,2017-03-11 14:43:29.457788,300,524,862, +55,2017-03-11 14:43:29.457788,696,715,656, +36,2017-03-11 14:43:29.457788,542,606,617, +25,2017-03-11 14:43:29.457788,4,540,452, +27,2017-03-11 14:43:29.457788,610,242,388, +13,2017-03-11 14:43:29.457788,141,997,724, +13,2017-03-11 14:43:29.457788,741,399,852, +28,2017-03-11 14:43:29.457788,851,274,159, +15,2017-03-11 14:43:29.457788,798,21,697, +49,2017-03-11 14:43:29.457788,737,353,857, +28,2017-03-11 14:43:29.457788,959,474,527, +96,2017-03-11 14:43:29.457788,15,979,233, +62,2017-03-11 14:43:29.457788,221,622,759, +36,2017-03-11 14:43:29.457788,619,483,491, +36,2017-03-11 14:43:29.457788,882,342,640, +73,2017-03-11 14:43:29.457788,616,800,885, +41,2017-03-11 14:43:29.457788,821,582,907, +56,2017-03-11 14:43:29.457788,935,765,837, +89,2017-03-11 14:43:29.457788,239,363,857, +25,2017-03-11 14:43:29.457788,342,90,878, +56,2017-03-11 14:43:29.457788,712,637,925, +33,2017-03-11 14:43:29.457788,120,416,691, +0,2017-03-11 14:43:29.457788,758,331,735, +37,2017-03-11 14:43:29.457788,130,620,788, +95,2017-03-11 14:43:29.457788,202,695,509, +14,2017-03-11 14:43:29.457788,460,345,31, +70,2017-03-11 14:43:29.457788,708,888,953, +5,2017-03-11 14:43:29.457788,978,832,614, +69,2017-03-11 14:43:29.457788,469,539,21, +59,2017-03-11 14:43:29.457788,955,712,590, +71,2017-03-11 14:43:29.457788,43,325,87, +17,2017-03-11 14:43:29.457788,945,875,124, +15,2017-03-11 14:43:29.457788,570,633,284, +3,2017-03-11 14:43:29.457788,978,315,728, +69,2017-03-11 14:43:29.457788,203,682,737, +18,2017-03-11 14:43:29.457788,513,352,872, +98,2017-03-11 14:43:29.457788,891,893,570, +85,2017-03-11 14:43:29.457788,605,161,559, +65,2017-03-11 14:43:29.457788,486,646,822, +43,2017-03-11 14:43:29.457788,521,946,577, +9,2017-03-11 14:43:29.457788,579,861,120, +56,2017-03-11 14:43:29.457788,176,848,244, +38,2017-03-11 14:43:29.457788,530,981,561, +4,2017-03-11 14:43:29.457788,332,433,25, +22,2017-03-11 14:43:29.457788,327,595,69, +93,2017-03-11 14:43:29.457788,756,629,581, +24,2017-03-11 14:43:29.457788,275,402,672, +80,2017-03-11 14:43:29.457788,348,249,887, +93,2017-03-11 14:43:29.457788,110,6,484, +29,2017-03-11 14:43:29.457788,855,728,666, +38,2017-03-11 14:43:29.457788,709,228,427, +4,2017-03-11 14:43:29.457788,661,452,264, +99,2017-03-11 14:43:29.457788,47,333,920, +80,2017-03-11 14:43:29.457788,962,501,45, +24,2017-03-11 14:43:29.457788,903,717,34, +25,2017-03-11 14:43:29.457788,966,920,179, +8,2017-03-11 14:43:29.457788,927,663,363, +78,2017-03-11 14:43:29.457788,391,29,166, +10,2017-03-11 14:43:29.457788,257,593,140, +92,2017-03-11 14:43:29.457788,46,404,906, +9,2017-03-11 14:43:29.457788,738,826,896, +70,2017-03-11 14:43:29.457788,327,941,938, +23,2017-03-11 14:43:29.457788,657,971,482, +62,2017-03-11 14:43:29.457788,892,661,699, +82,2017-03-11 14:43:29.457788,324,62,600, +71,2017-03-11 14:43:29.457788,91,766,814, +35,2017-03-11 14:43:29.457788,360,954,266, +41,2017-03-11 14:43:29.457788,358,172,498, +10,2017-03-11 14:43:29.457788,998,394,796, +33,2017-03-11 14:43:29.457788,335,733,555, +99,2017-03-11 14:43:29.457788,705,37,615, +60,2017-03-11 14:43:29.457788,698,314,415, +2,2017-03-11 14:43:29.457788,376,15,736, +47,2017-03-11 14:43:29.457788,781,550,816, +14,2017-03-11 14:43:29.457788,504,82,546, +86,2017-03-11 14:43:29.457788,254,44,958, +25,2017-03-11 14:43:29.457788,438,754,578, +77,2017-03-11 14:43:29.457788,488,133,765, +19,2017-03-11 14:43:29.457788,170,380,789, +87,2017-03-11 14:43:29.457788,694,203,890, +7,2017-03-11 14:43:29.457788,218,626,538, +100,2017-03-11 14:43:29.457788,176,354,140, +68,2017-03-11 14:43:29.457788,437,685,543, +69,2017-03-11 14:43:29.457788,730,501,943, +17,2017-03-11 14:43:29.457788,255,521,941, +74,2017-03-11 14:43:29.457788,654,706,935, +82,2017-03-11 14:43:29.457788,85,724,692, +78,2017-03-11 14:43:29.457788,927,583,850, +14,2017-03-11 14:43:29.457788,209,388,144, +39,2017-03-11 14:43:29.457788,742,284,65, +18,2017-03-11 14:43:29.457788,969,608,870, +70,2017-03-11 14:43:29.457788,109,813,866, +36,2017-03-11 14:43:29.457788,334,807,107, +99,2017-03-11 14:43:29.457788,513,42,811, +60,2017-03-11 14:43:29.457788,765,504,378, +69,2017-03-11 14:43:29.457788,86,227,837, +30,2017-03-11 14:43:29.457788,616,981,680, +36,2017-03-11 14:43:29.457788,264,746,537, +23,2017-03-11 14:43:29.457788,354,406,932, +46,2017-03-11 14:43:29.457788,219,798,826, +55,2017-03-11 14:43:29.457788,605,933,540, +12,2017-03-11 14:43:29.457788,975,351,716, +74,2017-03-11 14:43:29.457788,855,93,431, +94,2017-03-11 14:43:29.457788,321,268,237, +94,2017-03-11 14:43:29.457788,249,917,294, +51,2017-03-11 14:43:29.457788,662,831,746, +2,2017-03-11 14:43:29.457788,238,678,479, +46,2017-03-11 14:43:29.457788,476,305,10, +8,2017-03-11 14:43:29.457788,238,550,198, +21,2017-03-11 14:43:29.457788,901,914,952, +76,2017-03-11 14:43:29.457788,7,384,698, +33,2017-03-11 14:43:29.457788,652,935,265, +90,2017-03-11 14:43:29.457788,851,559,414, +51,2017-03-11 14:43:29.457788,390,160,530, +63,2017-03-11 14:43:29.457788,838,9,84, +31,2017-03-11 14:43:29.457788,314,94,394, +55,2017-03-11 14:43:29.457788,644,592,765, +55,2017-03-11 14:43:29.457788,506,717,302, +51,2017-03-11 14:43:29.457788,101,1000,841, +75,2017-03-11 14:43:29.457788,934,106,653, +79,2017-03-11 14:43:29.457788,665,67,300, +6,2017-03-11 14:43:29.457788,226,830,683, +6,2017-03-11 14:43:29.457788,838,767,377, +15,2017-03-11 14:43:29.457788,861,771,704, +50,2017-03-11 14:43:29.457788,363,469,50, +87,2017-03-11 14:43:29.457788,186,352,382, +29,2017-03-11 14:43:29.457788,351,223,39, +29,2017-03-11 14:43:29.457788,329,692,71, +99,2017-03-11 14:43:29.457788,758,370,49, +98,2017-03-11 14:43:29.457788,200,732,49, +4,2017-03-11 14:43:29.457788,499,426,191, +36,2017-03-11 14:43:29.457788,197,895,864, +56,2017-03-11 14:43:29.457788,364,914,428, +55,2017-03-11 14:43:29.457788,266,810,836, +62,2017-03-11 14:43:29.457788,33,875,902, +36,2017-03-11 14:43:29.457788,567,973,356, +33,2017-03-11 14:43:29.457788,344,405,310, +54,2017-03-11 14:43:29.457788,137,359,582, +64,2017-03-11 14:43:29.457788,785,773,995, +98,2017-03-11 14:43:29.457788,667,860,541, +3,2017-03-11 14:43:29.457788,774,969,581, +4,2017-03-11 14:43:29.457788,780,417,657, +81,2017-03-11 14:43:29.457788,292,559,175, +86,2017-03-11 14:43:29.457788,533,531,183, +88,2017-03-11 14:43:29.457788,937,493,420, +7,2017-03-11 14:43:29.457788,852,2,709, +64,2017-03-11 14:43:29.457788,774,705,618, +44,2017-03-11 14:43:29.457788,564,159,473, +34,2017-03-11 14:43:29.457788,129,54,379, +91,2017-03-11 14:43:29.457788,471,36,721, +76,2017-03-11 14:43:29.457788,595,896,621, +13,2017-03-11 14:43:29.457788,427,805,4, +36,2017-03-11 14:43:29.457788,298,424,437, +15,2017-03-11 14:43:29.457788,426,146,786, +20,2017-03-11 14:43:29.457788,851,404,641, +42,2017-03-11 14:43:29.457788,563,114,754, +69,2017-03-11 14:43:29.457788,168,133,600, +64,2017-03-11 14:43:29.457788,169,321,401, +76,2017-03-11 14:43:29.457788,216,22,892, +64,2017-03-11 14:43:29.457788,827,897,7, +12,2017-03-11 14:43:29.457788,320,444,274, +75,2017-03-11 14:43:29.457788,590,61,946, +44,2017-03-11 14:43:29.457788,465,587,857, +3,2017-03-11 14:43:29.457788,701,611,719, +87,2017-03-11 14:43:29.457788,744,319,508, +91,2017-03-11 14:43:29.457788,640,909,677, +86,2017-03-11 14:43:29.457788,931,569,499, +76,2017-03-11 14:43:29.457788,466,506,883, +79,2017-03-11 14:43:29.457788,949,157,532, +54,2017-03-11 14:43:29.457788,218,478,981, +68,2017-03-11 14:43:29.457788,65,837,710, +77,2017-03-11 14:43:29.457788,448,430,635, +19,2017-03-11 14:43:29.457788,749,143,104, +39,2017-03-11 14:43:29.457788,52,781,245, +98,2017-03-11 14:43:29.457788,350,744,742, +82,2017-03-11 14:43:29.457788,250,625,601, +20,2017-03-11 14:43:29.457788,783,133,739, +0,2017-03-11 14:43:29.457788,611,720,683, +68,2017-03-11 14:43:29.457788,557,393,442, +1,2017-03-11 14:43:29.457788,823,77,197, +57,2017-03-11 14:43:29.457788,221,301,961, +27,2017-03-11 14:43:29.457788,82,207,257, +43,2017-03-11 14:43:29.457788,951,999,247, +20,2017-03-11 14:43:29.457788,625,848,401, +41,2017-03-11 14:43:29.457788,982,140,408, +59,2017-03-11 14:43:29.457788,860,91,269, +42,2017-03-11 14:43:29.457788,485,711,423, +31,2017-03-11 14:43:29.457788,788,621,880, +1,2017-03-11 14:43:29.457788,922,842,282, +0,2017-03-11 14:43:29.457788,48,539,436, +100,2017-03-11 14:43:29.457788,538,683,200, +16,2017-03-11 14:43:29.457788,531,601,571, +51,2017-03-11 14:43:29.457788,741,979,106, +60,2017-03-11 14:43:29.457788,70,374,19, +56,2017-03-11 14:43:29.457788,85,442,863, +87,2017-03-11 14:43:29.457788,62,744,881, +98,2017-03-11 14:43:29.457788,585,163,988, +63,2017-03-11 14:43:29.457788,702,424,633, +24,2017-03-11 14:43:29.457788,107,833,404, +64,2017-03-11 14:43:29.457788,434,974,151, +18,2017-03-11 14:43:29.457788,953,257,777, +2,2017-03-11 14:43:29.457788,631,796,579, +72,2017-03-11 14:43:29.457788,238,442,588, +30,2017-03-11 14:43:29.457788,185,469,284, +77,2017-03-11 14:43:29.457788,632,273,404, +33,2017-03-11 14:43:29.457788,697,37,575, +80,2017-03-11 14:43:29.457788,871,978,443, +30,2017-03-11 14:43:29.457788,953,594,481, +91,2017-03-11 14:43:29.457788,851,257,930, +48,2017-03-11 14:43:29.457788,53,508,198, +29,2017-03-11 14:43:29.457788,950,786,591, +14,2017-03-11 14:43:29.457788,255,875,906, +89,2017-03-11 14:43:29.457788,148,310,222, +84,2017-03-11 14:43:29.457788,348,796,649, +22,2017-03-11 14:43:29.457788,774,92,523, +73,2017-03-11 14:43:29.457788,686,4,633, +54,2017-03-11 14:43:29.457788,261,563,19, +31,2017-03-11 14:43:29.457788,71,216,605, +2,2017-03-11 14:43:29.457788,2,196,157, +26,2017-03-11 14:43:29.457788,71,63,145, +22,2017-03-11 14:43:29.457788,374,366,63, +72,2017-03-11 14:43:29.457788,163,712,940, +94,2017-03-11 14:43:29.457788,804,463,664, +49,2017-03-11 14:43:29.457788,467,297,26, +73,2017-03-11 14:43:29.457788,860,45,42, +93,2017-03-11 14:43:29.457788,261,647,953, +26,2017-03-11 14:43:29.457788,843,109,521, +91,2017-03-11 14:43:29.457788,172,666,132, +55,2017-03-11 14:43:29.457788,32,196,267, +19,2017-03-11 14:43:29.457788,908,207,132, +71,2017-03-11 14:43:29.457788,670,796,202, +14,2017-03-11 14:43:29.457788,93,228,864, +95,2017-03-11 14:43:29.457788,273,907,884, +53,2017-03-11 14:43:29.457788,554,837,797, +40,2017-03-11 14:43:29.457788,946,318,311, +12,2017-03-11 14:43:29.457788,984,443,665, +2,2017-03-11 14:43:29.457788,639,932,211, +55,2017-03-11 14:43:29.457788,139,342,259, +81,2017-03-11 14:43:29.457788,138,461,945, +23,2017-03-11 14:43:29.457788,689,809,185, +96,2017-03-11 14:43:29.457788,716,69,495, +27,2017-03-11 14:43:29.457788,906,293,667, +85,2017-03-11 14:43:29.457788,611,978,972, +59,2017-03-11 14:43:29.457788,422,636,610, +6,2017-03-11 14:43:29.457788,568,821,608, +71,2017-03-11 14:43:29.457788,164,867,516, +30,2017-03-11 14:43:29.457788,327,460,534, +2,2017-03-11 14:43:29.457788,269,718,977, +99,2017-03-11 14:43:29.457788,788,473,255, +69,2017-03-11 14:43:29.457788,765,923,547, +38,2017-03-11 14:43:29.457788,901,518,971, +32,2017-03-11 14:43:29.457788,155,581,384, +72,2017-03-11 14:43:29.457788,402,991,430, +57,2017-03-11 14:43:29.457788,858,946,867, +19,2017-03-11 14:43:29.457788,406,401,202, +68,2017-03-11 14:43:29.457788,119,179,661, +91,2017-03-11 14:43:29.457788,652,917,601, +42,2017-03-11 14:43:29.457788,840,148,793, +74,2017-03-11 14:43:29.457788,666,763,64, +82,2017-03-11 14:43:29.457788,344,448,544, +75,2017-03-11 14:43:29.457788,439,975,312, +30,2017-03-11 14:43:29.457788,921,179,483, +33,2017-03-11 14:43:29.457788,580,685,3, +70,2017-03-11 14:43:29.457788,864,664,607, +52,2017-03-11 14:43:29.457788,581,208,932, +42,2017-03-11 14:43:29.457788,356,725,162, +2,2017-03-11 14:43:29.457788,488,226,843, +83,2017-03-11 14:43:29.457788,674,388,579, +11,2017-03-11 14:43:29.457788,362,890,411, +28,2017-03-11 14:43:29.457788,70,894,611, +65,2017-03-11 14:43:29.457788,578,614,350, +44,2017-03-11 14:43:29.457788,278,956,957, +86,2017-03-11 14:43:29.457788,165,889,280, +52,2017-03-11 14:43:29.457788,613,442,543, +10,2017-03-11 14:43:29.457788,668,386,934, +34,2017-03-11 14:43:29.457788,774,512,454, +14,2017-03-11 14:43:29.457788,402,865,419, +47,2017-03-11 14:43:29.457788,759,30,122, +34,2017-03-11 14:43:29.457788,644,471,779, +92,2017-03-11 14:43:29.457788,428,736,781, +59,2017-03-11 14:43:29.457788,624,62,113, +24,2017-03-11 14:43:29.457788,504,656,339, +17,2017-03-11 14:43:29.457788,42,273,513, +82,2017-03-11 14:43:29.457788,785,967,951, +19,2017-03-11 14:43:29.457788,832,370,659, +59,2017-03-11 14:43:29.457788,400,780,927, +4,2017-03-11 14:43:29.457788,252,706,965, +68,2017-03-11 14:43:29.457788,442,747,272, +7,2017-03-11 14:43:29.457788,808,384,304, +31,2017-03-11 14:43:29.457788,40,643,483, +8,2017-03-11 14:43:29.457788,916,995,897, +70,2017-03-11 14:43:29.457788,962,848,888, +79,2017-03-11 14:43:29.457788,218,546,385, +62,2017-03-11 14:43:29.457788,327,312,661, +58,2017-03-11 14:43:29.457788,18,626,258, +46,2017-03-11 14:43:29.457788,373,529,527, +18,2017-03-11 14:43:29.457788,913,832,493, +95,2017-03-11 14:43:29.457788,475,976,35, +39,2017-03-11 14:43:29.457788,971,931,92, +93,2017-03-11 14:43:29.457788,779,979,728, +100,2017-03-11 14:43:29.457788,526,112,615, +85,2017-03-11 14:43:29.457788,424,276,431, +44,2017-03-11 14:43:29.457788,902,688,903, +28,2017-03-11 14:43:29.457788,218,430,457, +13,2017-03-11 14:43:29.457788,262,949,84, +74,2017-03-11 14:43:29.457788,925,119,128, +90,2017-03-11 14:43:29.457788,50,220,830, +83,2017-03-11 14:43:29.457788,199,558,826, +72,2017-03-11 14:43:29.457788,670,441,577, +9,2017-03-11 14:43:29.457788,717,8,537, +62,2017-03-11 14:43:29.457788,696,440,895, +91,2017-03-11 14:43:29.457788,871,351,45, +13,2017-03-11 14:43:29.457788,301,129,869, +23,2017-03-11 14:43:29.457788,248,997,123, +30,2017-03-11 14:43:29.457788,216,953,127, +42,2017-03-11 14:43:29.457788,511,954,140, +18,2017-03-11 14:43:29.457788,395,717,276, +11,2017-03-11 14:43:29.457788,725,813,731, +42,2017-03-11 14:43:29.457788,253,626,335, +12,2017-03-11 14:43:29.457788,977,380,256, +28,2017-03-11 14:43:29.457788,509,125,504, +76,2017-03-11 14:43:29.457788,122,626,55, +34,2017-03-11 14:43:29.457788,579,182,753, +9,2017-03-11 14:43:29.457788,136,894,271, +53,2017-03-11 14:43:29.457788,611,547,642, +34,2017-03-11 14:43:29.457788,360,374,757, +61,2017-03-11 14:43:29.457788,999,92,737, +98,2017-03-11 14:43:29.457788,472,993,254, +98,2017-03-11 14:43:29.457788,118,758,737, +24,2017-03-11 14:43:29.457788,384,792,578, +96,2017-03-11 14:43:29.457788,974,332,54, +11,2017-03-11 14:43:29.457788,225,325,640, +84,2017-03-11 14:43:29.457788,872,283,171, +23,2017-03-11 14:43:29.457788,656,928,846, +66,2017-03-11 14:43:29.457788,20,583,632, +49,2017-03-11 14:43:29.457788,577,886,473, +69,2017-03-11 14:43:29.457788,644,210,935, +3,2017-03-11 14:43:29.457788,2,513,992, +98,2017-03-11 14:43:29.457788,845,45,86, +7,2017-03-11 14:43:29.457788,371,726,906, +24,2017-03-11 14:43:29.457788,9,77,475, +67,2017-03-11 14:43:29.457788,6,321,322, +3,2017-03-11 14:43:29.457788,905,954,518, +48,2017-03-11 14:43:29.457788,840,991,176, +48,2017-03-11 14:43:29.457788,201,111,512, +20,2017-03-11 14:43:29.457788,624,504,179, +47,2017-03-11 14:43:29.457788,550,265,539, +92,2017-03-11 14:43:29.457788,992,445,163, +0,2017-03-11 14:43:29.457788,522,639,666, +53,2017-03-11 14:43:29.457788,960,988,554, +86,2017-03-11 14:43:29.457788,942,72,346, +78,2017-03-11 14:43:29.457788,64,522,266, +26,2017-03-11 14:43:29.457788,634,779,468, +26,2017-03-11 14:43:29.457788,283,648,727, +83,2017-03-11 14:43:29.457788,913,266,753, +90,2017-03-11 14:43:29.457788,711,916,905, +23,2017-03-11 14:43:29.457788,555,571,761, +51,2017-03-11 14:43:29.457788,560,315,380, +50,2017-03-11 14:43:29.457788,388,726,283, +45,2017-03-11 14:43:29.457788,248,549,716, +88,2017-03-11 14:43:29.457788,328,184,140, +61,2017-03-11 14:43:29.457788,832,866,444, +74,2017-03-11 14:43:29.457788,132,196,649, +84,2017-03-11 14:43:29.457788,112,554,76, +67,2017-03-11 14:43:29.457788,125,837,182, +68,2017-03-11 14:43:29.457788,152,561,186, +54,2017-03-11 14:43:29.457788,287,470,991, +54,2017-03-11 14:43:29.457788,19,707,418, +35,2017-03-11 14:43:29.457788,891,557,958, +72,2017-03-11 14:43:29.457788,423,402,468, +56,2017-03-11 14:43:29.457788,598,117,398, +71,2017-03-11 14:43:29.457788,671,474,377, +80,2017-03-11 14:43:29.457788,311,559,481, +46,2017-03-11 14:43:29.457788,121,668,2, +41,2017-03-11 14:43:29.457788,137,993,944, +16,2017-03-11 14:43:29.457788,700,361,503, +59,2017-03-11 14:43:29.457788,918,462,314, +34,2017-03-11 14:43:29.457788,863,782,897, +46,2017-03-11 14:43:29.457788,899,296,172, +57,2017-03-11 14:43:29.457788,770,549,366, +8,2017-03-11 14:43:29.457788,109,847,544, +23,2017-03-11 14:43:29.457788,515,547,637, +65,2017-03-11 14:43:29.457788,540,581,809, +24,2017-03-11 14:43:29.457788,942,312,831, +86,2017-03-11 14:43:29.457788,774,145,203, +64,2017-03-11 14:43:29.457788,927,100,99, +83,2017-03-11 14:43:29.457788,396,270,396, +17,2017-03-11 14:43:29.457788,820,762,247, +93,2017-03-11 14:43:29.457788,610,791,158, +12,2017-03-11 14:43:29.457788,338,795,777, +88,2017-03-11 14:43:29.457788,376,586,117, +32,2017-03-11 14:43:29.457788,898,948,180, +67,2017-03-11 14:43:29.457788,93,382,308, +2,2017-03-11 14:43:29.457788,483,407,847, +88,2017-03-11 14:43:29.457788,677,244,45, +50,2017-03-11 14:43:29.457788,6,292,425, +62,2017-03-11 14:43:29.457788,83,583,741, +42,2017-03-11 14:43:29.457788,378,518,299, +75,2017-03-11 14:43:29.457788,103,416,73, +0,2017-03-11 14:43:29.457788,364,252,672, +46,2017-03-11 14:43:29.457788,635,981,479, +12,2017-03-11 14:43:29.457788,387,326,996, +6,2017-03-11 14:43:29.457788,569,41,562, +58,2017-03-11 14:43:29.457788,333,987,191, +42,2017-03-11 14:43:29.457788,570,932,838, +95,2017-03-11 14:43:29.457788,450,137,702, +55,2017-03-11 14:43:29.457788,553,775,554, +92,2017-03-11 14:43:29.457788,27,226,375, +66,2017-03-11 14:43:29.457788,207,854,779, +59,2017-03-11 14:43:29.457788,180,776,659, +75,2017-03-11 14:43:29.457788,817,220,325, +15,2017-03-11 14:43:29.457788,208,516,567, +78,2017-03-11 14:43:29.457788,448,405,726, +90,2017-03-11 14:43:29.457788,542,429,451, +10,2017-03-11 14:43:29.457788,204,5,13, +23,2017-03-11 14:43:29.457788,231,388,893, +44,2017-03-11 14:43:29.457788,242,672,32, +42,2017-03-11 14:43:29.457788,448,690,171, +26,2017-03-11 14:43:29.457788,911,495,414, +12,2017-03-11 14:43:29.457788,11,981,896, +46,2017-03-11 14:43:29.457788,386,623,356, +93,2017-03-11 14:43:29.457788,51,807,23, +25,2017-03-11 14:43:29.457788,812,36,486, +4,2017-03-11 14:43:29.457788,424,378,480, +67,2017-03-11 14:43:29.457788,51,511,88, +50,2017-03-11 14:43:29.457788,202,258,763, +11,2017-03-11 14:43:29.457788,754,177,231, +76,2017-03-11 14:43:29.457788,159,127,223, +54,2017-03-11 14:43:29.457788,750,580,473, +80,2017-03-11 14:43:29.457788,387,496,56, +20,2017-03-11 14:43:29.457788,532,542,241, +96,2017-03-11 14:43:29.457788,920,720,623, +97,2017-03-11 14:43:29.457788,232,710,469, +43,2017-03-11 14:43:29.457788,969,232,546, +72,2017-03-11 14:43:29.457788,410,777,487, +57,2017-03-11 14:43:29.457788,905,710,113, +65,2017-03-11 14:43:29.457788,290,586,456, +68,2017-03-11 14:43:29.457788,83,512,875, +61,2017-03-11 14:43:29.457788,53,116,571, +97,2017-03-11 14:43:29.457788,836,194,944, +7,2017-03-11 14:43:29.457788,904,414,501, +87,2017-03-11 14:43:29.457788,646,47,595, +6,2017-03-11 14:43:29.457788,825,82,624, +73,2017-03-11 14:43:29.457788,793,737,384, +8,2017-03-11 14:43:29.457788,324,840,760, +41,2017-03-11 14:43:29.457788,352,635,21, +41,2017-03-11 14:43:29.457788,751,593,379, +59,2017-03-11 14:43:29.457788,786,323,655, +69,2017-03-11 14:43:29.457788,736,156,563, +38,2017-03-11 14:43:29.457788,203,159,438, +3,2017-03-11 14:43:29.457788,241,62,757, +3,2017-03-11 14:43:29.457788,799,141,117, +12,2017-03-11 14:43:29.457788,981,877,530, +33,2017-03-11 14:43:29.457788,512,551,738, +26,2017-03-11 14:43:29.457788,143,117,849, +93,2017-03-11 14:43:29.457788,440,504,620, +18,2017-03-11 14:43:29.457788,660,183,558, +86,2017-03-11 14:43:29.457788,342,996,892, +58,2017-03-11 14:43:29.457788,57,649,616, +86,2017-03-11 14:43:29.457788,790,733,980, +77,2017-03-11 14:43:29.457788,610,509,105, +12,2017-03-11 14:43:29.457788,60,843,384, +20,2017-03-11 14:43:29.457788,960,233,133, +40,2017-03-11 14:43:29.457788,737,753,575, +40,2017-03-11 14:43:29.457788,937,133,261, +28,2017-03-11 14:43:29.457788,129,153,861, +19,2017-03-11 14:43:29.457788,802,477,43, +59,2017-03-11 14:43:29.457788,210,23,364, +82,2017-03-11 14:43:29.457788,532,468,941, +59,2017-03-11 14:43:29.457788,311,325,796, +27,2017-03-11 14:43:29.457788,558,929,670, +30,2017-03-11 14:43:29.457788,683,245,693, +62,2017-03-11 14:43:29.457788,379,954,897, +51,2017-03-11 14:43:29.457788,106,758,694, +91,2017-03-11 14:43:29.457788,236,737,500, +45,2017-03-11 14:43:29.457788,760,864,265, +29,2017-03-11 14:43:29.457788,332,207,885, +64,2017-03-11 14:43:29.457788,532,681,915, +9,2017-03-11 14:43:29.457788,611,585,386, +29,2017-03-11 14:43:29.457788,830,79,912, +21,2017-03-11 14:43:29.457788,33,810,716, +14,2017-03-11 14:43:29.457788,568,410,47, +80,2017-03-11 14:43:29.457788,147,548,249, +91,2017-03-11 14:43:29.457788,411,515,200, +74,2017-03-11 14:43:29.457788,721,85,387, +25,2017-03-11 14:43:29.457788,766,301,343, +38,2017-03-11 14:43:29.457788,886,729,670, +72,2017-03-11 14:43:29.457788,808,583,926, +84,2017-03-11 14:43:29.457788,392,642,980, +96,2017-03-11 14:43:29.457788,52,28,764, +20,2017-03-11 14:43:29.457788,575,13,107, +99,2017-03-11 14:43:29.457788,528,307,730, +25,2017-03-11 14:43:29.457788,392,117,502, +16,2017-03-11 14:43:29.457788,418,845,535, +30,2017-03-11 14:43:29.457788,573,206,21, +38,2017-03-11 14:43:29.457788,789,947,222, +18,2017-03-11 14:43:29.457788,588,202,141, +64,2017-03-11 14:43:29.457788,229,906,840, +80,2017-03-11 14:43:29.457788,919,947,790, +45,2017-03-11 14:43:29.457788,254,520,696, +65,2017-03-11 14:43:29.457788,637,198,805, +5,2017-03-11 14:43:29.457788,42,340,359, +62,2017-03-11 14:43:29.457788,546,380,996, +33,2017-03-11 14:43:29.457788,327,218,515, +92,2017-03-11 14:43:29.457788,420,657,556, +65,2017-03-11 14:43:29.457788,562,396,453, +48,2017-03-11 14:43:29.457788,343,243,928, +60,2017-03-11 14:43:29.457788,763,624,244, +40,2017-03-11 14:43:29.457788,821,48,455, +86,2017-03-11 14:43:29.457788,388,814,479, +93,2017-03-11 14:43:29.457788,194,476,268, +52,2017-03-11 14:43:29.457788,694,784,436, +11,2017-03-11 14:43:29.457788,441,992,762, +0,2017-03-11 14:43:29.457788,388,215,484, +73,2017-03-11 14:43:29.457788,458,412,329, +22,2017-03-11 14:43:29.457788,36,573,621, +86,2017-03-11 14:43:29.457788,621,76,721, +1,2017-03-11 14:43:29.457788,890,200,944, +8,2017-03-11 14:43:29.457788,676,212,605, +37,2017-03-11 14:43:29.457788,996,41,483, +44,2017-03-11 14:43:29.457788,33,244,439, +42,2017-03-11 14:43:29.457788,459,924,152, +92,2017-03-11 14:43:29.457788,336,481,138, +37,2017-03-11 14:43:29.457788,54,759,229, +68,2017-03-11 14:43:29.457788,834,950,685, +72,2017-03-11 14:43:29.457788,150,628,808, +83,2017-03-11 14:43:29.457788,840,412,196, +84,2017-03-11 14:43:29.457788,453,678,273, +49,2017-03-11 14:43:29.457788,922,712,906, +38,2017-03-11 14:43:29.457788,635,58,298, +97,2017-03-11 14:43:29.457788,539,436,343, +59,2017-03-11 14:43:29.457788,194,572,269, +3,2017-03-11 14:43:29.457788,523,954,752, +67,2017-03-11 14:43:29.457788,583,560,499, +42,2017-03-11 14:43:29.457788,972,695,259, +42,2017-03-11 14:43:29.457788,373,532,910, +30,2017-03-11 14:43:29.457788,244,816,677, +88,2017-03-11 14:43:29.457788,874,975,850, +41,2017-03-11 14:43:29.457788,411,193,7, +60,2017-03-11 14:43:29.457788,766,276,633, +29,2017-03-11 14:43:29.457788,230,385,961, +81,2017-03-11 14:43:29.457788,945,461,235, +92,2017-03-11 14:43:29.457788,156,494,342, +53,2017-03-11 14:43:29.457788,26,252,824, +27,2017-03-11 14:43:29.457788,67,501,149, +94,2017-03-11 14:43:29.457788,476,999,354, +89,2017-03-11 14:43:29.457788,192,361,492, +96,2017-03-11 14:43:29.457788,636,125,246, +87,2017-03-11 14:43:29.457788,511,207,678, +46,2017-03-11 14:43:29.457788,668,914,373, +82,2017-03-11 14:43:29.457788,408,715,352, +43,2017-03-11 14:43:29.457788,966,176,704, +3,2017-03-11 14:43:29.457788,678,853,975, +15,2017-03-11 14:43:29.457788,852,329,41, +4,2017-03-11 14:43:29.457788,689,533,2, +33,2017-03-11 14:43:29.457788,658,248,192, +17,2017-03-11 14:43:29.457788,455,870,624, +12,2017-03-11 14:43:29.457788,784,997,946, +19,2017-03-11 14:43:29.457788,712,298,626, +68,2017-03-11 14:43:29.457788,475,330,711, +15,2017-03-11 14:43:29.457788,183,686,307, +3,2017-03-11 14:43:29.457788,14,348,78, +70,2017-03-11 14:43:29.457788,881,80,29, +54,2017-03-11 14:43:29.457788,328,221,707, +78,2017-03-11 14:43:29.457788,91,331,905, +87,2017-03-11 14:43:29.457788,329,851,66, +4,2017-03-11 14:43:29.457788,150,692,718, +62,2017-03-11 14:43:29.457788,22,429,777, +21,2017-03-11 14:43:29.457788,115,84,239, +13,2017-03-11 14:43:29.457788,431,318,834, +31,2017-03-11 14:43:29.457788,398,863,851, +73,2017-03-11 14:43:29.457788,84,558,508, +17,2017-03-11 14:43:29.457788,889,413,49, +22,2017-03-11 14:43:29.457788,264,115,258, +41,2017-03-11 14:43:29.457788,807,976,38, +83,2017-03-11 14:43:29.457788,406,815,34, +52,2017-03-11 14:43:29.457788,899,274,651, +33,2017-03-11 14:43:29.457788,592,484,642, +99,2017-03-11 14:43:29.457788,347,493,715, +43,2017-03-11 14:43:29.457788,51,222,605, +94,2017-03-11 14:43:29.457788,635,654,158, +90,2017-03-11 14:43:29.457788,769,416,313, +58,2017-03-11 14:43:29.457788,392,351,406, +80,2017-03-11 14:43:29.457788,166,440,319, +6,2017-03-11 14:43:29.457788,714,970,395, +31,2017-03-11 14:43:29.457788,454,36,295, +80,2017-03-11 14:43:29.457788,529,9,232, +58,2017-03-11 14:43:29.457788,232,838,520, +87,2017-03-11 14:43:29.457788,492,678,766, +26,2017-03-11 14:43:29.457788,94,79,837, +49,2017-03-11 14:43:29.457788,431,243,284, +60,2017-03-11 14:43:29.457788,683,602,661, +40,2017-03-11 14:43:29.457788,572,56,702, +3,2017-03-11 14:43:29.457788,92,997,827, +62,2017-03-11 14:43:29.457788,6,60,201, +24,2017-03-11 14:43:29.457788,897,721,105, +39,2017-03-11 14:43:29.457788,399,871,650, +49,2017-03-11 14:43:29.457788,950,487,978, +38,2017-03-11 14:43:29.457788,730,262,978, +41,2017-03-11 14:43:29.457788,864,639,809, +44,2017-03-11 14:43:29.457788,695,511,462, +79,2017-03-11 14:43:29.457788,508,290,409, +51,2017-03-11 14:43:29.457788,349,610,752, +25,2017-03-11 14:43:29.457788,331,857,635, +73,2017-03-11 14:43:29.457788,728,285,223, +68,2017-03-11 14:43:29.457788,773,201,59, +50,2017-03-11 14:43:29.457788,463,37,916, +33,2017-03-11 14:43:29.457788,676,725,763, +37,2017-03-11 14:43:29.457788,236,226,159, +74,2017-03-11 14:43:29.457788,515,568,259, +86,2017-03-11 14:43:29.457788,178,11,111, +51,2017-03-11 14:43:29.457788,868,746,240, +60,2017-03-11 14:43:29.457788,32,462,274, +80,2017-03-11 14:43:29.457788,663,334,307, +13,2017-03-11 14:43:29.457788,371,223,453, +5,2017-03-11 14:43:29.457788,948,216,419, +18,2017-03-11 14:43:29.457788,442,578,929, +96,2017-03-11 14:43:29.457788,146,188,821, +32,2017-03-11 14:43:29.457788,199,932,834, +7,2017-03-11 14:43:29.457788,678,74,663, +71,2017-03-11 14:43:29.457788,536,937,514, +20,2017-03-11 14:43:29.457788,271,822,325, +64,2017-03-11 14:43:29.457788,45,778,689, +99,2017-03-11 14:43:29.457788,995,107,178, +44,2017-03-11 14:43:29.457788,685,107,393, +83,2017-03-11 14:43:29.457788,295,214,154, +49,2017-03-11 14:43:29.457788,146,988,560, +82,2017-03-11 14:43:29.457788,62,223,534, +60,2017-03-11 14:43:29.457788,160,49,798, +43,2017-03-11 14:43:29.457788,870,123,72, +92,2017-03-11 14:43:29.457788,902,760,908, +90,2017-03-11 14:43:29.457788,868,86,333, +55,2017-03-11 14:43:29.457788,193,726,383, +49,2017-03-11 14:43:29.457788,941,537,982, +9,2017-03-11 14:43:29.457788,525,542,912, +59,2017-03-11 14:43:29.457788,765,446,185, +92,2017-03-11 14:43:29.457788,495,983,355, +36,2017-03-11 14:43:29.457788,107,427,280, +1,2017-03-11 14:43:29.457788,187,188,905, +5,2017-03-11 14:43:29.457788,274,238,607, +47,2017-03-11 14:43:29.457788,964,990,954, +90,2017-03-11 14:43:29.457788,526,936,992, +5,2017-03-11 14:43:29.457788,478,904,639, +24,2017-03-11 14:43:29.457788,350,824,168, +84,2017-03-11 14:43:29.457788,807,523,209, +91,2017-03-11 14:43:29.457788,950,489,922, +14,2017-03-11 14:43:29.457788,677,827,192, +95,2017-03-11 14:43:29.457788,65,799,418, +3,2017-03-11 14:43:29.457788,789,372,934, +32,2017-03-11 14:43:29.457788,308,926,367, +79,2017-03-11 14:43:29.457788,829,5,29, +18,2017-03-11 14:43:29.457788,830,196,23, +64,2017-03-11 14:43:29.457788,719,233,551, +67,2017-03-11 14:43:29.457788,722,473,806, +40,2017-03-11 14:43:29.457788,300,998,350, +37,2017-03-11 14:43:29.457788,797,767,394, +59,2017-03-11 14:43:29.457788,139,328,901, +45,2017-03-11 14:43:29.457788,254,268,233, +8,2017-03-11 14:43:29.457788,273,262,262, +10,2017-03-11 14:43:29.457788,458,286,740, +18,2017-03-11 14:43:29.457788,518,291,846, +24,2017-03-11 14:43:29.457788,764,652,639, +6,2017-03-11 14:43:29.457788,650,988,429, +45,2017-03-11 14:43:29.457788,756,824,33, +89,2017-03-11 14:43:29.457788,151,933,342, +41,2017-03-11 14:43:29.457788,201,575,488, +47,2017-03-11 14:43:29.457788,837,750,577, +30,2017-03-11 14:43:29.457788,36,316,473, +55,2017-03-11 14:43:29.457788,607,319,794, +37,2017-03-11 14:43:29.457788,971,433,435, +62,2017-03-11 14:43:29.457788,421,864,68, +18,2017-03-11 14:43:29.457788,688,101,71, +84,2017-03-11 14:43:29.457788,34,414,244, +23,2017-03-11 14:43:29.457788,989,733,709, +83,2017-03-11 14:43:29.457788,483,286,121, +52,2017-03-11 14:43:29.457788,602,593,73, +21,2017-03-11 14:43:29.457788,912,867,579, +88,2017-03-11 14:43:29.457788,300,14,505, +72,2017-03-11 14:43:29.457788,878,573,897, +57,2017-03-11 14:43:29.457788,674,968,405, +71,2017-03-11 14:43:29.457788,382,649,943, +37,2017-03-11 14:43:29.457788,382,652,196, +86,2017-03-11 14:43:29.457788,937,317,384, +54,2017-03-11 14:43:29.457788,910,457,748, +82,2017-03-11 14:43:29.457788,324,327,707, +62,2017-03-11 14:43:29.457788,342,212,345, +22,2017-03-11 14:43:29.457788,785,242,786, +46,2017-03-11 14:43:29.457788,210,191,167, +59,2017-03-11 14:43:29.457788,840,109,963, +22,2017-03-11 14:43:29.457788,761,159,87, +70,2017-03-11 14:43:29.457788,476,471,238, +39,2017-03-11 14:43:29.457788,928,986,209, +25,2017-03-11 14:43:29.457788,313,916,876, +65,2017-03-11 14:43:29.457788,127,221,874, +91,2017-03-11 14:43:29.457788,463,660,370, +67,2017-03-11 14:43:29.457788,851,537,265, +69,2017-03-11 14:43:29.457788,646,228,912, +41,2017-03-11 14:43:29.457788,387,999,106, +86,2017-03-11 14:43:29.457788,470,344,249, +40,2017-03-11 14:43:29.457788,330,458,650, +64,2017-03-11 14:43:29.457788,374,527,297, +50,2017-03-11 14:43:29.457788,748,172,413, +21,2017-03-11 14:43:29.457788,832,783,883, +68,2017-03-11 14:43:29.457788,320,148,373, +97,2017-03-11 14:43:29.457788,376,285,374, +76,2017-03-11 14:43:29.457788,284,480,625, +75,2017-03-11 14:43:29.457788,824,874,152, +15,2017-03-11 14:43:29.457788,332,802,796, +71,2017-03-11 14:43:29.457788,328,94,206, +8,2017-03-11 14:43:29.457788,266,618,287, +10,2017-03-11 14:43:29.457788,401,170,779, +72,2017-03-11 14:43:29.457788,318,152,687, +69,2017-03-11 14:43:29.457788,437,61,456, +72,2017-03-11 14:43:29.457788,541,81,475, +37,2017-03-11 14:43:29.457788,955,627,519, +29,2017-03-11 14:43:29.457788,428,315,992, +76,2017-03-11 14:43:29.457788,409,198,833, +67,2017-03-11 14:43:29.457788,816,120,772, +22,2017-03-11 14:43:29.457788,290,551,939, +61,2017-03-11 14:43:29.457788,704,626,302, +14,2017-03-11 14:43:29.457788,687,758,862, +23,2017-03-11 14:43:29.457788,840,337,594, +79,2017-03-11 14:43:29.457788,964,113,82, +39,2017-03-11 14:43:29.457788,429,74,149, +84,2017-03-11 14:43:29.457788,272,982,513, +9,2017-03-11 14:43:29.457788,102,285,306, +39,2017-03-11 14:43:29.457788,836,245,999, +54,2017-03-11 14:43:29.457788,871,301,680, +56,2017-03-11 14:43:29.457788,59,542,787, +90,2017-03-11 14:43:29.457788,879,381,693, +84,2017-03-11 14:43:29.457788,494,775,235, +92,2017-03-11 14:43:29.457788,849,384,760, +12,2017-03-11 14:43:29.457788,366,273,208, +47,2017-03-11 14:43:29.457788,558,514,859, +39,2017-03-11 14:43:29.457788,759,859,933, +63,2017-03-11 14:43:29.457788,159,613,188, +22,2017-03-11 14:43:29.457788,156,975,117, +4,2017-03-11 14:43:29.457788,356,810,878, +85,2017-03-11 14:43:29.457788,585,114,773, +43,2017-03-11 14:43:29.457788,498,533,554, +86,2017-03-11 14:43:29.457788,806,762,332, +36,2017-03-11 14:43:29.457788,277,191,757, +4,2017-03-11 14:43:29.457788,50,690,665, +21,2017-03-11 14:43:29.457788,304,853,427, +46,2017-03-11 14:43:29.457788,828,544,495, +18,2017-03-11 14:43:29.457788,354,373,34, +94,2017-03-11 14:43:29.457788,487,806,373, +98,2017-03-11 14:43:29.457788,339,927,849, +15,2017-03-11 14:43:29.457788,689,180,509, +97,2017-03-11 14:43:29.457788,371,266,1, +42,2017-03-11 14:43:29.457788,957,666,630, +26,2017-03-11 14:43:29.457788,519,57,720, +35,2017-03-11 14:43:29.457788,602,215,530, +96,2017-03-11 14:43:29.457788,588,563,895, +8,2017-03-11 14:43:29.457788,369,268,60, +71,2017-03-11 14:43:29.457788,194,908,854, +88,2017-03-11 14:43:29.457788,89,363,849, +46,2017-03-11 14:43:29.457788,629,850,881, +59,2017-03-11 14:43:29.457788,516,511,846, +3,2017-03-11 14:43:29.457788,569,566,381, +17,2017-03-11 14:43:29.457788,781,911,126, +37,2017-03-11 14:43:29.457788,474,21,445, +84,2017-03-11 14:43:29.457788,289,504,552, +48,2017-03-11 14:43:29.457788,413,406,367, +50,2017-03-11 14:43:29.457788,769,216,962, +40,2017-03-11 14:43:29.457788,66,843,985, +58,2017-03-11 14:43:29.457788,354,831,617, +92,2017-03-11 14:43:29.457788,397,998,93, +18,2017-03-11 14:43:29.457788,908,219,548, +38,2017-03-11 14:43:29.457788,241,993,226, +53,2017-03-11 14:43:29.457788,497,778,13, +91,2017-03-11 14:43:29.457788,184,379,411, +95,2017-03-11 14:43:29.457788,595,373,352, +66,2017-03-11 14:43:29.457788,216,337,243, +57,2017-03-11 14:43:29.457788,168,860,492, +57,2017-03-11 14:43:29.457788,857,586,744, +77,2017-03-11 14:43:29.457788,805,292,148, +5,2017-03-11 14:43:29.457788,285,374,575, +78,2017-03-11 14:43:29.457788,151,588,692, +34,2017-03-11 14:43:29.457788,967,103,289, +56,2017-03-11 14:43:29.457788,476,641,224, +69,2017-03-11 14:43:29.457788,978,467,261, +15,2017-03-11 14:43:29.457788,327,753,713, +18,2017-03-11 14:43:29.457788,339,457,950, +14,2017-03-11 14:43:29.457788,750,98,189, +3,2017-03-11 14:43:29.457788,471,764,816, +62,2017-03-11 14:43:29.457788,352,508,958, +32,2017-03-11 14:43:29.457788,611,247,882, +9,2017-03-11 14:43:29.457788,888,106,778, +87,2017-03-11 14:43:29.457788,573,39,13, +90,2017-03-11 14:43:29.457788,792,726,83, +13,2017-03-11 14:43:29.457788,183,33,274, +93,2017-03-11 14:43:29.457788,131,463,967, +60,2017-03-11 14:43:29.457788,228,784,224, +58,2017-03-11 14:43:29.457788,292,182,900, +90,2017-03-11 14:43:29.457788,429,782,989, +32,2017-03-11 14:43:29.457788,888,767,184, +46,2017-03-11 14:43:29.457788,806,197,360, +60,2017-03-11 14:43:29.457788,923,444,728, +11,2017-03-11 14:43:29.457788,477,3,39, +61,2017-03-11 14:43:29.457788,466,6,210, +69,2017-03-11 14:43:29.457788,790,434,274, +8,2017-03-11 14:43:29.457788,616,174,984, +5,2017-03-11 14:43:29.457788,957,973,363, +85,2017-03-11 14:43:29.457788,740,546,306, +55,2017-03-11 14:43:29.457788,743,667,144, +67,2017-03-11 14:43:29.457788,111,873,773, +59,2017-03-11 14:43:29.457788,875,812,195, +34,2017-03-11 14:43:29.457788,818,404,35, +61,2017-03-11 14:43:29.457788,838,310,689, +45,2017-03-11 14:43:29.457788,484,673,500, +44,2017-03-11 14:43:29.457788,647,863,286, +39,2017-03-11 14:43:29.457788,409,593,933, +15,2017-03-11 14:43:29.457788,260,77,818, +37,2017-03-11 14:43:29.457788,950,591,958, +83,2017-03-11 14:43:29.457788,403,153,167, +22,2017-03-11 14:43:29.457788,557,202,829, +40,2017-03-11 14:43:29.457788,512,518,850, +100,2017-03-11 14:43:29.457788,192,350,437, +84,2017-03-11 14:43:29.457788,213,723,225, +62,2017-03-11 14:43:29.457788,316,158,774, +58,2017-03-11 14:43:29.457788,236,592,946, +19,2017-03-11 14:43:29.457788,183,904,11, +59,2017-03-11 14:43:29.457788,56,178,806, +61,2017-03-11 14:43:29.457788,380,635,9, +89,2017-03-11 14:43:29.457788,154,859,888, +35,2017-03-11 14:43:29.457788,210,325,183, +42,2017-03-11 14:43:29.457788,48,408,45, +36,2017-03-11 14:43:29.457788,567,818,940, +80,2017-03-11 14:43:29.457788,411,887,988, +59,2017-03-11 14:43:29.457788,790,1000,179, +85,2017-03-11 14:43:29.457788,178,986,460, +56,2017-03-11 14:43:29.457788,621,469,450, +77,2017-03-11 14:43:29.457788,328,338,120, +54,2017-03-11 14:43:29.457788,663,303,961, +71,2017-03-11 14:43:29.457788,712,5,75, +28,2017-03-11 14:43:29.457788,824,15,81, +23,2017-03-11 14:43:29.457788,902,69,828, +69,2017-03-11 14:43:29.457788,69,7,539, +25,2017-03-11 14:43:29.457788,993,999,804, +61,2017-03-11 14:43:29.457788,469,254,388, +80,2017-03-11 14:43:29.457788,592,508,335, +25,2017-03-11 14:43:29.457788,811,295,965, +52,2017-03-11 14:43:29.457788,300,41,801, +12,2017-03-11 14:43:29.457788,56,882,358, +96,2017-03-11 14:43:29.457788,951,186,650, +2,2017-03-11 14:43:29.457788,193,189,266, +19,2017-03-11 14:43:29.457788,189,70,799, +66,2017-03-11 14:43:29.457788,324,187,454, +92,2017-03-11 14:43:29.457788,695,789,171, +51,2017-03-11 14:43:29.457788,85,137,29, +39,2017-03-11 14:43:29.457788,177,830,509, +23,2017-03-11 14:43:29.457788,712,867,191, +66,2017-03-11 14:43:29.457788,53,842,683, +25,2017-03-11 14:43:29.457788,31,949,431, +22,2017-03-11 14:43:29.457788,19,230,877, +34,2017-03-11 14:43:29.457788,417,332,260, +11,2017-03-11 14:43:29.457788,121,432,618, +21,2017-03-11 14:43:29.457788,568,646,591, +75,2017-03-11 14:43:29.457788,477,100,978, +19,2017-03-11 14:43:29.457788,967,170,852, +2,2017-03-11 14:43:29.457788,11,535,265, +4,2017-03-11 14:43:29.457788,484,696,262, +50,2017-03-11 14:43:29.457788,925,139,847, +34,2017-03-11 14:43:29.457788,471,108,453, +59,2017-03-11 14:43:29.457788,539,71,798, +11,2017-03-11 14:43:29.457788,717,389,853, +19,2017-03-11 14:43:29.457788,489,831,383, +46,2017-03-11 14:43:29.457788,0,235,475, +1,2017-03-11 14:43:29.457788,770,740,54, +25,2017-03-11 14:43:29.457788,435,316,758, +36,2017-03-11 14:43:29.457788,455,606,703, +93,2017-03-11 14:43:29.457788,714,156,518, +25,2017-03-11 14:43:29.457788,227,316,360, +94,2017-03-11 14:43:29.457788,705,213,139, +19,2017-03-11 14:43:29.457788,44,522,649, +4,2017-03-11 14:43:29.457788,757,124,56, +53,2017-03-11 14:43:29.457788,864,110,782, +30,2017-03-11 14:43:29.457788,425,540,660, +88,2017-03-11 14:43:29.457788,146,363,806, +86,2017-03-11 14:43:29.457788,519,324,113, +75,2017-03-11 14:43:29.457788,641,473,691, +35,2017-03-11 14:43:29.457788,686,829,540, +73,2017-03-11 14:43:29.457788,351,190,775, +11,2017-03-11 14:43:29.457788,314,831,634, +18,2017-03-11 14:43:29.457788,940,416,478, +37,2017-03-11 14:43:29.457788,956,138,245, +10,2017-03-11 14:43:29.457788,501,52,962, +2,2017-03-11 14:43:29.457788,376,75,766, +2,2017-03-11 14:43:29.457788,548,457,363, +23,2017-03-11 14:43:29.457788,286,903,965, +64,2017-03-11 14:43:29.457788,93,740,744, +41,2017-03-11 14:43:29.457788,571,378,585, +51,2017-03-11 14:43:29.457788,794,62,877, +75,2017-03-11 14:43:29.457788,200,123,853, +70,2017-03-11 14:43:29.457788,174,815,721, +55,2017-03-11 14:43:29.457788,891,487,567, +44,2017-03-11 14:43:29.457788,944,930,674, +23,2017-03-11 14:43:29.457788,833,639,866, +93,2017-03-11 14:43:29.457788,379,610,332, +95,2017-03-11 14:43:29.457788,988,917,462, +78,2017-03-11 14:43:29.457788,979,339,533, +18,2017-03-11 14:43:29.457788,462,386,881, +64,2017-03-11 14:43:29.457788,201,602,186, +9,2017-03-11 14:43:29.457788,89,753,531, +3,2017-03-11 14:43:29.457788,683,205,263, +52,2017-03-11 14:43:29.457788,844,129,441, +22,2017-03-11 14:43:29.457788,738,773,174, +73,2017-03-11 14:43:29.457788,690,636,508, +67,2017-03-11 14:43:29.457788,975,41,848, +44,2017-03-11 14:43:29.457788,427,728,73, +63,2017-03-11 14:43:29.457788,330,259,720, +42,2017-03-11 14:43:29.457788,12,251,453, +69,2017-03-11 14:43:29.457788,455,716,210, +30,2017-03-11 14:43:29.457788,844,651,522, +58,2017-03-11 14:43:29.457788,424,696,309, +11,2017-03-11 14:43:29.457788,331,817,782, +31,2017-03-11 14:43:29.457788,857,630,743, +28,2017-03-11 14:43:29.457788,358,815,912, +69,2017-03-11 14:43:29.457788,74,632,107, +9,2017-03-11 14:43:29.457788,882,560,780, +34,2017-03-11 14:43:29.457788,276,990,637, +12,2017-03-11 14:43:29.457788,641,159,703, +7,2017-03-11 14:43:29.457788,855,12,179, +19,2017-03-11 14:43:29.457788,828,961,492, +69,2017-03-11 14:43:29.457788,591,235,970, +95,2017-03-11 14:43:29.457788,50,881,637, +12,2017-03-11 14:43:29.457788,513,744,210, +40,2017-03-11 14:43:29.457788,304,990,733, +58,2017-03-11 14:43:29.457788,980,369,699, +62,2017-03-11 14:43:29.457788,528,402,687, +38,2017-03-11 14:43:29.457788,414,866,569, +24,2017-03-11 14:43:29.457788,827,61,928, +42,2017-03-11 14:43:29.457788,297,898,367, +35,2017-03-11 14:43:29.457788,779,3,472, +29,2017-03-11 14:43:29.457788,747,682,687, +5,2017-03-11 14:43:29.457788,672,420,631, +65,2017-03-11 14:43:29.457788,789,330,274, +32,2017-03-11 14:43:29.457788,732,960,700, +15,2017-03-11 14:43:29.457788,826,270,388, +65,2017-03-11 14:43:29.457788,331,316,71, +63,2017-03-11 14:43:29.457788,213,438,975, +99,2017-03-11 14:43:29.457788,441,446,284, +19,2017-03-11 14:43:29.457788,128,971,239, +80,2017-03-11 14:43:29.457788,391,870,452, +18,2017-03-11 14:43:29.457788,200,726,497, +93,2017-03-11 14:43:29.457788,686,198,78, +51,2017-03-11 14:43:29.457788,467,466,166, +80,2017-03-11 14:43:29.457788,782,237,426, +100,2017-03-11 14:43:29.457788,674,401,988, +12,2017-03-11 14:43:29.457788,847,272,304, +98,2017-03-11 14:43:29.457788,243,543,775, +63,2017-03-11 14:43:29.457788,413,228,814, +61,2017-03-11 14:43:29.457788,954,311,545, +64,2017-03-11 14:43:29.457788,509,623,153, +98,2017-03-11 14:43:29.457788,89,318,775, +87,2017-03-11 14:43:29.457788,555,201,867, +23,2017-03-11 14:43:29.457788,602,854,345, +45,2017-03-11 14:43:29.457788,126,649,425, +37,2017-03-11 14:43:29.457788,192,200,4, +61,2017-03-11 14:43:29.457788,427,817,218, +38,2017-03-11 14:43:29.457788,128,763,21, +64,2017-03-11 14:43:29.457788,387,173,613, +48,2017-03-11 14:43:29.457788,492,388,347, +5,2017-03-11 14:43:29.457788,589,214,275, +19,2017-03-11 14:43:29.457788,68,620,640, +19,2017-03-11 14:43:29.457788,269,65,564, +46,2017-03-11 14:43:29.457788,264,568,66, +69,2017-03-11 14:43:29.457788,385,284,73, +51,2017-03-11 14:43:29.457788,48,94,150, +43,2017-03-11 14:43:29.457788,267,763,910, +76,2017-03-11 14:43:29.457788,151,257,805, +74,2017-03-11 14:43:29.457788,471,80,930, +54,2017-03-11 14:43:29.457788,701,570,733, +97,2017-03-11 14:43:29.457788,635,297,430, +90,2017-03-11 14:43:29.457788,865,496,591, +25,2017-03-11 14:43:29.457788,781,664,763, +83,2017-03-11 14:43:29.457788,757,914,263, +2,2017-03-11 14:43:29.457788,677,173,783, +83,2017-03-11 14:43:29.457788,430,588,567, +90,2017-03-11 14:43:29.457788,669,497,440, +37,2017-03-11 14:43:29.457788,67,173,339, +70,2017-03-11 14:43:29.457788,471,769,601, +34,2017-03-11 14:43:29.457788,265,192,586, +5,2017-03-11 14:43:29.457788,856,349,874, +61,2017-03-11 14:43:29.457788,263,137,638, +94,2017-03-11 14:43:29.457788,310,421,767, +74,2017-03-11 14:43:29.457788,9,334,642, +68,2017-03-11 14:43:29.457788,831,81,47, +90,2017-03-11 14:43:29.457788,255,385,600, +73,2017-03-11 14:43:29.457788,155,201,61, +42,2017-03-11 14:43:29.457788,393,647,466, +25,2017-03-11 14:43:29.457788,996,340,863, +26,2017-03-11 14:43:29.457788,478,500,198, +79,2017-03-11 14:43:29.457788,921,965,528, +93,2017-03-11 14:43:29.457788,298,170,608, +13,2017-03-11 14:43:29.457788,251,655,27, +51,2017-03-11 14:43:29.457788,40,627,231, +19,2017-03-11 14:43:29.457788,828,292,615, +22,2017-03-11 14:43:29.457788,939,80,470, +94,2017-03-11 14:43:29.457788,421,332,194, +90,2017-03-11 14:43:29.457788,833,391,686, +75,2017-03-11 14:43:29.457788,356,214,684, +65,2017-03-11 14:43:29.457788,384,292,783, +64,2017-03-11 14:43:29.457788,947,810,141, +99,2017-03-11 14:43:29.457788,437,373,182, +26,2017-03-11 14:43:29.457788,665,796,485, +60,2017-03-11 14:43:29.457788,877,955,539, +30,2017-03-11 14:43:29.457788,287,733,196, +12,2017-03-11 14:43:29.457788,124,882,874, +48,2017-03-11 14:43:29.457788,96,559,134, +48,2017-03-11 14:43:29.457788,851,918,115, +80,2017-03-11 14:43:29.457788,728,257,785, +16,2017-03-11 14:43:29.457788,629,967,429, +29,2017-03-11 14:43:29.457788,763,914,899, +64,2017-03-11 14:43:29.457788,869,438,937, +16,2017-03-11 14:43:29.457788,171,132,276, +30,2017-03-11 14:43:29.457788,14,151,775, +11,2017-03-11 14:43:29.457788,709,910,590, +56,2017-03-11 14:43:29.457788,827,705,358, +56,2017-03-11 14:43:29.457788,962,143,720, +59,2017-03-11 14:43:29.457788,110,148,885, +87,2017-03-11 14:43:29.457788,62,784,512, +93,2017-03-11 14:43:29.457788,222,448,87, +39,2017-03-11 14:43:29.457788,581,363,688, +59,2017-03-11 14:43:29.457788,513,463,705, +22,2017-03-11 14:43:29.457788,373,294,783, +20,2017-03-11 14:43:29.457788,999,141,755, +96,2017-03-11 14:43:29.457788,284,475,552, +39,2017-03-11 14:43:29.457788,623,437,266, +69,2017-03-11 14:43:29.457788,220,778,616, +44,2017-03-11 14:43:29.457788,226,703,834, +81,2017-03-11 14:43:29.457788,65,522,402, +58,2017-03-11 14:43:29.457788,985,106,801, +36,2017-03-11 14:43:29.457788,400,584,559, +40,2017-03-11 14:43:29.457788,726,314,361, +1,2017-03-11 14:43:29.457788,789,912,404, +41,2017-03-11 14:43:29.457788,349,670,98, +57,2017-03-11 14:43:29.457788,448,714,11, +67,2017-03-11 14:43:29.457788,416,845,481, +48,2017-03-11 14:43:29.457788,367,882,60, +35,2017-03-11 14:43:29.457788,989,862,711, +39,2017-03-11 14:43:29.457788,446,270,789, +17,2017-03-11 14:43:29.457788,584,150,182, +37,2017-03-11 14:43:29.457788,62,585,786, +41,2017-03-11 14:43:29.457788,255,883,979, +70,2017-03-11 14:43:29.457788,597,990,377, +1,2017-03-11 14:43:29.457788,835,858,495, +20,2017-03-11 14:43:29.457788,740,555,554, +73,2017-03-11 14:43:29.457788,417,265,118, +86,2017-03-11 14:43:29.457788,535,907,35, +12,2017-03-11 14:43:29.457788,57,217,492, +12,2017-03-11 14:43:29.457788,802,277,529, +6,2017-03-11 14:43:29.457788,161,508,761, +76,2017-03-11 14:43:29.457788,497,138,771, +33,2017-03-11 14:43:29.457788,996,266,534, +74,2017-03-11 14:43:29.457788,821,88,465, +24,2017-03-11 14:43:29.457788,353,584,102, +89,2017-03-11 14:43:29.457788,491,137,7, +55,2017-03-11 14:43:29.457788,354,499,666, +16,2017-03-11 14:43:29.457788,776,195,215, +94,2017-03-11 14:43:29.457788,702,976,695, +20,2017-03-11 14:43:29.457788,113,466,532, +11,2017-03-11 14:43:29.457788,733,65,846, +55,2017-03-11 14:43:29.457788,153,311,793, +51,2017-03-11 14:43:29.457788,895,895,395, +39,2017-03-11 14:43:29.457788,32,402,933, +39,2017-03-11 14:43:29.457788,901,599,543, +68,2017-03-11 14:43:29.457788,793,758,615, +50,2017-03-11 14:43:29.457788,733,310,696, +85,2017-03-11 14:43:29.457788,776,227,956, +51,2017-03-11 14:43:29.457788,293,802,63, +45,2017-03-11 14:43:29.457788,113,856,953, +1,2017-03-11 14:43:29.457788,750,348,393, +78,2017-03-11 14:43:29.457788,750,325,169, +65,2017-03-11 14:43:29.457788,924,712,328, +72,2017-03-11 14:43:29.457788,470,943,213, +20,2017-03-11 14:43:29.457788,253,909,50, +3,2017-03-11 14:43:29.457788,137,6,538, +43,2017-03-11 14:43:29.457788,808,601,875, +92,2017-03-11 14:43:29.457788,456,828,928, +21,2017-03-11 14:43:29.457788,175,320,989, +92,2017-03-11 14:43:29.457788,646,157,576, +57,2017-03-11 14:43:29.457788,869,904,288, +34,2017-03-11 14:43:29.457788,847,501,542, +10,2017-03-11 14:43:29.457788,410,592,129, +55,2017-03-11 14:43:29.457788,598,666,976, +41,2017-03-11 14:43:29.457788,267,851,327, +72,2017-03-11 14:43:29.457788,679,255,930, +85,2017-03-11 14:43:29.457788,575,918,779, +22,2017-03-11 14:43:29.457788,76,354,791, +95,2017-03-11 14:43:29.457788,258,78,284, +10,2017-03-11 14:43:29.457788,579,826,204, +99,2017-03-11 14:43:29.457788,418,333,536, +2,2017-03-11 14:43:29.457788,999,512,422, +27,2017-03-11 14:43:29.457788,363,749,989, +4,2017-03-11 14:43:29.457788,3,919,896, +58,2017-03-11 14:43:29.457788,837,674,799, +91,2017-03-11 14:43:29.457788,28,590,858, +29,2017-03-11 14:43:29.457788,668,143,391, +25,2017-03-11 14:43:29.457788,969,595,237, +39,2017-03-11 14:43:29.457788,928,773,403, +93,2017-03-11 14:43:29.457788,285,826,193, +65,2017-03-11 14:43:29.457788,575,182,690, +58,2017-03-11 14:43:29.457788,101,585,156, +94,2017-03-11 14:43:29.457788,259,955,852, +29,2017-03-11 14:43:29.457788,545,710,574, +21,2017-03-11 14:43:29.457788,853,965,460, +82,2017-03-11 14:43:29.457788,560,697,209, +49,2017-03-11 14:43:29.457788,470,612,415, +75,2017-03-11 14:43:29.457788,438,608,402, +1,2017-03-11 14:43:29.457788,791,92,590, +89,2017-03-11 14:43:29.457788,677,747,830, +94,2017-03-11 14:43:29.457788,702,682,224, +25,2017-03-11 14:43:29.457788,392,797,460, +24,2017-03-11 14:43:29.457788,762,921,66, +32,2017-03-11 14:43:29.457788,618,275,811, +9,2017-03-11 14:43:29.457788,887,226,842, +32,2017-03-11 14:43:29.457788,834,244,337, +62,2017-03-11 14:43:29.457788,336,927,517, +1,2017-03-11 14:43:29.457788,674,347,948, +38,2017-03-11 14:43:29.457788,29,172,623, +42,2017-03-11 14:43:29.457788,969,84,666, +73,2017-03-11 14:43:29.457788,4,733,54, +62,2017-03-11 14:43:29.457788,8,865,709, +89,2017-03-11 14:43:29.457788,91,551,220, +93,2017-03-11 14:43:29.457788,795,557,550, +13,2017-03-11 14:43:29.457788,484,67,143, +16,2017-03-11 14:43:29.457788,414,91,534, +44,2017-03-11 14:43:29.457788,263,157,865, +23,2017-03-11 14:43:29.457788,241,531,964, +25,2017-03-11 14:43:29.457788,264,18,867, +27,2017-03-11 14:43:29.457788,884,576,167, +97,2017-03-11 14:43:29.457788,127,386,900, +92,2017-03-11 14:43:29.457788,943,451,52, +43,2017-03-11 14:43:29.457788,518,195,585, +93,2017-03-11 14:43:29.457788,286,119,375, +55,2017-03-11 14:43:29.457788,276,240,780, +52,2017-03-11 14:43:29.457788,772,744,762, +4,2017-03-11 14:43:29.457788,762,629,308, +65,2017-03-11 14:43:29.457788,206,475,621, +33,2017-03-11 14:43:29.457788,861,521,255, +80,2017-03-11 14:43:29.457788,972,307,231, +49,2017-03-11 14:43:29.457788,502,816,421, +79,2017-03-11 14:43:29.457788,935,797,335, +21,2017-03-11 14:43:29.457788,37,116,728, +81,2017-03-11 14:43:29.457788,859,490,845, +62,2017-03-11 14:43:29.457788,120,153,267, +33,2017-03-11 14:43:29.457788,628,888,658, +49,2017-03-11 14:43:29.457788,409,913,294, +38,2017-03-11 14:43:29.457788,220,526,870, +72,2017-03-11 14:43:29.457788,342,291,509, +28,2017-03-11 14:43:29.457788,88,844,488, +12,2017-03-11 14:43:29.457788,960,216,934, +82,2017-03-11 14:43:29.457788,707,779,441, +83,2017-03-11 14:43:29.457788,932,709,152, +56,2017-03-11 14:43:29.457788,597,810,50, +1,2017-03-11 14:43:29.457788,723,344,386, +94,2017-03-11 14:43:29.457788,870,256,665, +21,2017-03-11 14:43:29.457788,547,175,489, +63,2017-03-11 14:43:29.457788,19,977,759, +98,2017-03-11 14:43:29.457788,194,692,798, +90,2017-03-11 14:43:29.457788,471,239,727, +40,2017-03-11 14:43:29.457788,948,878,963, +54,2017-03-11 14:43:29.457788,688,13,550, +41,2017-03-11 14:43:29.457788,358,936,355, +23,2017-03-11 14:43:29.457788,191,21,439, +74,2017-03-11 14:43:29.457788,195,928,372, +21,2017-03-11 14:43:29.457788,905,131,193, +10,2017-03-11 14:43:29.457788,823,991,999, +29,2017-03-11 14:43:29.457788,231,726,698, +18,2017-03-11 14:43:29.457788,604,661,723, +29,2017-03-11 14:43:29.457788,674,273,704, +3,2017-03-11 14:43:29.457788,209,59,259, +40,2017-03-11 14:43:29.457788,80,699,137, +28,2017-03-11 14:43:29.457788,627,509,489, +53,2017-03-11 14:43:29.457788,640,682,631, +46,2017-03-11 14:43:29.457788,674,631,757, +90,2017-03-11 14:43:29.457788,357,455,83, +96,2017-03-11 14:43:29.457788,116,806,254, +79,2017-03-11 14:43:29.457788,79,958,822, +29,2017-03-11 14:43:29.457788,17,82,687, +10,2017-03-11 14:43:29.457788,780,825,372, +41,2017-03-11 14:43:29.457788,334,862,939, +97,2017-03-11 14:43:29.457788,544,571,437, +22,2017-03-11 14:43:29.457788,202,194,122, +56,2017-03-11 14:43:29.457788,649,205,520, +77,2017-03-11 14:43:29.457788,11,774,556, +9,2017-03-11 14:43:29.457788,732,378,377, +75,2017-03-11 14:43:29.457788,460,64,846, +24,2017-03-11 14:43:29.457788,889,219,648, +22,2017-03-11 14:43:29.457788,81,587,197, +62,2017-03-11 14:43:29.457788,158,634,842, +36,2017-03-11 14:43:29.457788,828,963,918, +48,2017-03-11 14:43:29.457788,168,438,243, +18,2017-03-11 14:43:29.457788,212,799,268, +94,2017-03-11 14:43:29.457788,177,645,692, +64,2017-03-11 14:43:29.457788,710,539,878, +60,2017-03-11 14:43:29.457788,757,526,821, +84,2017-03-11 14:43:29.457788,113,18,462, +27,2017-03-11 14:43:29.457788,651,304,632, +48,2017-03-11 14:43:29.457788,268,550,957, +44,2017-03-11 14:43:29.457788,988,200,614, +20,2017-03-11 14:43:29.457788,998,883,143, +18,2017-03-11 14:43:29.457788,528,835,813, +24,2017-03-11 14:43:29.457788,373,691,836, +13,2017-03-11 14:43:29.457788,217,657,969, +33,2017-03-11 14:43:29.457788,675,431,602, +33,2017-03-11 14:43:29.457788,735,234,806, +0,2017-03-11 14:43:29.457788,784,763,438, +77,2017-03-11 14:43:29.457788,962,53,971, +96,2017-03-11 14:43:29.457788,935,113,136, +46,2017-03-11 14:43:29.457788,948,948,700, +32,2017-03-11 14:43:29.457788,639,536,452, +86,2017-03-11 14:43:29.457788,193,421,186, +87,2017-03-11 14:43:29.457788,852,788,195, +59,2017-03-11 14:43:29.457788,22,1,590, +81,2017-03-11 14:43:29.457788,763,28,577, +73,2017-03-11 14:43:29.457788,81,548,685, +2,2017-03-11 14:43:29.457788,661,821,479, +61,2017-03-11 14:43:29.457788,769,179,930, +41,2017-03-11 14:43:29.457788,716,382,265, +91,2017-03-11 14:43:29.457788,803,451,777, +66,2017-03-11 14:43:29.457788,239,972,243, +26,2017-03-11 14:43:29.457788,973,833,67, +74,2017-03-11 14:43:29.457788,861,644,461, +94,2017-03-11 14:43:29.457788,192,146,958, +85,2017-03-11 14:43:29.457788,967,437,462, +74,2017-03-11 14:43:29.457788,616,392,145, +33,2017-03-11 14:43:29.457788,774,410,241, +58,2017-03-11 14:43:29.457788,860,18,233, +10,2017-03-11 14:43:29.457788,990,475,361, +96,2017-03-11 14:43:29.457788,308,428,698, +17,2017-03-11 14:43:29.457788,73,159,111, +26,2017-03-11 14:43:29.457788,305,69,117, +27,2017-03-11 14:43:29.457788,506,579,9, +12,2017-03-11 14:43:29.457788,971,154,454, +75,2017-03-11 14:43:29.457788,563,695,323, +42,2017-03-11 14:43:29.457788,713,555,524, +70,2017-03-11 14:43:29.457788,31,885,665, +34,2017-03-11 14:43:29.457788,313,363,507, +39,2017-03-11 14:43:29.457788,522,618,650, +83,2017-03-11 14:43:29.457788,687,767,100, +19,2017-03-11 14:43:29.457788,346,108,314, +32,2017-03-11 14:43:29.457788,262,768,62, +83,2017-03-11 14:43:29.457788,463,384,249, +18,2017-03-11 14:43:29.457788,940,773,878, +97,2017-03-11 14:43:29.457788,658,544,309, +97,2017-03-11 14:43:29.457788,907,816,357, +43,2017-03-11 14:43:29.457788,434,7,257, +12,2017-03-11 14:43:29.457788,775,356,313, +12,2017-03-11 14:43:29.457788,464,627,438, +73,2017-03-11 14:43:29.457788,395,499,552, +86,2017-03-11 14:43:29.457788,884,801,34, +82,2017-03-11 14:43:29.457788,574,912,794, +23,2017-03-11 14:43:29.457788,456,103,203, +36,2017-03-11 14:43:29.457788,920,560,793, +35,2017-03-11 14:43:29.457788,567,49,475, +34,2017-03-11 14:43:29.457788,405,788,462, +87,2017-03-11 14:43:29.457788,415,900,596, +81,2017-03-11 14:43:29.457788,399,148,669, +28,2017-03-11 14:43:29.457788,950,703,107, +52,2017-03-11 14:43:29.457788,616,901,755, +7,2017-03-11 14:43:29.457788,4,958,435, +92,2017-03-11 14:43:29.457788,518,228,278, +9,2017-03-11 14:43:29.457788,277,753,427, +68,2017-03-11 14:43:29.457788,540,890,552, +96,2017-03-11 14:43:29.457788,790,149,766, +19,2017-03-11 14:43:29.457788,297,436,473, +25,2017-03-11 14:43:29.457788,139,580,770, +75,2017-03-11 14:43:29.457788,481,525,826, +48,2017-03-11 14:43:29.457788,484,261,409, +0,2017-03-11 14:43:29.457788,489,687,87, +77,2017-03-11 14:43:29.457788,439,515,448, +98,2017-03-11 14:43:29.457788,404,1000,935, +19,2017-03-11 14:43:29.457788,149,702,383, +45,2017-03-11 14:43:29.457788,138,856,692, +28,2017-03-11 14:43:29.457788,435,462,31, +92,2017-03-11 14:43:29.457788,988,857,401, +47,2017-03-11 14:43:29.457788,118,810,473, +61,2017-03-11 14:43:29.457788,496,561,372, +94,2017-03-11 14:43:29.457788,75,820,915, +48,2017-03-11 14:43:29.457788,820,851,673, +97,2017-03-11 14:43:29.457788,553,57,414, +69,2017-03-11 14:43:29.457788,913,106,966, +35,2017-03-11 14:43:29.457788,569,997,264, +56,2017-03-11 14:43:29.457788,854,665,28, +97,2017-03-11 14:43:29.457788,475,502,579, +97,2017-03-11 14:43:29.457788,62,951,907, +14,2017-03-11 14:43:29.457788,771,822,617, +59,2017-03-11 14:43:29.457788,673,290,559, +23,2017-03-11 14:43:29.457788,347,973,915, +26,2017-03-11 14:43:29.457788,79,882,607, +65,2017-03-11 14:43:29.457788,879,871,205, +73,2017-03-11 14:43:29.457788,536,234,705, +1,2017-03-11 14:43:29.457788,735,283,981, +80,2017-03-11 14:43:29.457788,234,888,935, +0,2017-03-11 14:43:29.457788,710,552,595, +38,2017-03-11 14:43:29.457788,842,154,608, +19,2017-03-11 14:43:29.457788,126,523,449, +21,2017-03-11 14:43:29.457788,405,56,854, +28,2017-03-11 14:43:29.457788,927,59,17, +46,2017-03-11 14:43:29.457788,293,722,474, +3,2017-03-11 14:43:29.457788,5,455,826, +24,2017-03-11 14:43:29.457788,343,761,244, +5,2017-03-11 14:43:29.457788,313,839,436, +15,2017-03-11 14:43:29.457788,992,43,344, +12,2017-03-11 14:43:29.457788,566,792,325, +97,2017-03-11 14:43:29.457788,848,179,255, +78,2017-03-11 14:43:29.457788,238,272,238, +53,2017-03-11 14:43:29.457788,993,712,559, +100,2017-03-11 14:43:29.457788,167,385,237, +51,2017-03-11 14:43:29.457788,145,481,563, +46,2017-03-11 14:43:29.457788,320,999,613, +31,2017-03-11 14:43:29.457788,42,956,431, +61,2017-03-11 14:43:29.457788,749,755,579, +60,2017-03-11 14:43:29.457788,934,834,372, +17,2017-03-11 14:43:29.457788,106,610,703, +10,2017-03-11 14:43:29.457788,322,262,97, +49,2017-03-11 14:43:29.457788,647,334,999, +79,2017-03-11 14:43:29.457788,815,562,250, +13,2017-03-11 14:43:29.457788,561,863,447, +60,2017-03-11 14:43:29.457788,819,877,211, +57,2017-03-11 14:43:29.457788,633,790,164, +57,2017-03-11 14:43:29.457788,624,537,739, +73,2017-03-11 14:43:29.457788,147,442,829, +47,2017-03-11 14:43:29.457788,704,926,959, +35,2017-03-11 14:43:29.457788,260,958,143, +8,2017-03-11 14:43:29.457788,520,393,210, +8,2017-03-11 14:43:29.457788,256,657,683, +7,2017-03-11 14:43:29.457788,534,894,642, +17,2017-03-11 14:43:29.457788,684,807,734, +31,2017-03-11 14:43:29.457788,343,473,38, +49,2017-03-11 14:43:29.457788,916,867,960, +62,2017-03-11 14:43:29.457788,792,918,971, +5,2017-03-11 14:43:29.457788,876,114,128, +40,2017-03-11 14:43:29.457788,508,338,477, +76,2017-03-11 14:43:29.457788,994,160,838, +53,2017-03-11 14:43:29.457788,54,480,695, +74,2017-03-11 14:43:29.457788,287,429,45, +63,2017-03-11 14:43:29.457788,902,83,120, +82,2017-03-11 14:43:29.457788,950,80,438, +74,2017-03-11 14:43:29.457788,998,409,795, +87,2017-03-11 14:43:29.457788,523,923,270, +3,2017-03-11 14:43:29.457788,260,747,795, +25,2017-03-11 14:43:29.457788,906,633,783, +96,2017-03-11 14:43:29.457788,113,478,698, +40,2017-03-11 14:43:29.457788,907,743,30, +81,2017-03-11 14:43:29.457788,826,151,627, +78,2017-03-11 14:43:29.457788,231,65,519, +23,2017-03-11 14:43:29.457788,474,313,103, +100,2017-03-11 14:43:29.457788,236,373,28, +50,2017-03-11 14:43:29.457788,120,823,751, +3,2017-03-11 14:43:29.457788,456,533,986, +57,2017-03-11 14:43:29.457788,11,684,969, +92,2017-03-11 14:43:29.457788,427,999,727, +25,2017-03-11 14:43:29.457788,150,354,29, +38,2017-03-11 14:43:29.457788,418,548,610, +89,2017-03-11 14:43:29.457788,861,713,889, +10,2017-03-11 14:43:29.457788,86,918,594, +21,2017-03-11 14:43:29.457788,740,344,231, +20,2017-03-11 14:43:29.457788,878,217,765, +89,2017-03-11 14:43:29.457788,901,734,807, +33,2017-03-11 14:43:29.457788,733,534,581, +88,2017-03-11 14:43:29.457788,888,610,263, +31,2017-03-11 14:43:29.457788,158,873,198, +2,2017-03-11 14:43:29.457788,586,88,116, +67,2017-03-11 14:43:29.457788,5,710,877, +75,2017-03-11 14:43:29.457788,54,109,942, +93,2017-03-11 14:43:29.457788,326,707,821, +23,2017-03-11 14:43:29.457788,440,628,554, +17,2017-03-11 14:43:29.457788,162,135,56, +5,2017-03-11 14:43:29.457788,745,319,357, +90,2017-03-11 14:43:29.457788,192,555,922, +78,2017-03-11 14:43:29.457788,643,38,450, +65,2017-03-11 14:43:29.457788,748,328,394, +80,2017-03-11 14:43:29.457788,437,336,734, +76,2017-03-11 14:43:29.457788,43,556,989, +48,2017-03-11 14:43:29.457788,184,544,656, +35,2017-03-11 14:43:29.457788,679,712,397, +42,2017-03-11 14:43:29.457788,31,753,326, +22,2017-03-11 14:43:29.457788,309,248,2, +95,2017-03-11 14:43:29.457788,286,452,600, +3,2017-03-11 14:43:29.457788,780,994,835, +22,2017-03-11 14:43:29.457788,330,570,979, +37,2017-03-11 14:43:29.457788,125,968,857, +31,2017-03-11 14:43:29.457788,512,513,655, +19,2017-03-11 14:43:29.457788,225,52,614, +26,2017-03-11 14:43:29.457788,806,940,480, +11,2017-03-11 14:43:29.457788,188,482,66, +47,2017-03-11 14:43:29.457788,934,666,507, +71,2017-03-11 14:43:29.457788,660,342,931, +99,2017-03-11 14:43:29.457788,912,910,364, +4,2017-03-11 14:43:29.457788,879,221,345, +39,2017-03-11 14:43:29.457788,734,1,581, +96,2017-03-11 14:43:29.457788,53,195,215, +86,2017-03-11 14:43:29.457788,135,695,973, +32,2017-03-11 14:43:29.457788,176,38,796, +11,2017-03-11 14:43:29.457788,704,303,825, +36,2017-03-11 14:43:29.457788,645,756,354, +56,2017-03-11 14:43:29.457788,666,718,593, +54,2017-03-11 14:43:29.457788,939,939,936, +67,2017-03-11 14:43:29.457788,939,517,631, +99,2017-03-11 14:43:29.457788,712,846,851, +85,2017-03-11 14:43:29.457788,541,823,170, +72,2017-03-11 14:43:29.457788,862,967,828, +57,2017-03-11 14:43:29.457788,270,653,930, +91,2017-03-11 14:43:29.457788,408,284,471, +7,2017-03-11 14:43:29.457788,2,64,620, +94,2017-03-11 14:43:29.457788,3,555,614, +94,2017-03-11 14:43:29.457788,72,245,934, +78,2017-03-11 14:43:29.457788,92,785,632, +63,2017-03-11 14:43:29.457788,608,802,350, +47,2017-03-11 14:43:29.457788,769,178,35, +4,2017-03-11 14:43:29.457788,831,965,953, +24,2017-03-11 14:43:29.457788,249,424,314, +25,2017-03-11 14:43:29.457788,489,933,193, +49,2017-03-11 14:43:29.457788,488,807,434, +56,2017-03-11 14:43:29.457788,52,368,345, +14,2017-03-11 14:43:29.457788,153,976,777, +76,2017-03-11 14:43:29.457788,778,127,231, +55,2017-03-11 14:43:29.457788,305,267,585, +14,2017-03-11 14:43:29.457788,232,538,375, +48,2017-03-11 14:43:29.457788,963,688,733, +45,2017-03-11 14:43:29.457788,621,926,943, +11,2017-03-11 14:43:29.457788,733,377,670, +78,2017-03-11 14:43:29.457788,745,15,929, +90,2017-03-11 14:43:29.457788,991,706,660, +77,2017-03-11 14:43:29.457788,833,891,316, +14,2017-03-11 14:43:29.457788,157,901,274, +39,2017-03-11 14:43:29.457788,439,649,870, +40,2017-03-11 14:43:29.457788,337,603,853, +96,2017-03-11 14:43:29.457788,529,796,67, +26,2017-03-11 14:43:29.457788,173,737,46, +92,2017-03-11 14:43:29.457788,752,975,816, +74,2017-03-11 14:43:29.457788,681,476,513, +51,2017-03-11 14:43:29.457788,366,829,652, +52,2017-03-11 14:43:29.457788,730,926,912, +17,2017-03-11 14:43:29.457788,575,783,571, +91,2017-03-11 14:43:29.457788,385,424,869, +91,2017-03-11 14:43:29.457788,220,937,175, +39,2017-03-11 14:43:29.457788,674,221,310, +43,2017-03-11 14:43:29.457788,196,126,170, +88,2017-03-11 14:43:29.457788,602,682,392, +97,2017-03-11 14:43:29.457788,511,44,491, +24,2017-03-11 14:43:29.457788,970,404,410, +55,2017-03-11 14:43:29.457788,186,980,457, +57,2017-03-11 14:43:29.457788,404,326,486, +62,2017-03-11 14:43:29.457788,262,661,16, +94,2017-03-11 14:43:29.457788,882,327,363, +8,2017-03-11 14:43:29.457788,453,532,956, +5,2017-03-11 14:43:29.457788,215,347,23, +73,2017-03-11 14:43:29.457788,391,514,967, +36,2017-03-11 14:43:29.457788,918,376,907, +10,2017-03-11 14:43:29.457788,357,363,676, +76,2017-03-11 14:43:29.457788,689,162,385, +95,2017-03-11 14:43:29.457788,823,401,888, +70,2017-03-11 14:43:29.457788,727,250,783, +18,2017-03-11 14:43:29.457788,783,738,235, +100,2017-03-11 14:43:29.457788,86,258,724, +48,2017-03-11 14:43:29.457788,772,690,839, +69,2017-03-11 14:43:29.457788,67,746,794, +42,2017-03-11 14:43:29.457788,109,471,185, +80,2017-03-11 14:43:29.457788,633,569,750, +46,2017-03-11 14:43:29.457788,970,638,160, +70,2017-03-11 14:43:29.457788,888,942,878, +67,2017-03-11 14:43:29.457788,680,113,669, +77,2017-03-11 14:43:29.457788,371,393,243, +14,2017-03-11 14:43:29.457788,83,82,832, +15,2017-03-11 14:43:29.457788,828,627,574, +94,2017-03-11 14:43:29.457788,98,758,736, +73,2017-03-11 14:43:29.457788,328,486,186, +30,2017-03-11 14:43:29.457788,124,345,995, +1,2017-03-11 14:43:29.457788,287,873,683, +97,2017-03-11 14:43:29.457788,986,352,734, +36,2017-03-11 14:43:29.457788,745,977,499, +83,2017-03-11 14:43:29.457788,59,332,978, +89,2017-03-11 14:43:29.457788,959,551,824, +6,2017-03-11 14:43:29.457788,310,560,786, +64,2017-03-11 14:43:29.457788,46,972,935, +17,2017-03-11 14:43:29.457788,317,930,181, +60,2017-03-11 14:43:29.457788,803,865,572, +79,2017-03-11 14:43:29.457788,217,306,147, +96,2017-03-11 14:43:29.457788,283,646,789, +34,2017-03-11 14:43:29.457788,978,767,229, +94,2017-03-11 14:43:29.457788,318,53,993, +63,2017-03-11 14:43:29.457788,613,779,265, +66,2017-03-11 14:43:29.457788,751,200,828, +7,2017-03-11 14:43:29.457788,130,10,673, +93,2017-03-11 14:43:29.457788,874,245,723, +9,2017-03-11 14:43:29.457788,551,869,52, +83,2017-03-11 14:43:29.457788,515,841,176, +49,2017-03-11 14:43:29.457788,608,405,430, +93,2017-03-11 14:43:29.457788,458,423,553, +7,2017-03-11 14:43:29.457788,202,818,729, +95,2017-03-11 14:43:29.457788,18,557,22, +15,2017-03-11 14:43:29.457788,567,695,81, +44,2017-03-11 14:43:29.457788,940,804,531, +49,2017-03-11 14:43:29.457788,674,584,325, +19,2017-03-11 14:43:29.457788,425,501,682, +3,2017-03-11 14:43:29.457788,906,112,958, +36,2017-03-11 14:43:29.457788,535,511,434, +74,2017-03-11 14:43:29.457788,330,163,690, +35,2017-03-11 14:43:29.457788,720,712,495, +29,2017-03-11 14:43:29.457788,406,577,727, +35,2017-03-11 14:43:29.457788,381,259,837, +5,2017-03-11 14:43:29.457788,842,162,243, +27,2017-03-11 14:43:29.457788,664,926,299, +57,2017-03-11 14:43:29.457788,38,257,933, +57,2017-03-11 14:43:29.457788,768,366,310, +10,2017-03-11 14:43:29.457788,529,999,446, +25,2017-03-11 14:43:29.457788,711,941,536, +12,2017-03-11 14:43:29.457788,518,263,463, +90,2017-03-11 14:43:29.457788,522,300,953, +36,2017-03-11 14:43:29.457788,463,196,631, +13,2017-03-11 14:43:29.457788,121,930,696, +16,2017-03-11 14:43:29.457788,188,628,732, +96,2017-03-11 14:43:29.457788,995,41,54, +52,2017-03-11 14:43:29.457788,41,500,774, +75,2017-03-11 14:43:29.457788,441,309,869, +96,2017-03-11 14:43:29.457788,573,332,857, +9,2017-03-11 14:43:29.457788,633,810,459, +10,2017-03-11 14:43:29.457788,6,91,222, +13,2017-03-11 14:43:29.457788,21,918,286, +21,2017-03-11 14:43:29.457788,546,18,165, +54,2017-03-11 14:43:29.457788,60,219,65, +10,2017-03-11 14:43:29.457788,718,839,852, +16,2017-03-11 14:43:29.457788,148,721,118, +72,2017-03-11 14:43:29.457788,54,975,816, +69,2017-03-11 14:43:29.457788,785,275,782, +79,2017-03-11 14:43:29.457788,366,4,917, +39,2017-03-11 14:43:29.457788,922,203,596, +47,2017-03-11 14:43:29.457788,221,760,9, +28,2017-03-11 14:43:29.457788,979,74,381, +70,2017-03-11 14:43:29.457788,913,234,857, +6,2017-03-11 14:43:29.457788,955,975,782, +1,2017-03-11 14:43:29.457788,950,598,696, +73,2017-03-11 14:43:29.457788,873,478,524, +24,2017-03-11 14:43:29.457788,482,441,625, +40,2017-03-11 14:43:29.457788,645,221,872, +87,2017-03-11 14:43:29.457788,982,881,147, +96,2017-03-11 14:43:29.457788,955,528,658, +87,2017-03-11 14:43:29.457788,761,515,929, +72,2017-03-11 14:43:29.457788,490,711,725, +44,2017-03-11 14:43:29.457788,309,421,174, +18,2017-03-11 14:43:29.457788,899,698,420, +38,2017-03-11 14:43:29.457788,139,45,785, +78,2017-03-11 14:43:29.457788,266,657,650, +25,2017-03-11 14:43:29.457788,538,797,209, +49,2017-03-11 14:43:29.457788,325,867,362, +9,2017-03-11 14:43:29.457788,382,291,802, +87,2017-03-11 14:43:29.457788,2,528,311, +31,2017-03-11 14:43:29.457788,948,485,492, +85,2017-03-11 14:43:29.457788,183,911,228, +32,2017-03-11 14:43:29.457788,957,13,106, +22,2017-03-11 14:43:29.457788,670,756,471, +21,2017-03-11 14:43:29.457788,553,680,702, +88,2017-03-11 14:43:29.457788,546,64,964, +93,2017-03-11 14:43:29.457788,355,766,800, +36,2017-03-11 14:43:29.457788,294,112,667, +24,2017-03-11 14:43:29.457788,597,158,90, +78,2017-03-11 14:43:29.457788,69,318,102, +3,2017-03-11 14:43:29.457788,331,209,249, +0,2017-03-11 14:43:29.457788,965,720,209, +52,2017-03-11 14:43:29.457788,399,911,396, +95,2017-03-11 14:43:29.457788,975,360,874, +33,2017-03-11 14:43:29.457788,126,675,686, +42,2017-03-11 14:43:29.457788,786,353,662, +38,2017-03-11 14:43:29.457788,511,752,163, +58,2017-03-11 14:43:29.457788,69,265,606, +40,2017-03-11 14:43:29.457788,473,855,401, +44,2017-03-11 14:43:29.457788,575,610,957, +97,2017-03-11 14:43:29.457788,521,353,920, +50,2017-03-11 14:43:29.457788,712,795,825, +84,2017-03-11 14:43:29.457788,469,511,258, +26,2017-03-11 14:43:29.457788,863,921,639, +37,2017-03-11 14:43:29.457788,673,802,954, +74,2017-03-11 14:43:29.457788,67,560,142, +54,2017-03-11 14:43:29.457788,416,543,978, +99,2017-03-11 14:43:29.457788,152,935,965, +67,2017-03-11 14:43:29.457788,288,886,168, +0,2017-03-11 14:43:29.457788,680,993,839, +15,2017-03-11 14:43:29.457788,503,97,406, +37,2017-03-11 14:43:29.457788,18,44,741, +69,2017-03-11 14:43:29.457788,846,695,432, +91,2017-03-11 14:43:29.457788,255,574,453, +67,2017-03-11 14:43:29.457788,117,431,661, +27,2017-03-11 14:43:29.457788,366,626,942, +65,2017-03-11 14:43:29.457788,512,110,654, +19,2017-03-11 14:43:29.457788,102,493,342, +61,2017-03-11 14:43:29.457788,590,748,972, +61,2017-03-11 14:43:29.457788,792,713,297, +64,2017-03-11 14:43:29.457788,408,730,551, +66,2017-03-11 14:43:29.457788,304,4,333, +42,2017-03-11 14:43:29.457788,435,994,690, +80,2017-03-11 14:43:29.457788,620,631,455, +13,2017-03-11 14:43:29.457788,741,109,325, +84,2017-03-11 14:43:29.457788,602,667,449, +19,2017-03-11 14:43:29.457788,414,422,799, +21,2017-03-11 14:43:29.457788,135,96,845, +54,2017-03-11 14:43:29.457788,826,396,205, +13,2017-03-11 14:43:29.457788,399,538,551, +83,2017-03-11 14:43:29.457788,532,241,635, +15,2017-03-11 14:43:29.457788,872,90,285, +61,2017-03-11 14:43:29.457788,199,610,456, +80,2017-03-11 14:43:29.457788,276,905,993, +69,2017-03-11 14:43:29.457788,327,791,897, +46,2017-03-11 14:43:29.457788,887,742,4, +71,2017-03-11 14:43:29.457788,138,209,843, +54,2017-03-11 14:43:29.457788,747,394,371, +28,2017-03-11 14:43:29.457788,635,6,432, +51,2017-03-11 14:43:29.457788,96,717,119, +30,2017-03-11 14:43:29.457788,326,576,97, +60,2017-03-11 14:43:29.457788,481,89,294, +81,2017-03-11 14:43:29.457788,880,191,270, +77,2017-03-11 14:43:29.457788,933,275,481, +7,2017-03-11 14:43:29.457788,484,324,607, +23,2017-03-11 14:43:29.457788,718,978,510, +35,2017-03-11 14:43:29.457788,984,942,859, +8,2017-03-11 14:43:29.457788,659,979,376, +99,2017-03-11 14:43:29.457788,554,472,588, +4,2017-03-11 14:43:29.457788,561,881,844, +44,2017-03-11 14:43:29.457788,72,114,209, +0,2017-03-11 14:43:29.457788,388,691,75, +87,2017-03-11 14:43:29.457788,15,682,103, +73,2017-03-11 14:43:29.457788,660,613,86, +64,2017-03-11 14:43:29.457788,555,946,724, +21,2017-03-11 14:43:29.457788,924,100,199, +48,2017-03-11 14:43:29.457788,573,787,514, +13,2017-03-11 14:43:29.457788,668,358,576, +74,2017-03-11 14:43:29.457788,472,785,745, +86,2017-03-11 14:43:29.457788,476,819,732, +49,2017-03-11 14:43:29.457788,501,836,224, +16,2017-03-11 14:43:29.457788,449,310,805, +0,2017-03-11 14:43:29.457788,256,529,218, +18,2017-03-11 14:43:29.457788,629,417,659, +20,2017-03-11 14:43:29.457788,203,173,336, +87,2017-03-11 14:43:29.457788,531,912,611, +0,2017-03-11 14:43:29.457788,697,356,863, +17,2017-03-11 14:43:29.457788,175,595,664, +68,2017-03-11 14:43:29.457788,431,887,837, +88,2017-03-11 14:43:29.457788,198,641,884, +45,2017-03-11 14:43:29.457788,170,101,633, +80,2017-03-11 14:43:29.457788,518,292,1, +72,2017-03-11 14:43:29.457788,465,337,592, +100,2017-03-11 14:43:29.457788,249,203,999, +95,2017-03-11 14:43:29.457788,559,862,119, +73,2017-03-11 14:43:29.457788,457,783,410, +89,2017-03-11 14:43:29.457788,670,246,768, +87,2017-03-11 14:43:29.457788,887,651,321, +6,2017-03-11 14:43:29.457788,753,955,857, +27,2017-03-11 14:43:29.457788,247,858,992, +71,2017-03-11 14:43:29.457788,195,584,709, +44,2017-03-11 14:43:29.457788,787,708,390, +35,2017-03-11 14:43:29.457788,569,510,80, +3,2017-03-11 14:43:29.457788,292,490,915, +96,2017-03-11 14:43:29.457788,737,683,830, +62,2017-03-11 14:43:29.457788,334,151,682, +9,2017-03-11 14:43:29.457788,106,538,358, +35,2017-03-11 14:43:29.457788,396,349,65, +59,2017-03-11 14:43:29.457788,933,773,35, +72,2017-03-11 14:43:29.457788,481,426,67, +5,2017-03-11 14:43:29.457788,935,148,77, +23,2017-03-11 14:43:29.457788,638,992,190, +37,2017-03-11 14:43:29.457788,674,20,999, +1,2017-03-11 14:43:29.457788,171,680,95, +28,2017-03-11 14:43:29.457788,219,453,629, +61,2017-03-11 14:43:29.457788,802,694,206, +74,2017-03-11 14:43:29.457788,467,241,456, +95,2017-03-11 14:43:29.457788,667,524,999, +60,2017-03-11 14:43:29.457788,671,76,830, +31,2017-03-11 14:43:29.457788,68,20,684, +74,2017-03-11 14:43:29.457788,40,683,750, +21,2017-03-11 14:43:29.457788,363,846,488, +58,2017-03-11 14:43:29.457788,298,117,196, +10,2017-03-11 14:43:29.457788,811,402,836, +28,2017-03-11 14:43:29.457788,643,292,227, +31,2017-03-11 14:43:29.457788,816,225,913, +49,2017-03-11 14:43:29.457788,301,743,796, +37,2017-03-11 14:43:29.457788,763,480,111, +80,2017-03-11 14:43:29.457788,163,861,15, +53,2017-03-11 14:43:29.457788,707,503,107, +1,2017-03-11 14:43:29.457788,620,303,106, +43,2017-03-11 14:43:29.457788,704,942,710, +35,2017-03-11 14:43:29.457788,234,936,658, +5,2017-03-11 14:43:29.457788,162,571,537, +46,2017-03-11 14:43:29.457788,314,333,832, +8,2017-03-11 14:43:29.457788,813,943,880, +98,2017-03-11 14:43:29.457788,804,895,501, +51,2017-03-11 14:43:29.457788,398,608,517, +2,2017-03-11 14:43:29.457788,910,622,449, +61,2017-03-11 14:43:29.457788,564,159,962, +80,2017-03-11 14:43:29.457788,95,620,847, +26,2017-03-11 14:43:29.457788,190,384,720, +50,2017-03-11 14:43:29.457788,717,552,581, +53,2017-03-11 14:43:29.457788,495,461,506, +30,2017-03-11 14:43:29.457788,357,7,811, +75,2017-03-11 14:43:29.457788,615,328,773, +52,2017-03-11 14:43:29.457788,950,222,139, +51,2017-03-11 14:43:29.457788,381,101,312, +48,2017-03-11 14:43:29.457788,721,160,733, +91,2017-03-11 14:43:29.457788,544,453,415, +26,2017-03-11 14:43:29.457788,5,996,791, +50,2017-03-11 14:43:29.457788,458,297,800, +81,2017-03-11 14:43:29.457788,304,611,569, +92,2017-03-11 14:43:29.457788,939,342,443, +89,2017-03-11 14:43:29.457788,563,582,403, +94,2017-03-11 14:43:29.457788,684,716,420, +40,2017-03-11 14:43:29.457788,876,153,316, +42,2017-03-11 14:43:29.457788,606,732,681, +61,2017-03-11 14:43:29.457788,728,472,111, +19,2017-03-11 14:43:29.457788,768,911,0, +7,2017-03-11 14:43:29.457788,522,569,991, +46,2017-03-11 14:43:29.457788,910,434,350, +47,2017-03-11 14:43:29.457788,16,753,418, +70,2017-03-11 14:43:29.457788,469,838,104, +34,2017-03-11 14:43:29.457788,992,421,764, +60,2017-03-11 14:43:29.457788,152,445,209, +88,2017-03-11 14:43:29.457788,916,320,66, +68,2017-03-11 14:43:29.457788,232,66,757, +75,2017-03-11 14:43:29.457788,635,748,214, +55,2017-03-11 14:43:29.457788,181,563,19, +20,2017-03-11 14:43:29.457788,316,437,897, +79,2017-03-11 14:43:29.457788,276,1,130, +27,2017-03-11 14:43:29.457788,422,894,866, +57,2017-03-11 14:43:29.457788,339,75,454, +25,2017-03-11 14:43:29.457788,395,520,940, +63,2017-03-11 14:43:29.457788,586,697,380, +22,2017-03-11 14:43:29.457788,444,594,767, +63,2017-03-11 14:43:29.457788,157,786,823, +47,2017-03-11 14:43:29.457788,223,719,259, +50,2017-03-11 14:43:29.457788,720,389,767, +14,2017-03-11 14:43:29.457788,283,633,716, +62,2017-03-11 14:43:29.457788,707,170,877, +10,2017-03-11 14:43:29.457788,690,817,729, +28,2017-03-11 14:43:29.457788,513,109,497, +96,2017-03-11 14:43:29.457788,703,264,583, +86,2017-03-11 14:43:29.457788,50,406,335, +27,2017-03-11 14:43:29.457788,125,594,773, +85,2017-03-11 14:43:29.457788,983,540,987, +27,2017-03-11 14:43:29.457788,173,703,888, +88,2017-03-11 14:43:29.457788,873,765,982, +56,2017-03-11 14:43:29.457788,582,712,839, +10,2017-03-11 14:43:29.457788,821,336,53, +52,2017-03-11 14:43:29.457788,600,636,385, +65,2017-03-11 14:43:29.457788,42,719,924, +17,2017-03-11 14:43:29.457788,313,696,12, +30,2017-03-11 14:43:29.457788,236,1000,563, +41,2017-03-11 14:43:29.457788,703,451,289, +58,2017-03-11 14:43:29.457788,216,271,139, +80,2017-03-11 14:43:29.457788,983,978,893, +80,2017-03-11 14:43:29.457788,314,946,327, +91,2017-03-11 14:43:29.457788,582,712,565, +62,2017-03-11 14:43:29.457788,432,488,790, +74,2017-03-11 14:43:29.457788,184,802,42, +42,2017-03-11 14:43:29.457788,802,605,830, +50,2017-03-11 14:43:29.457788,56,118,81, +27,2017-03-11 14:43:29.457788,389,220,70, +37,2017-03-11 14:43:29.457788,198,963,176, +51,2017-03-11 14:43:29.457788,908,503,427, +49,2017-03-11 14:43:29.457788,215,991,113, +65,2017-03-11 14:43:29.457788,479,903,392, +66,2017-03-11 14:43:29.457788,706,433,85, +51,2017-03-11 14:43:29.457788,38,914,13, +9,2017-03-11 14:43:29.457788,33,94,365, +42,2017-03-11 14:43:29.457788,313,435,794, +51,2017-03-11 14:43:29.457788,398,970,24, +31,2017-03-11 14:43:29.457788,473,450,796, +69,2017-03-11 14:43:29.457788,442,909,334, +92,2017-03-11 14:43:29.457788,812,726,585, +52,2017-03-11 14:43:29.457788,159,670,26, +20,2017-03-11 14:43:29.457788,584,39,290, +62,2017-03-11 14:43:29.457788,132,656,38, +45,2017-03-11 14:43:29.457788,91,832,957, +49,2017-03-11 14:43:29.457788,802,981,794, +27,2017-03-11 14:43:29.457788,431,590,962, +87,2017-03-11 14:43:29.457788,499,297,793, +31,2017-03-11 14:43:29.457788,23,378,830, +18,2017-03-11 14:43:29.457788,48,856,379, +63,2017-03-11 14:43:29.457788,894,669,248, +3,2017-03-11 14:43:29.457788,325,286,472, +42,2017-03-11 14:43:29.457788,119,429,904, +92,2017-03-11 14:43:29.457788,410,698,196, +84,2017-03-11 14:43:29.457788,288,158,713, +79,2017-03-11 14:43:29.457788,455,506,98, +48,2017-03-11 14:43:29.457788,884,927,660, +93,2017-03-11 14:43:29.457788,783,39,564, +68,2017-03-11 14:43:29.457788,708,812,703, +3,2017-03-11 14:43:29.457788,98,176,449, +22,2017-03-11 14:43:29.457788,605,352,138, +1,2017-03-11 14:43:29.457788,50,333,855, +34,2017-03-11 14:43:29.457788,491,567,124, +95,2017-03-11 14:43:29.457788,73,222,424, +96,2017-03-11 14:43:29.457788,149,84,890, +93,2017-03-11 14:43:29.457788,122,453,608, +83,2017-03-11 14:43:29.457788,265,312,863, +36,2017-03-11 14:43:29.457788,487,312,581, +9,2017-03-11 14:43:29.457788,664,718,106, +71,2017-03-11 14:43:29.457788,52,961,52, +54,2017-03-11 14:43:29.457788,528,176,490, +60,2017-03-11 14:43:29.457788,398,914,559, +55,2017-03-11 14:43:29.457788,998,449,478, +12,2017-03-11 14:43:29.457788,902,86,950, +17,2017-03-11 14:43:29.457788,398,814,531, +89,2017-03-11 14:43:29.457788,126,111,978, +79,2017-03-11 14:43:29.457788,830,84,504, +88,2017-03-11 14:43:29.457788,45,557,425, +57,2017-03-11 14:43:29.457788,733,915,175, +13,2017-03-11 14:43:29.457788,829,734,677, +83,2017-03-11 14:43:29.457788,182,155,946, +8,2017-03-11 14:43:29.457788,241,896,252, +64,2017-03-11 14:43:29.457788,710,782,525, +84,2017-03-11 14:43:29.457788,894,503,626, +72,2017-03-11 14:43:29.457788,587,130,605, +63,2017-03-11 14:43:29.457788,687,30,205, +42,2017-03-11 14:43:29.457788,945,380,550, +77,2017-03-11 14:43:29.457788,114,227,600, +30,2017-03-11 14:43:29.457788,382,546,381, +62,2017-03-11 14:43:29.457788,442,632,262, +15,2017-03-11 14:43:29.457788,415,787,988, +31,2017-03-11 14:43:29.457788,290,614,32, +88,2017-03-11 14:43:29.457788,744,637,509, +43,2017-03-11 14:43:29.457788,667,715,849, +61,2017-03-11 14:43:29.457788,95,399,386, +21,2017-03-11 14:43:29.457788,626,985,505, +1,2017-03-11 14:43:29.457788,531,886,630, +97,2017-03-11 14:43:29.457788,518,892,125, +93,2017-03-11 14:43:29.457788,680,113,241, +97,2017-03-11 14:43:29.457788,726,273,847, +47,2017-03-11 14:43:29.457788,910,356,900, +58,2017-03-11 14:43:29.457788,71,750,189, +17,2017-03-11 14:43:29.457788,149,574,375, +77,2017-03-11 14:43:29.457788,560,881,782, +9,2017-03-11 14:43:29.457788,767,412,63, +28,2017-03-11 14:43:29.457788,305,188,217, +98,2017-03-11 14:43:29.457788,300,458,954, +3,2017-03-11 14:43:29.457788,731,802,497, +64,2017-03-11 14:43:29.457788,158,397,217, +23,2017-03-11 14:43:29.457788,147,406,396, +30,2017-03-11 14:43:29.457788,980,771,70, +54,2017-03-11 14:43:29.457788,652,852,630, +42,2017-03-11 14:43:29.457788,265,693,703, +57,2017-03-11 14:43:29.457788,880,920,554, +18,2017-03-11 14:43:29.457788,378,508,208, +11,2017-03-11 14:43:29.457788,310,704,749, +47,2017-03-11 14:43:29.457788,101,966,697, +25,2017-03-11 14:43:29.457788,372,93,543, +35,2017-03-11 14:43:29.457788,864,614,891, +52,2017-03-11 14:43:29.457788,466,521,934, +73,2017-03-11 14:43:29.457788,214,637,300, +9,2017-03-11 14:43:29.457788,557,853,275, +93,2017-03-11 14:43:29.457788,361,483,44, +67,2017-03-11 14:43:29.457788,187,793,139, +29,2017-03-11 14:43:29.457788,758,836,536, +13,2017-03-11 14:43:29.457788,929,79,482, +79,2017-03-11 14:43:29.457788,693,373,308, +16,2017-03-11 14:43:29.457788,895,242,889, +11,2017-03-11 14:43:29.457788,878,188,203, +44,2017-03-11 14:43:29.457788,42,479,370, +40,2017-03-11 14:43:29.457788,961,413,74, +15,2017-03-11 14:43:29.457788,206,212,437, +96,2017-03-11 14:43:29.457788,48,973,95, +98,2017-03-11 14:43:29.457788,52,577,770, +74,2017-03-11 14:43:29.457788,950,78,903, +84,2017-03-11 14:43:29.457788,320,792,954, +20,2017-03-11 14:43:29.457788,981,157,633, +2,2017-03-11 14:43:29.457788,636,3,425, +60,2017-03-11 14:43:29.457788,417,499,746, +62,2017-03-11 14:43:29.457788,711,182,587, +76,2017-03-11 14:43:29.457788,155,682,737, +21,2017-03-11 14:43:29.457788,258,507,952, +21,2017-03-11 14:43:29.457788,585,855,53, +90,2017-03-11 14:43:29.457788,647,7,103, +63,2017-03-11 14:43:29.457788,164,737,650, +80,2017-03-11 14:43:29.457788,740,75,397, +16,2017-03-11 14:43:29.457788,574,143,779, +29,2017-03-11 14:43:29.457788,325,366,45, +48,2017-03-11 14:43:29.457788,48,782,687, +31,2017-03-11 14:43:29.457788,289,639,515, +87,2017-03-11 14:43:29.457788,495,569,778, +14,2017-03-11 14:43:29.457788,576,881,770, +74,2017-03-11 14:43:29.457788,618,420,540, +36,2017-03-11 14:43:29.457788,496,937,515, +7,2017-03-11 14:43:29.457788,79,294,355, +40,2017-03-11 14:43:29.457788,660,400,885, +71,2017-03-11 14:43:29.457788,182,572,15, +47,2017-03-11 14:43:29.457788,212,530,344, +71,2017-03-11 14:43:29.457788,99,122,848, +67,2017-03-11 14:43:29.457788,4,618,415, +62,2017-03-11 14:43:29.457788,38,954,980, +53,2017-03-11 14:43:29.457788,891,494,604, +97,2017-03-11 14:43:29.457788,788,959,375, +45,2017-03-11 14:43:29.457788,359,260,158, +54,2017-03-11 14:43:29.457788,832,173,11, +4,2017-03-11 14:43:29.457788,704,356,750, +80,2017-03-11 14:43:29.457788,478,598,477, +48,2017-03-11 14:43:29.457788,216,892,104, +25,2017-03-11 14:43:29.457788,846,84,789, +74,2017-03-11 14:43:29.457788,578,392,708, +37,2017-03-11 14:43:29.457788,351,83,816, +71,2017-03-11 14:43:29.457788,343,973,251, +17,2017-03-11 14:43:29.457788,146,263,218, +85,2017-03-11 14:43:29.457788,618,968,652, +10,2017-03-11 14:43:29.457788,566,130,578, +78,2017-03-11 14:43:29.457788,22,682,36, +87,2017-03-11 14:43:29.457788,766,825,605, +34,2017-03-11 14:43:29.457788,217,313,710, +57,2017-03-11 14:43:29.457788,396,526,279, +74,2017-03-11 14:43:29.457788,499,530,913, +65,2017-03-11 14:43:29.457788,793,131,495, +41,2017-03-11 14:43:29.457788,99,148,508, +67,2017-03-11 14:43:29.457788,277,86,447, +30,2017-03-11 14:43:29.457788,768,483,166, +53,2017-03-11 14:43:29.457788,308,772,877, +53,2017-03-11 14:43:29.457788,85,588,94, +48,2017-03-11 14:43:29.457788,114,373,219, +61,2017-03-11 14:43:29.457788,903,132,258, +70,2017-03-11 14:43:29.457788,263,753,108, +36,2017-03-11 14:43:29.457788,901,615,28, +18,2017-03-11 14:43:29.457788,701,475,476, +47,2017-03-11 14:43:29.457788,958,643,3, +27,2017-03-11 14:43:29.457788,414,880,791, +50,2017-03-11 14:43:29.457788,468,885,979, +58,2017-03-11 14:43:29.457788,257,198,194, +16,2017-03-11 14:43:29.457788,330,452,857, +59,2017-03-11 14:43:29.457788,205,964,956, +11,2017-03-11 14:43:29.457788,579,984,284, +28,2017-03-11 14:43:29.457788,458,760,750, +42,2017-03-11 14:43:29.457788,403,753,682, +82,2017-03-11 14:43:29.457788,634,473,316, +10,2017-03-11 14:43:29.457788,357,296,684, +61,2017-03-11 14:43:29.457788,494,878,775, +82,2017-03-11 14:43:29.457788,330,632,417, +54,2017-03-11 14:43:29.457788,596,373,642, +18,2017-03-11 14:43:29.457788,357,925,456, +81,2017-03-11 14:43:29.457788,686,206,231, +9,2017-03-11 14:43:29.457788,960,913,906, +59,2017-03-11 14:43:29.457788,386,222,695, +74,2017-03-11 14:43:29.457788,518,379,358, +1,2017-03-11 14:43:29.457788,257,133,836, +59,2017-03-11 14:43:29.457788,764,253,123, +36,2017-03-11 14:43:29.457788,626,764,535, +98,2017-03-11 14:43:29.457788,690,991,797, +38,2017-03-11 14:43:29.457788,197,28,464, +16,2017-03-11 14:43:29.457788,941,370,750, +33,2017-03-11 14:43:29.457788,592,446,70, +11,2017-03-11 14:43:29.457788,825,428,122, +8,2017-03-11 14:43:29.457788,560,957,669, +32,2017-03-11 14:43:29.457788,210,792,684, +84,2017-03-11 14:43:29.457788,556,219,818, +25,2017-03-11 14:43:29.457788,210,615,621, +41,2017-03-11 14:43:29.457788,644,85,564, +58,2017-03-11 14:43:29.457788,455,314,912, +5,2017-03-11 14:43:29.457788,760,982,157, +58,2017-03-11 14:43:29.457788,410,279,667, +97,2017-03-11 14:43:29.457788,236,336,294, +45,2017-03-11 14:43:29.457788,128,979,282, +68,2017-03-11 14:43:29.457788,198,100,930, +41,2017-03-11 14:43:29.457788,716,551,816, +36,2017-03-11 14:43:29.457788,636,380,944, +9,2017-03-11 14:43:29.457788,694,856,137, +45,2017-03-11 14:43:29.457788,838,294,39, +25,2017-03-11 14:43:29.457788,573,706,218, +81,2017-03-11 14:43:29.457788,42,512,256, +17,2017-03-11 14:43:29.457788,491,538,854, +69,2017-03-11 14:43:29.457788,638,784,98, +35,2017-03-11 14:43:29.457788,335,913,713, +97,2017-03-11 14:43:29.457788,293,657,62, +99,2017-03-11 14:43:29.457788,513,199,442, +35,2017-03-11 14:43:29.457788,493,481,599, +7,2017-03-11 14:43:29.457788,187,817,876, +23,2017-03-11 14:43:29.457788,329,132,399, +82,2017-03-11 14:43:29.457788,670,253,509, +31,2017-03-11 14:43:29.457788,37,607,662, +37,2017-03-11 14:43:29.457788,520,375,343, +81,2017-03-11 14:43:29.457788,32,404,800, +54,2017-03-11 14:43:29.457788,603,242,896, +10,2017-03-11 14:43:29.457788,723,495,163, +91,2017-03-11 14:43:29.457788,312,39,139, +64,2017-03-11 14:43:29.457788,171,537,461, +84,2017-03-11 14:43:29.457788,790,971,149, +83,2017-03-11 14:43:29.457788,578,811,199, +10,2017-03-11 14:43:29.457788,186,542,911, +22,2017-03-11 14:43:29.457788,946,712,762, +55,2017-03-11 14:43:29.457788,954,658,647, +68,2017-03-11 14:43:29.457788,154,810,586, +47,2017-03-11 14:43:29.457788,849,724,107, +2,2017-03-11 14:43:29.457788,262,568,862, +5,2017-03-11 14:43:29.457788,538,11,879, +12,2017-03-11 14:43:29.457788,822,78,214, +1,2017-03-11 14:43:29.457788,620,125,225, +57,2017-03-11 14:43:29.457788,837,987,116, +79,2017-03-11 14:43:29.457788,646,762,466, +80,2017-03-11 14:43:29.457788,572,52,265, +42,2017-03-11 14:43:29.457788,777,371,442, +4,2017-03-11 14:43:29.457788,939,304,91, +48,2017-03-11 14:43:29.457788,315,970,593, +14,2017-03-11 14:43:29.457788,48,807,143, +67,2017-03-11 14:43:29.457788,933,368,234, +77,2017-03-11 14:43:29.457788,355,350,559, +0,2017-03-11 14:43:29.457788,112,26,800, +68,2017-03-11 14:43:29.457788,78,65,106, +86,2017-03-11 14:43:29.457788,436,548,894, +37,2017-03-11 14:43:29.457788,852,985,852, +17,2017-03-11 14:43:29.457788,955,445,303, +0,2017-03-11 14:43:29.457788,253,446,671, +19,2017-03-11 14:43:29.457788,814,904,955, +17,2017-03-11 14:43:29.457788,254,514,170, +37,2017-03-11 14:43:29.457788,540,970,51, +62,2017-03-11 14:43:29.457788,35,157,473, +47,2017-03-11 14:43:29.457788,705,367,845, +56,2017-03-11 14:43:29.457788,351,697,724, +31,2017-03-11 14:43:29.457788,142,27,309, +39,2017-03-11 14:43:29.457788,473,979,580, +29,2017-03-11 14:43:29.457788,884,535,457, +14,2017-03-11 14:43:29.457788,48,627,504, +59,2017-03-11 14:43:29.457788,597,555,206, +63,2017-03-11 14:43:29.457788,711,679,102, +42,2017-03-11 14:43:29.457788,45,947,974, +40,2017-03-11 14:43:29.457788,643,698,703, +79,2017-03-11 14:43:29.457788,725,12,180, +20,2017-03-11 14:43:29.457788,991,760,486, +87,2017-03-11 14:43:29.457788,295,943,12, +34,2017-03-11 14:43:29.457788,570,517,931, +17,2017-03-11 14:43:29.457788,71,137,799, +78,2017-03-11 14:43:29.457788,816,901,199, +86,2017-03-11 14:43:29.457788,847,173,258, +49,2017-03-11 14:43:29.457788,871,961,275, +60,2017-03-11 14:43:29.457788,972,455,794, +96,2017-03-11 14:43:29.457788,215,280,838, +51,2017-03-11 14:43:29.457788,223,850,853, +79,2017-03-11 14:43:29.457788,367,785,960, +44,2017-03-11 14:43:29.457788,922,758,220, +74,2017-03-11 14:43:29.457788,659,419,598, +51,2017-03-11 14:43:29.457788,592,856,996, +46,2017-03-11 14:43:29.457788,817,272,59, +79,2017-03-11 14:43:29.457788,727,853,752, +94,2017-03-11 14:43:29.457788,133,590,452, +36,2017-03-11 14:43:29.457788,440,306,149, +81,2017-03-11 14:43:29.457788,90,109,244, +1,2017-03-11 14:43:29.457788,867,465,749, +53,2017-03-11 14:43:29.457788,884,347,32, +48,2017-03-11 14:43:29.457788,203,28,940, +2,2017-03-11 14:43:29.457788,299,999,809, +3,2017-03-11 14:43:29.457788,852,560,969, +99,2017-03-11 14:43:29.457788,150,421,342, +59,2017-03-11 14:43:29.457788,727,491,396, +82,2017-03-11 14:43:29.457788,599,640,829, +47,2017-03-11 14:43:29.457788,105,579,992, +99,2017-03-11 14:43:29.457788,926,24,465, +13,2017-03-11 14:43:29.457788,52,405,149, +35,2017-03-11 14:43:29.457788,404,957,377, +26,2017-03-11 14:43:29.457788,518,346,242, +67,2017-03-11 14:43:29.457788,767,584,258, +49,2017-03-11 14:43:29.457788,75,654,311, +67,2017-03-11 14:43:29.457788,294,141,140, +40,2017-03-11 14:43:29.457788,719,132,388, +64,2017-03-11 14:43:29.457788,156,853,774, +21,2017-03-11 14:43:29.457788,258,923,559, +66,2017-03-11 14:43:29.457788,880,936,918, +40,2017-03-11 14:43:29.457788,282,159,66, +5,2017-03-11 14:43:29.457788,743,324,543, +82,2017-03-11 14:43:29.457788,977,854,492, +27,2017-03-11 14:43:29.457788,995,632,670, +71,2017-03-11 14:43:29.457788,764,58,359, +92,2017-03-11 14:43:29.457788,911,133,128, +17,2017-03-11 14:43:29.457788,56,687,831, +94,2017-03-11 14:43:29.457788,623,749,335, +90,2017-03-11 14:43:29.457788,908,401,954, +65,2017-03-11 14:43:29.457788,724,497,468, +70,2017-03-11 14:43:29.457788,351,960,973, +35,2017-03-11 14:43:29.457788,592,644,60, +36,2017-03-11 14:43:29.457788,702,419,277, +61,2017-03-11 14:43:29.457788,552,405,783, +61,2017-03-11 14:43:29.457788,91,614,544, +71,2017-03-11 14:43:29.457788,363,878,618, +27,2017-03-11 14:43:29.457788,279,572,922, +0,2017-03-11 14:43:29.457788,69,390,705, +42,2017-03-11 14:43:29.457788,350,678,766, +94,2017-03-11 14:43:29.457788,322,825,298, +2,2017-03-11 14:43:29.457788,244,575,637, +80,2017-03-11 14:43:29.457788,980,420,403, +7,2017-03-11 14:43:29.457788,34,947,784, +40,2017-03-11 14:43:29.457788,825,402,668, +10,2017-03-11 14:43:29.457788,974,589,107, +4,2017-03-11 14:43:29.457788,979,812,462, +33,2017-03-11 14:43:29.457788,490,228,271, +81,2017-03-11 14:43:29.457788,53,570,836, +30,2017-03-11 14:43:29.457788,145,474,93, +12,2017-03-11 14:43:29.457788,894,495,195, +93,2017-03-11 14:43:29.457788,442,979,325, +27,2017-03-11 14:43:29.457788,381,993,371, +36,2017-03-11 14:43:29.457788,582,478,398, +56,2017-03-11 14:43:29.457788,289,860,890, +78,2017-03-11 14:43:29.457788,88,162,592, +14,2017-03-11 14:43:29.457788,731,428,439, +88,2017-03-11 14:43:29.457788,902,531,0, +80,2017-03-11 14:43:29.457788,27,195,724, +47,2017-03-11 14:43:29.457788,174,49,736, +55,2017-03-11 14:43:29.457788,42,106,910, +62,2017-03-11 14:43:29.457788,584,307,185, +87,2017-03-11 14:43:29.457788,167,75,653, +26,2017-03-11 14:43:29.457788,237,244,397, +97,2017-03-11 14:43:29.457788,672,835,844, +57,2017-03-11 14:43:29.457788,367,844,370, +39,2017-03-11 14:43:29.457788,39,94,862, +21,2017-03-11 14:43:29.457788,143,598,767, +18,2017-03-11 14:43:29.457788,704,677,808, +29,2017-03-11 14:43:29.457788,984,993,161, +15,2017-03-11 14:43:29.457788,68,813,407, +30,2017-03-11 14:43:29.457788,57,804,273, +73,2017-03-11 14:43:29.457788,640,117,304, +1,2017-03-11 14:43:29.457788,961,673,399, +100,2017-03-11 14:43:29.457788,767,261,213, +91,2017-03-11 14:43:29.457788,859,980,94, +56,2017-03-11 14:43:29.457788,657,903,850, +64,2017-03-11 14:43:29.457788,895,11,793, +96,2017-03-11 14:43:29.457788,824,200,268, +88,2017-03-11 14:43:29.457788,5,540,611, +64,2017-03-11 14:43:29.457788,657,915,651, +62,2017-03-11 14:43:29.457788,588,50,618, +36,2017-03-11 14:43:29.457788,311,830,265, +17,2017-03-11 14:43:29.457788,810,360,733, +47,2017-03-11 14:43:29.457788,262,583,108, +16,2017-03-11 14:43:29.457788,594,901,121, +42,2017-03-11 14:43:29.457788,101,389,299, +11,2017-03-11 14:43:29.457788,929,910,750, +59,2017-03-11 14:43:29.457788,824,401,203, +41,2017-03-11 14:43:29.457788,451,821,768, +76,2017-03-11 14:43:29.457788,651,33,932, +46,2017-03-11 14:43:29.457788,392,665,928, +65,2017-03-11 14:43:29.457788,248,35,812, +84,2017-03-11 14:43:29.457788,936,933,259, +4,2017-03-11 14:43:29.457788,322,558,143, +25,2017-03-11 14:43:29.457788,468,893,837, +29,2017-03-11 14:43:29.457788,294,40,705, +74,2017-03-11 14:43:29.457788,861,473,506, +51,2017-03-11 14:43:29.457788,506,439,973, +90,2017-03-11 14:43:29.457788,104,900,553, +35,2017-03-11 14:43:29.457788,936,365,194, +87,2017-03-11 14:43:29.457788,299,454,910, +62,2017-03-11 14:43:29.457788,12,53,871, +48,2017-03-11 14:43:29.457788,946,708,773, +24,2017-03-11 14:43:29.457788,748,478,984, +61,2017-03-11 14:43:29.457788,951,490,120, +46,2017-03-11 14:43:29.457788,929,93,355, +3,2017-03-11 14:43:29.457788,994,908,385, +93,2017-03-11 14:43:29.457788,273,579,802, +57,2017-03-11 14:43:29.457788,33,711,192, +5,2017-03-11 14:43:29.457788,764,63,525, +71,2017-03-11 14:43:29.457788,771,298,949, +52,2017-03-11 14:43:29.457788,776,933,127, +73,2017-03-11 14:43:29.457788,424,248,183, +35,2017-03-11 14:43:29.457788,341,538,386, +33,2017-03-11 14:43:29.457788,445,771,264, +72,2017-03-11 14:43:29.457788,350,66,289, +38,2017-03-11 14:43:29.457788,777,481,429, +54,2017-03-11 14:43:29.457788,544,954,250, +32,2017-03-11 14:43:29.457788,252,199,834, +3,2017-03-11 14:43:29.457788,132,961,754, +56,2017-03-11 14:43:29.457788,209,937,909, +55,2017-03-11 14:43:29.457788,475,294,885, +92,2017-03-11 14:43:29.457788,65,149,638, +42,2017-03-11 14:43:29.457788,215,928,800, +99,2017-03-11 14:43:29.457788,409,228,532, +95,2017-03-11 14:43:29.457788,183,782,269, +43,2017-03-11 14:43:29.457788,981,103,463, +11,2017-03-11 14:43:29.457788,64,217,670, +27,2017-03-11 14:43:29.457788,154,578,824, +63,2017-03-11 14:43:29.457788,873,709,550, +94,2017-03-11 14:43:29.457788,857,188,354, +7,2017-03-11 14:43:29.457788,116,153,63, +53,2017-03-11 14:43:29.457788,382,595,478, +56,2017-03-11 14:43:29.457788,377,747,999, +36,2017-03-11 14:43:29.457788,850,462,471, +91,2017-03-11 14:43:29.457788,679,141,187, +83,2017-03-11 14:43:29.457788,719,11,463, +59,2017-03-11 14:43:29.457788,719,13,529, +58,2017-03-11 14:43:29.457788,201,883,649, +32,2017-03-11 14:43:29.457788,36,712,842, +42,2017-03-11 14:43:29.457788,307,321,982, +68,2017-03-11 14:43:29.457788,68,981,41, +92,2017-03-11 14:43:29.457788,443,513,831, +12,2017-03-11 14:43:29.457788,654,18,955, +37,2017-03-11 14:43:29.457788,29,417,964, +75,2017-03-11 14:43:29.457788,430,494,325, +63,2017-03-11 14:43:29.457788,377,973,949, +41,2017-03-11 14:43:29.457788,685,791,831, +99,2017-03-11 14:43:29.457788,112,814,676, +18,2017-03-11 14:43:29.457788,795,717,97, +24,2017-03-11 14:43:29.457788,230,928,359, +88,2017-03-11 14:43:29.457788,946,314,256, +97,2017-03-11 14:43:29.457788,731,220,722, +16,2017-03-11 14:43:29.457788,714,47,792, +9,2017-03-11 14:43:29.457788,20,741,503, +71,2017-03-11 14:43:29.457788,532,335,698, +64,2017-03-11 14:43:29.457788,148,374,824, +94,2017-03-11 14:43:29.457788,91,920,181, +32,2017-03-11 14:43:29.457788,848,540,205, +79,2017-03-11 14:43:29.457788,854,461,768, +58,2017-03-11 14:43:29.457788,681,490,746, +39,2017-03-11 14:43:29.457788,537,539,485, +56,2017-03-11 14:43:29.457788,280,988,263, +81,2017-03-11 14:43:29.457788,323,962,456, +47,2017-03-11 14:43:29.457788,336,280,414, +43,2017-03-11 14:43:29.457788,200,594,748, +5,2017-03-11 14:43:29.457788,134,953,842, +99,2017-03-11 14:43:29.457788,414,610,573, +9,2017-03-11 14:43:29.457788,100,319,489, +64,2017-03-11 14:43:29.457788,858,973,195, +14,2017-03-11 14:43:29.457788,961,458,949, +28,2017-03-11 14:43:29.457788,420,406,755, +76,2017-03-11 14:43:29.457788,686,168,182, +89,2017-03-11 14:43:29.457788,763,930,935, +90,2017-03-11 14:43:29.457788,883,777,885, +30,2017-03-11 14:43:29.457788,387,458,391, +49,2017-03-11 14:43:29.457788,777,880,125, +63,2017-03-11 14:43:29.457788,854,320,772, +82,2017-03-11 14:43:29.457788,778,722,99, +20,2017-03-11 14:43:29.457788,128,854,953, +81,2017-03-11 14:43:29.457788,22,135,699, +78,2017-03-11 14:43:29.457788,65,634,681, +95,2017-03-11 14:43:29.457788,411,566,245, +80,2017-03-11 14:43:29.457788,24,637,285, +80,2017-03-11 14:43:29.457788,517,410,436, +37,2017-03-11 14:43:29.457788,729,209,185, +51,2017-03-11 14:43:29.457788,931,284,705, +6,2017-03-11 14:43:29.457788,138,658,872, +16,2017-03-11 14:43:29.457788,793,571,944, +86,2017-03-11 14:43:29.457788,205,625,807, +62,2017-03-11 14:43:29.457788,191,52,414, +22,2017-03-11 14:43:29.457788,689,699,17, +21,2017-03-11 14:43:29.457788,109,453,576, +84,2017-03-11 14:43:29.457788,662,761,346, +59,2017-03-11 14:43:29.457788,46,51,652, +18,2017-03-11 14:43:29.457788,709,524,344, +50,2017-03-11 14:43:29.457788,95,288,360, +30,2017-03-11 14:43:29.457788,913,167,916, +10,2017-03-11 14:43:29.457788,219,331,319, +91,2017-03-11 14:43:29.457788,30,336,114, +14,2017-03-11 14:43:29.457788,790,690,978, +45,2017-03-11 14:43:29.457788,452,324,46, +50,2017-03-11 14:43:29.457788,375,697,682, +8,2017-03-11 14:43:29.457788,221,25,585, +32,2017-03-11 14:43:29.457788,313,945,616, +23,2017-03-11 14:43:29.457788,112,533,329, +33,2017-03-11 14:43:29.457788,864,649,240, +89,2017-03-11 14:43:29.457788,985,354,33, +78,2017-03-11 14:43:29.457788,44,10,227, +50,2017-03-11 14:43:29.457788,334,273,994, +71,2017-03-11 14:43:29.457788,970,676,792, +19,2017-03-11 14:43:29.457788,701,377,508, +1,2017-03-11 14:43:29.457788,321,124,239, +43,2017-03-11 14:43:29.457788,657,568,765, +52,2017-03-11 14:43:29.457788,217,4,414, +20,2017-03-11 14:43:29.457788,358,447,978, +40,2017-03-11 14:43:29.457788,457,205,899, +79,2017-03-11 14:43:29.457788,478,893,500, +45,2017-03-11 14:43:29.457788,569,291,640, +27,2017-03-11 14:43:29.457788,668,148,283, +99,2017-03-11 14:43:29.457788,272,522,423, +93,2017-03-11 14:43:29.457788,90,187,450, +31,2017-03-11 14:43:29.457788,191,864,510, +55,2017-03-11 14:43:29.457788,311,488,953, +77,2017-03-11 14:43:29.457788,693,852,559, +17,2017-03-11 14:43:29.457788,745,58,619, +31,2017-03-11 14:43:29.457788,350,259,583, +2,2017-03-11 14:43:29.457788,406,866,7, +68,2017-03-11 14:43:29.457788,388,429,607, +48,2017-03-11 14:43:29.457788,617,57,786, +81,2017-03-11 14:43:29.457788,921,296,358, +23,2017-03-11 14:43:29.457788,784,310,1000, +48,2017-03-11 14:43:29.457788,162,558,647, +91,2017-03-11 14:43:29.457788,617,266,220, +97,2017-03-11 14:43:29.457788,525,802,984, +93,2017-03-11 14:43:29.457788,668,990,609, +6,2017-03-11 14:43:29.457788,420,216,534, +4,2017-03-11 14:43:29.457788,273,320,844, +19,2017-03-11 14:43:29.457788,616,202,427, +40,2017-03-11 14:43:29.457788,513,426,876, +67,2017-03-11 14:43:29.457788,985,523,581, +60,2017-03-11 14:43:29.457788,789,801,568, +31,2017-03-11 14:43:29.457788,604,551,244, +27,2017-03-11 14:43:29.457788,542,853,328, +96,2017-03-11 14:43:29.457788,69,862,998, +34,2017-03-11 14:43:29.457788,182,843,538, +80,2017-03-11 14:43:29.457788,45,964,197, +56,2017-03-11 14:43:29.457788,391,73,233, +38,2017-03-11 14:43:29.457788,596,814,977, +39,2017-03-11 14:43:29.457788,615,545,699, +22,2017-03-11 14:43:29.457788,96,943,491, +64,2017-03-11 14:43:29.457788,796,819,600, +87,2017-03-11 14:43:29.457788,681,598,209, +86,2017-03-11 14:43:29.457788,440,746,661, +49,2017-03-11 14:43:29.457788,711,858,43, +10,2017-03-11 14:43:29.457788,931,276,477, +53,2017-03-11 14:43:29.457788,90,454,913, +71,2017-03-11 14:43:29.457788,999,612,925, +10,2017-03-11 14:43:29.457788,555,416,733, +35,2017-03-11 14:43:29.457788,235,333,216, +92,2017-03-11 14:43:29.457788,931,425,779, +37,2017-03-11 14:43:29.457788,171,440,856, +88,2017-03-11 14:43:29.457788,298,899,983, +23,2017-03-11 14:43:29.457788,175,460,756, +26,2017-03-11 14:43:29.457788,914,669,970, +91,2017-03-11 14:43:29.457788,281,894,9, +84,2017-03-11 14:43:29.457788,310,742,186, +55,2017-03-11 14:43:29.457788,75,403,462, +1,2017-03-11 14:43:29.457788,828,241,377, +100,2017-03-11 14:43:29.457788,681,233,881, +98,2017-03-11 14:43:29.457788,132,864,207, +31,2017-03-11 14:43:29.457788,324,964,571, +24,2017-03-11 14:43:29.457788,633,541,152, +91,2017-03-11 14:43:29.457788,435,160,750, +75,2017-03-11 14:43:29.457788,902,936,291, +98,2017-03-11 14:43:29.457788,339,752,983, +17,2017-03-11 14:43:29.457788,993,359,166, +67,2017-03-11 14:43:29.457788,592,47,652, +72,2017-03-11 14:43:29.457788,911,859,30, +24,2017-03-11 14:43:29.457788,823,601,474, +46,2017-03-11 14:43:29.457788,142,625,369, +58,2017-03-11 14:43:29.457788,786,119,322, +69,2017-03-11 14:43:29.457788,55,613,665, +39,2017-03-11 14:43:29.457788,365,648,561, +36,2017-03-11 14:43:29.457788,8,726,31, +60,2017-03-11 14:43:29.457788,773,683,323, +68,2017-03-11 14:43:29.457788,542,353,919, +36,2017-03-11 14:43:29.457788,954,393,820, +10,2017-03-11 14:43:29.457788,18,190,673, +80,2017-03-11 14:43:29.457788,308,995,492, +36,2017-03-11 14:43:29.457788,608,158,757, +97,2017-03-11 14:43:29.457788,806,318,330, +81,2017-03-11 14:43:29.457788,44,361,413, +82,2017-03-11 14:43:29.457788,44,736,501, +59,2017-03-11 14:43:29.457788,90,420,951, +4,2017-03-11 14:43:29.457788,813,771,141, +83,2017-03-11 14:43:29.457788,961,814,636, +27,2017-03-11 14:43:29.457788,809,128,633, +42,2017-03-11 14:43:29.457788,286,390,389, +9,2017-03-11 14:43:29.457788,707,719,906, +75,2017-03-11 14:43:29.457788,80,319,569, +12,2017-03-11 14:43:29.457788,55,70,711, +15,2017-03-11 14:43:29.457788,490,663,190, +30,2017-03-11 14:43:29.457788,434,330,135, +40,2017-03-11 14:43:29.457788,144,771,664, +95,2017-03-11 14:43:29.457788,899,297,369, +18,2017-03-11 14:43:29.457788,687,758,276, +39,2017-03-11 14:43:29.457788,477,182,146, +56,2017-03-11 14:43:29.457788,501,714,682, +56,2017-03-11 14:43:29.457788,784,393,701, +27,2017-03-11 14:43:29.457788,56,891,578, +49,2017-03-11 14:43:29.457788,221,713,885, +36,2017-03-11 14:43:29.457788,484,549,317, +38,2017-03-11 14:43:29.457788,846,686,566, +53,2017-03-11 14:43:29.457788,444,843,928, +92,2017-03-11 14:43:29.457788,25,74,478, +53,2017-03-11 14:43:29.457788,788,159,81, +57,2017-03-11 14:43:29.457788,552,783,847, +61,2017-03-11 14:43:29.457788,673,425,97, +89,2017-03-11 14:43:29.457788,138,982,259, +62,2017-03-11 14:43:29.457788,531,577,3, +38,2017-03-11 14:43:29.457788,263,570,911, +71,2017-03-11 14:43:29.457788,413,839,628, +44,2017-03-11 14:43:29.457788,912,105,962, +70,2017-03-11 14:43:29.457788,264,44,272, +82,2017-03-11 14:43:29.457788,826,119,424, +50,2017-03-11 14:43:29.457788,544,522,394, +68,2017-03-11 14:43:29.457788,504,653,303, +3,2017-03-11 14:43:29.457788,230,307,412, +49,2017-03-11 14:43:29.457788,876,323,199, +29,2017-03-11 14:43:29.457788,162,827,726, +7,2017-03-11 14:43:29.457788,932,688,774, +20,2017-03-11 14:43:29.457788,732,47,13, +56,2017-03-11 14:43:29.457788,166,437,57, +71,2017-03-11 14:43:29.457788,959,451,391, +46,2017-03-11 14:43:29.457788,104,694,497, +33,2017-03-11 14:43:29.457788,1,910,826, +88,2017-03-11 14:43:29.457788,233,25,166, +39,2017-03-11 14:43:29.457788,852,892,469, +78,2017-03-11 14:43:29.457788,581,243,981, +31,2017-03-11 14:43:29.457788,290,994,870, +46,2017-03-11 14:43:29.457788,432,928,165, +39,2017-03-11 14:43:29.457788,379,556,853, +48,2017-03-11 14:43:29.457788,251,351,816, +25,2017-03-11 14:43:29.457788,261,642,129, +49,2017-03-11 14:43:29.457788,667,296,888, +52,2017-03-11 14:43:29.457788,188,357,304, +77,2017-03-11 14:43:29.457788,600,285,81, +89,2017-03-11 14:43:29.457788,280,952,345, +71,2017-03-11 14:43:29.457788,879,510,102, +26,2017-03-11 14:43:29.457788,66,956,741, +32,2017-03-11 14:43:29.457788,307,557,569, +57,2017-03-11 14:43:29.457788,199,698,61, +87,2017-03-11 14:43:29.457788,994,949,387, +18,2017-03-11 14:43:29.457788,306,691,951, +91,2017-03-11 14:43:29.457788,976,32,795, +26,2017-03-11 14:43:29.457788,983,139,968, +86,2017-03-11 14:43:29.457788,649,70,121, +72,2017-03-11 14:43:29.457788,25,862,32, +33,2017-03-11 14:43:29.457788,419,601,899, +62,2017-03-11 14:43:29.457788,299,960,485, +29,2017-03-11 14:43:29.457788,909,872,474, +21,2017-03-11 14:43:29.457788,563,425,120, +54,2017-03-11 14:43:29.457788,457,915,795, +44,2017-03-11 14:43:29.457788,55,763,303, +70,2017-03-11 14:43:29.457788,832,424,419, +86,2017-03-11 14:43:29.457788,286,451,190, +70,2017-03-11 14:43:29.457788,52,89,323, +35,2017-03-11 14:43:29.457788,50,808,643, +96,2017-03-11 14:43:29.457788,680,117,173, +24,2017-03-11 14:43:29.457788,542,294,782, +100,2017-03-11 14:43:29.457788,209,577,438, +26,2017-03-11 14:43:29.457788,339,741,967, +17,2017-03-11 14:43:29.457788,165,386,30, +45,2017-03-11 14:43:29.457788,837,220,155, +89,2017-03-11 14:43:29.457788,309,479,239, +36,2017-03-11 14:43:29.457788,287,882,317, +97,2017-03-11 14:43:29.457788,999,491,210, +54,2017-03-11 14:43:29.457788,785,992,539, +99,2017-03-11 14:43:29.457788,568,978,257, +91,2017-03-11 14:43:29.457788,719,224,80, +88,2017-03-11 14:43:29.457788,611,109,334, +45,2017-03-11 14:43:29.457788,329,490,336, +64,2017-03-11 14:43:29.457788,968,576,996, +26,2017-03-11 14:43:29.457788,457,313,223, +46,2017-03-11 14:43:29.457788,804,433,997, +59,2017-03-11 14:43:29.457788,425,536,582, +99,2017-03-11 14:43:29.457788,514,839,901, +23,2017-03-11 14:43:29.457788,63,981,116, +67,2017-03-11 14:43:29.457788,90,450,122, +42,2017-03-11 14:43:29.457788,940,458,56, +91,2017-03-11 14:43:29.457788,34,52,164, +49,2017-03-11 14:43:29.457788,366,386,948, +17,2017-03-11 14:43:29.457788,819,945,758, +24,2017-03-11 14:43:29.457788,481,341,237, +100,2017-03-11 14:43:29.457788,180,138,228, +24,2017-03-11 14:43:29.457788,119,344,917, +21,2017-03-11 14:43:29.457788,794,39,627, +73,2017-03-11 14:43:29.457788,497,683,642, +53,2017-03-11 14:43:29.457788,735,806,22, +10,2017-03-11 14:43:29.457788,192,970,271, +1,2017-03-11 14:43:29.457788,914,29,256, +40,2017-03-11 14:43:29.457788,370,493,391, +55,2017-03-11 14:43:29.457788,632,619,792, +75,2017-03-11 14:43:29.457788,963,709,959, +76,2017-03-11 14:43:29.457788,748,586,491, +25,2017-03-11 14:43:29.457788,269,134,776, +0,2017-03-11 14:43:29.457788,940,798,105, +13,2017-03-11 14:43:29.457788,767,376,144, +68,2017-03-11 14:43:29.457788,405,400,77, +77,2017-03-11 14:43:29.457788,893,468,324, +52,2017-03-11 14:43:29.457788,87,116,275, +5,2017-03-11 14:43:29.457788,826,234,807, +57,2017-03-11 14:43:29.457788,820,298,819, +9,2017-03-11 14:43:29.457788,432,595,93, +37,2017-03-11 14:43:29.457788,392,198,504, +16,2017-03-11 14:43:29.457788,573,648,841, +98,2017-03-11 14:43:29.457788,48,918,753, +94,2017-03-11 14:43:29.457788,386,76,466, +47,2017-03-11 14:43:29.457788,193,741,522, +2,2017-03-11 14:43:29.457788,975,329,592, +80,2017-03-11 14:43:29.457788,627,411,885, +6,2017-03-11 14:43:29.457788,6,978,430, +40,2017-03-11 14:43:29.457788,176,934,558, +75,2017-03-11 14:43:29.457788,581,398,727, +63,2017-03-11 14:43:29.457788,316,480,570, +70,2017-03-11 14:43:29.457788,556,36,175, +75,2017-03-11 14:43:29.457788,777,697,767, +75,2017-03-11 14:43:29.457788,26,359,548, +65,2017-03-11 14:43:29.457788,771,432,711, +78,2017-03-11 14:43:29.457788,410,141,175, +59,2017-03-11 14:43:29.457788,74,732,334, +66,2017-03-11 14:43:29.457788,131,62,285, +45,2017-03-11 14:43:29.457788,541,855,150, +10,2017-03-11 14:43:29.457788,891,325,846, +67,2017-03-11 14:43:29.457788,22,613,419, +5,2017-03-11 14:43:29.457788,972,967,701, +74,2017-03-11 14:43:29.457788,399,412,519, +81,2017-03-11 14:43:29.457788,553,694,394, +63,2017-03-11 14:43:29.457788,427,729,283, +56,2017-03-11 14:43:29.457788,790,568,4, +33,2017-03-11 14:43:29.457788,423,154,429, +31,2017-03-11 14:43:29.457788,479,276,981, +50,2017-03-11 14:43:29.457788,889,400,549, +86,2017-03-11 14:43:29.457788,367,250,604, +77,2017-03-11 14:43:29.457788,661,124,575, +21,2017-03-11 14:43:29.457788,818,970,841, +24,2017-03-11 14:43:29.457788,698,125,802, +49,2017-03-11 14:43:29.457788,692,806,821, +12,2017-03-11 14:43:29.457788,960,250,429, +44,2017-03-11 14:43:29.457788,526,409,940, +41,2017-03-11 14:43:29.457788,809,488,276, +18,2017-03-11 14:43:29.457788,738,880,943, +40,2017-03-11 14:43:29.457788,4,518,614, +82,2017-03-11 14:43:29.457788,488,455,67, +19,2017-03-11 14:43:29.457788,580,869,675, +27,2017-03-11 14:43:29.457788,675,496,387, +63,2017-03-11 14:43:29.457788,746,816,74, +27,2017-03-11 14:43:29.457788,225,14,687, +3,2017-03-11 14:43:29.457788,502,963,211, +24,2017-03-11 14:43:29.457788,843,154,639, +85,2017-03-11 14:43:29.457788,673,253,670, +16,2017-03-11 14:43:29.457788,708,736,347, +29,2017-03-11 14:43:29.457788,605,22,559, +28,2017-03-11 14:43:29.457788,518,947,915, +26,2017-03-11 14:43:29.457788,762,988,536, +99,2017-03-11 14:43:29.457788,2,223,22, +50,2017-03-11 14:43:29.457788,186,234,744, +3,2017-03-11 14:43:29.457788,388,383,876, +6,2017-03-11 14:43:29.457788,636,546,221, +34,2017-03-11 14:43:29.457788,282,568,631, +89,2017-03-11 14:43:29.457788,590,190,167, +11,2017-03-11 14:43:29.457788,136,81,371, +90,2017-03-11 14:43:29.457788,70,908,886, +7,2017-03-11 14:43:29.457788,130,908,576, +32,2017-03-11 14:43:29.457788,142,320,345, +53,2017-03-11 14:43:29.457788,703,221,590, +34,2017-03-11 14:43:29.457788,767,811,682, +5,2017-03-11 14:43:29.457788,379,312,937, +97,2017-03-11 14:43:29.457788,502,104,76, +64,2017-03-11 14:43:29.457788,185,447,537, +26,2017-03-11 14:43:29.457788,355,423,327, +48,2017-03-11 14:43:29.457788,331,903,801, +47,2017-03-11 14:43:29.457788,223,146,3, +93,2017-03-11 14:43:29.457788,367,593,264, +13,2017-03-11 14:43:29.457788,404,946,184, +78,2017-03-11 14:43:29.457788,258,121,751, +76,2017-03-11 14:43:29.457788,225,827,398, +41,2017-03-11 14:43:29.457788,274,935,666, +63,2017-03-11 14:43:29.457788,358,993,113, +69,2017-03-11 14:43:29.457788,896,914,162, +12,2017-03-11 14:43:29.457788,60,165,45, +43,2017-03-11 14:43:29.457788,759,309,562, +16,2017-03-11 14:43:29.457788,255,746,946, +51,2017-03-11 14:43:29.457788,867,697,272, +9,2017-03-11 14:43:29.457788,523,670,503, +80,2017-03-11 14:43:29.457788,605,168,425, +96,2017-03-11 14:43:29.457788,161,539,652, +6,2017-03-11 14:43:29.457788,453,815,177, +51,2017-03-11 14:43:29.457788,980,222,941, +74,2017-03-11 14:43:29.457788,531,503,901, +79,2017-03-11 14:43:29.457788,249,847,299, +12,2017-03-11 14:43:29.457788,544,571,209, +7,2017-03-11 14:43:29.457788,241,712,864, +85,2017-03-11 14:43:29.457788,880,289,809, +4,2017-03-11 14:43:29.457788,828,461,99, +28,2017-03-11 14:43:29.457788,276,276,795, +26,2017-03-11 14:43:29.457788,498,736,994, +3,2017-03-11 14:43:29.457788,239,896,815, +49,2017-03-11 14:43:29.457788,743,114,605, +29,2017-03-11 14:43:29.457788,685,814,353, +93,2017-03-11 14:43:29.457788,526,217,773, +41,2017-03-11 14:43:29.457788,506,582,447, +33,2017-03-11 14:43:29.457788,43,546,615, +32,2017-03-11 14:43:29.457788,822,410,575, +32,2017-03-11 14:43:29.457788,145,570,348, +38,2017-03-11 14:43:29.457788,465,163,872, +21,2017-03-11 14:43:29.457788,277,477,494, +96,2017-03-11 14:43:29.457788,291,848,887, +82,2017-03-11 14:43:29.457788,64,660,222, +57,2017-03-11 14:43:29.457788,242,669,905, +29,2017-03-11 14:43:29.457788,215,520,604, +4,2017-03-11 14:43:29.457788,929,180,356, +7,2017-03-11 14:43:29.457788,749,704,459, +21,2017-03-11 14:43:29.457788,867,331,423, +14,2017-03-11 14:43:29.457788,807,917,104, +10,2017-03-11 14:43:29.457788,765,992,914, +83,2017-03-11 14:43:29.457788,652,136,400, +89,2017-03-11 14:43:29.457788,805,304,178, +2,2017-03-11 14:43:29.457788,824,783,55, +75,2017-03-11 14:43:29.457788,962,411,828, +71,2017-03-11 14:43:29.457788,115,287,926, +98,2017-03-11 14:43:29.457788,618,349,125, +43,2017-03-11 14:43:29.457788,266,229,523, +3,2017-03-11 14:43:29.457788,221,437,860, +87,2017-03-11 14:43:29.457788,573,260,766, +38,2017-03-11 14:43:29.457788,564,944,397, +39,2017-03-11 14:43:29.457788,727,452,142, +69,2017-03-11 14:43:29.457788,863,970,401, +98,2017-03-11 14:43:29.457788,257,327,958, +87,2017-03-11 14:43:29.457788,676,83,300, +94,2017-03-11 14:43:29.457788,312,823,974, +53,2017-03-11 14:43:29.457788,260,834,405, +83,2017-03-11 14:43:29.457788,94,171,210, +66,2017-03-11 14:43:29.457788,115,607,47, +84,2017-03-11 14:43:29.457788,58,188,531, +92,2017-03-11 14:43:29.457788,158,932,898, +41,2017-03-11 14:43:29.457788,259,857,289, +94,2017-03-11 14:43:29.457788,939,588,878, +25,2017-03-11 14:43:29.457788,411,852,784, +67,2017-03-11 14:43:29.457788,687,189,503, +78,2017-03-11 14:43:29.457788,359,714,439, +47,2017-03-11 14:43:29.457788,320,486,316, +38,2017-03-11 14:43:29.457788,674,847,300, +83,2017-03-11 14:43:29.457788,779,198,246, +4,2017-03-11 14:43:29.457788,55,535,974, +99,2017-03-11 14:43:29.457788,123,852,245, +53,2017-03-11 14:43:29.457788,705,29,205, +39,2017-03-11 14:43:29.457788,218,708,172, +58,2017-03-11 14:43:29.457788,422,611,51, +74,2017-03-11 14:43:29.457788,97,367,121, +77,2017-03-11 14:43:29.457788,214,421,602, +99,2017-03-11 14:43:29.457788,619,848,31, +67,2017-03-11 14:43:29.457788,383,5,667, +51,2017-03-11 14:43:29.457788,857,912,40, +56,2017-03-11 14:43:29.457788,941,245,953, +16,2017-03-11 14:43:29.457788,954,125,736, +38,2017-03-11 14:43:29.457788,736,788,118, +83,2017-03-11 14:43:29.457788,155,238,603, +37,2017-03-11 14:43:29.457788,659,205,361, +28,2017-03-11 14:43:29.457788,53,391,951, +44,2017-03-11 14:43:29.457788,396,618,942, +25,2017-03-11 14:43:29.457788,530,982,815, +47,2017-03-11 14:43:29.457788,227,768,630, +18,2017-03-11 14:43:29.457788,893,367,556, +63,2017-03-11 14:43:29.457788,155,674,463, +31,2017-03-11 14:43:29.457788,912,66,677, +57,2017-03-11 14:43:29.457788,272,38,849, +32,2017-03-11 14:43:29.457788,429,800,761, +82,2017-03-11 14:43:29.457788,417,703,78, +95,2017-03-11 14:43:29.457788,685,892,418, +91,2017-03-11 14:43:29.457788,660,49,93, +55,2017-03-11 14:43:29.457788,415,649,183, +57,2017-03-11 14:43:29.457788,323,646,879, +24,2017-03-11 14:43:29.457788,713,556,807, +98,2017-03-11 14:43:29.457788,594,656,309, +2,2017-03-11 14:43:29.457788,455,70,848, +87,2017-03-11 14:43:29.457788,773,925,819, +46,2017-03-11 14:43:29.457788,818,238,370, +48,2017-03-11 14:43:29.457788,286,463,32, +70,2017-03-11 14:43:29.457788,112,215,272, +43,2017-03-11 14:43:29.457788,861,151,670, +57,2017-03-11 14:43:29.457788,707,477,558, +30,2017-03-11 14:43:29.457788,133,868,325, +59,2017-03-11 14:43:29.457788,938,173,461, +71,2017-03-11 14:43:29.457788,98,280,168, +92,2017-03-11 14:43:29.457788,518,538,394, +80,2017-03-11 14:43:29.457788,1,425,506, +11,2017-03-11 14:43:29.457788,640,777,548, +50,2017-03-11 14:43:29.457788,928,218,76, +63,2017-03-11 14:43:29.457788,695,634,936, +83,2017-03-11 14:43:29.457788,502,261,416, +44,2017-03-11 14:43:29.457788,433,877,150, +53,2017-03-11 14:43:29.457788,158,319,447, +68,2017-03-11 14:43:29.457788,857,841,480, +86,2017-03-11 14:43:29.457788,266,985,970, +91,2017-03-11 14:43:29.457788,763,518,408, +69,2017-03-11 14:43:29.457788,736,483,325, +43,2017-03-11 14:43:29.457788,118,261,259, +62,2017-03-11 14:43:29.457788,522,675,59, +96,2017-03-11 14:43:29.457788,553,209,486, +71,2017-03-11 14:43:29.457788,528,933,386, +39,2017-03-11 14:43:29.457788,774,866,243, +4,2017-03-11 14:43:29.457788,851,213,946, +61,2017-03-11 14:43:29.457788,731,353,304, +47,2017-03-11 14:43:29.457788,837,629,897, +95,2017-03-11 14:43:29.457788,890,156,574, +41,2017-03-11 14:43:29.457788,832,633,368, +38,2017-03-11 14:43:29.457788,842,854,95, +37,2017-03-11 14:43:29.457788,788,481,755, +56,2017-03-11 14:43:29.457788,347,998,601, +20,2017-03-11 14:43:29.457788,211,547,812, +94,2017-03-11 14:43:29.457788,900,116,408, +74,2017-03-11 14:43:29.457788,745,305,692, +64,2017-03-11 14:43:29.457788,461,265,48, +29,2017-03-11 14:43:29.457788,898,416,677, +74,2017-03-11 14:43:29.457788,270,772,111, +6,2017-03-11 14:43:29.457788,253,866,619, +60,2017-03-11 14:43:29.457788,864,220,797, +8,2017-03-11 14:43:29.457788,767,609,17, +67,2017-03-11 14:43:29.457788,724,424,404, +47,2017-03-11 14:43:29.457788,729,96,104, +19,2017-03-11 14:43:29.457788,361,152,483, +26,2017-03-11 14:43:29.457788,568,160,1000, +84,2017-03-11 14:43:29.457788,931,110,895, +18,2017-03-11 14:43:29.457788,976,513,783, +84,2017-03-11 14:43:29.457788,733,580,915, +50,2017-03-11 14:43:29.457788,189,932,167, +91,2017-03-11 14:43:29.457788,356,572,382, +9,2017-03-11 14:43:29.457788,668,486,276, +3,2017-03-11 14:43:29.457788,638,759,288, +21,2017-03-11 14:43:29.457788,918,288,43, +85,2017-03-11 14:43:29.457788,398,938,34, +37,2017-03-11 14:43:29.457788,451,817,215, +18,2017-03-11 14:43:29.457788,397,130,685, +59,2017-03-11 14:43:29.457788,62,852,499, +42,2017-03-11 14:43:29.457788,424,881,504, +9,2017-03-11 14:43:29.457788,368,779,121, +1,2017-03-11 14:43:29.457788,538,409,212, +46,2017-03-11 14:43:29.457788,697,255,307, +10,2017-03-11 14:43:29.457788,193,341,469, +64,2017-03-11 14:43:29.457788,158,684,829, +56,2017-03-11 14:43:29.457788,814,514,141, +88,2017-03-11 14:43:29.457788,367,641,294, +79,2017-03-11 14:43:29.457788,522,797,883, +89,2017-03-11 14:43:29.457788,577,3,895, +12,2017-03-11 14:43:29.457788,413,107,572, +11,2017-03-11 14:43:29.457788,362,878,205, +56,2017-03-11 14:43:29.457788,219,674,200, +38,2017-03-11 14:43:29.457788,358,30,932, +17,2017-03-11 14:43:29.457788,544,73,48, +91,2017-03-11 14:43:29.457788,714,341,702, +24,2017-03-11 14:43:29.457788,139,585,125, +72,2017-03-11 14:43:29.457788,588,20,831, +0,2017-03-11 14:43:29.457788,128,402,110, +49,2017-03-11 14:43:29.457788,281,315,46, +50,2017-03-11 14:43:29.457788,989,246,876, +35,2017-03-11 14:43:29.457788,276,807,519, +82,2017-03-11 14:43:29.457788,880,566,732, +59,2017-03-11 14:43:29.457788,908,434,829, +5,2017-03-11 14:43:29.457788,18,954,762, +61,2017-03-11 14:43:29.457788,975,593,607, +10,2017-03-11 14:43:29.457788,996,718,593, +28,2017-03-11 14:43:29.457788,32,638,776, +2,2017-03-11 14:43:29.457788,885,652,368, +16,2017-03-11 14:43:29.457788,459,887,981, +34,2017-03-11 14:43:29.457788,453,712,933, +36,2017-03-11 14:43:29.457788,146,763,407, +16,2017-03-11 14:43:29.457788,717,170,771, +69,2017-03-11 14:43:29.457788,763,378,794, +76,2017-03-11 14:43:29.457788,96,387,35, +13,2017-03-11 14:43:29.457788,25,811,150, +91,2017-03-11 14:43:29.457788,463,518,70, +92,2017-03-11 14:43:29.457788,404,51,261, +86,2017-03-11 14:43:29.457788,764,194,218, +91,2017-03-11 14:43:29.457788,956,625,74, +67,2017-03-11 14:43:29.457788,795,845,365, +56,2017-03-11 14:43:29.457788,224,159,317, +32,2017-03-11 14:43:29.457788,546,352,448, +57,2017-03-11 14:43:29.457788,163,598,481, +63,2017-03-11 14:43:29.457788,115,551,547, +52,2017-03-11 14:43:29.457788,602,808,377, +37,2017-03-11 14:43:29.457788,2,595,276, +96,2017-03-11 14:43:29.457788,220,350,632, +1,2017-03-11 14:43:29.457788,196,997,573, +42,2017-03-11 14:43:29.457788,156,889,739, +70,2017-03-11 14:43:29.457788,241,187,273, +40,2017-03-11 14:43:29.457788,784,754,30, +90,2017-03-11 14:43:29.457788,305,577,419, +91,2017-03-11 14:43:29.457788,385,796,273, +39,2017-03-11 14:43:29.457788,390,549,345, +61,2017-03-11 14:43:29.457788,899,976,625, +9,2017-03-11 14:43:29.457788,973,197,514, +13,2017-03-11 14:43:29.457788,87,253,831, +33,2017-03-11 14:43:29.457788,439,104,733, +22,2017-03-11 14:43:29.457788,857,762,123, +16,2017-03-11 14:43:29.457788,339,542,70, +72,2017-03-11 14:43:29.457788,338,343,110, +73,2017-03-11 14:43:29.457788,892,455,339, +79,2017-03-11 14:43:29.457788,431,964,886, +40,2017-03-11 14:43:29.457788,161,401,533, +25,2017-03-11 14:43:29.457788,653,364,576, +9,2017-03-11 14:43:29.457788,468,309,316, +33,2017-03-11 14:43:29.457788,71,440,487, +41,2017-03-11 14:43:29.457788,982,557,134, +32,2017-03-11 14:43:29.457788,900,245,49, +79,2017-03-11 14:43:29.457788,700,387,583, +13,2017-03-11 14:43:29.457788,351,470,536, +51,2017-03-11 14:43:29.457788,870,69,760, +52,2017-03-11 14:43:29.457788,433,337,617, +90,2017-03-11 14:43:29.457788,645,933,225, +72,2017-03-11 14:43:29.457788,373,713,127, +35,2017-03-11 14:43:29.457788,270,261,675, +17,2017-03-11 14:43:29.457788,506,723,961, +21,2017-03-11 14:43:29.457788,111,545,338, +46,2017-03-11 14:43:29.457788,15,873,974, +89,2017-03-11 14:43:29.457788,942,734,409, +37,2017-03-11 14:43:29.457788,71,26,275, +72,2017-03-11 14:43:29.457788,959,500,433, +33,2017-03-11 14:43:29.457788,213,560,686, +48,2017-03-11 14:43:29.457788,821,361,653, +33,2017-03-11 14:43:29.457788,84,614,534, +19,2017-03-11 14:43:29.457788,159,871,657, +17,2017-03-11 14:43:29.457788,745,631,59, +69,2017-03-11 14:43:29.457788,365,468,61, +44,2017-03-11 14:43:29.457788,494,336,153, +45,2017-03-11 14:43:29.457788,837,586,784, +5,2017-03-11 14:43:29.457788,146,470,533, +97,2017-03-11 14:43:29.457788,830,186,295, +91,2017-03-11 14:43:29.457788,800,829,109, +96,2017-03-11 14:43:29.457788,700,766,133, +44,2017-03-11 14:43:29.457788,396,192,131, +76,2017-03-11 14:43:29.457788,660,193,198, +15,2017-03-11 14:43:29.457788,529,350,606, +37,2017-03-11 14:43:29.457788,936,389,416, +8,2017-03-11 14:43:29.457788,859,950,49, +69,2017-03-11 14:43:29.457788,136,344,603, +94,2017-03-11 14:43:29.457788,173,712,895, +87,2017-03-11 14:43:29.457788,478,28,318, +87,2017-03-11 14:43:29.457788,220,449,635, +88,2017-03-11 14:43:29.457788,642,833,33, +17,2017-03-11 14:43:29.457788,183,638,537, +12,2017-03-11 14:43:29.457788,28,954,201, +89,2017-03-11 14:43:29.457788,904,250,575, +4,2017-03-11 14:43:29.457788,594,179,975, +77,2017-03-11 14:43:29.457788,891,870,640, +37,2017-03-11 14:43:29.457788,898,958,243, +12,2017-03-11 14:43:29.457788,407,878,997, +5,2017-03-11 14:43:29.457788,711,30,220, +89,2017-03-11 14:43:29.457788,669,757,13, +70,2017-03-11 14:43:29.457788,711,214,583, +61,2017-03-11 14:43:29.457788,464,158,654, +6,2017-03-11 14:43:29.457788,337,629,825, +23,2017-03-11 14:43:29.457788,499,465,596, +40,2017-03-11 14:43:29.457788,423,839,515, +83,2017-03-11 14:43:29.457788,717,512,879, +43,2017-03-11 14:43:29.457788,542,99,323, +21,2017-03-11 14:43:29.457788,856,336,907, +57,2017-03-11 14:43:29.457788,550,489,182, +1,2017-03-11 14:43:29.457788,647,836,73, +98,2017-03-11 14:43:29.457788,465,898,211, +96,2017-03-11 14:43:29.457788,363,808,361, +79,2017-03-11 14:43:29.457788,647,876,616, +36,2017-03-11 14:43:29.457788,387,494,792, +93,2017-03-11 14:43:29.457788,593,115,140, +45,2017-03-11 14:43:29.457788,451,46,16, +0,2017-03-11 14:43:29.457788,536,198,16, +18,2017-03-11 14:43:29.457788,34,89,167, +50,2017-03-11 14:43:29.457788,987,378,463, +35,2017-03-11 14:43:29.457788,186,824,136, +83,2017-03-11 14:43:29.457788,700,752,196, +9,2017-03-11 14:43:29.457788,246,988,16, +84,2017-03-11 14:43:29.457788,104,156,287, +55,2017-03-11 14:43:29.457788,202,303,556, +74,2017-03-11 14:43:29.457788,501,573,921, +53,2017-03-11 14:43:29.457788,662,88,33, +65,2017-03-11 14:43:29.457788,466,496,999, +65,2017-03-11 14:43:29.457788,320,135,484, +2,2017-03-11 14:43:29.457788,887,680,107, +13,2017-03-11 14:43:29.457788,668,124,971, +77,2017-03-11 14:43:29.457788,280,258,326, +48,2017-03-11 14:43:29.457788,561,883,220, +6,2017-03-11 14:43:29.457788,456,141,596, +12,2017-03-11 14:43:29.457788,229,629,767, +70,2017-03-11 14:43:29.457788,126,766,347, +45,2017-03-11 14:43:29.457788,902,831,466, +79,2017-03-11 14:43:29.457788,510,574,921, +18,2017-03-11 14:43:29.457788,697,892,950, +98,2017-03-11 14:43:29.457788,150,277,459, +71,2017-03-11 14:43:29.457788,160,679,772, +62,2017-03-11 14:43:29.457788,820,368,733, +5,2017-03-11 14:43:29.457788,997,500,745, +12,2017-03-11 14:43:29.457788,267,92,569, +17,2017-03-11 14:43:29.457788,923,35,957, +43,2017-03-11 14:43:29.457788,609,878,612, +31,2017-03-11 14:43:29.457788,770,562,283, +92,2017-03-11 14:43:29.457788,839,741,630, +100,2017-03-11 14:43:29.457788,420,401,614, +24,2017-03-11 14:43:29.457788,769,348,290, +77,2017-03-11 14:43:29.457788,848,35,889, +12,2017-03-11 14:43:29.457788,127,458,284, +5,2017-03-11 14:43:29.457788,494,241,483, +10,2017-03-11 14:43:29.457788,119,94,409, +89,2017-03-11 14:43:29.457788,656,692,808, +50,2017-03-11 14:43:29.457788,433,437,494, +85,2017-03-11 14:43:29.457788,839,108,94, +61,2017-03-11 14:43:29.457788,456,384,374, +30,2017-03-11 14:43:29.457788,419,264,419, +55,2017-03-11 14:43:29.457788,722,703,596, +22,2017-03-11 14:43:29.457788,943,79,319, +6,2017-03-11 14:43:29.457788,173,728,950, +83,2017-03-11 14:43:29.457788,419,758,325, +85,2017-03-11 14:43:29.457788,195,819,706, +3,2017-03-11 14:43:29.457788,927,800,642, +38,2017-03-11 14:43:29.457788,184,16,687, +60,2017-03-11 14:43:29.457788,279,106,150, +0,2017-03-11 14:43:29.457788,808,746,217, +75,2017-03-11 14:43:29.457788,825,536,814, +100,2017-03-11 14:43:29.457788,263,764,828, +68,2017-03-11 14:43:29.457788,522,152,535, +72,2017-03-11 14:43:29.457788,971,241,751, +90,2017-03-11 14:43:29.457788,40,393,280, +22,2017-03-11 14:43:29.457788,409,967,828, +69,2017-03-11 14:43:29.457788,72,978,689, +88,2017-03-11 14:43:29.457788,723,906,633, +55,2017-03-11 14:43:29.457788,442,447,546, +71,2017-03-11 14:43:29.457788,211,374,388, +73,2017-03-11 14:43:29.457788,526,922,451, +50,2017-03-11 14:43:29.457788,163,202,395, +20,2017-03-11 14:43:29.457788,595,675,428, +0,2017-03-11 14:43:29.457788,642,256,691, +71,2017-03-11 14:43:29.457788,233,381,595, +96,2017-03-11 14:43:29.457788,287,227,505, +73,2017-03-11 14:43:29.457788,674,51,434, +88,2017-03-11 14:43:29.457788,426,821,618, +95,2017-03-11 14:43:29.457788,744,69,449, +91,2017-03-11 14:43:29.457788,271,844,110, +87,2017-03-11 14:43:29.457788,519,539,869, +16,2017-03-11 14:43:29.457788,794,560,875, +3,2017-03-11 14:43:29.457788,941,469,984, +23,2017-03-11 14:43:29.457788,697,490,956, +37,2017-03-11 14:43:29.457788,541,390,255, +97,2017-03-11 14:43:29.457788,211,873,918, +95,2017-03-11 14:43:29.457788,942,368,861, +21,2017-03-11 14:43:29.457788,212,972,78, +73,2017-03-11 14:43:29.457788,510,947,893, +30,2017-03-11 14:43:29.457788,508,767,332, +45,2017-03-11 14:43:29.457788,237,317,676, +93,2017-03-11 14:43:29.457788,806,633,304, +35,2017-03-11 14:43:29.457788,22,559,314, +23,2017-03-11 14:43:29.457788,432,232,188, +37,2017-03-11 14:43:29.457788,600,49,587, +81,2017-03-11 14:43:29.457788,21,665,544, +53,2017-03-11 14:43:29.457788,613,437,836, +12,2017-03-11 14:43:29.457788,204,169,569, +44,2017-03-11 14:43:29.457788,485,246,374, +29,2017-03-11 14:43:29.457788,878,678,639, +90,2017-03-11 14:43:29.457788,237,953,134, +67,2017-03-11 14:43:29.457788,185,322,43, +79,2017-03-11 14:43:29.457788,371,630,597, +39,2017-03-11 14:43:29.457788,295,141,924, +91,2017-03-11 14:43:29.457788,578,760,29, +78,2017-03-11 14:43:29.457788,929,598,222, +41,2017-03-11 14:43:29.457788,844,596,706, +72,2017-03-11 14:43:29.457788,274,345,623, +51,2017-03-11 14:43:29.457788,298,757,180, +48,2017-03-11 14:43:29.457788,79,223,268, +45,2017-03-11 14:43:29.457788,853,865,842, +15,2017-03-11 14:43:29.457788,6,766,57, +58,2017-03-11 14:43:29.457788,526,86,365, +45,2017-03-11 14:43:29.457788,684,588,869, +53,2017-03-11 14:43:29.457788,184,575,249, +46,2017-03-11 14:43:29.457788,920,872,970, +22,2017-03-11 14:43:29.457788,628,150,700, +71,2017-03-11 14:43:29.457788,373,967,157, +23,2017-03-11 14:43:29.457788,832,999,375, +84,2017-03-11 14:43:29.457788,765,432,422, +29,2017-03-11 14:43:29.457788,518,788,746, +20,2017-03-11 14:43:29.457788,376,614,729, +56,2017-03-11 14:43:29.457788,189,978,19, +11,2017-03-11 14:43:29.457788,850,988,326, +48,2017-03-11 14:43:29.457788,138,25,185, +51,2017-03-11 14:43:29.457788,993,341,738, +83,2017-03-11 14:43:29.457788,340,114,663, +11,2017-03-11 14:43:29.457788,546,86,396, +6,2017-03-11 14:43:29.457788,873,141,266, +25,2017-03-11 14:43:29.457788,756,994,809, +94,2017-03-11 14:43:29.457788,972,828,53, +82,2017-03-11 14:43:29.457788,816,379,300, +95,2017-03-11 14:43:29.457788,404,485,466, +40,2017-03-11 14:43:29.457788,826,204,222, +17,2017-03-11 14:43:29.457788,317,885,272, +86,2017-03-11 14:43:29.457788,971,667,927, +84,2017-03-11 14:43:29.457788,809,193,94, +56,2017-03-11 14:43:29.457788,187,902,509, +16,2017-03-11 14:43:29.457788,730,562,981, +55,2017-03-11 14:43:29.457788,941,281,500, +35,2017-03-11 14:43:29.457788,766,966,743, +59,2017-03-11 14:43:29.457788,170,965,759, +49,2017-03-11 14:43:29.457788,850,31,350, +82,2017-03-11 14:43:29.457788,698,277,666, +51,2017-03-11 14:43:29.457788,470,759,71, +66,2017-03-11 14:43:29.457788,662,581,817, +39,2017-03-11 14:43:29.457788,143,798,938, +8,2017-03-11 14:43:29.457788,79,438,430, +85,2017-03-11 14:43:29.457788,403,173,438, +57,2017-03-11 14:43:29.457788,137,197,60, +99,2017-03-11 14:43:29.457788,228,410,809, +93,2017-03-11 14:43:29.457788,688,474,433, +16,2017-03-11 14:43:29.457788,233,504,815, +90,2017-03-11 14:43:29.457788,85,632,287, +23,2017-03-11 14:43:29.457788,430,224,313, +51,2017-03-11 14:43:29.457788,662,743,355, +7,2017-03-11 14:43:29.457788,915,793,638, +5,2017-03-11 14:43:29.457788,991,699,40, +22,2017-03-11 14:43:29.457788,109,848,145, +80,2017-03-11 14:43:29.457788,323,578,955, +56,2017-03-11 14:43:29.457788,82,770,451, +17,2017-03-11 14:43:29.457788,402,738,395, +83,2017-03-11 14:43:29.457788,962,707,342, +62,2017-03-11 14:43:29.457788,450,697,690, +37,2017-03-11 14:43:29.457788,490,328,418, +48,2017-03-11 14:43:29.457788,27,458,700, +14,2017-03-11 14:43:29.457788,306,844,933, +63,2017-03-11 14:43:29.457788,422,887,185, +50,2017-03-11 14:43:29.457788,658,636,670, +6,2017-03-11 14:43:29.457788,374,65,892, +34,2017-03-11 14:43:29.457788,773,234,961, +22,2017-03-11 14:43:29.457788,931,650,588, +42,2017-03-11 14:43:29.457788,978,6,902, +1,2017-03-11 14:43:29.457788,464,602,141, +77,2017-03-11 14:43:29.457788,446,73,399, +87,2017-03-11 14:43:29.457788,961,584,371, +62,2017-03-11 14:43:29.457788,220,41,678, +59,2017-03-11 14:43:29.457788,107,570,930, +88,2017-03-11 14:43:29.457788,804,891,102, +73,2017-03-11 14:43:29.457788,541,691,155, +52,2017-03-11 14:43:29.457788,697,57,525, +16,2017-03-11 14:43:29.457788,659,665,930, +11,2017-03-11 14:43:29.457788,739,329,973, +70,2017-03-11 14:43:29.457788,913,344,317, +13,2017-03-11 14:43:29.457788,385,995,727, +49,2017-03-11 14:43:29.457788,565,657,371, +37,2017-03-11 14:43:29.457788,549,474,103, +9,2017-03-11 14:43:29.457788,164,258,610, +86,2017-03-11 14:43:29.457788,316,134,21, +97,2017-03-11 14:43:29.457788,800,952,80, +54,2017-03-11 14:43:29.457788,281,53,238, +19,2017-03-11 14:43:29.457788,397,555,327, +78,2017-03-11 14:43:29.457788,550,54,274, +12,2017-03-11 14:43:29.457788,712,645,484, +26,2017-03-11 14:43:29.457788,119,587,350, +28,2017-03-11 14:43:29.457788,845,960,144, +16,2017-03-11 14:43:29.457788,94,166,135, +89,2017-03-11 14:43:29.457788,117,215,432, +40,2017-03-11 14:43:29.457788,268,670,593, +66,2017-03-11 14:43:29.457788,225,920,446, +77,2017-03-11 14:43:29.457788,974,720,890, +69,2017-03-11 14:43:29.457788,365,374,945, +48,2017-03-11 14:43:29.457788,961,295,767, +81,2017-03-11 14:43:29.457788,255,911,966, +35,2017-03-11 14:43:29.457788,77,101,242, +19,2017-03-11 14:43:29.457788,317,675,593, +58,2017-03-11 14:43:29.457788,344,185,249, +57,2017-03-11 14:43:29.457788,105,696,344, +8,2017-03-11 14:43:29.457788,416,234,764, +78,2017-03-11 14:43:29.457788,607,709,265, +57,2017-03-11 14:43:29.457788,4,32,374, +26,2017-03-11 14:43:29.457788,944,339,608, +2,2017-03-11 14:43:29.457788,441,850,215, +76,2017-03-11 14:43:29.457788,525,808,342, +87,2017-03-11 14:43:29.457788,993,592,438, +10,2017-03-11 14:43:29.457788,288,781,176, +70,2017-03-11 14:43:29.457788,15,940,484, +62,2017-03-11 14:43:29.457788,649,749,190, +65,2017-03-11 14:43:29.457788,781,564,912, +73,2017-03-11 14:43:29.457788,903,520,746, +34,2017-03-11 14:43:29.457788,371,961,102, +90,2017-03-11 14:43:29.457788,768,444,764, +76,2017-03-11 14:43:29.457788,35,202,859, +32,2017-03-11 14:43:29.457788,983,35,26, +100,2017-03-11 14:43:29.457788,975,511,621, +62,2017-03-11 14:43:29.457788,260,811,277, +4,2017-03-11 14:43:29.457788,375,189,766, +28,2017-03-11 14:43:29.457788,710,512,622, +8,2017-03-11 14:43:29.457788,473,724,976, +24,2017-03-11 14:43:29.457788,168,740,2, +20,2017-03-11 14:43:29.457788,942,861,526, +93,2017-03-11 14:43:29.457788,896,553,924, +87,2017-03-11 14:43:29.457788,63,544,495, +32,2017-03-11 14:43:29.457788,355,772,365, +73,2017-03-11 14:43:29.457788,961,131,9, +67,2017-03-11 14:43:29.457788,643,631,751, +12,2017-03-11 14:43:29.457788,355,726,357, +52,2017-03-11 14:43:29.457788,467,359,726, +41,2017-03-11 14:43:29.457788,220,252,334, +12,2017-03-11 14:43:29.457788,805,258,987, +87,2017-03-11 14:43:29.457788,803,482,191, +16,2017-03-11 14:43:29.457788,253,556,889, +21,2017-03-11 14:43:29.457788,687,897,885, +33,2017-03-11 14:43:29.457788,528,636,446, +88,2017-03-11 14:43:29.457788,362,803,406, +83,2017-03-11 14:43:29.457788,163,132,238, +38,2017-03-11 14:43:29.457788,384,572,499, +19,2017-03-11 14:43:29.457788,831,486,57, +63,2017-03-11 14:43:29.457788,968,248,792, +22,2017-03-11 14:43:29.457788,803,681,436, +49,2017-03-11 14:43:29.457788,578,321,820, +11,2017-03-11 14:43:29.457788,957,266,990, +32,2017-03-11 14:43:29.457788,69,396,148, +23,2017-03-11 14:43:29.457788,528,386,615, +91,2017-03-11 14:43:29.457788,959,114,101, +79,2017-03-11 14:43:29.457788,600,157,423, +57,2017-03-11 14:43:29.457788,405,215,790, +21,2017-03-11 14:43:29.457788,896,226,698, +47,2017-03-11 14:43:29.457788,546,518,580, +50,2017-03-11 14:43:29.457788,784,570,823, +85,2017-03-11 14:43:29.457788,966,971,85, +49,2017-03-11 14:43:29.457788,358,700,406, +32,2017-03-11 14:43:29.457788,814,507,106, +41,2017-03-11 14:43:29.457788,664,529,983, +7,2017-03-11 14:43:29.457788,744,772,277, +64,2017-03-11 14:43:29.457788,998,975,113, +54,2017-03-11 14:43:29.457788,493,693,48, +28,2017-03-11 14:43:29.457788,264,871,131, +23,2017-03-11 14:43:29.457788,842,216,724, +20,2017-03-11 14:43:29.457788,916,130,516, +73,2017-03-11 14:43:29.457788,637,622,144, +30,2017-03-11 14:43:29.457788,151,127,369, +89,2017-03-11 14:43:29.457788,899,645,534, +90,2017-03-11 14:43:29.457788,620,647,441, +11,2017-03-11 14:43:29.457788,340,489,390, +60,2017-03-11 14:43:29.457788,360,521,834, +20,2017-03-11 14:43:29.457788,737,558,402, +65,2017-03-11 14:43:29.457788,688,918,382, +33,2017-03-11 14:43:29.457788,541,526,626, +69,2017-03-11 14:43:29.457788,652,995,586, +55,2017-03-11 14:43:29.457788,640,120,448, +26,2017-03-11 14:43:29.457788,766,890,374, +11,2017-03-11 14:43:29.457788,379,764,711, +74,2017-03-11 14:43:29.457788,285,545,942, +2,2017-03-11 14:43:29.457788,103,344,674, +79,2017-03-11 14:43:29.457788,262,56,117, +80,2017-03-11 14:43:29.457788,582,743,494, +23,2017-03-11 14:43:29.457788,737,80,785, +38,2017-03-11 14:43:29.457788,199,234,638, +97,2017-03-11 14:43:29.457788,124,12,73, +50,2017-03-11 14:43:29.457788,776,784,242, +6,2017-03-11 14:43:29.457788,329,183,82, +43,2017-03-11 14:43:29.457788,527,756,224, +79,2017-03-11 14:43:29.457788,812,341,592, +39,2017-03-11 14:43:29.457788,84,86,627, +82,2017-03-11 14:43:29.457788,166,413,199, +37,2017-03-11 14:43:29.457788,646,837,331, +77,2017-03-11 14:43:29.457788,849,404,273, +62,2017-03-11 14:43:29.457788,188,514,685, +52,2017-03-11 14:43:29.457788,698,767,948, +23,2017-03-11 14:43:29.457788,523,172,15, +34,2017-03-11 14:43:29.457788,513,607,729, +60,2017-03-11 14:43:29.457788,693,356,419, +86,2017-03-11 14:43:29.457788,769,618,225, +41,2017-03-11 14:43:29.457788,455,556,185, +30,2017-03-11 14:43:29.457788,960,457,927, +15,2017-03-11 14:43:29.457788,972,612,665, +67,2017-03-11 14:43:29.457788,379,613,895, +90,2017-03-11 14:43:29.457788,785,910,238, +30,2017-03-11 14:43:29.457788,517,967,896, +21,2017-03-11 14:43:29.457788,323,315,69, +9,2017-03-11 14:43:29.457788,932,294,506, +39,2017-03-11 14:43:29.457788,851,691,690, +81,2017-03-11 14:43:29.457788,149,618,959, +12,2017-03-11 14:43:29.457788,230,624,790, +61,2017-03-11 14:43:29.457788,237,685,512, +2,2017-03-11 14:43:29.457788,595,750,321, +11,2017-03-11 14:43:29.457788,717,217,321, +4,2017-03-11 14:43:29.457788,532,391,131, +46,2017-03-11 14:43:29.457788,685,637,851, +54,2017-03-11 14:43:29.457788,329,541,347, +48,2017-03-11 14:43:29.457788,159,306,597, +39,2017-03-11 14:43:29.457788,930,387,998, +17,2017-03-11 14:43:29.457788,72,511,190, +67,2017-03-11 14:43:29.457788,261,511,778, +98,2017-03-11 14:43:29.457788,728,99,18, +26,2017-03-11 14:43:29.457788,490,149,724, +17,2017-03-11 14:43:29.457788,786,575,710, +11,2017-03-11 14:43:29.457788,116,58,592, +28,2017-03-11 14:43:29.457788,364,189,665, +29,2017-03-11 14:43:29.457788,577,663,462, +65,2017-03-11 14:43:29.457788,174,651,316, +43,2017-03-11 14:43:29.457788,162,94,412, +89,2017-03-11 14:43:29.457788,193,430,149, +68,2017-03-11 14:43:29.457788,578,873,857, +36,2017-03-11 14:43:29.457788,448,568,479, +56,2017-03-11 14:43:29.457788,625,71,840, +99,2017-03-11 14:43:29.457788,260,505,284, +84,2017-03-11 14:43:29.457788,168,746,486, +34,2017-03-11 14:43:29.457788,397,802,775, +56,2017-03-11 14:43:29.457788,896,188,448, +9,2017-03-11 14:43:29.457788,617,598,772, +20,2017-03-11 14:43:29.457788,471,629,560, +92,2017-03-11 14:43:29.457788,197,39,483, +82,2017-03-11 14:43:29.457788,110,323,812, +37,2017-03-11 14:43:29.457788,828,96,208, +100,2017-03-11 14:43:29.457788,842,694,337, +24,2017-03-11 14:43:29.457788,497,112,797, +39,2017-03-11 14:43:29.457788,300,246,482, +92,2017-03-11 14:43:29.457788,844,254,113, +31,2017-03-11 14:43:29.457788,884,673,233, +8,2017-03-11 14:43:29.457788,712,716,903, +82,2017-03-11 14:43:29.457788,40,715,193, +87,2017-03-11 14:43:29.457788,811,401,864, +65,2017-03-11 14:43:29.457788,95,200,891, +59,2017-03-11 14:43:29.457788,313,688,985, +61,2017-03-11 14:43:29.457788,934,468,529, +78,2017-03-11 14:43:29.457788,722,642,92, +61,2017-03-11 14:43:29.457788,315,325,686, +3,2017-03-11 14:43:29.457788,42,589,849, +8,2017-03-11 14:43:29.457788,304,42,950, +11,2017-03-11 14:43:29.457788,443,813,767, +54,2017-03-11 14:43:29.457788,13,658,130, +33,2017-03-11 14:43:29.457788,347,116,938, +28,2017-03-11 14:43:29.457788,583,468,59, +30,2017-03-11 14:43:29.457788,110,152,910, +42,2017-03-11 14:43:29.457788,477,596,451, +52,2017-03-11 14:43:29.457788,185,299,601, +49,2017-03-11 14:43:29.457788,341,550,604, +78,2017-03-11 14:43:29.457788,363,372,322, +38,2017-03-11 14:43:29.457788,30,452,703, +38,2017-03-11 14:43:29.457788,568,641,658, +15,2017-03-11 14:43:29.457788,109,718,456, +22,2017-03-11 14:43:29.457788,870,366,642, +35,2017-03-11 14:43:29.457788,962,93,866, +15,2017-03-11 14:43:29.457788,393,467,637, +73,2017-03-11 14:43:29.457788,17,241,517, +38,2017-03-11 14:43:29.457788,613,839,758, +64,2017-03-11 14:43:29.457788,292,460,20, +86,2017-03-11 14:43:29.457788,101,678,10, +21,2017-03-11 14:43:29.457788,396,466,428, +27,2017-03-11 14:43:29.457788,832,71,613, +79,2017-03-11 14:43:29.457788,164,479,942, +56,2017-03-11 14:43:29.457788,946,579,290, +96,2017-03-11 14:43:29.457788,820,808,345, +43,2017-03-11 14:43:29.457788,647,102,75, +94,2017-03-11 14:43:29.457788,563,95,799, +66,2017-03-11 14:43:29.457788,773,809,874, +17,2017-03-11 14:43:29.457788,275,302,434, +11,2017-03-11 14:43:29.457788,373,47,902, +54,2017-03-11 14:43:29.457788,526,844,94, +47,2017-03-11 14:43:29.457788,423,384,436, +24,2017-03-11 14:43:29.457788,192,780,675, +84,2017-03-11 14:43:29.457788,882,750,778, +45,2017-03-11 14:43:29.457788,845,577,109, +62,2017-03-11 14:43:29.457788,386,984,786, +66,2017-03-11 14:43:29.457788,286,220,769, +66,2017-03-11 14:43:29.457788,267,671,196, +79,2017-03-11 14:43:29.457788,515,290,265, +94,2017-03-11 14:43:29.457788,674,701,181, +87,2017-03-11 14:43:29.457788,481,857,705, +36,2017-03-11 14:43:29.457788,607,483,808, +45,2017-03-11 14:43:29.457788,60,918,69, +45,2017-03-11 14:43:29.457788,901,855,107, +19,2017-03-11 14:43:29.457788,75,876,846, +34,2017-03-11 14:43:29.457788,546,42,136, +6,2017-03-11 14:43:29.457788,332,401,1000, +1,2017-03-11 14:43:29.457788,101,181,873, +58,2017-03-11 14:43:29.457788,38,578,945, +64,2017-03-11 14:43:29.457788,61,753,96, +12,2017-03-11 14:43:29.457788,671,165,568, +57,2017-03-11 14:43:29.457788,20,674,759, +10,2017-03-11 14:43:29.457788,550,605,438, +10,2017-03-11 14:43:29.457788,648,573,158, +98,2017-03-11 14:43:29.457788,974,158,987, +8,2017-03-11 14:43:29.457788,339,860,658, +38,2017-03-11 14:43:29.457788,437,603,21, +50,2017-03-11 14:43:29.457788,357,117,620, +3,2017-03-11 14:43:29.457788,282,188,600, +30,2017-03-11 14:43:29.457788,862,359,398, +41,2017-03-11 14:43:29.457788,964,835,509, +61,2017-03-11 14:43:29.457788,409,667,593, +38,2017-03-11 14:43:29.457788,824,580,459, +16,2017-03-11 14:43:29.457788,439,117,540, +88,2017-03-11 14:43:29.457788,720,561,376, +8,2017-03-11 14:43:29.457788,679,996,104, +96,2017-03-11 14:43:29.457788,184,704,263, +5,2017-03-11 14:43:29.457788,63,661,459, +3,2017-03-11 14:43:29.457788,496,967,639, +91,2017-03-11 14:43:29.457788,634,232,288, +46,2017-03-11 14:43:29.457788,812,747,622, +25,2017-03-11 14:43:29.457788,864,162,128, +58,2017-03-11 14:43:29.457788,723,503,660, +40,2017-03-11 14:43:29.457788,499,764,363, +68,2017-03-11 14:43:29.457788,468,626,729, +53,2017-03-11 14:43:29.457788,287,188,558, +78,2017-03-11 14:43:29.457788,155,198,688, +79,2017-03-11 14:43:29.457788,430,976,247, +24,2017-03-11 14:43:29.457788,723,869,492, +59,2017-03-11 14:43:29.457788,30,620,170, +75,2017-03-11 14:43:29.457788,123,830,156, +62,2017-03-11 14:43:29.457788,595,519,305, +6,2017-03-11 14:43:29.457788,145,35,594, +43,2017-03-11 14:43:29.457788,222,152,215, +38,2017-03-11 14:43:29.457788,350,903,166, +78,2017-03-11 14:43:29.457788,880,413,21, +60,2017-03-11 14:43:29.457788,281,514,189, +31,2017-03-11 14:43:29.457788,134,360,65, +26,2017-03-11 14:43:29.457788,190,221,879, +79,2017-03-11 14:43:29.457788,740,185,848, +89,2017-03-11 14:43:29.457788,219,442,317, +44,2017-03-11 14:43:29.457788,594,533,819, +94,2017-03-11 14:43:29.457788,436,984,724, +32,2017-03-11 14:43:29.457788,397,745,918, +68,2017-03-11 14:43:29.457788,258,108,990, +39,2017-03-11 14:43:29.457788,467,55,649, +66,2017-03-11 14:43:29.457788,276,529,443, +2,2017-03-11 14:43:29.457788,713,291,902, +93,2017-03-11 14:43:29.457788,733,220,374, +33,2017-03-11 14:43:29.457788,752,193,271, +19,2017-03-11 14:43:29.457788,177,995,504, +57,2017-03-11 14:43:29.457788,740,422,252, +100,2017-03-11 14:43:29.457788,529,242,391, +100,2017-03-11 14:43:29.457788,297,40,654, +57,2017-03-11 14:43:29.457788,568,97,590, +28,2017-03-11 14:43:29.457788,388,492,215, +12,2017-03-11 14:43:29.457788,712,589,448, +46,2017-03-11 14:43:29.457788,782,719,652, +96,2017-03-11 14:43:29.457788,714,156,534, +45,2017-03-11 14:43:29.457788,578,787,452, +11,2017-03-11 14:43:29.457788,29,843,104, +33,2017-03-11 14:43:29.457788,883,758,899, +45,2017-03-11 14:43:29.457788,855,489,733, +24,2017-03-11 14:43:29.457788,982,948,363, +69,2017-03-11 14:43:29.457788,537,810,157, +32,2017-03-11 14:43:29.457788,529,809,279, +24,2017-03-11 14:43:29.457788,965,814,697, +54,2017-03-11 14:43:29.457788,601,149,650, +63,2017-03-11 14:43:29.457788,992,753,955, +87,2017-03-11 14:43:29.457788,511,854,326, +37,2017-03-11 14:43:29.457788,344,59,608, +33,2017-03-11 14:43:29.457788,7,971,19, +54,2017-03-11 14:43:29.457788,781,176,864, +31,2017-03-11 14:43:29.457788,985,144,553, +95,2017-03-11 14:43:29.457788,957,250,494, +56,2017-03-11 14:43:29.457788,399,143,187, +39,2017-03-11 14:43:29.457788,897,142,266, +41,2017-03-11 14:43:29.457788,997,592,774, +34,2017-03-11 14:43:29.457788,651,382,666, +66,2017-03-11 14:43:29.457788,353,684,203, +13,2017-03-11 14:43:29.457788,860,67,444, +85,2017-03-11 14:43:29.457788,211,997,796, +17,2017-03-11 14:43:29.457788,247,289,726, +65,2017-03-11 14:43:29.457788,433,913,37, +33,2017-03-11 14:43:29.457788,55,304,738, +5,2017-03-11 14:43:29.457788,896,512,392, +55,2017-03-11 14:43:29.457788,894,58,206, +25,2017-03-11 14:43:29.457788,742,409,381, +60,2017-03-11 14:43:29.457788,476,825,447, +69,2017-03-11 14:43:29.457788,822,243,854, +7,2017-03-11 14:43:29.457788,532,580,715, +97,2017-03-11 14:43:29.457788,493,752,295, +55,2017-03-11 14:43:29.457788,56,33,600, +95,2017-03-11 14:43:29.457788,544,992,498, +44,2017-03-11 14:43:29.457788,50,704,685, +79,2017-03-11 14:43:29.457788,113,66,393, +59,2017-03-11 14:43:29.457788,890,840,275, +71,2017-03-11 14:43:29.457788,83,129,781, +62,2017-03-11 14:43:29.457788,709,495,580, +20,2017-03-11 14:43:29.457788,247,875,750, +30,2017-03-11 14:43:29.457788,908,351,254, +45,2017-03-11 14:43:29.457788,343,753,891, +39,2017-03-11 14:43:29.457788,457,576,184, +57,2017-03-11 14:43:29.457788,642,578,158, +53,2017-03-11 14:43:29.457788,418,432,244, +50,2017-03-11 14:43:29.457788,561,25,116, +27,2017-03-11 14:43:29.457788,520,696,472, +77,2017-03-11 14:43:29.457788,572,223,71, +48,2017-03-11 14:43:29.457788,573,325,932, +92,2017-03-11 14:43:29.457788,78,823,309, +53,2017-03-11 14:43:29.457788,399,493,104, +4,2017-03-11 14:43:29.457788,71,261,573, +49,2017-03-11 14:43:29.457788,693,818,989, +25,2017-03-11 14:43:29.457788,843,105,524, +36,2017-03-11 14:43:29.457788,801,996,130, +37,2017-03-11 14:43:29.457788,219,201,853, +79,2017-03-11 14:43:29.457788,526,785,708, +60,2017-03-11 14:43:29.457788,608,17,137, +1,2017-03-11 14:43:29.457788,510,241,49, +58,2017-03-11 14:43:29.457788,502,622,70, +20,2017-03-11 14:43:29.457788,440,59,449, +28,2017-03-11 14:43:29.457788,164,973,645, +96,2017-03-11 14:43:29.457788,970,775,338, +19,2017-03-11 14:43:29.457788,976,190,981, +50,2017-03-11 14:43:29.457788,975,689,105, +58,2017-03-11 14:43:29.457788,706,242,591, +22,2017-03-11 14:43:29.457788,483,640,798, +98,2017-03-11 14:43:29.457788,262,867,180, +70,2017-03-11 14:43:29.457788,926,629,984, +9,2017-03-11 14:43:29.457788,602,629,55, +57,2017-03-11 14:43:29.457788,404,392,761, +38,2017-03-11 14:43:29.457788,583,741,882, +56,2017-03-11 14:43:29.457788,430,986,142, +14,2017-03-11 14:43:29.457788,228,733,353, +71,2017-03-11 14:43:29.457788,374,151,695, +64,2017-03-11 14:43:29.457788,18,875,338, +94,2017-03-11 14:43:29.457788,504,322,34, +11,2017-03-11 14:43:29.457788,951,88,679, +36,2017-03-11 14:43:29.457788,481,439,736, +6,2017-03-11 14:43:29.457788,181,617,621, +61,2017-03-11 14:43:29.457788,603,763,748, +83,2017-03-11 14:43:29.457788,497,101,542, +87,2017-03-11 14:43:29.457788,252,237,506, +27,2017-03-11 14:43:29.457788,112,844,214, +62,2017-03-11 14:43:29.457788,166,248,722, +12,2017-03-11 14:43:29.457788,336,401,473, +82,2017-03-11 14:43:29.457788,840,209,880, +2,2017-03-11 14:43:29.457788,826,501,632, +43,2017-03-11 14:43:29.457788,265,380,260, +76,2017-03-11 14:43:29.457788,481,802,632, +73,2017-03-11 14:43:29.457788,39,138,2, +15,2017-03-11 14:43:29.457788,982,216,767, +15,2017-03-11 14:43:29.457788,463,489,265, +80,2017-03-11 14:43:29.457788,890,738,616, +73,2017-03-11 14:43:29.457788,947,495,751, +77,2017-03-11 14:43:29.457788,997,383,202, +26,2017-03-11 14:43:29.457788,763,462,23, +24,2017-03-11 14:43:29.457788,264,654,976, +30,2017-03-11 14:43:29.457788,792,978,453, +77,2017-03-11 14:43:29.457788,194,220,922, +66,2017-03-11 14:43:29.457788,709,187,456, +60,2017-03-11 14:43:29.457788,926,71,329, +87,2017-03-11 14:43:29.457788,567,80,645, +56,2017-03-11 14:43:29.457788,463,847,825, +23,2017-03-11 14:43:29.457788,309,847,470, +57,2017-03-11 14:43:29.457788,501,446,874, +29,2017-03-11 14:43:29.457788,424,328,68, +62,2017-03-11 14:43:29.457788,547,990,274, +26,2017-03-11 14:43:29.457788,177,730,855, +10,2017-03-11 14:43:29.457788,801,184,976, +37,2017-03-11 14:43:29.457788,263,621,932, +73,2017-03-11 14:43:29.457788,468,756,952, +78,2017-03-11 14:43:29.457788,603,421,348, +10,2017-03-11 14:43:29.457788,867,223,399, +29,2017-03-11 14:43:29.457788,550,466,908, +10,2017-03-11 14:43:29.457788,456,182,354, +63,2017-03-11 14:43:29.457788,912,209,737, +71,2017-03-11 14:43:29.457788,393,713,82, +66,2017-03-11 14:43:29.457788,334,14,382, +80,2017-03-11 14:43:29.457788,770,334,577, +37,2017-03-11 14:43:29.457788,755,926,479, +62,2017-03-11 14:43:29.457788,148,877,914, +70,2017-03-11 14:43:29.457788,344,822,796, +80,2017-03-11 14:43:29.457788,4,150,434, +92,2017-03-11 14:43:29.457788,359,171,631, +75,2017-03-11 14:43:29.457788,883,713,408, +22,2017-03-11 14:43:29.457788,727,790,18, +50,2017-03-11 14:43:29.457788,124,596,871, +88,2017-03-11 14:43:29.457788,521,349,502, +67,2017-03-11 14:43:29.457788,226,416,368, +57,2017-03-11 14:43:29.457788,238,165,370, +24,2017-03-11 14:43:29.457788,315,804,159, +67,2017-03-11 14:43:29.457788,974,789,425, +86,2017-03-11 14:43:29.457788,502,833,75, +23,2017-03-11 14:43:29.457788,623,93,726, +75,2017-03-11 14:43:29.457788,688,597,626, +21,2017-03-11 14:43:29.457788,946,128,880, +17,2017-03-11 14:43:29.457788,544,248,742, +78,2017-03-11 14:43:29.457788,413,112,24, +73,2017-03-11 14:43:29.457788,916,182,401, +89,2017-03-11 14:43:29.457788,972,827,748, +47,2017-03-11 14:43:29.457788,660,822,703, +28,2017-03-11 14:43:29.457788,915,429,30, +60,2017-03-11 14:43:29.457788,26,656,813, +97,2017-03-11 14:43:29.457788,785,693,143, +33,2017-03-11 14:43:29.457788,941,885,111, +35,2017-03-11 14:43:29.457788,997,134,82, +91,2017-03-11 14:43:29.457788,317,483,803, +29,2017-03-11 14:43:29.457788,310,551,762, +97,2017-03-11 14:43:29.457788,373,465,252, +29,2017-03-11 14:43:29.457788,894,282,891, +92,2017-03-11 14:43:29.457788,939,705,891, +72,2017-03-11 14:43:29.457788,398,35,53, +34,2017-03-11 14:43:29.457788,920,163,694, +92,2017-03-11 14:43:29.457788,298,775,830, +61,2017-03-11 14:43:29.457788,258,633,902, +57,2017-03-11 14:43:29.457788,184,665,537, +56,2017-03-11 14:43:29.457788,130,790,845, +2,2017-03-11 14:43:29.457788,72,736,945, +1,2017-03-11 14:43:29.457788,441,836,735, +84,2017-03-11 14:43:29.457788,871,787,178, +79,2017-03-11 14:43:29.457788,951,872,708, +25,2017-03-11 14:43:29.457788,647,539,862, +91,2017-03-11 14:43:29.457788,172,765,473, +36,2017-03-11 14:43:29.457788,430,10,912, +56,2017-03-11 14:43:29.457788,800,757,584, +87,2017-03-11 14:43:29.457788,493,529,883, +93,2017-03-11 14:43:29.457788,365,617,773, +24,2017-03-11 14:43:29.457788,405,951,27, +36,2017-03-11 14:43:29.457788,823,735,604, +47,2017-03-11 14:43:29.457788,273,466,376, +45,2017-03-11 14:43:29.457788,231,849,801, +66,2017-03-11 14:43:29.457788,859,713,220, +66,2017-03-11 14:43:29.457788,469,804,530, +96,2017-03-11 14:43:29.457788,333,413,896, +70,2017-03-11 14:43:29.457788,31,668,934, +44,2017-03-11 14:43:29.457788,619,961,791, +44,2017-03-11 14:43:29.457788,695,394,912, +97,2017-03-11 14:43:29.457788,860,288,414, +9,2017-03-11 14:43:29.457788,137,214,751, +100,2017-03-11 14:43:29.457788,927,971,654, +40,2017-03-11 14:43:29.457788,775,185,358, +11,2017-03-11 14:43:29.457788,598,254,806, +63,2017-03-11 14:43:29.457788,922,740,64, +54,2017-03-11 14:43:29.457788,701,854,984, +40,2017-03-11 14:43:29.457788,248,896,365, +11,2017-03-11 14:43:29.457788,184,778,199, +32,2017-03-11 14:43:29.457788,993,949,316, +92,2017-03-11 14:43:29.457788,920,971,316, +69,2017-03-11 14:43:29.457788,155,674,803, +75,2017-03-11 14:43:29.457788,928,609,381, +85,2017-03-11 14:43:29.457788,350,445,392, +5,2017-03-11 14:43:29.457788,299,376,447, +55,2017-03-11 14:43:29.457788,272,812,655, +46,2017-03-11 14:43:29.457788,590,854,777, +58,2017-03-11 14:43:29.457788,804,94,502, +72,2017-03-11 14:43:29.457788,64,818,419, +22,2017-03-11 14:43:29.457788,492,222,973, +42,2017-03-11 14:43:29.457788,831,354,271, +18,2017-03-11 14:43:29.457788,799,663,231, +10,2017-03-11 14:43:29.457788,39,678,645, +31,2017-03-11 14:43:29.457788,489,301,768, +8,2017-03-11 14:43:29.457788,155,545,662, +96,2017-03-11 14:43:29.457788,639,163,682, +70,2017-03-11 14:43:29.457788,981,101,923, +47,2017-03-11 14:43:29.457788,323,896,893, +15,2017-03-11 14:43:29.457788,250,164,334, +5,2017-03-11 14:43:29.457788,828,565,148, +87,2017-03-11 14:43:29.457788,242,793,178, +73,2017-03-11 14:43:29.457788,94,946,811, +25,2017-03-11 14:43:29.457788,492,472,208, +13,2017-03-11 14:43:29.457788,636,890,834, +62,2017-03-11 14:43:29.457788,991,758,90, +31,2017-03-11 14:43:29.457788,654,983,467, +90,2017-03-11 14:43:29.457788,147,801,954, +97,2017-03-11 14:43:29.457788,365,102,842, +61,2017-03-11 14:43:29.457788,895,20,339, +99,2017-03-11 14:43:29.457788,966,150,238, +46,2017-03-11 14:43:29.457788,622,446,589, +26,2017-03-11 14:43:29.457788,336,423,875, +33,2017-03-11 14:43:29.457788,180,964,641, +83,2017-03-11 14:43:29.457788,948,108,738, +9,2017-03-11 14:43:29.457788,909,692,70, +27,2017-03-11 14:43:29.457788,794,912,882, +69,2017-03-11 14:43:29.457788,932,222,678, +90,2017-03-11 14:43:29.457788,372,916,356, +99,2017-03-11 14:43:29.457788,362,945,252, +70,2017-03-11 14:43:29.457788,368,126,25, +55,2017-03-11 14:43:29.457788,91,666,382, +4,2017-03-11 14:43:29.457788,774,120,133, +68,2017-03-11 14:43:29.457788,812,203,957, +61,2017-03-11 14:43:29.457788,115,839,294, +5,2017-03-11 14:43:29.457788,61,971,945, +43,2017-03-11 14:43:29.457788,887,301,426, +25,2017-03-11 14:43:29.457788,246,678,947, +61,2017-03-11 14:43:29.457788,804,972,161, +90,2017-03-11 14:43:29.457788,638,543,934, +41,2017-03-11 14:43:29.457788,663,67,94, +47,2017-03-11 14:43:29.457788,270,52,80, +39,2017-03-11 14:43:29.457788,891,374,432, +95,2017-03-11 14:43:29.457788,346,377,384, +23,2017-03-11 14:43:29.457788,678,810,481, +92,2017-03-11 14:43:29.457788,488,428,537, +29,2017-03-11 14:43:29.457788,400,698,187, +4,2017-03-11 14:43:29.457788,241,121,449, +90,2017-03-11 14:43:29.457788,188,543,379, +46,2017-03-11 14:43:29.457788,595,459,843, +49,2017-03-11 14:43:29.457788,833,275,437, +18,2017-03-11 14:43:29.457788,651,821,412, +33,2017-03-11 14:43:29.457788,631,893,253, +12,2017-03-11 14:43:29.457788,321,790,411, +72,2017-03-11 14:43:29.457788,488,599,758, +73,2017-03-11 14:43:29.457788,720,207,634, +91,2017-03-11 14:43:29.457788,751,13,366, +35,2017-03-11 14:43:29.457788,472,209,832, +31,2017-03-11 14:43:29.457788,483,269,485, +13,2017-03-11 14:43:29.457788,90,896,464, +72,2017-03-11 14:43:29.457788,790,717,840, +11,2017-03-11 14:43:29.457788,507,251,832, +99,2017-03-11 14:43:29.457788,850,590,724, +57,2017-03-11 14:43:29.457788,797,358,477, +55,2017-03-11 14:43:29.457788,371,843,894, +84,2017-03-11 14:43:29.457788,52,725,148, +54,2017-03-11 14:43:29.457788,994,633,670, +8,2017-03-11 14:43:29.457788,530,134,805, +32,2017-03-11 14:43:29.457788,851,645,430, +36,2017-03-11 14:43:29.457788,896,261,353, +75,2017-03-11 14:43:29.457788,851,77,316, +65,2017-03-11 14:43:29.457788,434,794,197, +80,2017-03-11 14:43:29.457788,637,91,648, +69,2017-03-11 14:43:29.457788,816,796,224, +81,2017-03-11 14:43:29.457788,429,894,894, +96,2017-03-11 14:43:29.457788,28,699,278, +88,2017-03-11 14:43:29.457788,344,708,237, +24,2017-03-11 14:43:29.457788,969,590,987, +82,2017-03-11 14:43:29.457788,667,303,470, +10,2017-03-11 14:43:29.457788,96,667,906, +73,2017-03-11 14:43:29.457788,757,554,421, +57,2017-03-11 14:43:29.457788,350,645,384, +78,2017-03-11 14:43:29.457788,539,279,738, +57,2017-03-11 14:43:29.457788,978,16,447, +32,2017-03-11 14:43:29.457788,724,684,563, +69,2017-03-11 14:43:29.457788,274,550,515, +94,2017-03-11 14:43:29.457788,853,984,42, +95,2017-03-11 14:43:29.457788,651,947,682, +41,2017-03-11 14:43:29.457788,501,104,982, +85,2017-03-11 14:43:29.457788,749,366,630, +29,2017-03-11 14:43:29.457788,645,368,855, +62,2017-03-11 14:43:29.457788,385,302,945, +11,2017-03-11 14:43:29.457788,986,508,803, +26,2017-03-11 14:43:29.457788,58,317,201, +91,2017-03-11 14:43:29.457788,301,243,860, +95,2017-03-11 14:43:29.457788,190,542,360, +69,2017-03-11 14:43:29.457788,645,342,542, +39,2017-03-11 14:43:29.457788,708,172,682, +35,2017-03-11 14:43:29.457788,540,537,975, +92,2017-03-11 14:43:29.457788,839,920,34, +83,2017-03-11 14:43:29.457788,428,836,86, +49,2017-03-11 14:43:29.457788,153,287,396, +45,2017-03-11 14:43:29.457788,529,256,406, +72,2017-03-11 14:43:29.457788,797,767,410, +44,2017-03-11 14:43:29.457788,108,952,837, +82,2017-03-11 14:43:29.457788,124,519,168, +66,2017-03-11 14:43:29.457788,56,143,589, +90,2017-03-11 14:43:29.457788,63,622,721, +49,2017-03-11 14:43:29.457788,459,807,977, +61,2017-03-11 14:43:29.457788,94,373,66, +62,2017-03-11 14:43:29.457788,629,473,343, +43,2017-03-11 14:43:29.457788,239,753,869, +35,2017-03-11 14:43:29.457788,705,706,164, +83,2017-03-11 14:43:29.457788,226,332,493, +28,2017-03-11 14:43:29.457788,476,82,178, +54,2017-03-11 14:43:29.457788,704,899,31, +16,2017-03-11 14:43:29.457788,706,8,775, +80,2017-03-11 14:43:29.457788,381,841,424, +1,2017-03-11 14:43:29.457788,314,767,437, +55,2017-03-11 14:43:29.457788,520,306,901, +22,2017-03-11 14:43:29.457788,12,65,54, +24,2017-03-11 14:43:29.457788,397,547,520, +87,2017-03-11 14:43:29.457788,629,698,412, +33,2017-03-11 14:43:29.457788,597,443,496, +30,2017-03-11 14:43:29.457788,451,271,104, +83,2017-03-11 14:43:29.457788,112,528,842, +43,2017-03-11 14:43:29.457788,295,279,979, +81,2017-03-11 14:43:29.457788,585,880,39, +60,2017-03-11 14:43:29.457788,944,93,835, +34,2017-03-11 14:43:29.457788,640,355,214, +27,2017-03-11 14:43:29.457788,53,626,602, +65,2017-03-11 14:43:29.457788,69,99,953, +52,2017-03-11 14:43:29.457788,369,57,351, +48,2017-03-11 14:43:29.457788,584,193,907, +88,2017-03-11 14:43:29.457788,472,886,693, +6,2017-03-11 14:43:29.457788,765,732,654, +71,2017-03-11 14:43:29.457788,825,489,51, +47,2017-03-11 14:43:29.457788,844,264,734, +90,2017-03-11 14:43:29.457788,891,337,547, +96,2017-03-11 14:43:29.457788,435,500,479, +80,2017-03-11 14:43:29.457788,556,830,286, +14,2017-03-11 14:43:29.457788,23,193,19, +50,2017-03-11 14:43:29.457788,78,712,552, +84,2017-03-11 14:43:29.457788,445,206,553, +27,2017-03-11 14:43:29.457788,695,604,735, +54,2017-03-11 14:43:29.457788,868,469,437, +76,2017-03-11 14:43:29.457788,806,984,718, +24,2017-03-11 14:43:29.457788,483,197,45, +4,2017-03-11 14:43:29.457788,27,331,180, +5,2017-03-11 14:43:29.457788,524,200,546, +60,2017-03-11 14:43:29.457788,912,98,446, +36,2017-03-11 14:43:29.457788,304,999,626, +100,2017-03-11 14:43:29.457788,603,362,539, +47,2017-03-11 14:43:29.457788,831,976,229, +64,2017-03-11 14:43:29.457788,960,947,878, +44,2017-03-11 14:43:29.457788,144,923,483, +17,2017-03-11 14:43:29.457788,254,663,222, +78,2017-03-11 14:43:29.457788,863,768,380, +77,2017-03-11 14:43:29.457788,866,826,131, +17,2017-03-11 14:43:29.457788,825,758,169, +43,2017-03-11 14:43:29.457788,119,709,898, +95,2017-03-11 14:43:29.457788,685,127,587, +64,2017-03-11 14:43:29.457788,75,465,88, +22,2017-03-11 14:43:29.457788,387,572,390, +64,2017-03-11 14:43:29.457788,235,612,419, +10,2017-03-11 14:43:29.457788,379,799,873, +25,2017-03-11 14:43:29.457788,625,4,415, +45,2017-03-11 14:43:29.457788,762,585,878, +88,2017-03-11 14:43:29.457788,293,776,832, +98,2017-03-11 14:43:29.457788,903,419,623, +98,2017-03-11 14:43:29.457788,883,712,197, +27,2017-03-11 14:43:29.457788,283,587,912, +52,2017-03-11 14:43:29.457788,199,331,616, +58,2017-03-11 14:43:29.457788,130,488,823, +75,2017-03-11 14:43:29.457788,492,238,205, +25,2017-03-11 14:43:29.457788,823,82,136, +12,2017-03-11 14:43:29.457788,858,968,94, +76,2017-03-11 14:43:29.457788,386,717,739, +27,2017-03-11 14:43:29.457788,429,936,540, +71,2017-03-11 14:43:29.457788,523,452,231, +72,2017-03-11 14:43:29.457788,782,846,300, +91,2017-03-11 14:43:29.457788,335,123,667, +83,2017-03-11 14:43:29.457788,361,871,82, +18,2017-03-11 14:43:29.457788,953,218,300, +81,2017-03-11 14:43:29.457788,185,394,572, +57,2017-03-11 14:43:29.457788,112,312,841, +54,2017-03-11 14:43:29.457788,248,380,253, +77,2017-03-11 14:43:29.457788,832,484,492, +61,2017-03-11 14:43:29.457788,330,792,526, +67,2017-03-11 14:43:29.457788,915,193,492, +28,2017-03-11 14:43:29.457788,64,574,461, +2,2017-03-11 14:43:29.457788,792,761,828, +98,2017-03-11 14:43:29.457788,155,400,548, +27,2017-03-11 14:43:29.457788,712,388,808, +96,2017-03-11 14:43:29.457788,769,62,730, +60,2017-03-11 14:43:29.457788,546,223,215, +88,2017-03-11 14:43:29.457788,15,741,541, +93,2017-03-11 14:43:29.457788,933,34,207, +100,2017-03-11 14:43:29.457788,608,667,14, +40,2017-03-11 14:43:29.457788,428,842,376, +58,2017-03-11 14:43:29.457788,242,924,850, +95,2017-03-11 14:43:29.457788,312,659,914, +8,2017-03-11 14:43:29.457788,720,645,682, +27,2017-03-11 14:43:29.457788,867,897,142, +88,2017-03-11 14:43:29.457788,637,683,812, +57,2017-03-11 14:43:29.457788,716,19,568, +32,2017-03-11 14:43:29.457788,686,582,723, +11,2017-03-11 14:43:29.457788,424,99,697, +67,2017-03-11 14:43:29.457788,23,548,621, +34,2017-03-11 14:43:29.457788,206,535,416, +93,2017-03-11 14:43:29.457788,180,98,192, +5,2017-03-11 14:43:29.457788,995,334,929, +63,2017-03-11 14:43:29.457788,17,742,203, +73,2017-03-11 14:43:29.457788,761,771,57, +45,2017-03-11 14:43:29.457788,353,781,561, +78,2017-03-11 14:43:29.457788,880,259,444, +90,2017-03-11 14:43:29.457788,806,65,239, +1,2017-03-11 14:43:29.457788,600,655,939, +78,2017-03-11 14:43:29.457788,753,131,826, +75,2017-03-11 14:43:29.457788,466,755,380, +48,2017-03-11 14:43:29.457788,497,583,216, +26,2017-03-11 14:43:29.457788,354,273,704, +71,2017-03-11 14:43:29.457788,54,266,485, +93,2017-03-11 14:43:29.457788,524,928,837, +33,2017-03-11 14:43:29.457788,993,76,343, +59,2017-03-11 14:43:29.457788,731,282,372, +48,2017-03-11 14:43:29.457788,413,198,232, +88,2017-03-11 14:43:29.457788,954,612,361, +45,2017-03-11 14:43:29.457788,195,577,708, +55,2017-03-11 14:43:29.457788,851,412,256, +90,2017-03-11 14:43:29.457788,678,741,839, +20,2017-03-11 14:43:29.457788,669,676,532, +66,2017-03-11 14:43:29.457788,752,875,255, +48,2017-03-11 14:43:29.457788,157,627,967, +57,2017-03-11 14:43:29.457788,826,200,449, +78,2017-03-11 14:43:29.457788,812,810,230, +1,2017-03-11 14:43:29.457788,387,938,555, +24,2017-03-11 14:43:29.457788,350,812,143, +3,2017-03-11 14:43:29.457788,552,981,230, +22,2017-03-11 14:43:29.457788,657,762,884, +41,2017-03-11 14:43:29.457788,637,139,893, +79,2017-03-11 14:43:29.457788,767,860,365, +59,2017-03-11 14:43:29.457788,60,814,372, +87,2017-03-11 14:43:29.457788,624,602,878, +1,2017-03-11 14:43:29.457788,539,433,249, +89,2017-03-11 14:43:29.457788,245,392,917, +80,2017-03-11 14:43:29.457788,373,146,19, +3,2017-03-11 14:43:29.457788,908,903,440, +55,2017-03-11 14:43:29.457788,43,333,340, +81,2017-03-11 14:43:29.457788,193,705,402, +25,2017-03-11 14:43:29.457788,518,774,124, +14,2017-03-11 14:43:29.457788,375,2,153, +91,2017-03-11 14:43:29.457788,436,403,803, +68,2017-03-11 14:43:29.457788,795,720,478, +17,2017-03-11 14:43:29.457788,866,497,199, +77,2017-03-11 14:43:29.457788,401,639,321, +44,2017-03-11 14:43:29.457788,972,661,253, +17,2017-03-11 14:43:29.457788,365,655,419, +88,2017-03-11 14:43:29.457788,429,543,25, +80,2017-03-11 14:43:29.457788,546,178,719, +98,2017-03-11 14:43:29.457788,581,522,662, +38,2017-03-11 14:43:29.457788,242,141,544, +11,2017-03-11 14:43:29.457788,638,742,884, +4,2017-03-11 14:43:29.457788,382,204,482, +35,2017-03-11 14:43:29.457788,865,735,520, +23,2017-03-11 14:43:29.457788,390,939,113, +82,2017-03-11 14:43:29.457788,482,139,622, +3,2017-03-11 14:43:29.457788,317,341,10, +90,2017-03-11 14:43:29.457788,863,672,274, +11,2017-03-11 14:43:29.457788,812,817,214, +45,2017-03-11 14:43:29.457788,560,98,489, +94,2017-03-11 14:43:29.457788,302,971,296, +17,2017-03-11 14:43:29.457788,706,815,397, +10,2017-03-11 14:43:29.457788,754,510,914, +24,2017-03-11 14:43:29.457788,649,536,265, +97,2017-03-11 14:43:29.457788,877,274,864, +74,2017-03-11 14:43:29.457788,946,138,846, +76,2017-03-11 14:43:29.457788,955,60,209, +51,2017-03-11 14:43:29.457788,158,698,456, +46,2017-03-11 14:43:29.457788,669,752,627, +38,2017-03-11 14:43:29.457788,567,23,471, +32,2017-03-11 14:43:29.457788,534,385,558, +18,2017-03-11 14:43:29.457788,921,823,148, +80,2017-03-11 14:43:29.457788,97,12,539, +4,2017-03-11 14:43:29.457788,149,385,802, +10,2017-03-11 14:43:29.457788,445,10,619, +60,2017-03-11 14:43:29.457788,708,75,63, +38,2017-03-11 14:43:29.457788,827,689,753, +39,2017-03-11 14:43:29.457788,713,223,715, +25,2017-03-11 14:43:29.457788,608,273,428, +53,2017-03-11 14:43:29.457788,96,576,327, +19,2017-03-11 14:43:29.457788,588,865,236, +74,2017-03-11 14:43:29.457788,250,38,842, +69,2017-03-11 14:43:29.457788,48,461,298, +76,2017-03-11 14:43:29.457788,536,360,134, +36,2017-03-11 14:43:29.457788,49,886,757, +76,2017-03-11 14:43:29.457788,110,472,8, +72,2017-03-11 14:43:29.457788,745,437,247, +84,2017-03-11 14:43:29.457788,13,574,35, +60,2017-03-11 14:43:29.457788,439,271,339, +69,2017-03-11 14:43:29.457788,309,181,384, +36,2017-03-11 14:43:29.457788,642,681,113, +18,2017-03-11 14:43:29.457788,42,247,542, +9,2017-03-11 14:43:29.457788,133,298,853, +24,2017-03-11 14:43:29.457788,771,861,961, +52,2017-03-11 14:43:29.457788,298,208,358, +31,2017-03-11 14:43:29.457788,781,392,912, +22,2017-03-11 14:43:29.457788,663,251,909, +97,2017-03-11 14:43:29.457788,432,293,329, +7,2017-03-11 14:43:29.457788,974,442,253, +2,2017-03-11 14:43:29.457788,688,795,107, +82,2017-03-11 14:43:29.457788,93,960,65, +86,2017-03-11 14:43:29.457788,821,25,380, +12,2017-03-11 14:43:29.457788,233,738,430, +1,2017-03-11 14:43:29.457788,130,343,234, +79,2017-03-11 14:43:29.457788,594,143,765, +3,2017-03-11 14:43:29.457788,436,93,101, +41,2017-03-11 14:43:29.457788,535,354,427, +22,2017-03-11 14:43:29.457788,149,534,45, +24,2017-03-11 14:43:29.457788,494,109,106, +32,2017-03-11 14:43:29.457788,135,486,434, +37,2017-03-11 14:43:29.457788,224,865,382, +35,2017-03-11 14:43:29.457788,207,616,147, +80,2017-03-11 14:43:29.457788,759,912,828, +20,2017-03-11 14:43:29.457788,6,929,606, +54,2017-03-11 14:43:29.457788,283,33,764, +43,2017-03-11 14:43:29.457788,567,809,675, +6,2017-03-11 14:43:29.457788,918,781,376, +5,2017-03-11 14:43:29.457788,268,811,421, +49,2017-03-11 14:43:29.457788,675,803,846, +88,2017-03-11 14:43:29.457788,419,993,684, +18,2017-03-11 14:43:29.457788,905,511,374, +91,2017-03-11 14:43:29.457788,440,980,452, +72,2017-03-11 14:43:29.457788,14,216,155, +58,2017-03-11 14:43:29.457788,24,830,642, +94,2017-03-11 14:43:29.457788,611,18,996, +88,2017-03-11 14:43:29.457788,829,416,371, +50,2017-03-11 14:43:29.457788,219,217,387, +64,2017-03-11 14:43:29.457788,210,71,816, +11,2017-03-11 14:43:29.457788,582,190,26, +2,2017-03-11 14:43:29.457788,171,477,745, +18,2017-03-11 14:43:29.457788,693,900,765, +72,2017-03-11 14:43:29.457788,731,407,660, +34,2017-03-11 14:43:29.457788,426,656,221, +25,2017-03-11 14:43:29.457788,72,592,759, +29,2017-03-11 14:43:29.457788,809,146,929, +2,2017-03-11 14:43:29.457788,216,745,133, +80,2017-03-11 14:43:29.457788,935,159,820, +11,2017-03-11 14:43:29.457788,636,565,290, +33,2017-03-11 14:43:29.457788,465,56,47, +20,2017-03-11 14:43:29.457788,463,707,538, +89,2017-03-11 14:43:29.457788,363,759,143, +43,2017-03-11 14:43:29.457788,351,902,726, +16,2017-03-11 14:43:29.457788,48,654,178, +26,2017-03-11 14:43:29.457788,399,312,63, +33,2017-03-11 14:43:29.457788,471,883,440, +11,2017-03-11 14:43:29.457788,448,731,437, +91,2017-03-11 14:43:29.457788,787,484,109, +25,2017-03-11 14:43:29.457788,191,647,139, +55,2017-03-11 14:43:29.457788,406,282,989, +76,2017-03-11 14:43:29.457788,184,714,918, +23,2017-03-11 14:43:29.457788,369,96,497, +77,2017-03-11 14:43:29.457788,408,559,103, +88,2017-03-11 14:43:29.457788,442,543,986, +89,2017-03-11 14:43:29.457788,274,422,802, +6,2017-03-11 14:43:29.457788,906,911,310, +10,2017-03-11 14:43:29.457788,558,449,651, +96,2017-03-11 14:43:29.457788,731,639,723, +92,2017-03-11 14:43:29.457788,354,641,147, +72,2017-03-11 14:43:29.457788,737,644,491, +14,2017-03-11 14:43:29.457788,203,594,23, +65,2017-03-11 14:43:29.457788,137,9,534, +41,2017-03-11 14:43:29.457788,431,337,472, +34,2017-03-11 14:43:29.457788,248,782,435, +81,2017-03-11 14:43:29.457788,231,85,771, +96,2017-03-11 14:43:29.457788,725,493,877, +8,2017-03-11 14:43:29.457788,134,24,801, +87,2017-03-11 14:43:29.457788,668,292,16, +87,2017-03-11 14:43:29.457788,886,39,516, +2,2017-03-11 14:43:29.457788,48,51,433, +48,2017-03-11 14:43:29.457788,387,905,817, +64,2017-03-11 14:43:29.457788,687,251,441, +92,2017-03-11 14:43:29.457788,337,212,880, +6,2017-03-11 14:43:29.457788,705,757,140, +84,2017-03-11 14:43:29.457788,781,942,710, +45,2017-03-11 14:43:29.457788,234,726,320, +12,2017-03-11 14:43:29.457788,765,837,142, +81,2017-03-11 14:43:29.457788,887,575,292, +27,2017-03-11 14:43:29.457788,480,109,910, +17,2017-03-11 14:43:29.457788,360,351,85, +70,2017-03-11 14:43:29.457788,563,964,758, +27,2017-03-11 14:43:29.457788,721,899,108, +50,2017-03-11 14:43:29.457788,840,818,950, +7,2017-03-11 14:43:29.457788,544,270,193, +31,2017-03-11 14:43:29.457788,107,335,121, +99,2017-03-11 14:43:29.457788,910,413,269, +39,2017-03-11 14:43:29.457788,521,179,557, +88,2017-03-11 14:43:29.457788,531,642,578, +9,2017-03-11 14:43:29.457788,606,336,363, +33,2017-03-11 14:43:29.457788,234,471,828, +7,2017-03-11 14:43:29.457788,290,779,148, +83,2017-03-11 14:43:29.457788,49,342,142, +16,2017-03-11 14:43:29.457788,677,263,151, +59,2017-03-11 14:43:29.457788,676,420,977, +20,2017-03-11 14:43:29.457788,600,534,79, +13,2017-03-11 14:43:29.457788,176,657,224, +78,2017-03-11 14:43:29.457788,992,587,109, +23,2017-03-11 14:43:29.457788,58,937,301, +35,2017-03-11 14:43:29.457788,716,450,182, +76,2017-03-11 14:43:29.457788,792,324,921, +47,2017-03-11 14:43:29.457788,588,72,55, +26,2017-03-11 14:43:29.457788,492,32,461, +9,2017-03-11 14:43:29.457788,567,540,222, +74,2017-03-11 14:43:29.457788,197,446,524, +19,2017-03-11 14:43:29.457788,34,632,416, +9,2017-03-11 14:43:29.457788,569,717,440, +29,2017-03-11 14:43:29.457788,167,622,50, +96,2017-03-11 14:43:29.457788,946,971,427, +53,2017-03-11 14:43:29.457788,43,482,797, +53,2017-03-11 14:43:29.457788,515,259,626, +8,2017-03-11 14:43:29.457788,799,848,824, +100,2017-03-11 14:43:29.457788,295,348,184, +33,2017-03-11 14:43:29.457788,980,600,420, +55,2017-03-11 14:43:29.457788,317,860,835, +48,2017-03-11 14:43:29.457788,482,884,443, +43,2017-03-11 14:43:29.457788,855,870,962, +90,2017-03-11 14:43:29.457788,353,759,433, +87,2017-03-11 14:43:29.457788,18,60,949, +82,2017-03-11 14:43:29.457788,908,773,812, +20,2017-03-11 14:43:29.457788,120,996,531, +10,2017-03-11 14:43:29.457788,596,951,650, +91,2017-03-11 14:43:29.457788,811,485,398, +29,2017-03-11 14:43:29.457788,369,841,722, +22,2017-03-11 14:43:29.457788,712,684,123, +6,2017-03-11 14:43:29.457788,443,556,932, +46,2017-03-11 14:43:29.457788,615,881,277, +52,2017-03-11 14:43:29.457788,654,89,726, +77,2017-03-11 14:43:29.457788,85,256,875, +68,2017-03-11 14:43:29.457788,207,525,596, +2,2017-03-11 14:43:29.457788,10,994,312, +38,2017-03-11 14:43:29.457788,835,34,603, +55,2017-03-11 14:43:29.457788,717,726,611, +16,2017-03-11 14:43:29.457788,282,543,620, +90,2017-03-11 14:43:29.457788,425,898,420, +8,2017-03-11 14:43:29.457788,987,146,853, +7,2017-03-11 14:43:29.457788,403,728,754, +61,2017-03-11 14:43:29.457788,252,349,628, +26,2017-03-11 14:43:29.457788,343,940,641, +18,2017-03-11 14:43:29.457788,974,244,726, +69,2017-03-11 14:43:29.457788,970,337,851, +25,2017-03-11 14:43:29.457788,880,471,148, +30,2017-03-11 14:43:29.457788,369,568,383, +36,2017-03-11 14:43:29.457788,714,236,428, +12,2017-03-11 14:43:29.457788,964,181,727, +22,2017-03-11 14:43:29.457788,531,355,478, +87,2017-03-11 14:43:29.457788,295,119,53, +27,2017-03-11 14:43:29.457788,363,778,960, +33,2017-03-11 14:43:29.457788,115,811,583, +100,2017-03-11 14:43:29.457788,282,731,300, +65,2017-03-11 14:43:29.457788,299,684,6, +1,2017-03-11 14:43:29.457788,920,434,130, +88,2017-03-11 14:43:29.457788,615,857,99, +15,2017-03-11 14:43:29.457788,212,577,20, +51,2017-03-11 14:43:29.457788,696,73,776, +6,2017-03-11 14:43:29.457788,851,736,391, +97,2017-03-11 14:43:29.457788,547,974,961, +83,2017-03-11 14:43:29.457788,705,262,479, +0,2017-03-11 14:43:29.457788,945,485,18, +87,2017-03-11 14:43:29.457788,918,148,748, +53,2017-03-11 14:43:29.457788,5,848,679, +22,2017-03-11 14:43:29.457788,425,699,724, +12,2017-03-11 14:43:29.457788,772,500,180, +62,2017-03-11 14:43:29.457788,236,571,588, +78,2017-03-11 14:43:29.457788,545,550,611, +25,2017-03-11 14:43:29.457788,812,90,254, +76,2017-03-11 14:43:29.457788,575,272,622, +49,2017-03-11 14:43:29.457788,420,371,26, +43,2017-03-11 14:43:29.457788,218,705,642, +64,2017-03-11 14:43:29.457788,404,367,765, +18,2017-03-11 14:43:29.457788,867,945,798, +10,2017-03-11 14:43:29.457788,516,387,886, +6,2017-03-11 14:43:29.457788,937,497,310, +75,2017-03-11 14:43:29.457788,587,564,506, +16,2017-03-11 14:43:29.457788,836,128,654, +26,2017-03-11 14:43:29.457788,499,680,681, +72,2017-03-11 14:43:29.457788,385,323,361, +79,2017-03-11 14:43:29.457788,690,125,965, +56,2017-03-11 14:43:29.457788,70,763,660, +59,2017-03-11 14:43:29.457788,150,546,647, +9,2017-03-11 14:43:29.457788,43,957,835, +63,2017-03-11 14:43:29.457788,521,341,792, +36,2017-03-11 14:43:29.457788,468,446,612, +97,2017-03-11 14:43:29.457788,127,293,684, +51,2017-03-11 14:43:29.457788,617,44,301, +31,2017-03-11 14:43:29.457788,170,267,863, +24,2017-03-11 14:43:29.457788,30,523,827, +18,2017-03-11 14:43:29.457788,70,473,267, +11,2017-03-11 14:43:29.457788,430,102,743, +95,2017-03-11 14:43:29.457788,443,535,307, +91,2017-03-11 14:43:29.457788,981,919,878, +11,2017-03-11 14:43:29.457788,212,562,620, +83,2017-03-11 14:43:29.457788,607,921,136, +78,2017-03-11 14:43:29.457788,188,999,17, +22,2017-03-11 14:43:29.457788,522,844,398, +59,2017-03-11 14:43:29.457788,317,665,705, +75,2017-03-11 14:43:29.457788,768,448,698, +21,2017-03-11 14:43:29.457788,983,5,122, +96,2017-03-11 14:43:29.457788,924,0,71, +14,2017-03-11 14:43:29.457788,563,691,966, +17,2017-03-11 14:43:29.457788,612,101,946, +80,2017-03-11 14:43:29.457788,100,963,17, +62,2017-03-11 14:43:29.457788,807,415,215, +12,2017-03-11 14:43:29.457788,81,919,871, +85,2017-03-11 14:43:29.457788,367,569,59, +35,2017-03-11 14:43:29.457788,574,181,313, +50,2017-03-11 14:43:29.457788,182,384,635, +74,2017-03-11 14:43:29.457788,75,601,914, +69,2017-03-11 14:43:29.457788,703,860,486, +80,2017-03-11 14:43:29.457788,823,503,426, +63,2017-03-11 14:43:29.457788,918,640,754, +100,2017-03-11 14:43:29.457788,560,625,848, +93,2017-03-11 14:43:29.457788,194,907,276, +77,2017-03-11 14:43:29.457788,88,590,267, +27,2017-03-11 14:43:29.457788,974,902,14, +5,2017-03-11 14:43:29.457788,504,928,735, +21,2017-03-11 14:43:29.457788,788,220,9, +61,2017-03-11 14:43:29.457788,723,435,241, +64,2017-03-11 14:43:29.457788,75,995,641, +64,2017-03-11 14:43:29.457788,620,488,562, +81,2017-03-11 14:43:29.457788,395,838,583, +48,2017-03-11 14:43:29.457788,428,850,753, +40,2017-03-11 14:43:29.457788,753,767,450, +26,2017-03-11 14:43:29.457788,695,185,462, +48,2017-03-11 14:43:29.457788,405,472,93, +13,2017-03-11 14:43:29.457788,906,334,770, +98,2017-03-11 14:43:29.457788,329,411,617, +95,2017-03-11 14:43:29.457788,899,179,763, +29,2017-03-11 14:43:29.457788,17,346,778, +45,2017-03-11 14:43:29.457788,196,531,847, +95,2017-03-11 14:43:29.457788,298,297,206, +99,2017-03-11 14:43:29.457788,482,668,475, +89,2017-03-11 14:43:29.457788,140,568,16, +5,2017-03-11 14:43:29.457788,902,786,28, +23,2017-03-11 14:43:29.457788,196,645,179, +10,2017-03-11 14:43:29.457788,824,942,390, +84,2017-03-11 14:43:29.457788,288,168,286, +48,2017-03-11 14:43:29.457788,699,133,434, +100,2017-03-11 14:43:29.457788,430,640,989, +91,2017-03-11 14:43:29.457788,308,464,799, +45,2017-03-11 14:43:29.457788,33,815,493, +93,2017-03-11 14:43:29.457788,601,521,165, +80,2017-03-11 14:43:29.457788,166,345,893, +99,2017-03-11 14:43:29.457788,287,283,831, +57,2017-03-11 14:43:29.457788,450,117,60, +15,2017-03-11 14:43:29.457788,251,494,146, +68,2017-03-11 14:43:29.457788,133,135,593, +44,2017-03-11 14:43:29.457788,599,392,888, +63,2017-03-11 14:43:29.457788,207,382,567, +81,2017-03-11 14:43:29.457788,903,732,605, +7,2017-03-11 14:43:29.457788,77,498,58, +36,2017-03-11 14:43:29.457788,780,889,938, +23,2017-03-11 14:43:29.457788,6,998,380, +26,2017-03-11 14:43:29.457788,492,525,938, +63,2017-03-11 14:43:29.457788,660,531,67, +26,2017-03-11 14:43:29.457788,923,955,892, +13,2017-03-11 14:43:29.457788,337,459,939, +24,2017-03-11 14:43:29.457788,191,544,308, +27,2017-03-11 14:43:29.457788,42,366,632, +82,2017-03-11 14:43:29.457788,255,570,53, +26,2017-03-11 14:43:29.457788,569,433,518, +6,2017-03-11 14:43:29.457788,958,456,686, +62,2017-03-11 14:43:29.457788,987,753,879, +91,2017-03-11 14:43:29.457788,708,771,41, +4,2017-03-11 14:43:29.457788,230,980,284, +42,2017-03-11 14:43:29.457788,524,592,690, +57,2017-03-11 14:43:29.457788,958,321,388, +21,2017-03-11 14:43:29.457788,892,441,475, +46,2017-03-11 14:43:29.457788,873,994,521, +83,2017-03-11 14:43:29.457788,450,207,450, +44,2017-03-11 14:43:29.457788,960,329,347, +67,2017-03-11 14:43:29.457788,99,388,712, +33,2017-03-11 14:43:29.457788,368,995,751, +89,2017-03-11 14:43:29.457788,587,440,458, +55,2017-03-11 14:43:29.457788,762,846,759, +65,2017-03-11 14:43:29.457788,286,234,114, +16,2017-03-11 14:43:29.457788,228,634,991, +68,2017-03-11 14:43:29.457788,841,441,115, +80,2017-03-11 14:43:29.457788,770,462,468, +87,2017-03-11 14:43:29.457788,850,180,199, +22,2017-03-11 14:43:29.457788,176,950,110, +76,2017-03-11 14:43:29.457788,390,568,308, +15,2017-03-11 14:43:29.457788,413,68,805, +70,2017-03-11 14:43:29.457788,302,918,859, +53,2017-03-11 14:43:29.457788,553,850,208, +39,2017-03-11 14:43:29.457788,292,323,195, +6,2017-03-11 14:43:29.457788,785,664,931, +64,2017-03-11 14:43:29.457788,844,130,853, +2,2017-03-11 14:43:29.457788,80,963,783, +47,2017-03-11 14:43:29.457788,531,91,621, +94,2017-03-11 14:43:29.457788,159,426,643, +46,2017-03-11 14:43:29.457788,344,502,991, +90,2017-03-11 14:43:29.457788,352,200,291, +64,2017-03-11 14:43:29.457788,523,487,705, +31,2017-03-11 14:43:29.457788,151,637,944, +99,2017-03-11 14:43:29.457788,767,797,14, +85,2017-03-11 14:43:29.457788,760,797,316, +29,2017-03-11 14:43:29.457788,888,937,234, +5,2017-03-11 14:43:29.457788,363,877,508, +71,2017-03-11 14:43:29.457788,379,499,604, +73,2017-03-11 14:43:29.457788,699,895,375, +22,2017-03-11 14:43:29.457788,382,80,531, +53,2017-03-11 14:43:29.457788,717,474,527, +48,2017-03-11 14:43:29.457788,271,542,331, +3,2017-03-11 14:43:29.457788,339,647,321, +23,2017-03-11 14:43:29.457788,585,555,274, +95,2017-03-11 14:43:29.457788,432,782,655, +81,2017-03-11 14:43:29.457788,281,259,542, +98,2017-03-11 14:43:29.457788,155,917,203, +54,2017-03-11 14:43:29.457788,997,733,69, +71,2017-03-11 14:43:29.457788,208,597,198, +48,2017-03-11 14:43:29.457788,139,529,509, +48,2017-03-11 14:43:29.457788,177,830,704, +76,2017-03-11 14:43:29.457788,385,978,709, +82,2017-03-11 14:43:29.457788,760,364,627, +4,2017-03-11 14:43:29.457788,623,168,22, +78,2017-03-11 14:43:29.457788,85,224,314, +8,2017-03-11 14:43:29.457788,958,384,796, +17,2017-03-11 14:43:29.457788,981,994,644, +12,2017-03-11 14:43:29.457788,523,153,596, +70,2017-03-11 14:43:29.457788,983,301,461, +37,2017-03-11 14:43:29.457788,279,170,183, +4,2017-03-11 14:43:29.457788,534,810,79, +16,2017-03-11 14:43:29.457788,978,101,935, +6,2017-03-11 14:43:29.457788,325,250,145, +28,2017-03-11 14:43:29.457788,634,941,449, +61,2017-03-11 14:43:29.457788,934,93,734, +46,2017-03-11 14:43:29.457788,245,330,157, +23,2017-03-11 14:43:29.457788,631,618,595, +91,2017-03-11 14:43:29.457788,789,779,948, +32,2017-03-11 14:43:29.457788,589,27,481, +57,2017-03-11 14:43:29.457788,128,416,631, +45,2017-03-11 14:43:29.457788,666,776,737, +30,2017-03-11 14:43:29.457788,716,185,914, +65,2017-03-11 14:43:29.457788,278,648,108, +52,2017-03-11 14:43:29.457788,978,266,751, +61,2017-03-11 14:43:29.457788,884,347,518, +67,2017-03-11 14:43:29.457788,126,466,996, +71,2017-03-11 14:43:29.457788,493,477,282, +62,2017-03-11 14:43:29.457788,893,913,74, +56,2017-03-11 14:43:29.457788,688,811,859, +40,2017-03-11 14:43:29.457788,996,774,55, +27,2017-03-11 14:43:29.457788,422,164,797, +40,2017-03-11 14:43:29.457788,429,548,9, +31,2017-03-11 14:43:29.457788,895,526,986, +2,2017-03-11 14:43:29.457788,992,982,735, +48,2017-03-11 14:43:29.457788,458,17,105, +35,2017-03-11 14:43:29.457788,930,179,911, +62,2017-03-11 14:43:29.457788,990,770,23, +99,2017-03-11 14:43:29.457788,544,78,259, +97,2017-03-11 14:43:29.457788,242,56,366, +67,2017-03-11 14:43:29.457788,604,374,984, +50,2017-03-11 14:43:29.457788,901,970,520, +89,2017-03-11 14:43:29.457788,952,255,377, +41,2017-03-11 14:43:29.457788,273,482,762, +20,2017-03-11 14:43:29.457788,662,673,821, +65,2017-03-11 14:43:29.457788,443,843,637, +99,2017-03-11 14:43:29.457788,922,896,954, +16,2017-03-11 14:43:29.457788,952,319,834, +56,2017-03-11 14:43:29.457788,694,818,55, +59,2017-03-11 14:43:29.457788,788,575,487, +74,2017-03-11 14:43:29.457788,830,865,149, +10,2017-03-11 14:43:29.457788,347,911,305, +1,2017-03-11 14:43:29.457788,584,126,660, +3,2017-03-11 14:43:29.457788,970,297,15, +89,2017-03-11 14:43:29.457788,193,968,54, +14,2017-03-11 14:43:29.457788,287,888,700, +98,2017-03-11 14:43:29.457788,707,755,576, +49,2017-03-11 14:43:29.457788,330,63,234, +16,2017-03-11 14:43:29.457788,928,384,262, +27,2017-03-11 14:43:29.457788,295,568,283, +88,2017-03-11 14:43:29.457788,694,943,906, +66,2017-03-11 14:43:29.457788,240,920,554, +43,2017-03-11 14:43:29.457788,888,609,577, +18,2017-03-11 14:43:29.457788,497,277,157, +20,2017-03-11 14:43:29.457788,32,733,698, +36,2017-03-11 14:43:29.457788,796,932,521, +72,2017-03-11 14:43:29.457788,316,783,999, +61,2017-03-11 14:43:29.457788,351,282,489, +4,2017-03-11 14:43:29.457788,226,395,708, +47,2017-03-11 14:43:29.457788,315,262,899, +20,2017-03-11 14:43:29.457788,871,476,379, +37,2017-03-11 14:43:29.457788,753,536,572, +78,2017-03-11 14:43:29.457788,269,271,146, +6,2017-03-11 14:43:29.457788,203,667,789, +52,2017-03-11 14:43:29.457788,451,787,130, +80,2017-03-11 14:43:29.457788,69,619,846, +29,2017-03-11 14:43:29.457788,14,554,761, +33,2017-03-11 14:43:29.457788,817,659,532, +69,2017-03-11 14:43:29.457788,135,910,56, +89,2017-03-11 14:43:29.457788,446,629,672, +71,2017-03-11 14:43:29.457788,899,819,780, +10,2017-03-11 14:43:29.457788,486,568,622, +94,2017-03-11 14:43:29.457788,355,752,738, +42,2017-03-11 14:43:29.457788,371,585,720, +38,2017-03-11 14:43:29.457788,139,480,713, +96,2017-03-11 14:43:29.457788,140,245,643, +27,2017-03-11 14:43:29.457788,155,699,162, +60,2017-03-11 14:43:29.457788,328,834,317, +23,2017-03-11 14:43:29.457788,653,96,330, +14,2017-03-11 14:43:29.457788,665,952,76, +2,2017-03-11 14:43:29.457788,704,814,445, +7,2017-03-11 14:43:29.457788,399,165,459, +54,2017-03-11 14:43:29.457788,645,173,493, +78,2017-03-11 14:43:29.457788,417,136,59, +57,2017-03-11 14:43:29.457788,835,221,174, +16,2017-03-11 14:43:29.457788,56,491,390, +71,2017-03-11 14:43:29.457788,587,720,848, +25,2017-03-11 14:43:29.457788,672,925,272, +38,2017-03-11 14:43:29.457788,739,717,450, +14,2017-03-11 14:43:29.457788,882,909,676, +53,2017-03-11 14:43:29.457788,82,169,312, +50,2017-03-11 14:43:29.457788,305,371,72, +14,2017-03-11 14:43:29.457788,593,247,303, +65,2017-03-11 14:43:29.457788,738,693,358, +33,2017-03-11 14:43:29.457788,413,206,577, +9,2017-03-11 14:43:29.457788,131,849,461, +87,2017-03-11 14:43:29.457788,566,911,8, +45,2017-03-11 14:43:29.457788,820,684,975, +90,2017-03-11 14:43:29.457788,853,287,402, +16,2017-03-11 14:43:29.457788,658,474,297, +25,2017-03-11 14:43:29.457788,720,600,899, +46,2017-03-11 14:43:29.457788,293,257,783, +71,2017-03-11 14:43:29.457788,463,361,792, +59,2017-03-11 14:43:29.457788,210,252,463, +78,2017-03-11 14:43:29.457788,163,471,224, +98,2017-03-11 14:43:29.457788,155,199,886, +1,2017-03-11 14:43:29.457788,486,288,164, +14,2017-03-11 14:43:29.457788,761,462,395, +48,2017-03-11 14:43:29.457788,62,294,940, +35,2017-03-11 14:43:29.457788,551,723,61, +1,2017-03-11 14:43:29.457788,84,853,607, +29,2017-03-11 14:43:29.457788,106,71,70, +27,2017-03-11 14:43:29.457788,541,294,253, +70,2017-03-11 14:43:29.457788,493,139,703, +98,2017-03-11 14:43:29.457788,427,867,123, +19,2017-03-11 14:43:29.457788,329,518,670, +39,2017-03-11 14:43:29.457788,812,610,746, +36,2017-03-11 14:43:29.457788,333,807,377, +42,2017-03-11 14:43:29.457788,660,985,711, +77,2017-03-11 14:43:29.457788,55,780,35, +60,2017-03-11 14:43:29.457788,74,287,293, +57,2017-03-11 14:43:29.457788,426,996,545, +85,2017-03-11 14:43:29.457788,863,668,41, +19,2017-03-11 14:43:29.457788,185,711,583, +100,2017-03-11 14:43:29.457788,321,329,361, +65,2017-03-11 14:43:29.457788,136,738,71, +80,2017-03-11 14:43:29.457788,723,782,561, +78,2017-03-11 14:43:29.457788,562,596,375, +64,2017-03-11 14:43:29.457788,883,668,202, +31,2017-03-11 14:43:29.457788,664,747,163, +53,2017-03-11 14:43:29.457788,415,204,720, +60,2017-03-11 14:43:29.457788,915,303,598, +24,2017-03-11 14:43:29.457788,631,959,890, +77,2017-03-11 14:43:29.457788,697,961,563, +42,2017-03-11 14:43:29.457788,743,124,198, +31,2017-03-11 14:43:29.457788,720,573,941, +60,2017-03-11 14:43:29.457788,241,144,914, +90,2017-03-11 14:43:29.457788,891,76,432, +31,2017-03-11 14:43:29.457788,280,152,906, +19,2017-03-11 14:43:29.457788,454,504,430, +9,2017-03-11 14:43:29.457788,463,319,853, +16,2017-03-11 14:43:29.457788,280,416,580, +2,2017-03-11 14:43:29.457788,540,779,328, +26,2017-03-11 14:43:29.457788,352,269,864, +59,2017-03-11 14:43:29.457788,413,778,497, +30,2017-03-11 14:43:29.457788,854,929,610, +13,2017-03-11 14:43:29.457788,81,516,328, +53,2017-03-11 14:43:29.457788,20,758,621, +48,2017-03-11 14:43:29.457788,78,474,644, +36,2017-03-11 14:43:29.457788,889,225,381, +43,2017-03-11 14:43:29.457788,3,709,689, +35,2017-03-11 14:43:29.457788,979,553,947, +39,2017-03-11 14:43:29.457788,331,444,696, +18,2017-03-11 14:43:29.457788,374,305,318, +45,2017-03-11 14:43:29.457788,821,647,989, +84,2017-03-11 14:43:29.457788,405,610,325, +48,2017-03-11 14:43:29.457788,83,970,841, +97,2017-03-11 14:43:29.457788,194,222,402, +20,2017-03-11 14:43:29.457788,931,91,552, +91,2017-03-11 14:43:29.457788,644,500,302, +98,2017-03-11 14:43:29.457788,944,997,160, +32,2017-03-11 14:43:29.457788,303,478,772, +12,2017-03-11 14:43:29.457788,125,761,965, +53,2017-03-11 14:43:29.457788,371,291,12, +45,2017-03-11 14:43:29.457788,260,853,427, +45,2017-03-11 14:43:29.457788,75,829,652, +1,2017-03-11 14:43:29.457788,920,204,916, +56,2017-03-11 14:43:29.457788,704,218,539, +65,2017-03-11 14:43:29.457788,215,699,965, +52,2017-03-11 14:43:29.457788,177,737,642, +30,2017-03-11 14:43:29.457788,498,607,832, +87,2017-03-11 14:43:29.457788,898,844,324, +16,2017-03-11 14:43:29.457788,697,751,613, +77,2017-03-11 14:43:29.457788,579,265,777, +50,2017-03-11 14:43:29.457788,470,693,63, +17,2017-03-11 14:43:29.457788,910,602,821, +13,2017-03-11 14:43:29.457788,301,787,643, +48,2017-03-11 14:43:29.457788,524,285,780, +2,2017-03-11 14:43:29.457788,892,612,892, +79,2017-03-11 14:43:29.457788,456,215,949, +15,2017-03-11 14:43:29.457788,966,562,924, +55,2017-03-11 14:43:29.457788,827,701,44, +30,2017-03-11 14:43:29.457788,394,108,470, +30,2017-03-11 14:43:29.457788,710,292,429, +1,2017-03-11 14:43:29.457788,78,72,489, +60,2017-03-11 14:43:29.457788,357,269,625, +25,2017-03-11 14:43:29.457788,880,517,39, +34,2017-03-11 14:43:29.457788,732,988,489, +70,2017-03-11 14:43:29.457788,550,413,243, +38,2017-03-11 14:43:29.457788,114,288,673, +51,2017-03-11 14:43:29.457788,395,143,811, +10,2017-03-11 14:43:29.457788,435,241,116, +51,2017-03-11 14:43:29.457788,313,604,116, +67,2017-03-11 14:43:29.457788,873,741,920, +75,2017-03-11 14:43:29.457788,257,959,90, +99,2017-03-11 14:43:29.457788,947,578,687, +50,2017-03-11 14:43:29.457788,991,930,873, +10,2017-03-11 14:43:29.457788,217,546,612, +61,2017-03-11 14:43:29.457788,690,423,717, +12,2017-03-11 14:43:29.457788,664,833,638, +98,2017-03-11 14:43:29.457788,437,754,647, +31,2017-03-11 14:43:29.457788,494,567,64, +75,2017-03-11 14:43:29.457788,525,154,740, +47,2017-03-11 14:43:29.457788,732,427,969, +72,2017-03-11 14:43:29.457788,357,841,827, +57,2017-03-11 14:43:29.457788,388,439,186, +8,2017-03-11 14:43:29.457788,862,903,202, +53,2017-03-11 14:43:29.457788,736,840,502, +17,2017-03-11 14:43:29.457788,594,149,484, +9,2017-03-11 14:43:29.457788,715,548,839, +24,2017-03-11 14:43:29.457788,701,579,713, +43,2017-03-11 14:43:29.457788,6,682,156, +36,2017-03-11 14:43:29.457788,523,983,937, +91,2017-03-11 14:43:29.457788,421,123,988, +28,2017-03-11 14:43:29.457788,26,190,808, +76,2017-03-11 14:43:29.457788,30,310,936, +62,2017-03-11 14:43:29.457788,459,420,712, +17,2017-03-11 14:43:29.457788,967,551,416, +67,2017-03-11 14:43:29.457788,131,129,102, +14,2017-03-11 14:43:29.457788,810,257,500, +33,2017-03-11 14:43:29.457788,240,436,244, +66,2017-03-11 14:43:29.457788,559,232,944, +59,2017-03-11 14:43:29.457788,423,753,348, +45,2017-03-11 14:43:29.457788,63,284,77, +52,2017-03-11 14:43:29.457788,704,789,697, +67,2017-03-11 14:43:29.457788,340,113,340, +47,2017-03-11 14:43:29.457788,241,442,607, +5,2017-03-11 14:43:29.457788,699,107,385, +94,2017-03-11 14:43:29.457788,543,629,600, +10,2017-03-11 14:43:29.457788,861,544,689, +28,2017-03-11 14:43:29.457788,296,37,737, +36,2017-03-11 14:43:29.457788,322,813,882, +3,2017-03-11 14:43:29.457788,602,579,697, +94,2017-03-11 14:43:29.457788,691,38,412, +93,2017-03-11 14:43:29.457788,479,20,984, +18,2017-03-11 14:43:29.457788,127,369,117, +67,2017-03-11 14:43:29.457788,998,717,773, +86,2017-03-11 14:43:29.457788,260,462,144, +56,2017-03-11 14:43:29.457788,499,880,916, +82,2017-03-11 14:43:29.457788,694,798,846, +30,2017-03-11 14:43:29.457788,377,544,238, +7,2017-03-11 14:43:29.457788,582,650,1, +6,2017-03-11 14:43:29.457788,670,985,239, +80,2017-03-11 14:43:29.457788,355,356,467, +35,2017-03-11 14:43:29.457788,73,240,213, +33,2017-03-11 14:43:29.457788,702,357,890, +20,2017-03-11 14:43:29.457788,237,806,22, +93,2017-03-11 14:43:29.457788,604,868,227, +98,2017-03-11 14:43:29.457788,412,464,49, +99,2017-03-11 14:43:29.457788,115,49,55, +78,2017-03-11 14:43:29.457788,35,294,582, +39,2017-03-11 14:43:29.457788,651,49,742, +72,2017-03-11 14:43:29.457788,290,955,57, +99,2017-03-11 14:43:29.457788,312,947,193, +55,2017-03-11 14:43:29.457788,753,215,479, +36,2017-03-11 14:43:29.457788,83,706,338, +50,2017-03-11 14:43:29.457788,170,387,490, +28,2017-03-11 14:43:29.457788,436,545,70, +47,2017-03-11 14:43:29.457788,839,652,860, +49,2017-03-11 14:43:29.457788,701,602,214, +99,2017-03-11 14:43:29.457788,557,271,982, +87,2017-03-11 14:43:29.457788,217,175,417, +97,2017-03-11 14:43:29.457788,390,896,328, +47,2017-03-11 14:43:29.457788,602,666,970, +77,2017-03-11 14:43:29.457788,53,459,57, +49,2017-03-11 14:43:29.457788,4,127,959, +84,2017-03-11 14:43:29.457788,778,819,333, +48,2017-03-11 14:43:29.457788,421,547,470, +98,2017-03-11 14:43:29.457788,817,452,847, +3,2017-03-11 14:43:29.457788,627,264,6, +2,2017-03-11 14:43:29.457788,161,333,492, +76,2017-03-11 14:43:29.457788,999,461,535, +5,2017-03-11 14:43:29.457788,921,591,541, +92,2017-03-11 14:43:29.457788,718,500,768, +50,2017-03-11 14:43:29.457788,319,101,975, +74,2017-03-11 14:43:29.457788,648,445,719, +47,2017-03-11 14:43:29.457788,896,567,501, +52,2017-03-11 14:43:29.457788,831,506,541, +99,2017-03-11 14:43:29.457788,840,33,754, +84,2017-03-11 14:43:29.457788,494,289,891, +41,2017-03-11 14:43:29.457788,880,432,340, +60,2017-03-11 14:43:29.457788,932,108,94, +25,2017-03-11 14:43:29.457788,209,69,992, +86,2017-03-11 14:43:29.457788,514,711,324, +41,2017-03-11 14:43:29.457788,278,825,933, +11,2017-03-11 14:43:29.457788,331,474,101, +17,2017-03-11 14:43:29.457788,507,855,10, +0,2017-03-11 14:43:29.457788,144,901,416, +2,2017-03-11 14:43:29.457788,333,756,622, +26,2017-03-11 14:43:29.457788,864,716,516, +7,2017-03-11 14:43:29.457788,785,508,931, +30,2017-03-11 14:43:29.457788,219,255,709, +50,2017-03-11 14:43:29.457788,79,642,607, +41,2017-03-11 14:43:29.457788,117,708,581, +62,2017-03-11 14:43:29.457788,563,591,625, +71,2017-03-11 14:43:29.457788,492,41,732, +82,2017-03-11 14:43:29.457788,797,354,89, +66,2017-03-11 14:43:29.457788,70,605,734, +86,2017-03-11 14:43:29.457788,113,665,154, +33,2017-03-11 14:43:29.457788,920,863,830, +100,2017-03-11 14:43:29.457788,505,437,409, +62,2017-03-11 14:43:29.457788,145,990,245, +71,2017-03-11 14:43:29.457788,581,870,415, +7,2017-03-11 14:43:29.457788,911,147,898, +71,2017-03-11 14:43:29.457788,501,987,368, +57,2017-03-11 14:43:29.457788,593,102,426, +71,2017-03-11 14:43:29.457788,767,580,38, +69,2017-03-11 14:43:29.457788,443,868,685, +95,2017-03-11 14:43:29.457788,305,94,568, +45,2017-03-11 14:43:29.457788,84,813,157, +67,2017-03-11 14:43:29.457788,683,572,738, +59,2017-03-11 14:43:29.457788,719,636,301, +22,2017-03-11 14:43:29.457788,624,669,791, +22,2017-03-11 14:43:29.457788,770,217,922, +54,2017-03-11 14:43:29.457788,797,961,223, +24,2017-03-11 14:43:29.457788,829,908,186, +13,2017-03-11 14:43:29.457788,2,755,584, +9,2017-03-11 14:43:29.457788,568,742,752, +25,2017-03-11 14:43:29.457788,314,490,844, +3,2017-03-11 14:43:29.457788,127,144,253, +75,2017-03-11 14:43:29.457788,813,44,967, +58,2017-03-11 14:43:29.457788,260,889,120, +6,2017-03-11 14:43:29.457788,850,343,296, +68,2017-03-11 14:43:29.457788,251,483,813, +25,2017-03-11 14:43:29.457788,237,397,340, +80,2017-03-11 14:43:29.457788,138,91,55, +45,2017-03-11 14:43:29.457788,581,899,485, +71,2017-03-11 14:43:29.457788,43,738,458, +86,2017-03-11 14:43:29.457788,782,425,439, +4,2017-03-11 14:43:29.457788,314,559,99, +16,2017-03-11 14:43:29.457788,903,396,842, +15,2017-03-11 14:43:29.457788,879,655,407, +12,2017-03-11 14:43:29.457788,52,747,921, +19,2017-03-11 14:43:29.457788,838,976,642, +42,2017-03-11 14:43:29.457788,875,128,127, +92,2017-03-11 14:43:29.457788,866,585,774, +65,2017-03-11 14:43:29.457788,10,213,690, +32,2017-03-11 14:43:29.457788,772,789,488, +67,2017-03-11 14:43:29.457788,185,330,828, +6,2017-03-11 14:43:29.457788,985,235,179, +4,2017-03-11 14:43:29.457788,982,100,227, +82,2017-03-11 14:43:29.457788,76,869,239, +95,2017-03-11 14:43:29.457788,996,365,869, +86,2017-03-11 14:43:29.457788,950,642,510, +96,2017-03-11 14:43:29.457788,855,200,284, +63,2017-03-11 14:43:29.457788,989,772,302, +17,2017-03-11 14:43:29.457788,102,130,237, +9,2017-03-11 14:43:29.457788,366,417,124, +35,2017-03-11 14:43:29.457788,517,351,167, +59,2017-03-11 14:43:29.457788,219,406,545, +22,2017-03-11 14:43:29.457788,772,414,78, +72,2017-03-11 14:43:29.457788,56,588,682, +91,2017-03-11 14:43:29.457788,787,966,539, +78,2017-03-11 14:43:29.457788,739,840,950, +84,2017-03-11 14:43:29.457788,971,187,928, +34,2017-03-11 14:43:29.457788,604,52,684, +12,2017-03-11 14:43:29.457788,403,851,714, +62,2017-03-11 14:43:29.457788,257,259,838, +3,2017-03-11 14:43:29.457788,672,916,751, +73,2017-03-11 14:43:29.457788,504,433,640, +29,2017-03-11 14:43:29.457788,399,178,67, +14,2017-03-11 14:43:29.457788,19,17,979, +99,2017-03-11 14:43:29.457788,204,907,326, +81,2017-03-11 14:43:29.457788,959,9,928, +36,2017-03-11 14:43:29.457788,861,642,984, +12,2017-03-11 14:43:29.457788,901,822,147, +57,2017-03-11 14:43:29.457788,738,898,302, +24,2017-03-11 14:43:29.457788,331,942,533, +73,2017-03-11 14:43:29.457788,121,600,868, +14,2017-03-11 14:43:29.457788,618,847,129, +82,2017-03-11 14:43:29.457788,754,454,630, +71,2017-03-11 14:43:29.457788,464,558,75, +32,2017-03-11 14:43:29.457788,201,59,443, +10,2017-03-11 14:43:29.457788,881,590,675, +62,2017-03-11 14:43:29.457788,488,978,860, +82,2017-03-11 14:43:29.457788,920,393,549, +4,2017-03-11 14:43:29.457788,993,418,180, +61,2017-03-11 14:43:29.457788,265,309,433, +2,2017-03-11 14:43:29.457788,763,62,733, +23,2017-03-11 14:43:29.457788,620,808,551, +82,2017-03-11 14:43:29.457788,867,994,923, +75,2017-03-11 14:43:29.457788,584,598,367, +7,2017-03-11 14:43:29.457788,576,227,891, +50,2017-03-11 14:43:29.457788,620,441,536, +61,2017-03-11 14:43:29.457788,858,716,224, +12,2017-03-11 14:43:29.457788,25,657,142, +79,2017-03-11 14:43:29.457788,719,875,14, +34,2017-03-11 14:43:29.457788,683,565,160, +55,2017-03-11 14:43:29.457788,558,83,297, +14,2017-03-11 14:43:29.457788,681,664,215, +26,2017-03-11 14:43:29.457788,891,106,753, +51,2017-03-11 14:43:29.457788,547,289,124, +40,2017-03-11 14:43:29.457788,5,348,528, +3,2017-03-11 14:43:29.457788,5,670,816, +72,2017-03-11 14:43:29.457788,545,830,64, +23,2017-03-11 14:43:29.457788,395,224,777, +95,2017-03-11 14:43:29.457788,307,75,96, +99,2017-03-11 14:43:29.457788,739,310,245, +63,2017-03-11 14:43:29.457788,416,998,140, +96,2017-03-11 14:43:29.457788,287,264,368, +29,2017-03-11 14:43:29.457788,612,896,320, +62,2017-03-11 14:43:29.457788,566,137,340, +11,2017-03-11 14:43:29.457788,967,404,339, +36,2017-03-11 14:43:29.457788,628,116,315, +94,2017-03-11 14:43:29.457788,191,411,924, +93,2017-03-11 14:43:29.457788,721,169,558, +14,2017-03-11 14:43:29.457788,167,698,100, +45,2017-03-11 14:43:29.457788,962,468,744, +57,2017-03-11 14:43:29.457788,364,65,190, +93,2017-03-11 14:43:29.457788,201,530,42, +17,2017-03-11 14:43:29.457788,934,381,530, +56,2017-03-11 14:43:29.457788,497,845,498, +69,2017-03-11 14:43:29.457788,256,421,617, +98,2017-03-11 14:43:29.457788,590,175,115, +76,2017-03-11 14:43:29.457788,873,215,210, +84,2017-03-11 14:43:29.457788,684,955,409, +5,2017-03-11 14:43:29.457788,20,599,979, +22,2017-03-11 14:43:29.457788,129,21,389, +6,2017-03-11 14:43:29.457788,401,919,626, +90,2017-03-11 14:43:29.457788,764,123,586, +2,2017-03-11 14:43:29.457788,545,203,997, +13,2017-03-11 14:43:29.457788,378,112,892, +25,2017-03-11 14:43:29.457788,328,102,86, +1,2017-03-11 14:43:29.457788,57,495,60, +8,2017-03-11 14:43:29.457788,94,38,298, +22,2017-03-11 14:43:29.457788,59,687,286, +46,2017-03-11 14:43:29.457788,606,912,359, +37,2017-03-11 14:43:29.457788,36,944,390, +58,2017-03-11 14:43:29.457788,147,387,715, +52,2017-03-11 14:43:29.457788,499,607,775, +83,2017-03-11 14:43:29.457788,710,862,839, +77,2017-03-11 14:43:29.457788,356,898,844, +45,2017-03-11 14:43:29.457788,936,142,673, +100,2017-03-11 14:43:29.457788,828,959,456, +43,2017-03-11 14:43:29.457788,871,814,804, +91,2017-03-11 14:43:29.457788,759,193,487, +91,2017-03-11 14:43:29.457788,580,203,430, +8,2017-03-11 14:43:29.457788,810,206,907, +52,2017-03-11 14:43:29.457788,67,745,287, +42,2017-03-11 14:43:29.457788,644,131,874, +58,2017-03-11 14:43:29.457788,273,546,575, +10,2017-03-11 14:43:29.457788,506,31,535, +38,2017-03-11 14:43:29.457788,845,339,284, +60,2017-03-11 14:43:29.457788,532,771,510, +11,2017-03-11 14:43:29.457788,974,940,193, +78,2017-03-11 14:43:29.457788,145,100,305, +21,2017-03-11 14:43:29.457788,845,592,636, +49,2017-03-11 14:43:29.457788,723,509,69, +100,2017-03-11 14:43:29.457788,56,644,97, +56,2017-03-11 14:43:29.457788,675,632,939, +52,2017-03-11 14:43:29.457788,972,223,125, +50,2017-03-11 14:43:29.457788,994,634,617, +97,2017-03-11 14:43:29.457788,574,810,753, +72,2017-03-11 14:43:29.457788,910,58,932, +75,2017-03-11 14:43:29.457788,649,568,244, +37,2017-03-11 14:43:29.457788,77,313,368, +13,2017-03-11 14:43:29.457788,957,466,695, +63,2017-03-11 14:43:29.457788,98,633,153, +7,2017-03-11 14:43:29.457788,856,278,574, +85,2017-03-11 14:43:29.457788,912,191,819, +49,2017-03-11 14:43:29.457788,0,572,205, +91,2017-03-11 14:43:29.457788,629,137,665, +28,2017-03-11 14:43:29.457788,704,908,651, +78,2017-03-11 14:43:29.457788,221,20,914, +18,2017-03-11 14:43:29.457788,485,609,811, +58,2017-03-11 14:43:29.457788,242,964,653, +10,2017-03-11 14:43:29.457788,242,227,948, +15,2017-03-11 14:43:29.457788,417,766,640, +42,2017-03-11 14:43:29.457788,338,845,328, +97,2017-03-11 14:43:29.457788,982,992,246, +69,2017-03-11 14:43:29.457788,901,897,467, +12,2017-03-11 14:43:29.457788,917,381,299, +40,2017-03-11 14:43:29.457788,990,110,986, +23,2017-03-11 14:43:29.457788,74,639,329, +32,2017-03-11 14:43:29.457788,865,277,469, +28,2017-03-11 14:43:29.457788,43,109,700, +38,2017-03-11 14:43:29.457788,953,28,349, +93,2017-03-11 14:43:29.457788,20,595,621, +92,2017-03-11 14:43:29.457788,492,88,42, +41,2017-03-11 14:43:29.457788,469,342,811, +46,2017-03-11 14:43:29.457788,452,797,690, +53,2017-03-11 14:43:29.457788,435,20,841, +30,2017-03-11 14:43:29.457788,297,310,583, +34,2017-03-11 14:43:29.457788,419,283,722, +37,2017-03-11 14:43:29.457788,311,70,307, +33,2017-03-11 14:43:29.457788,665,928,252, +16,2017-03-11 14:43:29.457788,16,294,566, +48,2017-03-11 14:43:29.457788,636,377,943, +9,2017-03-11 14:43:29.457788,173,634,613, +61,2017-03-11 14:43:29.457788,653,453,909, +95,2017-03-11 14:43:29.457788,763,492,290, +18,2017-03-11 14:43:29.457788,775,12,554, +9,2017-03-11 14:43:29.457788,82,861,417, +75,2017-03-11 14:43:29.457788,789,669,904, +80,2017-03-11 14:43:29.457788,963,470,289, +60,2017-03-11 14:43:29.457788,847,232,686, +2,2017-03-11 14:43:29.457788,866,299,629, +52,2017-03-11 14:43:29.457788,753,538,469, +52,2017-03-11 14:43:29.457788,30,759,698, +80,2017-03-11 14:43:29.457788,771,252,891, +85,2017-03-11 14:43:29.457788,113,308,600, +90,2017-03-11 14:43:29.457788,978,504,706, +94,2017-03-11 14:43:29.457788,975,995,540, +82,2017-03-11 14:43:29.457788,227,227,842, +9,2017-03-11 14:43:29.457788,526,471,612, +28,2017-03-11 14:43:29.457788,9,81,794, +4,2017-03-11 14:43:29.457788,841,492,844, +61,2017-03-11 14:43:29.457788,744,735,465, +86,2017-03-11 14:43:29.457788,44,65,758, +2,2017-03-11 14:43:29.457788,569,464,962, +54,2017-03-11 14:43:29.457788,459,503,365, +69,2017-03-11 14:43:29.457788,729,208,779, +25,2017-03-11 14:43:29.457788,679,391,533, +69,2017-03-11 14:43:29.457788,472,328,728, +31,2017-03-11 14:43:29.457788,820,572,925, +56,2017-03-11 14:43:29.457788,307,390,420, +35,2017-03-11 14:43:29.457788,454,178,372, +2,2017-03-11 14:43:29.457788,642,335,567, +10,2017-03-11 14:43:29.457788,837,933,786, +57,2017-03-11 14:43:29.457788,140,565,821, +82,2017-03-11 14:43:29.457788,956,354,508, +43,2017-03-11 14:43:29.457788,682,235,741, +50,2017-03-11 14:43:29.457788,807,666,65, +11,2017-03-11 14:43:29.457788,56,485,465, +51,2017-03-11 14:43:29.457788,663,837,534, +30,2017-03-11 14:43:29.457788,172,101,405, +1,2017-03-11 14:43:29.457788,34,191,575, +17,2017-03-11 14:43:29.457788,756,397,994, +71,2017-03-11 14:43:29.457788,751,501,140, +43,2017-03-11 14:43:29.457788,736,881,935, +54,2017-03-11 14:43:29.457788,547,1000,657, +60,2017-03-11 14:43:29.457788,485,123,113, +15,2017-03-11 14:43:29.457788,960,647,452, +13,2017-03-11 14:43:29.457788,748,857,141, +78,2017-03-11 14:43:29.457788,48,716,957, +80,2017-03-11 14:43:29.457788,113,951,515, +86,2017-03-11 14:43:29.457788,452,655,297, +19,2017-03-11 14:43:29.457788,536,232,732, +8,2017-03-11 14:43:29.457788,232,390,686, +72,2017-03-11 14:43:29.457788,512,800,864, +47,2017-03-11 14:43:29.457788,447,316,604, +20,2017-03-11 14:43:29.457788,173,745,978, +22,2017-03-11 14:43:29.457788,461,935,25, +57,2017-03-11 14:43:29.457788,886,540,439, +34,2017-03-11 14:43:29.457788,195,736,527, +73,2017-03-11 14:43:29.457788,968,259,814, +20,2017-03-11 14:43:29.457788,649,500,917, +16,2017-03-11 14:43:29.457788,299,781,633, +75,2017-03-11 14:43:29.457788,97,236,941, +27,2017-03-11 14:43:29.457788,981,919,492, +44,2017-03-11 14:43:29.457788,854,517,17, +74,2017-03-11 14:43:29.457788,57,455,79, +25,2017-03-11 14:43:29.457788,191,606,982, +16,2017-03-11 14:43:29.457788,866,796,359, +51,2017-03-11 14:43:29.457788,296,276,675, +60,2017-03-11 14:43:29.457788,57,308,342, +15,2017-03-11 14:43:29.457788,545,283,425, +53,2017-03-11 14:43:29.457788,202,918,968, +6,2017-03-11 14:43:29.457788,435,985,798, +49,2017-03-11 14:43:29.457788,440,877,744, +63,2017-03-11 14:43:29.457788,483,726,791, +35,2017-03-11 14:43:29.457788,522,150,864, +82,2017-03-11 14:43:29.457788,426,539,413, +48,2017-03-11 14:43:29.457788,847,755,637, +39,2017-03-11 14:43:29.457788,38,63,918, +24,2017-03-11 14:43:29.457788,980,886,297, +42,2017-03-11 14:43:29.457788,871,95,907, +31,2017-03-11 14:43:29.457788,972,651,944, +46,2017-03-11 14:43:29.457788,377,735,804, +90,2017-03-11 14:43:29.457788,885,668,717, +31,2017-03-11 14:43:29.457788,207,130,794, +5,2017-03-11 14:43:29.457788,885,431,446, +92,2017-03-11 14:43:29.457788,494,364,163, +47,2017-03-11 14:43:29.457788,250,461,889, +12,2017-03-11 14:43:29.457788,556,796,433, +53,2017-03-11 14:43:29.457788,447,376,982, +82,2017-03-11 14:43:29.457788,111,787,722, +100,2017-03-11 14:43:29.457788,454,439,307, +66,2017-03-11 14:43:29.457788,569,101,715, +45,2017-03-11 14:43:29.457788,532,160,377, +3,2017-03-11 14:43:29.457788,524,540,500, +77,2017-03-11 14:43:29.457788,1,389,894, +56,2017-03-11 14:43:29.457788,185,327,84, +63,2017-03-11 14:43:29.457788,703,66,455, +81,2017-03-11 14:43:29.457788,853,177,810, +31,2017-03-11 14:43:29.457788,617,116,968, +19,2017-03-11 14:43:29.457788,217,682,640, +75,2017-03-11 14:43:29.457788,843,16,774, +37,2017-03-11 14:43:29.457788,557,274,140, +56,2017-03-11 14:43:29.457788,663,35,114, +85,2017-03-11 14:43:29.457788,362,197,479, +6,2017-03-11 14:43:29.457788,264,934,879, +12,2017-03-11 14:43:29.457788,112,688,424, +73,2017-03-11 14:43:29.457788,805,391,914, +2,2017-03-11 14:43:29.457788,73,554,770, +92,2017-03-11 14:43:29.457788,570,544,283, +13,2017-03-11 14:43:29.457788,818,423,684, +48,2017-03-11 14:43:29.457788,457,797,328, +82,2017-03-11 14:43:29.457788,995,807,884, +26,2017-03-11 14:43:29.457788,741,763,375, +85,2017-03-11 14:43:29.457788,451,799,581, +26,2017-03-11 14:43:29.457788,190,495,277, +26,2017-03-11 14:43:29.457788,49,46,179, +62,2017-03-11 14:43:29.457788,590,462,746, +41,2017-03-11 14:43:29.457788,885,430,888, +34,2017-03-11 14:43:29.457788,227,216,161, +22,2017-03-11 14:43:29.457788,23,45,481, +76,2017-03-11 14:43:29.457788,808,856,617, +26,2017-03-11 14:43:29.457788,654,198,514, +84,2017-03-11 14:43:29.457788,694,791,108, +74,2017-03-11 14:43:29.457788,838,287,362, +43,2017-03-11 14:43:29.457788,749,108,836, +63,2017-03-11 14:43:29.457788,538,724,976, +76,2017-03-11 14:43:29.457788,940,137,987, +96,2017-03-11 14:43:29.457788,182,467,727, +99,2017-03-11 14:43:29.457788,323,344,249, +98,2017-03-11 14:43:29.457788,543,763,822, +24,2017-03-11 14:43:29.457788,554,930,979, +39,2017-03-11 14:43:29.457788,217,341,819, +97,2017-03-11 14:43:29.457788,449,655,601, +99,2017-03-11 14:43:29.457788,379,577,751, +32,2017-03-11 14:43:29.457788,714,738,281, +90,2017-03-11 14:43:29.457788,206,8,886, +53,2017-03-11 14:43:29.457788,352,135,507, +90,2017-03-11 14:43:29.457788,898,329,131, +45,2017-03-11 14:43:29.457788,259,111,843, +48,2017-03-11 14:43:29.457788,452,663,442, +90,2017-03-11 14:43:29.457788,317,43,887, +70,2017-03-11 14:43:29.457788,620,639,14, +33,2017-03-11 14:43:29.457788,377,296,231, +58,2017-03-11 14:43:29.457788,304,117,111, +66,2017-03-11 14:43:29.457788,252,618,551, +15,2017-03-11 14:43:29.457788,947,683,602, +21,2017-03-11 14:43:29.457788,793,445,681, +25,2017-03-11 14:43:29.457788,107,123,146, +42,2017-03-11 14:43:29.457788,166,34,121, +79,2017-03-11 14:43:29.457788,672,135,119, +5,2017-03-11 14:43:29.457788,431,350,632, +73,2017-03-11 14:43:29.457788,467,743,391, +72,2017-03-11 14:43:29.457788,361,942,869, +31,2017-03-11 14:43:29.457788,625,470,514, +42,2017-03-11 14:43:29.457788,915,195,664, +2,2017-03-11 14:43:29.457788,318,810,447, +48,2017-03-11 14:43:29.457788,843,568,269, +52,2017-03-11 14:43:29.457788,703,389,565, +13,2017-03-11 14:43:29.457788,738,197,869, +21,2017-03-11 14:43:29.457788,940,260,924, +30,2017-03-11 14:43:29.457788,202,793,610, +83,2017-03-11 14:43:29.457788,263,124,245, +18,2017-03-11 14:43:29.457788,319,909,200, +64,2017-03-11 14:43:29.457788,719,647,121, +56,2017-03-11 14:43:29.457788,215,390,77, +92,2017-03-11 14:43:29.457788,779,642,52, +52,2017-03-11 14:43:29.457788,839,921,722, +78,2017-03-11 14:43:29.457788,180,646,81, +38,2017-03-11 14:43:29.457788,439,690,209, +70,2017-03-11 14:43:29.457788,814,454,880, +13,2017-03-11 14:43:29.457788,363,80,770, +8,2017-03-11 14:43:29.457788,728,891,644, +94,2017-03-11 14:43:29.457788,281,721,861, +6,2017-03-11 14:43:29.457788,363,913,576, +20,2017-03-11 14:43:29.457788,833,299,981, +1,2017-03-11 14:43:29.457788,945,62,396, +38,2017-03-11 14:43:29.457788,752,605,87, +57,2017-03-11 14:43:29.457788,59,967,699, +42,2017-03-11 14:43:29.457788,47,469,504, +77,2017-03-11 14:43:29.457788,360,148,718, +64,2017-03-11 14:43:29.457788,869,579,700, +23,2017-03-11 14:43:29.457788,491,276,434, +32,2017-03-11 14:43:29.457788,575,416,338, +52,2017-03-11 14:43:29.457788,477,734,905, +23,2017-03-11 14:43:29.457788,338,991,796, +40,2017-03-11 14:43:29.457788,958,495,820, +1,2017-03-11 14:43:29.457788,965,324,781, +32,2017-03-11 14:43:29.457788,472,498,965, +34,2017-03-11 14:43:29.457788,77,665,574, +57,2017-03-11 14:43:29.457788,941,8,892, +52,2017-03-11 14:43:29.457788,424,230,37, +90,2017-03-11 14:43:29.457788,964,942,131, +30,2017-03-11 14:43:29.457788,933,926,700, +89,2017-03-11 14:43:29.457788,422,520,897, +39,2017-03-11 14:43:29.457788,845,678,711, +32,2017-03-11 14:43:29.457788,176,676,659, +25,2017-03-11 14:43:29.457788,341,233,820, +28,2017-03-11 14:43:29.457788,241,713,799, +66,2017-03-11 14:43:29.457788,943,836,565, +91,2017-03-11 14:43:29.457788,778,696,210, +71,2017-03-11 14:43:29.457788,622,910,603, +4,2017-03-11 14:43:29.457788,431,500,431, +28,2017-03-11 14:43:29.457788,177,142,593, +35,2017-03-11 14:43:29.457788,818,252,606, +16,2017-03-11 14:43:29.457788,485,426,441, +73,2017-03-11 14:43:29.457788,139,240,390, +8,2017-03-11 14:43:29.457788,77,955,990, +85,2017-03-11 14:43:29.457788,651,200,566, +27,2017-03-11 14:43:29.457788,110,169,318, +54,2017-03-11 14:43:29.457788,668,749,816, +85,2017-03-11 14:43:29.457788,891,409,199, +71,2017-03-11 14:43:29.457788,661,804,867, +15,2017-03-11 14:43:29.457788,230,308,871, +37,2017-03-11 14:43:29.457788,548,261,452, +62,2017-03-11 14:43:29.457788,216,441,480, +87,2017-03-11 14:43:29.457788,641,45,141, +75,2017-03-11 14:43:29.457788,214,459,292, +88,2017-03-11 14:43:29.457788,208,108,728, +10,2017-03-11 14:43:29.457788,517,927,807, +18,2017-03-11 14:43:29.457788,731,674,324, +96,2017-03-11 14:43:29.457788,982,195,331, +53,2017-03-11 14:43:29.457788,456,782,155, +67,2017-03-11 14:43:29.457788,223,634,539, +86,2017-03-11 14:43:29.457788,680,680,615, +89,2017-03-11 14:43:29.457788,139,907,776, +35,2017-03-11 14:43:29.457788,15,504,446, +53,2017-03-11 14:43:29.457788,431,252,710, +16,2017-03-11 14:43:29.457788,926,34,124, +91,2017-03-11 14:43:29.457788,229,454,438, +69,2017-03-11 14:43:29.457788,236,593,357, +46,2017-03-11 14:43:29.457788,227,897,324, +91,2017-03-11 14:43:29.457788,577,939,801, +72,2017-03-11 14:43:29.457788,846,577,63, +86,2017-03-11 14:43:29.457788,82,509,392, +51,2017-03-11 14:43:29.457788,761,102,675, +69,2017-03-11 14:43:29.457788,136,799,595, +37,2017-03-11 14:43:29.457788,253,32,51, +49,2017-03-11 14:43:29.457788,625,408,948, +85,2017-03-11 14:43:29.457788,304,272,759, +88,2017-03-11 14:43:29.457788,211,560,597, +6,2017-03-11 14:43:29.457788,137,661,917, +22,2017-03-11 14:43:29.457788,170,309,731, +93,2017-03-11 14:43:29.457788,411,406,618, +55,2017-03-11 14:43:29.457788,205,213,913, +46,2017-03-11 14:43:29.457788,245,964,946, +87,2017-03-11 14:43:29.457788,372,894,722, +68,2017-03-11 14:43:29.457788,167,481,557, +38,2017-03-11 14:43:29.457788,40,154,435, +18,2017-03-11 14:43:29.457788,815,352,395, +98,2017-03-11 14:43:29.457788,661,127,915, +7,2017-03-11 14:43:29.457788,533,533,620, +74,2017-03-11 14:43:29.457788,746,533,195, +99,2017-03-11 14:43:29.457788,496,141,861, +87,2017-03-11 14:43:29.457788,35,583,544, +20,2017-03-11 14:43:29.457788,63,101,579, +10,2017-03-11 14:43:29.457788,255,14,280, +7,2017-03-11 14:43:29.457788,366,676,55, +3,2017-03-11 14:43:29.457788,803,970,99, +34,2017-03-11 14:43:29.457788,504,719,73, +25,2017-03-11 14:43:29.457788,252,268,241, +75,2017-03-11 14:43:29.457788,408,102,616, +44,2017-03-11 14:43:29.457788,684,160,645, +75,2017-03-11 14:43:29.457788,261,225,851, +52,2017-03-11 14:43:29.457788,238,131,587, +60,2017-03-11 14:43:29.457788,807,642,630, +61,2017-03-11 14:43:29.457788,612,729,945, +12,2017-03-11 14:43:29.457788,448,18,366, +70,2017-03-11 14:43:29.457788,285,607,447, +69,2017-03-11 14:43:29.457788,708,63,137, +39,2017-03-11 14:43:29.457788,223,782,139, +48,2017-03-11 14:43:29.457788,7,990,1000, +25,2017-03-11 14:43:29.457788,121,586,849, +93,2017-03-11 14:43:29.457788,228,479,537, +84,2017-03-11 14:43:29.457788,209,482,956, +66,2017-03-11 14:43:29.457788,500,322,356, +79,2017-03-11 14:43:29.457788,928,804,479, +64,2017-03-11 14:43:29.457788,867,616,28, +9,2017-03-11 14:43:29.457788,398,167,573, +40,2017-03-11 14:43:29.457788,157,573,650, +28,2017-03-11 14:43:29.457788,159,498,205, +39,2017-03-11 14:43:29.457788,978,743,227, +19,2017-03-11 14:43:29.457788,225,183,843, +72,2017-03-11 14:43:29.457788,505,199,509, +43,2017-03-11 14:43:29.457788,3,988,69, +87,2017-03-11 14:43:29.457788,604,97,960, +0,2017-03-11 14:43:29.457788,265,533,406, +42,2017-03-11 14:43:29.457788,106,55,699, +27,2017-03-11 14:43:29.457788,554,905,652, +53,2017-03-11 14:43:29.457788,647,879,718, +87,2017-03-11 14:43:29.457788,62,561,596, +57,2017-03-11 14:43:29.457788,760,106,999, +76,2017-03-11 14:43:29.457788,94,68,633, +70,2017-03-11 14:43:29.457788,165,593,699, +43,2017-03-11 14:43:29.457788,126,104,851, +23,2017-03-11 14:43:29.457788,160,551,497, +71,2017-03-11 14:43:29.457788,455,149,245, +10,2017-03-11 14:43:29.457788,28,963,975, +9,2017-03-11 14:43:29.457788,524,571,656, +28,2017-03-11 14:43:29.457788,677,655,48, +77,2017-03-11 14:43:29.457788,722,681,468, +89,2017-03-11 14:43:29.457788,274,167,317, +40,2017-03-11 14:43:29.457788,271,168,631, +43,2017-03-11 14:43:29.457788,719,128,144, +17,2017-03-11 14:43:29.457788,277,389,277, +30,2017-03-11 14:43:29.457788,352,251,394, +88,2017-03-11 14:43:29.457788,822,49,160, +50,2017-03-11 14:43:29.457788,704,208,271, diff --git a/src/test/regress/expected/multi_insert_select.out b/src/test/regress/expected/multi_insert_select.out index 9d799383f..ed6dc72b2 100644 --- a/src/test/regress/expected/multi_insert_select.out +++ b/src/test/regress/expected/multi_insert_select.out @@ -35,6 +35,13 @@ SELECT create_reference_table('reference_table'); (1 row) +CREATE TABLE insert_select_varchar_test (key varchar, value int); +SELECT create_distributed_table('insert_select_varchar_test', 'key', 'hash'); + create_distributed_table +-------------------------- + +(1 row) + -- set back to the defaults SET citus.shard_count = DEFAULT; SET citus.shard_replication_factor = DEFAULT; @@ -1125,13 +1132,14 @@ SELECT FROM ((SELECT user_id FROM raw_events_first) UNION (SELECT user_id FROM raw_events_second)) as foo; -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. -- We do not support any set operations INSERT INTO raw_events_first(user_id) (SELECT user_id FROM raw_events_first) INTERSECT (SELECT user_id FROM raw_events_first); -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: INTERSECT and EXCEPT set operations are not allowed in INSERT ... SELECT queries -- We do not support any set operations INSERT INTO raw_events_first(user_id) @@ -1140,7 +1148,7 @@ SELECT FROM ((SELECT user_id FROM raw_events_first WHERE user_id = 15) EXCEPT (SELECT user_id FROM raw_events_second where user_id = 17)) as foo; -ERROR: set operations are not allowed in INSERT ... SELECT queries +ERROR: INTERSECT and EXCEPT set operations are not allowed in INSERT ... SELECT queries -- some supported LEFT joins INSERT INTO agg_events (user_id) SELECT @@ -1406,35 +1414,8 @@ DEBUG: Plan is router executable raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1 AND raw_events_first.value_1 = 12; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300008 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300000 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= '-2147483648'::integer) AND (hashint4(raw_events_first.user_id) <= '-1073741825'::integer))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300009 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300001 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= '-1073741824'::integer) AND (hashint4(raw_events_first.user_id) <= '-1'::integer))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300010 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300002 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= 0) AND (hashint4(raw_events_first.user_id) <= 1073741823))) -DEBUG: predicate pruning for shardId 13300000 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300004 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: distributed statement: INSERT INTO public.agg_events_13300011 AS citus_table_alias (user_id) SELECT raw_events_first.user_id FROM public.raw_events_first_13300003 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (((raw_events_second.user_id = raw_events_first.value_1) AND (raw_events_first.value_1 = 12)) AND ((hashint4(raw_events_first.user_id) >= 1073741824) AND (hashint4(raw_events_first.user_id) <= 2147483647))) -DEBUG: Plan is router executable +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. -- some unsupported LEFT/INNER JOINs -- JOIN on one table with partition column other is not @@ -1443,9 +1424,6 @@ DEBUG: Plan is router executable raw_events_first.user_id FROM raw_events_first LEFT JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1455,9 +1433,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1477,9 +1452,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first LEFT JOIN raw_events_second ON raw_events_first.value_1 = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1489,9 +1461,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_first.user_id FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.value_1 = raw_events_second.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1530,9 +1499,6 @@ DETAIL: Select query cannot be pushed down to the worker. FROM raw_events_first INNER JOIN raw_events_second ON raw_events_first.user_id = raw_events_second.value_1 WHERE raw_events_first.value_1 IN (10, 11,12) OR raw_events_second.user_id IN (1,2,3,4); -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1543,9 +1509,6 @@ DETAIL: Select query cannot be pushed down to the worker. FROM raw_events_first, raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1559,9 +1522,6 @@ DETAIL: Select query cannot be pushed down to the worker. raw_events_second WHERE raw_events_second.user_id = raw_events_first.value_1 AND raw_events_first.value_2 = 12; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. @@ -1596,12 +1556,6 @@ DETAIL: Select query cannot be pushed down to the worker. ON (f.id = f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. INSERT INTO agg_events @@ -1793,12 +1747,6 @@ outer_most.id, max(outer_most.value) HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 ON (f.id != f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- cannot pushdown since foo2 is not join on partition key @@ -1861,12 +1809,6 @@ FROM ON (f.id = f2.id)) as outer_most GROUP BY outer_most.id; -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- some unsupported LATERAL JOINs @@ -1925,12 +1867,6 @@ FROM JOIN LATERAL (SELECT user_id, value_4 FROM agg_events) as agg_ids ON (agg_ids.value_4 = averages.user_id) GROUP BY averages.user_id; -DEBUG: predicate pruning for shardId 13300005 -DEBUG: predicate pruning for shardId 13300006 -DEBUG: predicate pruning for shardId 13300007 -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- not supported subqueries in WHERE clause @@ -1942,9 +1878,6 @@ SELECT user_id FROM raw_events_first WHERE user_id IN (SELECT value_1 FROM raw_events_second); -DEBUG: predicate pruning for shardId 13300001 -DEBUG: predicate pruning for shardId 13300002 -DEBUG: predicate pruning for shardId 13300003 ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- same as above but slightly more complex @@ -1973,6 +1906,17 @@ FROM (SELECT SUM(raw_events_second.value_4) AS v4, ON (f.id = f2.id) WHERE f.id IN (SELECT value_1 FROM raw_events_second); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- some more semi-anti join tests +-- join in where +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); DEBUG: predicate pruning for shardId 13300001 DEBUG: predicate pruning for shardId 13300002 DEBUG: predicate pruning for shardId 13300003 @@ -1982,6 +1926,389 @@ DEBUG: predicate pruning for shardId 13300007 DEBUG: predicate pruning for shardId 13300001 DEBUG: predicate pruning for shardId 13300002 DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((user_id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300004 raw_events_second, public.raw_events_first_13300000 raw_events_first_1 WHERE ((raw_events_second.user_id = raw_events_first_1.user_id) AND (raw_events_first_1.user_id = 200)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300005 since SELECT query for it pruned away +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300006 since SELECT query for it pruned away +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: Skipping target shard interval 13300007 since SELECT query for it pruned away +DEBUG: Plan is router executable +-- we cannot push this down since it is NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- safe to push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300004 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300005 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300006 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((EXISTS (SELECT 1 FROM public.raw_events_second_13300007 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- we cannot push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE NOT EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300004 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300005 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300006 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((NOT (EXISTS (SELECT 1 FROM public.raw_events_second_13300007 raw_events_second WHERE (raw_events_second.user_id = raw_events_first.user_id)))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- more complex LEFT JOINs + INSERT INTO agg_events + (user_id, value_4_agg) + SELECT + outer_most.id, max(outer_most.value) + FROM + ( + SELECT f2.id as id, f2.v4 as value FROM + (SELECT + id + FROM (SELECT raw_events_first.user_id AS id + FROM raw_events_first LEFT JOIN + reference_table + ON (raw_events_first.user_id = reference_table.user_id)) AS foo) as f + LEFT JOIN + (SELECT v4, + v1, + id + FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 + ON (f.id = f2.id)) as outer_most + GROUP BY + outer_most.id; +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300008 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300000 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300000 raw_events_first, public.raw_events_second_13300004 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= '-2147483648'::integer) AND (hashint4(id) <= '-1073741825'::integer)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300009 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300001 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300001 raw_events_first, public.raw_events_second_13300005 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= '-1073741824'::integer) AND (hashint4(id) <= '-1'::integer)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300010 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300002 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300002 raw_events_first, public.raw_events_second_13300006 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= 0) AND (hashint4(id) <= 1073741823)) GROUP BY id +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: distributed statement: INSERT INTO public.agg_events_13300011 AS citus_table_alias (user_id, value_4_agg) SELECT id, max(value) AS max FROM (SELECT f2.id, f2.v4 AS value FROM ((SELECT foo.id FROM (SELECT raw_events_first.user_id AS id FROM (public.raw_events_first_13300003 raw_events_first LEFT JOIN public.reference_table_13300012 reference_table ON ((raw_events_first.user_id = reference_table.user_id)))) foo) f LEFT JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300003 raw_events_first, public.raw_events_second_13300007 raw_events_second WHERE (raw_events_first.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id)))) outer_most WHERE ((hashint4(id) >= 1073741824) AND (hashint4(id) <= 2147483647)) GROUP BY id +DEBUG: Plan is router executable +-- cannot push down since the f.id IN is matched with value_1 +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT value_1 + FROM raw_events_second)); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- same as above, but this time is it safe to push down since +-- f.id IN is matched with user_id +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300004 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300000 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300000 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300000 raw_events_first_1, public.raw_events_second_13300004 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300004 raw_events_second)))) AND ((hashint4(user_id) >= '-2147483648'::integer) AND (hashint4(user_id) <= '-1073741825'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300005 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300001 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300001 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300001 raw_events_first_1, public.raw_events_second_13300005 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300005 raw_events_second)))) AND ((hashint4(user_id) >= '-1073741824'::integer) AND (hashint4(user_id) <= '-1'::integer))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300003 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300007 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300006 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300002 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300002 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300002 raw_events_first_1, public.raw_events_second_13300006 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300006 raw_events_second)))) AND ((hashint4(user_id) >= 0) AND (hashint4(user_id) <= 1073741823))) +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300000 +DEBUG: predicate pruning for shardId 13300001 +DEBUG: predicate pruning for shardId 13300002 +DEBUG: predicate pruning for shardId 13300004 +DEBUG: predicate pruning for shardId 13300005 +DEBUG: predicate pruning for shardId 13300006 +DEBUG: distributed statement: INSERT INTO public.raw_events_second_13300007 AS citus_table_alias (user_id) SELECT user_id FROM public.raw_events_first_13300003 raw_events_first WHERE ((user_id IN (SELECT f2.id FROM ((SELECT foo.id FROM (SELECT reference_table.user_id AS id FROM public.raw_events_first_13300003 raw_events_first_1, public.reference_table_13300012 reference_table WHERE (raw_events_first_1.user_id = reference_table.user_id)) foo) f JOIN (SELECT foo2.v4, foo2.v1, foo2.id FROM (SELECT sum(raw_events_second.value_4) AS v4, sum(raw_events_first_1.value_1) AS v1, raw_events_second.user_id AS id FROM public.raw_events_first_13300003 raw_events_first_1, public.raw_events_second_13300007 raw_events_second WHERE (raw_events_first_1.user_id = raw_events_second.user_id) GROUP BY raw_events_second.user_id HAVING (sum(raw_events_second.value_4) > (10)::numeric)) foo2) f2 ON ((f.id = f2.id))) WHERE (f.id IN (SELECT raw_events_second.user_id FROM public.raw_events_second_13300007 raw_events_second)))) AND ((hashint4(user_id) >= 1073741824) AND (hashint4(user_id) <= 2147483647))) +DEBUG: Plan is router executable +-- cannot push down since top level user_id is matched with NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- cannot push down since join is not equi join (f.id > f2.id) +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id > f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); ERROR: cannot perform distributed planning for the given modification DETAIL: Select query cannot be pushed down to the worker. -- we currently not support grouping sets @@ -2054,7 +2381,7 @@ INSERT INTO raw_events_first (user_id, time, value_1, value_2, value_3, value_4) SELECT count(*) FROM raw_events_second; count ------- - 9 + 18 (1 row) INSERT INTO raw_events_second SELECT * FROM test_view; @@ -2064,7 +2391,7 @@ INSERT INTO raw_events_second SELECT * FROM test_view WHERE user_id = 17 GROUP B SELECT count(*) FROM raw_events_second; count ------- - 11 + 20 (1 row) -- inserting into views does not @@ -2210,6 +2537,32 @@ DEBUG: predicate pruning for shardId 13300007 DEBUG: Skipping target shard interval 13300003 since SELECT query for it pruned away DEBUG: Plan is router executable SET client_min_messages TO INFO; +-- now do some tests with varchars +INSERT INTO insert_select_varchar_test VALUES ('test_1', 10); +INSERT INTO insert_select_varchar_test VALUES ('test_2', 30); +INSERT INTO insert_select_varchar_test (key, value) +SELECT *, 100 +FROM (SELECT f1.key + FROM (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Count(key) < 3) AS f1, + (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Sum(COALESCE(insert_select_varchar_test.value, 0)) > + 20.0) + AS f2 + WHERE f1.key = f2.key + GROUP BY 1) AS foo; +SELECT * FROM insert_select_varchar_test; + key | value +--------+------- + test_2 | 30 + test_2 | 100 + test_1 | 10 +(3 rows) + -- some tests with DEFAULT columns and constant values -- this test is mostly importantly intended for deparsing the query correctly -- but still it is preferable to have this test here instead of multi_deparse_shard_query @@ -2233,10 +2586,10 @@ SELECT create_distributed_table('table_with_defaults', 'store_id'); SET client_min_messages TO DEBUG2; -- a very simple query INSERT INTO table_with_defaults SELECT * FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, default_1, last_name, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- see that defaults are filled INSERT INTO table_with_defaults (store_id, first_name) @@ -2244,10 +2597,10 @@ SELECT store_id, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- shuffle one of the defaults and skip the other INSERT INTO table_with_defaults (default_2, store_id, first_name) @@ -2255,10 +2608,10 @@ SELECT default_2, store_id, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, 1 AS default_1, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- shuffle both defaults INSERT INTO table_with_defaults (default_2, store_id, default_1, first_name) @@ -2266,10 +2619,10 @@ SELECT default_2, store_id, default_1, first_name FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, first_name, default_1, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of non-default column INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name) @@ -2277,10 +2630,10 @@ SELECT default_2, 'Freund', store_id, 'Andres' FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of non-default column and skip both defauls INSERT INTO table_with_defaults (last_name, store_id, first_name) @@ -2288,10 +2641,10 @@ SELECT 'Freund', store_id, 'Andres' FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, 'Freund'::text AS last_name, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of default columns INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name, default_1) @@ -2299,10 +2652,10 @@ SELECT 20, last_name, store_id, first_name, 10 FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, first_name, 10, last_name, 20 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- use constants instead of both default columns and non-default columns INSERT INTO table_with_defaults (default_2, last_name, store_id, first_name, default_1) @@ -2310,10 +2663,10 @@ SELECT 20, 'Freund', store_id, 'Andres', 10 FROM table_with_defaults; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, last_name, default_2) SELECT store_id, 'Andres'::text AS first_name, 10, 'Freund'::text AS last_name, 20 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) DEBUG: Plan is router executable -- some of the the ultimate queries where we have constants, -- defaults and group by entry is not on the target entry @@ -2324,10 +2677,10 @@ FROM table_with_defaults GROUP BY last_name, store_id; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1 AS default_1, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name, default_2) SELECT @@ -2336,10 +2689,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name, default_2) SELECT @@ -2348,10 +2701,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name, default_2; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2000'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 DEBUG: Plan is router executable INSERT INTO table_with_defaults (default_1, store_id, first_name) SELECT @@ -2360,10 +2713,10 @@ FROM table_with_defaults GROUP BY last_name, store_id, first_name, default_2; -DEBUG: predicate pruning for shardId 13300014 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300013 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300013 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 -DEBUG: predicate pruning for shardId 13300013 -DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300014 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300014 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300018 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300017 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300017 table_with_defaults WHERE ((hashint4(store_id) >= '-2147483648'::integer) AND (hashint4(store_id) <= '-1'::integer)) GROUP BY last_name, store_id, first_name, default_2 +DEBUG: predicate pruning for shardId 13300017 +DEBUG: distributed statement: INSERT INTO public.table_with_defaults_13300018 AS citus_table_alias (store_id, first_name, default_1, default_2) SELECT store_id, 'Andres'::text AS first_name, 1000, '2'::text AS default_2 FROM public.table_with_defaults_13300018 table_with_defaults WHERE ((hashint4(store_id) >= 0) AND (hashint4(store_id) <= 2147483647)) GROUP BY last_name, store_id, first_name, default_2 DEBUG: Plan is router executable RESET client_min_messages; -- Stable function in default should be allowed diff --git a/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out b/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out new file mode 100644 index 000000000..eb6da2a9c --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_behavioral_analytics_basics.out @@ -0,0 +1,457 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +INSERT INTO agg_results (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 5 | 5 | 15.6000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 8 | 8 | 16.1250000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 8 | 8 | 45.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 6 | 6 | 42.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 33 | 33 | 50.3939393939393939 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in at least two of X and Y and Z segments +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +SELECT user_id +FROM users_table +WHERE (value_1 = 10 + OR value_1 = 11 + OR value_1 = 12) +GROUP BY user_id +HAVING count(distinct value_1) >= 2; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 4 | 4 | 51.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 34 | 27 | 40.5588235294117647 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 8 | 7 | 39.7500000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 1202 | 14 | 47.7462562396006656 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 205 | 2 | 55.2195121951219512 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 78 | 34 | 52.4230769230769231 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find me all users_table who logged in more than once +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, value_1 from +( + SELECT user_id, value_1 From users_table + WHERE value_2 > 100 and user_id = 15 GROUP BY value_1, user_id HAVING count(*) > 1 +) as a; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 6 | 1 | 15.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 30.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id in (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 3084 | 32 | 44.1498054474708171 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find me all the users_table who has done some event more than three times +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id) +select user_id from +( + select + user_id + from + events_table +where event_type = 901 group by user_id having count(*) > 3 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 57.0000000000000000 +(1 row) + + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +TRUNCATE agg_results; +INSERT INTO agg_results(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + count | count | avg +-------+-------+--------------------- + 14371 | 101 | 50.5232064574490293 +(1 row) + + diff --git a/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out b/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out new file mode 100644 index 000000000..c04e894f5 --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_behavioral_analytics_single_shard_queries.out @@ -0,0 +1,423 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE user_id = 20; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 20.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id AND + (u.user_id = 13 OR u.user_id = 20) AND + (e.user_id = 13 OR e.user_id = 20) + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE (user_id = 13 OR user_id = 20); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 16.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- single shard query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE t1.user_id = 20 + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- two shards query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE + (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE (t1.user_id = 20 OR t1.user_id = 17) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 18.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- single shard query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE user_id = 65 + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 65.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- two shards query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + (user_id = 65 OR user_id = 12) AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND (user_id = 65 OR user_id = 12) AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE (user_id = 65 OR user_id = 12) + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 38.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60) + AND user_id = 7; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+-------------------- + 1 | 1 | 7.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60 AND (user_id = 7 OR user_id = 20)) + AND (user_id = 7 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 13.5000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id) + AND user_id = 61; +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 1 | 1 | 61.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND (user_id = 61 OR user_id = 51) AND user_id=users_table.user_id) + AND (user_id = 61 OR user_id = 51); +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 2 | 2 | 56.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND user_id = 96 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 110 | 1 | 96.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND (user_id = 96 OR user_id = 8) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 205 | 2 | 55.2195121951219512 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND user_id = 47 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND user_id = 47 + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 6 | 1 | 47.0000000000000000 +(1 row) + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND (user_id = 47 or user_id = 81) + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND (user_id = 47 or user_id = 81) + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + count | count | avg +-------+-------+--------------------- + 7 | 2 | 51.8571428571428571 +(1 row) + + diff --git a/src/test/regress/expected/multi_insert_select_non_pushable_queries.out b/src/test/regress/expected/multi_insert_select_non_pushable_queries.out new file mode 100644 index 000000000..714d60df3 --- /dev/null +++ b/src/test/regress/expected/multi_insert_select_non_pushable_queries.out @@ -0,0 +1,667 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +-- not pushable since the JOIN is not an equi join +INSERT INTO agg_results_third (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +-- not pushable since the JOIN is not an equi join left part of the UNION +-- is not equi join +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the JOIN is not an equi join right part of the UNION +-- is not joined on the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.event_type + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- the LEFT JOIN conditon is not on the partition column (i.e., is it part_key divided by 2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = (t2.user_id)/2) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ +-- not pushable since the right of the UNION query is not joined on +-- the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id != events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the JOIN condition is not equi JOIN +-- (subquery_1 JOIN subquery_2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id > subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +-- not pushable since lateral join is not an equi join +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id != u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time, value_3 as val_3 + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.val_3 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ +-- not pushable since partition key is NOT IN +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id NOT IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since partition key is not selected from the second subquery +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT value_1 FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since second subquery does not return bare partition key +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT 3 * user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since join is not an euqi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND event_type = users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND event_type=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the first join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id!=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id != users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND event_type = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.value_1 + GROUP BY user_id + HAVING Count(*) > 2); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id NOT in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since we're not selecting the partition key +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select value_3 + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. + + -- not pushable since we're not selecting the partition key + -- from the events table +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And event_type in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id NOT IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable due to not selecting the partition key +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id IN (SELECT value_2 from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable due to not comparing user id from the events table +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE event_type IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id != ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.value_2 and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; +ERROR: cannot perform distributed planning for the given modification +DETAIL: Select query cannot be pushed down to the worker. diff --git a/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source b/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source new file mode 100644 index 000000000..e68fe2edf --- /dev/null +++ b/src/test/regress/input/multi_insert_select_behavioral_analytics_create_table.source @@ -0,0 +1,43 @@ +-- +-- multi insert select behavioral analytics +-- this file is intended to create the table requires for the tests +-- + +ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1400000; +ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1400000; + +SET citus.shard_replication_factor = 1; +SET citus.shard_count = 4; + +CREATE TABLE users_table (user_id int, time timestamp, value_1 int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('users_table', 'user_id'); + +CREATE TABLE events_table (user_id int, time timestamp, event_type int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('events_table', 'user_id'); + +CREATE TABLE agg_results (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results', 'user_id'); + +-- we need this to improve the concurrency on the regression tests +CREATE TABLE agg_results_second (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_second', 'user_id'); + +-- same as agg_results_second +CREATE TABLE agg_results_third (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_third', 'user_id'); + +-- same as agg_results_second +CREATE TABLE agg_results_fourth (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_fourth', 'user_id'); + +COPY users_table FROM '@abs_srcdir@/data/users_table.data' WITH CSV; +COPY events_table FROM '@abs_srcdir@/data/events_table.data' WITH CSV; + +-- create indexes for +CREATE INDEX is_index1 ON users_table(user_id); +CREATE INDEX is_index2 ON events_table(user_id); +CREATE INDEX is_index3 ON users_table(value_1); +CREATE INDEX is_index4 ON events_table(event_type); +CREATE INDEX is_index5 ON users_table(value_2); +CREATE INDEX is_index6 ON events_table(value_2); + diff --git a/src/test/regress/multi_schedule b/src/test/regress/multi_schedule index 986ccce31..3ffb820be 100644 --- a/src/test/regress/multi_schedule +++ b/src/test/regress/multi_schedule @@ -30,6 +30,8 @@ test: multi_create_table_constraints test: multi_master_protocol test: multi_load_data +test: multi_insert_select_behavioral_analytics_create_table +test: multi_insert_select_behavioral_analytics_basics multi_insert_select_behavioral_analytics_single_shard_queries multi_insert_select_non_pushable_queries test: multi_insert_select # ---------- diff --git a/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source b/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source new file mode 100644 index 000000000..c149e77a8 --- /dev/null +++ b/src/test/regress/output/multi_insert_select_behavioral_analytics_create_table.source @@ -0,0 +1,64 @@ +-- +-- multi insert select behavioral analytics +-- this file is intended to create the table requires for the tests +-- +ALTER SEQUENCE pg_catalog.pg_dist_shardid_seq RESTART 1400000; +ALTER SEQUENCE pg_catalog.pg_dist_jobid_seq RESTART 1400000; +SET citus.shard_replication_factor = 1; +SET citus.shard_count = 4; +CREATE TABLE users_table (user_id int, time timestamp, value_1 int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('users_table', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +CREATE TABLE events_table (user_id int, time timestamp, event_type int, value_2 int, value_3 float, value_4 bigint); +SELECT create_distributed_table('events_table', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +CREATE TABLE agg_results (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- we need this to improve the concurrency on the regression tests +CREATE TABLE agg_results_second (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_second', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- same as agg_results_second +CREATE TABLE agg_results_third (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_third', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +-- same as agg_results_second +CREATE TABLE agg_results_fourth (user_id int, value_1_agg int, value_2_agg int, value_3_agg float, value_4_agg bigint, agg_time timestamp); +SELECT create_distributed_table('agg_results_fourth', 'user_id'); + create_distributed_table +-------------------------- + +(1 row) + +COPY users_table FROM '@abs_srcdir@/data/users_table.data' WITH CSV; +COPY events_table FROM '@abs_srcdir@/data/events_table.data' WITH CSV; +-- create indexes for +CREATE INDEX is_index1 ON users_table(user_id); +NOTICE: using one-phase commit for distributed DDL commands +HINT: You can enable two-phase commit for extra safety with: SET citus.multi_shard_commit_protocol TO '2pc' +CREATE INDEX is_index2 ON events_table(user_id); +CREATE INDEX is_index3 ON users_table(value_1); +CREATE INDEX is_index4 ON events_table(event_type); +CREATE INDEX is_index5 ON users_table(value_2); +CREATE INDEX is_index6 ON events_table(value_2); diff --git a/src/test/regress/sql/multi_insert_select.sql b/src/test/regress/sql/multi_insert_select.sql index 6580f9e21..f1f68c7fb 100644 --- a/src/test/regress/sql/multi_insert_select.sql +++ b/src/test/regress/sql/multi_insert_select.sql @@ -22,6 +22,9 @@ SELECT create_distributed_table('agg_events', 'user_id');; CREATE TABLE reference_table (user_id int); SELECT create_reference_table('reference_table'); +CREATE TABLE insert_select_varchar_test (key varchar, value int); +SELECT create_distributed_table('insert_select_varchar_test', 'key', 'hash'); + -- set back to the defaults SET citus.shard_count = DEFAULT; SET citus.shard_replication_factor = DEFAULT; @@ -1063,7 +1066,193 @@ ON (f.id = f2.id) WHERE f.id IN (SELECT value_1 FROM raw_events_second); +-- some more semi-anti join tests +-- join in where +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); + +-- we cannot push this down since it is NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN (SELECT raw_events_second.user_id + FROM raw_events_second, raw_events_first + WHERE raw_events_second.user_id = raw_events_first.user_id AND raw_events_first.user_id = 200); + + +-- safe to push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); + +-- we cannot push down +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE NOT EXISTS (SELECT 1 + FROM raw_events_second + WHERE raw_events_second.user_id =raw_events_first.user_id); + + +-- more complex LEFT JOINs + INSERT INTO agg_events + (user_id, value_4_agg) + SELECT + outer_most.id, max(outer_most.value) + FROM + ( + SELECT f2.id as id, f2.v4 as value FROM + (SELECT + id + FROM (SELECT raw_events_first.user_id AS id + FROM raw_events_first LEFT JOIN + reference_table + ON (raw_events_first.user_id = reference_table.user_id)) AS foo) as f + LEFT JOIN + (SELECT v4, + v1, + id + FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 + ON (f.id = f2.id)) as outer_most + GROUP BY + outer_most.id; + + +-- cannot push down since the f.id IN is matched with value_1 +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT value_1 + FROM raw_events_second)); + +-- same as above, but this time is it safe to push down since +-- f.id IN is matched with user_id +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); + +-- cannot push down since top level user_id is matched with NOT IN +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id NOT IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id = f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); + +-- cannot push down since join is not equi join (f.id > f2.id) +INSERT INTO raw_events_second + (user_id) +SELECT user_id +FROM raw_events_first +WHERE user_id IN ( +SELECT f2.id FROM +(SELECT + id +FROM (SELECT reference_table.user_id AS id + FROM raw_events_first, + reference_table + WHERE raw_events_first.user_id = reference_table.user_id ) AS foo) as f +INNER JOIN +(SELECT v4, + v1, + id +FROM (SELECT SUM(raw_events_second.value_4) AS v4, + SUM(raw_events_first.value_1) AS v1, + raw_events_second.user_id AS id + FROM raw_events_first, + raw_events_second + WHERE raw_events_first.user_id = raw_events_second.user_id + GROUP BY raw_events_second.user_id + HAVING SUM(raw_events_second.value_4) > 10) AS foo2 ) as f2 +ON (f.id > f2.id) +WHERE f.id IN (SELECT user_id + FROM raw_events_second)); -- we currently not support grouping sets INSERT INTO agg_events @@ -1198,8 +1387,30 @@ SET client_min_messages TO DEBUG2; -- this should also work INSERT INTO raw_events_first SELECT * FROM raw_events_second WHERE user_id = 5; - SET client_min_messages TO INFO; + +-- now do some tests with varchars +INSERT INTO insert_select_varchar_test VALUES ('test_1', 10); +INSERT INTO insert_select_varchar_test VALUES ('test_2', 30); + +INSERT INTO insert_select_varchar_test (key, value) +SELECT *, 100 +FROM (SELECT f1.key + FROM (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Count(key) < 3) AS f1, + (SELECT key + FROM insert_select_varchar_test + GROUP BY 1 + HAVING Sum(COALESCE(insert_select_varchar_test.value, 0)) > + 20.0) + AS f2 + WHERE f1.key = f2.key + GROUP BY 1) AS foo; + +SELECT * FROM insert_select_varchar_test; + -- some tests with DEFAULT columns and constant values -- this test is mostly importantly intended for deparsing the query correctly -- but still it is preferable to have this test here instead of multi_deparse_shard_query diff --git a/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql b/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql new file mode 100644 index 000000000..4e13cf170 --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_behavioral_analytics_basics.sql @@ -0,0 +1,420 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ +INSERT INTO agg_results (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ + +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ + +TRUNCATE agg_results; + +INSERT INTO agg_results (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in at least two of X and Y and Z segments +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +SELECT user_id +FROM users_table +WHERE (value_1 = 10 + OR value_1 = 11 + OR value_1 = 12) +GROUP BY user_id +HAVING count(distinct value_1) >= 2; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all users_table who logged in more than once +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, value_1 from +( + SELECT user_id, value_1 From users_table + WHERE value_2 > 100 and user_id = 15 GROUP BY value_1, user_id HAVING count(*) > 1 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id in (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find me all the users_table who has done some event more than three times +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id) +select user_id from +( + select + user_id + from + events_table +where event_type = 901 group by user_id having count(*) > 3 +) as a; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ +TRUNCATE agg_results; + +INSERT INTO agg_results(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results; + \ No newline at end of file diff --git a/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql b/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql new file mode 100644 index 000000000..a3c4cbd3f --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_behavioral_analytics_single_shard_queries.sql @@ -0,0 +1,401 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE user_id = 20; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Vanilla funnel query -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id AND + (u.user_id = 13 OR u.user_id = 20) AND + (e.user_id = 13 OR e.user_id = 20) + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q +WHERE (user_id = 13 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- single shard query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE t1.user_id = 20 + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event -- two shards query +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE + (e.user_id = 20 OR e.user_id = 17) + AND e.event_type IN (106, 107, 108) + ) t2 ON (t1.user_id = t2.user_id) + WHERE (t1.user_id = 20 OR t1.user_id = 17) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- single shard query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE user_id = 65 + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table -- two shards query +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + (user_id = 65 OR user_id = 12) AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id = u.user_id AND (user_id = 65 OR user_id = 12) AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + WHERE (user_id = 65 OR user_id = 12) + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- single shard +------------------------------------ +------------------------------------ + +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60) + AND user_id = 7; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z -- two shards +------------------------------------ +------------------------------------ + +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40 AND (user_id = 7 OR user_id = 20)) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60 AND (user_id = 7 OR user_id = 20)) + AND (user_id = 7 OR user_id = 20); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id=users_table.user_id) + AND user_id = 61; + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND (user_id = 61 OR user_id = 51) AND user_id=users_table.user_id) + AND (user_id = 61 OR user_id = 51); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND user_id = 96 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND (user_id = 96 OR user_id = 8) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id AND (user_id = 96 OR user_id = 8)); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- single shard +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND user_id = 47 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND user_id = 47 + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria -- two shards +------------------------------------ +------------------------------------ +TRUNCATE agg_results_second; + +INSERT INTO agg_results_second(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND (user_id = 47 or user_id = 81) + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.user_id + AND (user_id = 47 or user_id = 81) + GROUP BY user_id + HAVING Count(*) > 2); + +-- get some statistics from the aggregated results to ensure the results are correct +SELECT count(*), count(DISTINCT user_id), avg(user_id) FROM agg_results_second; + \ No newline at end of file diff --git a/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql b/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql new file mode 100644 index 000000000..c7089903b --- /dev/null +++ b/src/test/regress/sql/multi_insert_select_non_pushable_queries.sql @@ -0,0 +1,651 @@ +------------------------------------ +------------------------------------ +-- Vanilla funnel query +------------------------------------ +------------------------------------ + +-- not pushable since the JOIN is not an equi join +INSERT INTO agg_results_third (user_id, value_1_agg) +SELECT user_id, array_length(events_table, 1) +FROM ( + SELECT user_id, array_agg(event ORDER BY time) AS events_table + FROM ( + SELECT u.user_id, e.event_type::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) t + GROUP BY user_id +) q; + +------------------------------------ +------------------------------------ +-- Funnel grouped by whether or not a user has done an event +------------------------------------ +------------------------------------ + +-- not pushable since the JOIN is not an equi join left part of the UNION +-- is not equi join +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id != e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- not pushable since the JOIN is not an equi join right part of the UNION +-- is not joined on the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.event_type + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = t2.user_id) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +-- the LEFT JOIN conditon is not on the partition column (i.e., is it part_key divided by 2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg ) +SELECT user_id, sum(array_length(events_table, 1)), length(hasdone_event) +FROM ( + SELECT + t1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(hasdone_event, 'Has not done event') AS hasdone_event + FROM ( + ( + SELECT u.user_id, 'step=>1'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (100, 101, 102) + ) + UNION + ( + SELECT u.user_id, 'step=>2'::text AS event, e.time + FROM users_table AS u, + events_table AS e + WHERE u.user_id = e.user_id + AND u.user_id >= 10 + AND u.user_id <= 25 + AND e.event_type IN (103, 104, 105) + ) + ) t1 LEFT JOIN ( + SELECT DISTINCT user_id, + 'Has done event'::TEXT AS hasdone_event + FROM events_table AS e + + WHERE e.user_id >= 10 + AND e.user_id <= 25 + AND e.event_type IN (106, 107, 108) + + ) t2 ON (t1.user_id = (t2.user_id)/2) + GROUP BY t1.user_id, hasdone_event +) t GROUP BY user_id, hasdone_event; + +------------------------------------ +------------------------------------ +-- Funnel, grouped by the number of times a user has done an event +------------------------------------ +------------------------------------ + +-- not pushable since the right of the UNION query is not joined on +-- the partition key +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id != events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id = subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +-- not pushable since the JOIN condition is not equi JOIN +-- (subquery_1 JOIN subquery_2) +INSERT INTO agg_results_third (user_id, value_1_agg, value_2_agg) +SELECT + user_id, + avg(array_length(events_table, 1)) AS event_average, + count_pay + FROM ( + SELECT + subquery_1.user_id, + array_agg(event ORDER BY time) AS events_table, + COALESCE(count_pay, 0) AS count_pay + FROM + ( + (SELECT + users_table.user_id, + 'action=>1'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) + UNION + (SELECT + users_table.user_id, + 'action=>2'AS event, + events_table.time + FROM + users_table, + events_table + WHERE + users_table.user_id = events_table.user_id AND + users_table.user_id >= 10 AND + users_table.user_id <= 70 AND + events_table.event_type > 12 AND events_table.event_type < 14 + ) + ) AS subquery_1 + LEFT JOIN + (SELECT + user_id, + COUNT(*) AS count_pay + FROM + users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 15 AND users_table.value_1 < 17 + GROUP BY + user_id + HAVING + COUNT(*) > 1) AS subquery_2 + ON + subquery_1.user_id > subquery_2.user_id + GROUP BY + subquery_1.user_id, + count_pay) AS subquery_top +WHERE + array_ndims(events_table) > 0 +GROUP BY + count_pay, user_id +ORDER BY + count_pay; + +------------------------------------ +------------------------------------ +-- Most recently seen users_table events_table +------------------------------------ +-- Note that we don't use ORDER BY/LIMIT yet +------------------------------------ +------------------------------------ +-- not pushable since lateral join is not an equi join +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE user_id != u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.user_id AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +-- not pushable since lateral join is not on the partition key +INSERT INTO agg_results_third (user_id, agg_time, value_2_agg) +SELECT + user_id, + user_lastseen, + array_length(event_array, 1) +FROM ( + SELECT + user_id, + max(u.time) as user_lastseen, + array_agg(event_type ORDER BY u.time) AS event_array + FROM ( + + SELECT user_id, time, value_3 as val_3 + FROM users_table + WHERE + user_id >= 10 AND + user_id <= 70 AND + users_table.value_1 > 10 AND users_table.value_1 < 12 + + ) u LEFT JOIN LATERAL ( + SELECT event_type, time + FROM events_table + WHERE event_type = u.val_3 AND + events_table.event_type > 10 AND events_table.event_type < 12 + ) t ON true + GROUP BY user_id +) AS shard_union +ORDER BY user_lastseen DESC; + +------------------------------------ +------------------------------------ +-- Count the number of distinct users_table who are in segment X and Y and Z +------------------------------------ +------------------------------------ + +-- not pushable since partition key is NOT IN +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id NOT IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- not pushable since partition key is not selected from the second subquery +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT value_1 FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +-- not pushable since second subquery does not return bare partition key +INSERT INTO agg_results_third (user_id) +SELECT DISTINCT user_id +FROM users_table +WHERE user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 10 AND value_1 <= 20) + AND user_id IN (SELECT 3 * user_id FROM users_table WHERE value_1 >= 30 AND value_1 <= 40) + AND user_id IN (SELECT user_id FROM users_table WHERE value_1 >= 50 AND value_1 <= 60); + +------------------------------------ +------------------------------------ +-- Find customers who have done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since join is not an euqi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND user_id!=users_table.user_id); + +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 101 AND value_1 < 110 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type>101 AND event_type < 110 AND value_3 > 100 AND event_type = users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who haven’t done X, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); + +-- not pushable since the join is not the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 = 101 + AND value_2 >= 5 + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND event_type=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X and Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_1 > 100 + AND value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type!=100 AND value_3 > 100 AND user_id=users_table.user_id) + AND EXISTS (SELECT user_id FROM events_table WHERE event_type=101 AND value_3 > 100 AND user_id!=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X and haven’t done Y, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since the first join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) +SELECT user_id, value_2 FROM users_table WHERE + value_2 >= 5 + AND EXISTS (SELECT user_id FROM events_table WHERE event_type > 100 AND event_type <= 300 AND value_3 > 100 AND user_id!=users_table.user_id) + AND NOT EXISTS (SELECT user_id FROM events_table WHERE event_type > 300 AND event_type <= 350 AND value_3 > 100 AND user_id=users_table.user_id); + +------------------------------------ +------------------------------------ +-- Customers who have done X more than 2 times, and satisfy other customer specific criteria +------------------------------------ +------------------------------------ + +-- not pushable since the second join is not an equi join +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id != users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND event_type = users_table.user_id + GROUP BY user_id + HAVING Count(*) > 2); + +-- not pushable since the second join is not on the partition key +INSERT INTO agg_results_third(user_id, value_2_agg) + SELECT user_id, + value_2 + FROM users_table + WHERE value_1 > 100 + AND value_1 < 124 + AND value_2 >= 5 + AND EXISTS (SELECT user_id + FROM events_table + WHERE event_type > 100 + AND event_type < 124 + AND value_3 > 100 + AND user_id = users_table.value_1 + GROUP BY user_id + HAVING Count(*) > 2); + +------------------------------------ +------------------------------------ +-- Find me all users_table who has done some event and has filters +------------------------------------ +------------------------------------ + +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id NOT in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +-- not pushable since we're not selecting the partition key +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And user_id in + (select value_3 + From users_table + Where value_1 = 15 + And value_2 > 25); + + -- not pushable since we're not selecting the partition key + -- from the events table +INSERT INTO agg_results_third(user_id) +Select user_id +From events_table +Where event_type = 16 +And value_2 > 50 +And event_type in + (select user_id + From users_table + Where value_1 = 15 + And value_2 > 25); + +------------------------------------ +------------------------------------ +-- Which events_table did people who has done some specific events_table +------------------------------------ +------------------------------------ + +-- not pushable due to NOT IN +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id NOT IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- not pushable due to not selecting the partition key +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE user_id IN (SELECT value_2 from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +-- not pushable due to not comparing user id from the events table +INSERT INTO agg_results_third(user_id, value_1_agg) +SELECT user_id, event_type FROM events_table +WHERE event_type IN (SELECT user_id from events_table WHERE event_type > 500 and event_type < 505) +GROUP BY user_id, event_type; + +------------------------------------ +------------------------------------ +-- Find my assets that have the highest probability and fetch their metadata +------------------------------------ +------------------------------------ + +-- not pushable since the join is not an equi join +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id != ma.user_id and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50; + +-- not pushable since the join is not on the partition key +INSERT INTO agg_results_third(user_id, value_1_agg, value_3_agg) +SELECT + users_table.user_id, users_table.value_1, prob +FROM + users_table + JOIN + (SELECT + ma.user_id, (GREATEST(coalesce(ma.value_4 / 250, 0.0) + GREATEST(1.0))) / 2 AS prob + FROM + users_table AS ma, events_table as short_list + WHERE + short_list.user_id = ma.value_2 and ma.value_1 < 50 and short_list.event_type < 50 + ) temp + ON users_table.user_id = temp.user_id + WHERE users_table.value_1 < 50;