Jump to content

Playerbases do not safe to DB


Erzengelgames

Recommended Posts

Hey guys.

First off i want to say sorry for my bad english and that iam allready trying to fix the issues i have since 4 days but i do not manage to repair it.

Problem: Everything a player could build (tents, walls, plotpole) gets deleted every restart.

More info: Vehicles do work and also become updated to the DB, they store gear and save the position

I will put in the files, i thought will be needed to help me out here. .rpt did not say anything so i will not include it.

sever_cleanup.sqf

Spoiler


_lootype = _this select 0;
_lootobj = _this select 1;
_lootref = _this select 2;

_dateNow = diag_ticktime;

switch (_lootype) do
{
	case "Dropped_Loot":
	{
	/*
		diag_log("Dropped Loot");
		_created = (_lootobj getVariable ["created",-0.1]);
		if (_created == -0.1) then {
			_lootobj setVariable ["created",diag_ticktime,false];
			_created = diag_ticktime;
		};
		
		_age = (_dateNow - _created);
		_nearby = {(isPlayer _lootobj) and (alive _lootobj)} count (_lootobj nearEntities [["CAManBase","AllVehicles"], 130]);
		if ((_nearby==0) then {
			if (_age > 20) then {
				_remove = true;
			} else {
				dayz_droppedlootarray set [count dayz_droppedlootarray,_lootobj];
			};
		};
	*/	
		//diag_log("Dropped Loot");
		deleteVehicle _lootobj;
	};
	
	case "Spawned_Loot":
	{
		//diag_log("Spawned Loot");
		deleteVehicle _lootobj;
	};
	
	case "Perma_Loot":
	{
		//diag_log("Perma Loot");	
	};
};



/*
{

	_Dropped = (_x getVariable ["Dropped",false]);
	_Spawned = (_x getVariable ["spawnedLoot",false]);
	_Perma = (_x getVariable ["permaLoot",false]);

	if (!_Spawned and !_Perma) then {
		_x setVariable ["Dropped",true];
	};

	//Dropped loot
	if (_Dropped) then {
		_x setVariable ["created",diag_ticktime,false];
		_created = diag_ticktime;
		
		diag_log("Dropped Loot");
	};

	//Spawned Loot
	if (_Spawned) then {
		diag_log("Spawned Loot");	
	};

	//Permaloot
	if (_Perma) then {
		//Ignore perma loot
		diag_log("Perma Loot");		
	};
} foreach _lootingrids;


if (_delQty > 0) then {
	diag_log ("CLEANUP: DELETED " + str(_delQty) + " LOOT BAGS");
};
*/

 

server_updateObject.sqf

Spoiler

// [_object,_type] spawn server_updateObject;
#include "\z\addons\dayz_server\compile\server_toggle_debug.hpp"
if (isNil "sm_done") exitWith {};
private ["_objectID","_objectUID","_object_position","_isNotOk","_object","_type","_recorddmg","_forced","_lastUpdate","_needUpdate","_object_inventory","_object_damage","_objWallDamage","_object_killed","_object_maintenance","_object_variables","_totalDmg"];

_object = _this select 0;
_type = _this select 1;
_recorddmg = false;
_isNotOk = false;
_forced = if (count _this > 2) then {_this select 2} else {false};
_totalDmg = if (count _this > 3) then {_this select 3} else {false};
_objectID = "0";
_objectUID = "0";

if ((isNil "_object") || {isNull _object}) exitWith {diag_log "server_updateObject.sqf _object null or nil, could not update object"};
_objectID = _object getVariable ["ObjectID","0"];
_objectUID = _object getVariable ["ObjectUID","0"];

if ((typeName _objectID == "SCALAR") || (typeName _objectUID == "SCALAR")) then { 
	#ifdef OBJECT_DEBUG
		diag_log (format["Non-string Object: ID %1 UID %2", _objectID, _objectUID]);
	#endif
	//force fail
	_objectID = nil;
	_objectUID = nil;
};

if (!((typeOf _object) in DZE_safeVehicle) && !locked _object) then {
	//diag_log format["Object: %1, ObjectID: %2, ObjectUID: %3",_object,_objectID,_objectUID];
	if (!(_objectID in dayz_serverIDMonitor) && isNil {_objectUID}) then { 
		//force fail
		_objectID = nil;
		_objectUID = nil;		
	};
	if ((isNil {_objectID}) && (isNil {_objectUID})) then {
		_object_position = getPosATL _object;
		#ifdef OBJECT_DEBUG
			diag_log format["Object %1 with invalid ID at pos %2",typeOf _object,_object_position];
		#endif
		_isNotOk = true;
	};
};

if (_isNotOk) exitWith {
	//deleteVehicle _object;
};

_lastUpdate = _object getVariable ["lastUpdate",diag_tickTime];
_needUpdate = _object in needUpdate_objects;

// TODO ----------------------
_object_position = {
	private ["_position","_worldspace","_fuel","_key"];
	_position = getPosATL _object;
	//_worldspace = [round (direction _object),_position];
	_worldspace = [getDir _object, _position] call AN_fnc_formatWorldspace; // Precise Base Building 1.0.5
	_fuel = if (_object isKindOf "AllVehicles") then {fuel _object} else {0};
	
	_key = format["CHILD:305:%1:%2:%3:",_objectID,_worldspace,_fuel];
	_key call server_hiveWrite;	

	#ifdef OBJECT_DEBUG
		diag_log ("HIVE: WRITE: "+ str(_key));
	#endif
};

_object_inventory = {
	private ["_inventory","_key","_isNormal","_coins","_forceUpdate"];
	_forceUpdate = false;
	if (_object isKindOf "TrapItems") then {
		_inventory = [["armed",_object getVariable ["armed",false]]];
	} else {
		_isNormal = true;
		
		if (DZE_permanentPlot && (typeOf (_object) == "Plastic_Pole_EP1_DZ")) then {
			_isNormal = false;
			_inventory = _object getVariable ["plotfriends", []]; //We're replacing the inventory with UIDs for this item
		};
		
		if (DZE_doorManagement && (typeOf (_object) in DZE_DoorsLocked)) then {
			_isNormal = false;
			_inventory = _object getVariable ["doorfriends", []]; //We're replacing the inventory with UIDs for this item
		};
		
		
		
		if (_isNormal) then {
			_inventory = [getWeaponCargo _object, getMagazineCargo _object, getBackpackCargo _object];
		};
	};
	
	_previous = str(_object getVariable["lastInventory",[]]);
	if ((str _inventory != _previous) || {_forceUpdate}) then {
		_object setVariable["lastInventory",_inventory];
		if (_objectID == "0") then {
			_key = format["CHILD:309:%1:",_objectUID] + str _inventory + ":";
		} else {
			_key = format["CHILD:303:%1:",_objectID] + str _inventory + ":";
		};
		if (Z_SingleCurrency) then {
			_coins = _object getVariable [Z_MoneyVariable, -1]; //set to invalid value if getVariable fails to prevent overwriting of coins in DB
			_key = _key + str _coins + ":";
		};
		
		#ifdef OBJECT_DEBUG
			diag_log ("HIVE: WRITE: "+ str(_key));
		#endif
		
		_key call server_hiveWrite;
	};
};

_object_damage = {
	//Allow dmg process
	private ["_hitpoints","_array","_hit","_selection","_key","_damage","_allFixed"];
	_hitpoints = _object call vehicle_getHitpoints;
	_damage = damage _object;
	_array = [];
	_allFixed = true;
	
	{
		_hit = [_object,_x] call object_getHit;
		_selection = getText (configFile >> "CfgVehicles" >> (typeOf _object) >> "HitPoints" >> _x >> "name");
		if (_hit > 0) then {
			_allFixed = false;
			_array set [count _array,[_selection,_hit]];
			//diag_log format ["Section Part: %1, Dmg: %2",_selection,_hit]; 
		} else {
			_array set [count _array,[_selection,0]]; 
		};
	} forEach _hitpoints;
	
	if (_allFixed && !_totalDmg) then {_object setDamage 0;};
	
	if (_forced) then {        
		if (_object in needUpdate_objects) then {needUpdate_objects = needUpdate_objects - [_object];};
		_recorddmg = true;	       
	} else {
		//Prevent damage events for the first 10 seconds of the servers live.
		if (diag_ticktime - _lastUpdate > 10) then {
			if !(_object in needUpdate_objects) then {
				//diag_log format["DEBUG: Monitoring: %1",_object];
				needUpdate_objects set [count needUpdate_objects, _object];
				_recorddmg = true;
			};
		};
	};
	
	if (_recorddmg) then {
		if (_objectID == "0") then {
			_key = format["CHILD:306:%1:",_objectUID] + str _array + ":" + str _damage + ":";
		} else {
			_key = format["CHILD:306:%1:",_objectID] + str _array + ":" + str _damage + ":";
		};
		#ifdef OBJECT_DEBUG
		diag_log ("HIVE: WRITE: "+ str(_key));
		#endif
		
		_key call server_hiveWrite;   
	};
};

//Walls
_objWallDamage = {
	private ["_key","_damage"];
	_damage = (damage _object);

	if (_objectID == "0") then {
		_key = format["CHILD:306:%1:%2:%3:",_objectUID,[],_damage];
	} else {
		_key = format["CHILD:306:%1:%2:%3:",_objectID,[],_damage];
	};
	#ifdef OBJECT_DEBUG
	diag_log ("HIVE: WRITE: "+ str(_key));
	#endif
	
	_key call server_hiveWrite;
};

_object_killed = {
	private "_key";
	_object setDamage 1;
	
	if (_objectID == "0") then {
		//Need to update hive to make a new call to allow UID to be updated for a killed event
		//_key = format["CHILD:306:%1:%2:%3:",_objectUID,[],1];
		_key = format["CHILD:310:%1:",_objectUID];
	} else {
		_key = format["CHILD:306:%1:%2:%3:",_objectID,[],1];
	};
	_key call server_hiveWrite;
	
	#ifdef OBJECT_DEBUG
	diag_log format["DELETE: Deleted by KEY: %1",_key];
	#endif
	
	if (((typeOf _object) in DayZ_removableObjects) or ((typeOf _object) in DZE_isRemovable)) then {[_objectID,_objectUID,"__SERVER__"] call server_deleteObj;};
};

_object_maintenance = {
	private ["_ownerArray","_key"];

	_ownerArray = _object getVariable ["ownerArray",[]];
	_accessArray = _object getVariable ["dayz_padlockCombination",[]];
	_variables set [count _variables, ["ownerArray", _ownerArray]];
	_variables set [count _variables, ["padlockCombination", _accessArray]];

	if (_objectID == "0") then {
		//_key = format["CHILD:309:%1:%2:",_objectUID,_ownerArray];
		_key = format["CHILD:306:%1:%2:%3:",_objectUID,[],0]; //Wont work just now.
	} else {
		//_key = format["CHILD:303:%1:%2:",_objectID,_ownerArray];
		_key = format["CHILD:306:%1:%2:%3:",_objectID,[],0];
	};

//	#ifdef OBJECT_DEBUG
		diag_log ("HIVE: WRITE: Maintenance, "+ str(_key));
//	#endif
	_key call server_hiveWrite;
};

_object_variables = {
	private ["_ownerArray","_key","_accessArray","_variables","_coins"];

	_ownerArray = _object getVariable ["ownerArray",[]];
	_accessArray = _object getVariable ["dayz_padlockCombination",[]];
	_lockedArray = _object getVariable ["BuildLock",false];
	
	//diag_log format ["[%1,%2]",_ownerArray,_accessArray];
	_variables = [];
	_variables set [count _variables, ["ownerArray", _ownerArray]];
	_variables set [count _variables, ["padlockCombination", _accessArray]];
	_variables set [count _variables, ["BuildLock", _lockedArray]];

	if (_objectID == "0") then {
		_key = format["CHILD:309:%1:%2:",_objectUID,_variables];
	} else {
		_key = format["CHILD:303:%1:%2:",_objectID,_variables];
	};
	if (Z_SingleCurrency) then {
		_coins = _object getVariable [Z_MoneyVariable, -1];
		_key = _key + str _coins + ":";
	};
	_key call server_hiveWrite;
};

_object setVariable ["lastUpdate",diag_ticktime,true];
switch (_type) do {
	case "all": {
		call _object_position;
		call _object_inventory;
		call _object_damage;
	};
	case "position": {
		call _object_position;
	};
	case "gear": {
		call _object_inventory;
	};
	case "maintenance": {
		call _object_maintenance;
	};
	case "damage"; case "repair" : {
		call _object_damage;
	};
	case "killed": {
		call _object_killed;
	};
	case "accessCode"; case "buildLock" : {
		call _object_variables;
	};
	case "objWallDamage": {
		call _objWallDamage;
	};
};

 

HiveEXT.ini

Spoiler

[Time]
;Possible values: Local, Custom, Static // Es gibt drei arten Local (Lokale Serverzeit, Custom Serverzeit, Statische Serverzeit nach jedem restart)
Type=Static
;If using Custom type, offset from UTC in hours (can be negative as well) // Bei Custom kann die Lokale Serverzeit - oder + Serverzeit haben z.b. bei -5 wäre Lokale Zeit - 5 Stunden
Offset=0
;These 2 settings only apply if using Static type (Custom date/time on every server start)
;The value (0-24) to set the Hour to, if commented or empty then the hour won't be changed Serverzeit die beim Start des Servers gesetzt wird wenn 8 dan bei jedem Serverestart 8 Uhr morgens.
Hour=8
;The value (DD/MM/YYYY) to set the Date to, if commented or empty then the date won't be changed
;Date = 1.8.2013
[Logger]
;Possible values: trace, debug, information, notice, warning, error, critical, fatal, none
;They are sorted by importance (low to high), with trace being the most verbose, and none would turn off logging
;This controls both the file output level, and the console output level
Level=information
;Uncomment this option to override the logging level for the console only
;The specified level can only be higher than the global one, setting lower values will have no effect
;So for example, if you want to have information-level logs in your file, but only warning-level and higher in your console
;You would uncomment this option and set it to warning
;Leaving it commented out means there's no special level for the console, so it will just use the global one
ConsoleLevel=information
;By default, the HiveExt console log output will go to the Arma2 server window, with colour highlighing by importance
;If you want to use the old style, separate windows console window for the HiveExt log output, set this option to true
SeparateConsole=false
[Database]
;Hostname or IP of the server to connect to
;You can use the value "." (without quotes) to indicate named-pipe localhost connection
;If you leave this line commented or blank, HiveExt will connect to the OFFICIAL Hive, which requires registration
;See support.dayzmod.com for more information on what OFFICIAL Hive means, what are the rules, etc.
;If using OFFICIAL hive, the rest of the settings in this section have no effect
Host=****
;The default is MySql, which is better supported than Postgre (completely untested)
Type=MySql
;Port to connect to. The default is the default listening port of a server of the selected Type
;Instead of specifying Port, you can specify Socket and set Value to the socket name
Port=3306
;Database name to connect to (you must supply this if private).
Database=****
;Username to connect with
Username=****
;Password to authenticate with (default is blank)
Password=****
;If using OFFICIAL hive, the settings in this section have no effect, appropriate layout will be used
[Characters]
;The field name that Player's IDs are stored in (unique per game license)
;Some table layouts have this as PlayerID, and some as PlayerUID, that's why this is configurable
;IDField = PlayerUID
;The field name that Player's World Position and rotation is stored in
;Enables you to run multiple different maps (different instances) off the same character table
;WSField = Worldspace
;If using OFFICIAL hive, the settings in this section have no effect, as it will clean up by itself
[Objects]
;Which table should the objects be stored and fetched from ?
;Table = object_data
;Negative values will disable this feature
;0 means that ALL empty placed items will be deleted every server restart
;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
CleanupPlacedAfterDays=30
;Flag indicating whether hiveext should detect vehicles out of map boundaries (X < 0, or Y > 15360) and reset their position to []
;Note: YOU MUST have a proper dayz_server.pbo that supports this feature, otherwise you will get script errors
;You can find that file under the SQF directory for your server version
ResetOOBVehicles=false
;If using OFFICIAL hive, the settings in this section have no effect, it will manage objects on its own
[ObjectDB]
;Setting this to true separates the Object fetches from the Character fetches
;That means that the Object Table must be on this other database
;Use = false
;The settings here have the same meaning as in [Database], and are only used if the setting above is set to true
;Type = MySql
;Host = localhost
;Port = 3306
;Database =
;Username = root
;Password =

I obviestly did change the db settings to **** so noone can see that

I realy do hope anyone of you guys sees the problem and is able to help me out cause i do not manage to fix it. please help me :)

Link to comment
Share on other sites

When you place a wall for example ..this wall get writed in the db? (I know after restar they gonne) but is saved during the server up time? The hive console (the one who drops letters in green) give you some text in red in the moment when you place a wall?  Scuse my english too.

Do you have a list of mods that youre using?

Do you try with a new database?

Link to comment
Share on other sites

so iam hosting on g-portal so i got a webinterface console which includes the .rpt if you are talking about the hiveext.log than there is nothing written in there. iam using some custom mods but the biggest once are dzai, custom traders, snap_pro, everything else got added after i notified the problem first time.

I did empty the object_data tables once but i did not installed a new db.

i will copy me hiveext.log of today but it will be veeeerly long just to say it

Spoiler

2017-10-04 00:18:02 HiveExt: [Information] HiveExt 
2017-10-04 00:18:02 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:18:02 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:18:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:18:02 HiveExt: [Information] Updating 2 Object_Data ObjectUID
2017-10-04 00:18:02 HiveExt: [Information] Result: ["ObjectStreamStart",503,"cf26f70ad9abbc3663fc4686fd57f0f0"]
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:18:02 HiveExt: [Information] Result: "ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf"
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: ObjectDatab3ee16c9dd8a61f08cdc0537c6b799be.sqf:false:
2017-10-04 00:18:02 HiveExt: [Information] Result: ["NOTICE","ObjectDatab3ee16c9dd8a61f08cdc0537c6b799be.sqf has been deleted"]
2017-10-04 00:18:30 HiveExt: [Information] Method: 308 Params: 11:datsun1_civil_3_open_DZE:0:0:[69,[7547.82,4707.4,0.036]]:[]:[[motor,0.223],[sklo predni P,0.128],[sklo predni L,0.633],[karoserie,0.388],[palivo,0.182],[wheel_1_1_steering,0.602],[wheel_2_1_steering,0.121],[wheel_1_4_steering,0.409],[wheel_2_4_steering,0.218],[wheel_1_3_steering,0.621],[wheel_2_3_steering,0.304],[wheel_1_2_steering,0.646],[wheel_2_2_steering,0.204],[glass1,0.146],[glass2,0.32],[glass3,0.152],[glass4,0.379]]:0.203:88336947071285:
2017-10-04 00:18:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:47 HiveExt: [Information] Method: 309 Params: 0:[[[],[]],[[PartFueltank],[1]],[[],[]]]:
2017-10-04 00:18:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:54 HiveExt: [Information] Method: 388 Params: 88336947071285:
2017-10-04 00:18:54 HiveExt: [Information] Result: ["PASS","520"]
2017-10-04 00:18:54 HiveExt: [Information] Method: 306 Params: 520:[[motor,0.223],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 00:18:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:19:01 HiveExt: [Information] Method: 306 Params: 520:[[motor,0.223],[sklo predni P,0.128],[sklo predni L,0.633],[karoserie,0.388],[palivo,0.182],[wheel_1_1_steering,0.602],[wheel_2_1_steering,0.121],[wheel_1_4_steering,0.409],[wheel_2_4_steering,0.218],[wheel_1_3_steering,0.621],[wheel_2_3_steering,0.304],[wheel_1_2_steering,0.646],[wheel_2_2_steering,0.204],[glass1,0.146],[glass2,0.32],[glass3,0.152],[glass4,0.379]]:0:
2017-10-04 00:19:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS",false,"41",[284,[1043.14,2479.24,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemGPS","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1379,1878,1878],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:19:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:05 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[684.263,142.352,139.399],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[284,[1043.14,2479.24,0.001]],2803,11]
2017-10-04 00:19:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:26 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:19:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:20:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:28 HiveExt: [Information] Method: 201 Params: 41:[204,[1050.57,2489.09,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:30555:23:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:28 HiveExt: [Information] Method: 303 Params: 152:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:40 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:13:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:21:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:50 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:21:50 HiveExt: [Information] Result: ["PASS",false,"41",[288,[1042.86,2479.12,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemGPS","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1878,1881,1881],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:21:50 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:21:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:51 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[684.263,142.352,139.399],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady02",42],[]],[288,[1042.86,2479.12,0.001]],2803,11]
2017-10-04 00:21:51 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:51 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:55 HiveExt: [Information] Method: 201 Params: 41:[293,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:30558:22:[[DMR_DZ,amovpercmstpslowwrfldnon_player_idlesteady03,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:21:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:22:02 HiveExt: [Information] Method: 305 Params: 152:[65.178,[1046.767,2481.804,0.006]]:0.647:
2017-10-04 00:22:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:02 HiveExt: [Information] Method: 306 Params: 152:[[wheel_1_1_steering,0.282],[wheel_1_2_steering,0.34],[wheel_2_1_steering,0.493],[wheel_2_2_steering,0],[palivo,0],[motor,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 00:22:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:12 HiveExt: [Information] Method: 305 Params: 152:[65.907,[1033.668,2475.863,0.012]]:0.646:
2017-10-04 00:22:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:12 HiveExt: [Information] Method: 201 Params: 41:[155,[1033.67,2475.86,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:24 HiveExt: [Information] Method: 305 Params: 152:[117.151,[1022.965,2464.911,0.021]]:0.645:
2017-10-04 00:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:24 HiveExt: [Information] Method: 201 Params: 41:[155,[1022.96,2464.91,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:39 HiveExt: [Information] Method: 305 Params: 152:[152.159,[1048.967,2438.061,0.007]]:0.643:
2017-10-04 00:22:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:39 HiveExt: [Information] Method: 201 Params: 41:[155,[1048.97,2438.06,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:51 HiveExt: [Information] Method: 305 Params: 152:[99.769,[1241.122,2398.492,-4.821e-04]]:0.641:
2017-10-04 00:22:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:51 HiveExt: [Information] Method: 201 Params: 41:[155,[1241.12,2398.49,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:23:03 HiveExt: [Information] Method: 305 Params: 152:[115.281,[1583.25,2247.349,7.391e-05]]:0.638:
2017-10-04 00:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:03 HiveExt: [Information] Method: 201 Params: 41:[155,[1583.25,2247.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:15 HiveExt: [Information] Method: 305 Params: 152:[81.627,[1956.759,2249.357,-6.599e-04]]:0.636:
2017-10-04 00:23:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:15 HiveExt: [Information] Method: 201 Params: 41:[155,[1956.76,2249.36,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:27 HiveExt: [Information] Method: 305 Params: 152:[152.947,[2253.986,2150.572,-2.88e-04]]:0.633:
2017-10-04 00:23:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:27 HiveExt: [Information] Method: 201 Params: 41:[155,[2253.99,2150.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:39 HiveExt: [Information] Method: 305 Params: 152:[103.403,[2581.499,2024.654,3.963e-04]]:0.631:
2017-10-04 00:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:39 HiveExt: [Information] Method: 201 Params: 41:[155,[2581.5,2024.65,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:51 HiveExt: [Information] Method: 305 Params: 152:[74.318,[2959.945,2051.157,-3.858e-04]]:0.628:
2017-10-04 00:23:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:51 HiveExt: [Information] Method: 201 Params: 41:[155,[2959.94,2051.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:24:04 HiveExt: [Information] Method: 305 Params: 152:[41.666,[3291.064,2236.16,6.323e-04]]:0.626:
2017-10-04 00:24:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:04 HiveExt: [Information] Method: 201 Params: 41:[155,[3291.06,2236.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:24:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:16 HiveExt: [Information] Method: 305 Params: 152:[73.685,[3590.89,2454.546,7.725e-05]]:0.623:
2017-10-04 00:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:16 HiveExt: [Information] Method: 201 Params: 41:[155,[3590.89,2454.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:28 HiveExt: [Information] Method: 305 Params: 152:[80.135,[3910.662,2614.912,7.534e-04]]:0.621:
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:28 HiveExt: [Information] Method: 201 Params: 41:[155,[3910.66,2614.91,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:40 HiveExt: [Information] Method: 305 Params: 152:[109.535,[4290.373,2568.157,-2.17e-04]]:0.618:
2017-10-04 00:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:40 HiveExt: [Information] Method: 201 Params: 41:[155,[4290.37,2568.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:52 HiveExt: [Information] Method: 305 Params: 152:[96.136,[4644.331,2423.013,5.298e-04]]:0.616:
2017-10-04 00:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:52 HiveExt: [Information] Method: 201 Params: 41:[155,[4644.33,2423.01,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:25:04 HiveExt: [Information] Method: 305 Params: 152:[125.28,[4978.242,2231.334,-1.812e-05]]:0.613:
2017-10-04 00:25:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:04 HiveExt: [Information] Method: 201 Params: 41:[155,[4978.24,2231.33,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:25:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:17 HiveExt: [Information] Method: 305 Params: 152:[110.566,[5307.458,2083.176,-1.783e-04]]:0.611:
2017-10-04 00:25:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:17 HiveExt: [Information] Method: 201 Params: 41:[155,[5307.46,2083.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:29 HiveExt: [Information] Method: 305 Params: 152:[68.582,[5681.991,2117.305,5.116e-04]]:0.608:
2017-10-04 00:25:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:29 HiveExt: [Information] Method: 201 Params: 41:[155,[5681.99,2117.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:41 HiveExt: [Information] Method: 305 Params: 152:[73.11,[6049.903,2236.396,-8.583e-06]]:0.606:
2017-10-04 00:25:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:41 HiveExt: [Information] Method: 201 Params: 41:[155,[6049.9,2236.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:53 HiveExt: [Information] Method: 305 Params: 152:[9.581,[6348.56,2455.888,2.89e-04]]:0.603:
2017-10-04 00:25:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:53 HiveExt: [Information] Method: 201 Params: 41:[155,[6348.56,2455.89,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:26:06 HiveExt: [Information] Method: 305 Params: 152:[38.753,[6499.349,2792.753,0.164]]:0.601:
2017-10-04 00:26:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:06 HiveExt: [Information] Method: 201 Params: 41:[155,[6499.35,2792.75,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:26:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:18 HiveExt: [Information] Method: 305 Params: 152:[57.857,[6784.679,3025.163,-0.01]]:0.598:
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:18 HiveExt: [Information] Method: 201 Params: 41:[155,[6784.68,3025.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:30 HiveExt: [Information] Method: 305 Params: 152:[58.7,[7098.321,3242.643,-4.625e-05]]:0.596:
2017-10-04 00:26:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:30 HiveExt: [Information] Method: 201 Params: 41:[155,[7098.32,3242.64,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:42 HiveExt: [Information] Method: 305 Params: 152:[102.741,[7288.75,3316.543,-3.338e-05]]:0.594:
2017-10-04 00:26:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:42 HiveExt: [Information] Method: 201 Params: 41:[155,[7288.75,3316.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:54 HiveExt: [Information] Method: 305 Params: 152:[98.507,[7529.432,3171.884,0.003]]:0.591:
2017-10-04 00:26:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:54 HiveExt: [Information] Method: 201 Params: 41:[155,[7529.43,3171.88,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:26:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:27:06 HiveExt: [Information] Method: 305 Params: 152:[89.264,[7856.369,3184.594,-0.003]]:0.589:
2017-10-04 00:27:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:06 HiveExt: [Information] Method: 201 Params: 41:[155,[7856.37,3184.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:19 HiveExt: [Information] Method: 305 Params: 152:[112.46,[8151.628,3126.26,1.254e-04]]:0.587:
2017-10-04 00:27:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:19 HiveExt: [Information] Method: 201 Params: 41:[155,[8151.63,3126.26,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:31 HiveExt: [Information] Method: 305 Params: 152:[134.289,[8451.463,2898.592,5.913e-05]]:0.584:
2017-10-04 00:27:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:31 HiveExt: [Information] Method: 201 Params: 41:[155,[8451.46,2898.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:39 HiveExt: [Information] Method: 305 Params: 152:[189.203,[8537.117,2752.005,0.105]]:0.583:
2017-10-04 00:27:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:39 HiveExt: [Information] Method: 201 Params: 41:[155,[8537.12,2752.01,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:41 HiveExt: [Information] Method: 305 Params: 152:[189.236,[8537.166,2752.229,0.114]]:0.583:
2017-10-04 00:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:41 HiveExt: [Information] Method: 306 Params: 152:[[wheel_1_1_steering,0.282],[wheel_1_2_steering,0.34],[wheel_2_1_steering,0.493],[wheel_2_2_steering,0],[palivo,0],[motor,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 00:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:48 HiveExt: [Information] Method: 305 Params: 206:[174.514,[8519.958,2741.845,0.059]]:0.135:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.034],[glass2,0],[glass3,0],[glass4,0],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:51 HiveExt: [Information] Method: 305 Params: 206:[174.694,[8519.958,2741.869,0.058]]:0.135:
2017-10-04 00:27:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:51 HiveExt: [Information] Method: 201 Params: 41:[265,[8519.96,2741.87,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:28:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:09 HiveExt: [Information] Method: 305 Params: 206:[177.164,[8523.471,2735.552,11.778]]:0.134:
2017-10-04 00:28:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:09 HiveExt: [Information] Method: 201 Params: 41:[265,[8523.47,2735.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:28:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:22 HiveExt: [Information] Method: 305 Params: 206:[147.032,[8744.119,2417.042,28.003]]:0.133:
2017-10-04 00:28:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:22 HiveExt: [Information] Method: 201 Params: 41:[265,[8744.12,2417.04,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:34 HiveExt: [Information] Method: 305 Params: 206:[91.966,[9314.252,2038.844,19.798]]:0.133:
2017-10-04 00:28:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:34 HiveExt: [Information] Method: 201 Params: 41:[265,[9314.25,2038.84,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:46 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.034],[glass2,0],[glass3,0],[glass4,0],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 305 Params: 206:[73.165,[10164.677,2154.116,42.038]]:0.132:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 201 Params: 41:[265,[10164.7,2154.12,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:58 HiveExt: [Information] Method: 305 Params: 206:[29.704,[10678.3,2808.746,45.118]]:0.131:
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:58 HiveExt: [Information] Method: 201 Params: 41:[265,[10678.3,2808.75,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:29:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:10 HiveExt: [Information] Method: 305 Params: 206:[16.304,[10951.907,3511.2,82.716]]:0.131:
2017-10-04 00:29:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:10 HiveExt: [Information] Method: 201 Params: 41:[265,[10951.9,3511.2,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:23 HiveExt: [Information] Method: 305 Params: 206:[11.083,[11084.512,4030.393,34.977]]:0.13:
2017-10-04 00:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:23 HiveExt: [Information] Method: 201 Params: 41:[265,[11084.5,4030.39,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:35 HiveExt: [Information] Method: 305 Params: 206:[12.244,[11150.292,4496.067,48.33]]:0.129:
2017-10-04 00:29:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:35 HiveExt: [Information] Method: 201 Params: 41:[265,[11150.3,4496.07,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:47 HiveExt: [Information] Method: 305 Params: 206:[12.244,[11299.646,5052.479,26.215]]:0.129:
2017-10-04 00:29:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:47 HiveExt: [Information] Method: 201 Params: 41:[265,[11299.6,5052.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:59 HiveExt: [Information] Method: 305 Params: 206:[323.709,[11272.66,5396.349,37.466]]:0.128:
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:59 HiveExt: [Information] Method: 201 Params: 41:[265,[11272.7,5396.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:09 HiveExt: [Information] Method: 305 Params: 206:[320.71,[11230.336,5444.697,-0.022]]:0.128:
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:09 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:11 HiveExt: [Information] Method: 201 Params: 41:[64,[11223,5453.92,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:77:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:30:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:24 HiveExt: [Information] Method: 201 Params: 41:[11,[11274.3,5472.34,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:55:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:30:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:36 HiveExt: [Information] Method: 201 Params: 41:[331,[11280.2,5501.45,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:30:0:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 00:30:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:31:04 HiveExt: [Information] Method: 201 Params: 41:[169,[11290.6,5476.74,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:27:1:[[DMR_DZ,bunnyhoprifle,42],[]]:0:0::0:
2017-10-04 00:31:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:28 HiveExt: [Information] Method: 201 Params: 41:[119,[11291.1,5469.93,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:31:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:37 HiveExt: [Information] Method: 201 Params: 41:[165,[11296.6,5466.44,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:31:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:51 HiveExt: [Information] Method: 201 Params: 41:[66,[11297.2,5466.77,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:1:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 00:31:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:32:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:30 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemGoldBar,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:6:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 00:32:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:31 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemGoldBar,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 00:32:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:37 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 00:32:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:37 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 00:32:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:33:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:13 HiveExt: [Information] Method: 201 Params: 41:[8,[11291.2,5469.78,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:26 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:43 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:55 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:56 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:34:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:35:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:36:49 HiveExt: [Information] HiveExt 
2017-10-04 00:36:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:36:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:36:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:36:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:36:49 HiveExt: [Information] Updating 1 Object_Data ObjectUID
2017-10-04 00:36:49 HiveExt: [Information] Result: ["ObjectStreamStart",504,"05270967583fe5c176ccbfa4f9d162db"]
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:36:49 HiveExt: [Information] Result: "ObjectData05270967583fe5c176ccbfa4f9d162db.sqf"
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf:false:
2017-10-04 00:36:49 HiveExt: [Information] Result: ["NOTICE","ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf has been deleted"]
2017-10-04 00:37:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:25 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.2,5475.07,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1881,1896,1896],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:25 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.2,5475.07,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1881,1896,1896],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:25 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[838.18,186.959,124.153],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[293,[11290.2,5475.07,0.001]],2803,11]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:26 HiveExt: [Information] Method: 201 Params: 41:[293,[9250.24,6857.68,24.701]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:33764:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:37:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:26 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:37:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:48 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.1,5475.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:2464:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:37:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:38:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:38:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 00:38:51 HiveExt: [Information] HiveExt 
2017-10-04 00:38:51 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:38:51 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:38:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:38:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: ["ObjectStreamStart",504,"8140636118f7bb21847b226f0ed8e80b"]
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: "ObjectData8140636118f7bb21847b226f0ed8e80b.sqf"
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: ObjectData05270967583fe5c176ccbfa4f9d162db.sqf:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: ["NOTICE","ObjectData05270967583fe5c176ccbfa4f9d162db.sqf has been deleted"]
2017-10-04 00:39:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:27 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.1,5475.12,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1896,1898,1898],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:39:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:27 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[838.18,186.959,124.153],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[293,[11290.1,5475.12,0.001]],2803,11]
2017-10-04 00:39:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:28 HiveExt: [Information] Method: 201 Params: 41:[293,[9252.7,6855.98,25.482]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:33767:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:39:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:28 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:39:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:40:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:41:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:26 HiveExt: [Information] Method: 201 Params: 41:[126,[11290.5,5474.91,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:2462:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:41:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:41:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:39 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:16:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:41:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:41:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:42:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:16 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:16 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:16 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:43:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:44:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:44:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 00:51:38 HiveExt: [Information] HiveExt 
2017-10-04 00:51:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:51:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:51:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: ["ObjectStreamStart",504,"55baa0aa6843340becc193b0af4d1376"]
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: "ObjectData55baa0aa6843340becc193b0af4d1376.sqf"
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: ObjectData8140636118f7bb21847b226f0ed8e80b.sqf:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: ["NOTICE","ObjectData8140636118f7bb21847b226f0ed8e80b.sqf has been deleted"]
2017-10-04 00:51:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:51:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:52:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:52:05 HiveExt: [Information] Result: ["PASS",false,"41",[13,[11277.7,5484.06,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1898,1911,1911],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:52:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:52:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:07 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS",false,"41",[13,[11277.7,5484.06,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1911,1911,1911],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:52:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:07 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[866.012,202.068,120.974],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[13,[11277.7,5484.06,0.001]],2803,11]
2017-10-04 00:52:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:09 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:36213:0:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:52:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:52:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:55 HiveExt: [Information] Method: 201 Params: 41:[245,[11269.9,5493.19,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 00:52:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:53:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:07 HiveExt: [Information] Method: 201 Params: 41:[159,[11248.9,5480.46,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:25:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:53:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:37 HiveExt: [Information] Method: 201 Params: 41:[159,[11248.9,5480.52,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:53:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:50 HiveExt: [Information] Method: 201 Params: 41:[58,[11225.3,5448.38,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:40:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:53:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:50 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 00:53:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:52 HiveExt: [Information] Method: 305 Params: 206:[322.765,[11230.501,5444.441,-0.024]]:0.128:
2017-10-04 00:53:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:52 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:53:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:54:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:14 HiveExt: [Information] Method: 305 Params: 206:[318.271,[11227.68,5441.641,14.117]]:0.127:
2017-10-04 00:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:14 HiveExt: [Information] Method: 201 Params: 41:[53,[11227.7,5441.64,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:26 HiveExt: [Information] Method: 305 Params: 206:[213.323,[11005.669,5233.225,57.391]]:0.126:
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:26 HiveExt: [Information] Method: 201 Params: 41:[53,[11005.7,5233.23,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:38 HiveExt: [Information] Method: 305 Params: 206:[207.714,[10759.957,4799.773,152.463]]:0.126:
2017-10-04 00:54:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:38 HiveExt: [Information] Method: 201 Params: 41:[53,[10760,4799.77,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:50 HiveExt: [Information] Method: 305 Params: 206:[209.566,[10457.506,4249.048,127.714]]:0.125:
2017-10-04 00:54:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:50 HiveExt: [Information] Method: 201 Params: 41:[53,[10457.5,4249.05,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:55:02 HiveExt: [Information] Method: 305 Params: 206:[181.053,[10239.971,3739.167,91.865]]:0.124:
2017-10-04 00:55:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:02 HiveExt: [Information] Method: 201 Params: 41:[53,[10240,3739.17,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:55:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:15 HiveExt: [Information] Method: 305 Params: 206:[309.83,[10355.624,3544.141,23.715]]:0.124:
2017-10-04 00:55:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:15 HiveExt: [Information] Method: 201 Params: 41:[53,[10355.6,3544.14,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:55:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:27 HiveExt: [Information] Method: 305 Params: 206:[293.388,[10271.679,3575.203,3.016]]:0.123:
2017-10-04 00:55:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:27 HiveExt: [Information] Method: 201 Params: 41:[53,[10271.7,3575.2,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:55:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:37 HiveExt: [Information] Method: 305 Params: 206:[293.677,[10271.925,3575.513,0.034]]:0.122:
2017-10-04 00:55:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:37 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:55:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:41 HiveExt: [Information] Method: 201 Params: 41:[59,[10279.1,3567.31,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmevasraswrfldfr,42],[]]:0:0::0:
2017-10-04 00:55:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:53 HiveExt: [Information] Method: 201 Params: 41:[3,[10313.7,3618.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:61:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:55:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,plot_pole_kit,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1]],[[],[]]]:
2017-10-04 00:55:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:56:00 HiveExt: [Information] Method: 201 Params: 41:[182,[10314.2,3619.18,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:12 HiveExt: [Information] Method: 201 Params: 41:[115,[10313.9,3618.41,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:12 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 00:56:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:25 HiveExt: [Information] Method: 201 Params: 41:[359,[10311.4,3619.4,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:3:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:56:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:41 HiveExt: [Information] Method: 201 Params: 41:[223,[10311.4,3619.39,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:54 HiveExt: [Information] Method: 201 Params: 41:[307,[10331,3610.8,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 00:56:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:57:03 HiveExt: [Information] Method: 201 Params: 41:[307,[10330.8,3610.76,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:28 HiveExt: [Information] Method: 201 Params: 41:[60,[10333.7,3609.02,-3.777e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:4:1:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 00:57:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:40 HiveExt: [Information] Method: 201 Params: 41:[181,[10325.2,3618.27,11.152]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:46 HiveExt: [Information] Method: 201 Params: 41:[181,[10325.2,3618.27,11.152]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:58:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:59:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:07 HiveExt: [Information] Method: 201 Params: 41:[212,[10346.2,3614.03,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:21:1:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 00:59:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:19 HiveExt: [Information] Method: 201 Params: 41:[335,[10322.4,3608.16,-3.929e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:28:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 00:59:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:31 HiveExt: [Information] Method: 201 Params: 41:[8,[10311.3,3620.22,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:18:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:59:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 01:00:04 HiveExt: [Information] Method: 201 Params: 41:[187,[10311.3,3620.24,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:00:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:00:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:19 HiveExt: [Information] Method: 201 Params: 41:[181,[10311,3619.5,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:00:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:00:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:03:03 HiveExt: [Information] HiveExt 
2017-10-04 01:03:03 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:03:03 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:03:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:03 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: ["ObjectStreamStart",504,"a3cc3fc80e6e11a960c0c1e25306b405"]
2017-10-04 01:03:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: "ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf"
2017-10-04 01:03:04 HiveExt: [Information] Method: 302 Params: ObjectData55baa0aa6843340becc193b0af4d1376.sqf:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: ["NOTICE","ObjectData55baa0aa6843340becc193b0af4d1376.sqf has been deleted"]
2017-10-04 01:03:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:30 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS",false,"41",[181,[10311,3619.5,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1911,1922,1922],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:03:30 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:32 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS",false,"41",[181,[10311,3619.5,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1922,1922,1922],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:03:32 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:32 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[972.353,268.374,108.311],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[181,[10311,3619.5,4.373]],2803,11]
2017-10-04 01:03:32 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 201 Params: 41:[181,[10311,3619.51,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:36520:1:[[,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:50 HiveExt: [Information] Method: 201 Params: 41:[54,[10318.8,3613.3,3.223]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 01:03:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:53 HiveExt: [Information] Method: 201 Params: 41:[97,[10320.2,3614.16,3.606]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:03:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:06 HiveExt: [Information] Method: 201 Params: 41:[97,[10308.9,3615.68,4.134]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:11:0:[[DMR_DZ,amovpknlmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 01:04:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:18 HiveExt: [Information] Method: 201 Params: 41:[29,[10321.5,3614.31,3.464]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:13:0:[[DMR_DZ,amovpknlmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 01:04:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:30 HiveExt: [Information] Method: 201 Params: 41:[242,[10317.4,3601.63,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:15:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 01:04:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:42 HiveExt: [Information] Method: 201 Params: 41:[321,[10276.5,3569.95,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:52:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 01:04:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:42 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 01:04:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:54 HiveExt: [Information] Method: 201 Params: 41:[49,[10284.7,3599.46,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:31:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 01:04:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:05:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:06 HiveExt: [Information] Method: 201 Params: 41:[132,[10313.8,3620.43,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:36:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:05:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:05:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:06:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:07:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:08:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:06 HiveExt: [Information] Method: 201 Params: 41:[77,[10313.8,3618.88,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:3:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:08:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:06 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:08:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:24 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:08:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:25 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:08:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:08:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:09:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:10:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:55 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:10:55 HiveExt: [Information] Result: ["PASS",false,"41",[180,[10313.8,3619.62,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1922,1930,1930],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:10:55 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:10:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[180,[10313.8,3619.62,4.373]],2803,11]
2017-10-04 01:10:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:11:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:09 HiveExt: [Information] Method: 201 Params: 41:[175,[10313.8,3619.27,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:11:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:11:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:12:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:31 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.9,3617.26,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:31 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:53 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:53 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:53 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:13:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:14:37 HiveExt: [Information] HiveExt 
2017-10-04 01:14:37 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:14:37 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:14:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:14:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: ["ObjectStreamStart",504,"4de39311e17e5467ffdf550bbdc60d77"]
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: "ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf"
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: ["NOTICE","ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf has been deleted"]
2017-10-04 01:15:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:18 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS",false,"41",[164,[10313.5,3619.09,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1930,1934,1934],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:15:18 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovppnemstpsraswrfldnon",42],[]],[164,[10313.5,3619.09,4.373]],2803,11]
2017-10-04 01:15:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:49 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:15:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:16:03 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:16:03 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:16:03 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:26 HiveExt: [Information] HiveExt 
2017-10-04 01:21:26 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:21:26 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:21:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: ["ObjectStreamStart",504,"d2511ffee367cf7de7f5df03bd044801"]
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: "ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf"
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: ["NOTICE","ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf has been deleted"]
2017-10-04 01:21:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:39 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS",false,"41",[166,[10313.5,3618.99,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1934,1940,1940],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:21:39 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:53 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[166,[10313.5,3618.99,4.373]],2803,11]
2017-10-04 01:21:53 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:53 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36523:0:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:54 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:21:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:32 HiveExt: [Information] Method: 201 Params: 41:[155,[10313.6,3618.75,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:23:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:49 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.95,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:49 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.95,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:25:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:26:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:27:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:28:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:29:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:30:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:41:31 HiveExt: [Information] HiveExt 
2017-10-04 01:41:31 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:41:31 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:41:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:41:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: ["ObjectStreamStart",504,"00aad0e95d51098c4053b1ab751318ba"]
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: "ObjectData00aad0e95d51098c4053b1ab751318ba.sqf"
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: ["NOTICE","ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf has been deleted"]
2017-10-04 01:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:08 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS",false,"41",[158,[10313.6,3618.95,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1940,1961,1961],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:42:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:08 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady01",42],[]],[158,[10313.6,3618.95,4.373]],2803,11]
2017-10-04 01:42:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.5,3619.1,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:45 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.85,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:42:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:43:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:35 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3619.06,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:35 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3619.06,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:35 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:44:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:44:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 01:44:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:44:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:09:24 HiveExt: [Information] HiveExt 
2017-10-04 13:09:24 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 13:09:24 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 13:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 13:09:24 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 13:09:24 HiveExt: [Information] Result: ["ObjectStreamStart",504,"ce861fc825827916cf6037f180c21eb5"]
2017-10-04 13:09:24 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 13:09:25 HiveExt: [Information] Result: "ObjectDatace861fc825827916cf6037f180c21eb5.sqf"
2017-10-04 13:09:25 HiveExt: [Information] Method: 302 Params: ObjectData00aad0e95d51098c4053b1ab751318ba.sqf:false:
2017-10-04 13:09:25 HiveExt: [Information] Result: ["NOTICE","ObjectData00aad0e95d51098c4053b1ab751318ba.sqf has been deleted"]
2017-10-04 13:10:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:22 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 13:10:22 HiveExt: [Information] Result: ["PASS",false,"41",[158,[10313.6,3619.06,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1961,2649,2649],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 13:10:22 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 13:10:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:27 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 13:10:27 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_aiming01",42],[]],[158,[10313.6,3619.06,4.373]],2803,11]
2017-10-04 13:10:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 13:10:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 13:10:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:51 HiveExt: [Information] Method: 201 Params: 41:[89,[10317.5,3606.44,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36533:73:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 13:10:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:11:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:03 HiveExt: [Information] Method: 201 Params: 41:[340,[10324.8,3592.55,4.616e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:16:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:11:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:15 HiveExt: [Information] Method: 201 Params: 41:[345,[10322,3612.66,2.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 13:11:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:28 HiveExt: [Information] Method: 201 Params: 41:[40,[10302.2,3602.43,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:22:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 13:11:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:40 HiveExt: [Information] Method: 201 Params: 41:[72,[10304.1,3609,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:11:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:12:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:06 HiveExt: [Information] Method: 201 Params: 41:[27,[10312.9,3612.56,2.655]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:12:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:06 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 13:12:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:10 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:12:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:10 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.325],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:12:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:23 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:23 HiveExt: [Information] Method: 201 Params: 41:[90,[10315.9,3619.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:23 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemBriefcaseS30oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:13:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:14:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:15:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:08 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:15:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:08 HiveExt: [Information] Method: 201 Params: 41:[90,[10315.9,3619.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:2:[[,,42],[]]:0:0::0:
2017-10-04 13:15:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:22 HiveExt: [Information] Method: 305 Params: 22:[72.828,[10335.747,3598.565,0.469]]:0.416:
2017-10-04 13:15:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:22 HiveExt: [Information] Method: 201 Params: 41:[90,[10335.7,3598.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:15:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:34 HiveExt: [Information] Method: 305 Params: 22:[359.4,[10334.841,3777.302,0.013]]:0.412:
2017-10-04 13:15:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:34 HiveExt: [Information] Method: 201 Params: 41:[90,[10334.8,3777.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:46 HiveExt: [Information] Method: 305 Params: 22:[334.344,[10208.355,4036.845,0.082]]:0.409:
2017-10-04 13:15:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:46 HiveExt: [Information] Method: 201 Params: 41:[90,[10208.4,4036.85,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:58 HiveExt: [Information] Method: 305 Params: 22:[38.664,[10361.651,4237.563,0.035]]:0.405:
2017-10-04 13:15:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:58 HiveExt: [Information] Method: 201 Params: 41:[90,[10361.7,4237.56,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:10 HiveExt: [Information] Method: 305 Params: 22:[42.615,[10576.101,4429.132,0.055]]:0.401:
2017-10-04 13:16:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:10 HiveExt: [Information] Method: 201 Params: 41:[90,[10576.1,4429.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:22 HiveExt: [Information] Method: 305 Params: 22:[15.806,[10667.247,4634.772,0.002]]:0.398:
2017-10-04 13:16:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:22 HiveExt: [Information] Method: 201 Params: 41:[90,[10667.2,4634.77,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:16:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:34 HiveExt: [Information] Method: 305 Params: 22:[326.56,[10615.134,4898.324,0.023]]:0.394:
2017-10-04 13:16:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:34 HiveExt: [Information] Method: 201 Params: 41:[90,[10615.1,4898.32,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:46 HiveExt: [Information] Method: 305 Params: 22:[311.329,[10410.271,5093.103,0.023]]:0.39:
2017-10-04 13:16:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:46 HiveExt: [Information] Method: 201 Params: 41:[90,[10410.3,5093.1,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:59 HiveExt: [Information] Method: 305 Params: 22:[324.449,[10154.607,5208.473,0.004]]:0.387:
2017-10-04 13:16:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:59 HiveExt: [Information] Method: 201 Params: 41:[90,[10154.6,5208.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:11 HiveExt: [Information] Method: 305 Params: 22:[1.661,[10152.217,5305.97,0.013]]:0.505:
2017-10-04 13:17:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:11 HiveExt: [Information] Method: 201 Params: 41:[90,[10152.2,5305.97,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:17:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:18:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:19:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:20:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:09 HiveExt: [Information] Method: 305 Params: 22:[343.545,[10145.313,5324.531,0.022]]:0.999:
2017-10-04 13:20:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:09 HiveExt: [Information] Method: 201 Params: 41:[90,[10145.3,5324.53,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:3:[[,,42],[]]:0:0::0:
2017-10-04 13:20:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:20 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.325],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:20:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:20 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.341],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:20:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 305 Params: 22:[101.526,[10248.125,5461.416,-6.104e-05]]:0.996:
2017-10-04 13:20:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 201 Params: 41:[90,[10248.1,5461.42,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:20:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 303 Params: :[[[],[]],[[],[]],[[],[]]]:
2017-10-04 13:20:21 HiveExt: [Error] Error executing |CHILD:303::[[[],[]],[[],[]],[[],[]]]:|
2017-10-04 13:20:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:33 HiveExt: [Information] Method: 305 Params: 22:[80.059,[10468.617,5528.966,0.019]]:0.992:
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:33 HiveExt: [Information] Method: 201 Params: 41:[90,[10468.6,5528.97,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:45 HiveExt: [Information] Method: 305 Params: 22:[99.682,[10637.324,5500.162,0.166]]:0.988:
2017-10-04 13:20:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:45 HiveExt: [Information] Method: 201 Params: 41:[90,[10637.3,5500.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:57 HiveExt: [Information] Method: 305 Params: 22:[73.943,[10824.838,5485.3,0.002]]:0.984:
2017-10-04 13:20:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:57 HiveExt: [Information] Method: 201 Params: 41:[90,[10824.8,5485.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:09 HiveExt: [Information] Method: 305 Params: 22:[124.049,[11031.377,5452.542,-0.004]]:0.981:
2017-10-04 13:21:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:09 HiveExt: [Information] Method: 201 Params: 41:[90,[11031.4,5452.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:21:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:21 HiveExt: [Information] Method: 305 Params: 22:[49.589,[11205.788,5467.178,0.002]]:0.978:
2017-10-04 13:21:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:21 HiveExt: [Information] Method: 201 Params: 41:[90,[11205.8,5467.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:21:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:31 HiveExt: [Information] Method: 305 Params: 22:[75.4,[11280.963,5493.401,8.698e-04]]:0.977:
2017-10-04 13:21:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:31 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:21:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:34 HiveExt: [Information] Method: 201 Params: 41:[345,[11280.7,5499.43,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:82:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:21:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:10 HiveExt: [Information] Method: 201 Params: 41:[122,[11287,5481.76,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:19:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:15 HiveExt: [Information] Method: 201 Params: 41:[219,[11291.4,5470.54,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:12:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:22:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:15 HiveExt: [Information] Method: 201 Params: 41:[219,[11291.4,5470.54,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:22:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:24 HiveExt: [Information] Method: 201 Params: 41:[114,[11291.7,5470.43,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:38 HiveExt: [Information] Method: 201 Params: 41:[341,[11279.9,5491.03,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:24:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 13:22:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:56 HiveExt: [Information] Method: 201 Params: 41:[337,[11279.9,5491.04,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:22:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:56 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemBriefcaseS30oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby,ItemBriefcaseS80oz],[1,1,1,2,2,1,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1]],[[],[]]]:
2017-10-04 13:22:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:09 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:24:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 13:23:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:30 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 13:23:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:30 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 13:23:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:41 HiveExt: [Information] Method: 201 Params: 41:[151,[11290.9,5469.81,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:23:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:54 HiveExt: [Information] Method: 201 Params: 41:[329,[11280.2,5491.13,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:24:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:54 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1]],[[],[]]]:
2017-10-04 13:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:16 HiveExt: [Information] Method: 201 Params: 41:[329,[11280.2,5491.13,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:16 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby,ItemBriefcaseS90oz,ItemGoldBar2oz,ItemGoldBar10oz,ItemBriefcase100oz,ItemLightBulb],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,2,1,1,1,1,5]],[[],[]]]:
2017-10-04 13:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:25:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:26:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:20 HiveExt: [Information] Method: 201 Params: 41:[306,[11276.8,5490.34,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1260.66,397.678,77.008],false]:false:false:0:0:3:3:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:26:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:29 HiveExt: [Information] Method: 305 Params: 22:[75.397,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:26:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:29 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:26:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:46 HiveExt: [Information] Method: 305 Params: 22:[75.392,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:46 HiveExt: [Information] Method: 201 Params: 41:[165,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1260.66,397.678,77.008],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:46 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemBriefcaseS90oz,ItemGoldBar2oz,ItemGoldBar10oz,ItemRuby,ItemLightBulb,ItemBriefcase100oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,5,1]],[[],[]]]:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:48 HiveExt: [Information] Method: 305 Params: 22:[75.38,[11280.963,5493.4,8.545e-04]]:0.977:
2017-10-04 13:26:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:48 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:26:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:27:00 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:26:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:04 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:05 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:14 HiveExt: [Information] Method: 201 Params: 41:[34,[11290.9,5470.08,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:27:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 305 Params: 22:[75.381,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5]],[[],[]]]:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:28 HiveExt: [Information] Method: 305 Params: 22:[75.39,[11280.963,5493.4,8.698e-04]]:0.977:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:28 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:28 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2]],[[],[]]]:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:35 HiveExt: [Information] Method: 305 Params: 22:[75.396,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:35 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:35 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 305 Params: 22:[75.386,[11280.963,5493.4,8.545e-04]]:0.977:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz,plot_pole_kit],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1,2]],[[],[]]]:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:54 HiveExt: [Information] Method: 305 Params: 22:[229.715,[11265.513,5492.809,0.001]]:0.975:
2017-10-04 13:27:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:54 HiveExt: [Information] Method: 201 Params: 41:[345,[11265.5,5492.81,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:07 HiveExt: [Information] Method: 305 Params: 22:[208.652,[11150.93,5391.472,0.015]]:0.972:
2017-10-04 13:28:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:07 HiveExt: [Information] Method: 201 Params: 41:[345,[11150.9,5391.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:19 HiveExt: [Information] Method: 305 Params: 22:[355.206,[11071.165,5405.127,-4.883e-04]]:0.968:
2017-10-04 13:28:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:19 HiveExt: [Information] Method: 201 Params: 41:[345,[11071.2,5405.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:28:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:31 HiveExt: [Information] Method: 305 Params: 22:[269.157,[10914.349,5500.114,0.096]]:0.965:
2017-10-04 13:28:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:31 HiveExt: [Information] Method: 201 Params: 41:[345,[10914.3,5500.11,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:43 HiveExt: [Information] Method: 305 Params: 22:[280.362,[10707.809,5484.175,0.022]]:0.961:
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:43 HiveExt: [Information] Method: 201 Params: 41:[345,[10707.8,5484.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:56 HiveExt: [Information] Method: 305 Params: 22:[273.107,[10492.953,5528.736,0.008]]:0.958:
2017-10-04 13:28:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:56 HiveExt: [Information] Method: 201 Params: 41:[345,[10493,5528.74,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:08 HiveExt: [Information] Method: 305 Params: 22:[264.493,[10252.172,5465.072,0.047]]:0.955:
2017-10-04 13:29:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:08 HiveExt: [Information] Method: 201 Params: 41:[345,[10252.2,5465.07,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:20 HiveExt: [Information] Method: 305 Params: 22:[182.802,[10138.489,5291.016,0.012]]:0.951:
2017-10-04 13:29:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:20 HiveExt: [Information] Method: 201 Params: 41:[345,[10138.5,5291.02,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:29:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:32 HiveExt: [Information] Method: 305 Params: 22:[108.43,[10368.996,5112.046,0.05]]:0.948:
2017-10-04 13:29:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:32 HiveExt: [Information] Method: 201 Params: 41:[345,[10369,5112.05,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:45 HiveExt: [Information] Method: 305 Params: 22:[144.318,[10616.415,4899.036,0.019]]:0.944:
2017-10-04 13:29:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:45 HiveExt: [Information] Method: 201 Params: 41:[345,[10616.4,4899.04,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:57 HiveExt: [Information] Method: 305 Params: 22:[173.161,[10687.001,4730.448,0.016]]:0.944:
2017-10-04 13:29:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:57 HiveExt: [Information] Method: 201 Params: 41:[345,[10687,4730.45,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:09 HiveExt: [Information] Method: 305 Params: 22:[219.072,[10635.301,4506.411,-0.004]]:0.942:
2017-10-04 13:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:09 HiveExt: [Information] Method: 201 Params: 41:[345,[10635.3,4506.41,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:21 HiveExt: [Information] Method: 305 Params: 22:[237.429,[10501.029,4369.417,0.003]]:0.94:
2017-10-04 13:30:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:21 HiveExt: [Information] Method: 201 Params: 41:[345,[10501,4369.42,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:30:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:34 HiveExt: [Information] Method: 305 Params: 22:[220.048,[10292.583,4155.346,0.062]]:0.937:
2017-10-04 13:30:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:34 HiveExt: [Information] Method: 201 Params: 41:[345,[10292.6,4155.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:46 HiveExt: [Information] Method: 305 Params: 22:[149.674,[10262.684,3967.433,0.057]]:0.934:
2017-10-04 13:30:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:46 HiveExt: [Information] Method: 201 Params: 41:[345,[10262.7,3967.43,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:58 HiveExt: [Information] Method: 305 Params: 22:[163.507,[10345.354,3670.572,-0.003]]:0.93:
2017-10-04 13:30:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:58 HiveExt: [Information] Method: 201 Params: 41:[345,[10345.4,3670.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:10 HiveExt: [Information] Method: 305 Params: 22:[335.396,[10316.476,3603.414,-0.024]]:0.927:
2017-10-04 13:31:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:10 HiveExt: [Information] Method: 201 Params: 41:[345,[10316.5,3603.41,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:31:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:22 HiveExt: [Information] Method: 305 Params: 22:[1.777,[10315.011,3619.549,4.371]]:0.925:
2017-10-04 13:31:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:22 HiveExt: [Information] Method: 201 Params: 41:[345,[10315,3619.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:31:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:27 HiveExt: [Information] Method: 305 Params: 22:[0.604,[10314.951,3619.559,4.371]]:0.925:
2017-10-04 13:31:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:27 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:32 HiveExt: [Information] Method: 305 Params: 22:[0.504,[10314.943,3619.56,4.371]]:0.925:
2017-10-04 13:31:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:32 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:35 HiveExt: [Information] Method: 305 Params: 22:[0.472,[10314.974,3619.518,4.371]]:0.925:
2017-10-04 13:31:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:35 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:40 HiveExt: [Information] Method: 201 Params: 41:[196,[10317.1,3618.66,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:5:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:32:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:48 HiveExt: [Information] Method: 201 Params: 41:[205,[10316.4,3616.36,4.289]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1379.62,440.163,64.744],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:31 HiveExt: [Information] Method: 201 Params: 41:[222,[10303.8,3603.89,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:18:2:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 13:35:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:43 HiveExt: [Information] Method: 305 Params: 206:[294.736,[10272.507,3575.275,0.041]]:0.122:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 305 Params: 206:[294.76,[10272.518,3575.271,0.04]]:0.122:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 201 Params: 41:[24,[10272.5,3575.27,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:04 HiveExt: [Information] Method: 305 Params: 206:[192.468,[10272.517,3576.741,10.653]]:0.121:
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:04 HiveExt: [Information] Method: 201 Params: 41:[24,[10272.5,3576.74,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:16 HiveExt: [Information] Method: 305 Params: 206:[202.363,[10242.813,3238.474,37.425]]:0.12:
2017-10-04 13:36:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:16 HiveExt: [Information] Method: 201 Params: 41:[24,[10242.8,3238.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:28 HiveExt: [Information] Method: 305 Params: 206:[161.482,[10278.941,2517.064,21.44]]:0.12:
2017-10-04 13:36:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:28 HiveExt: [Information] Method: 201 Params: 41:[24,[10278.9,2517.06,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:36:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:41 HiveExt: [Information] Method: 305 Params: 206:[259.835,[9885.439,2047.485,65.95]]:0.119:
2017-10-04 13:36:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:41 HiveExt: [Information] Method: 201 Params: 41:[24,[9885.44,2047.49,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:53 HiveExt: [Information] Method: 305 Params: 206:[142.586,[9407.602,1988.556,88.483]]:0.118:
2017-10-04 13:36:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:53 HiveExt: [Information] Method: 201 Params: 41:[24,[9407.6,1988.56,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:05 HiveExt: [Information] Method: 305 Params: 206:[278.271,[9529.84,2054.613,19.136]]:0.118:
2017-10-04 13:37:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:05 HiveExt: [Information] Method: 201 Params: 41:[24,[9529.84,2054.61,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:37:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:17 HiveExt: [Information] Method: 305 Params: 206:[190.506,[9498.673,2011.187,10.223]]:0.117:
2017-10-04 13:37:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:17 HiveExt: [Information] Method: 201 Params: 41:[24,[9498.67,2011.19,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:37:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:57 HiveExt: [Information] Method: 305 Params: 206:[190.927,[9499.563,2010.089,6.362]]:0.985:
2017-10-04 13:37:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:57 HiveExt: [Information] Method: 201 Params: 41:[24,[9499.56,2010.09,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:37:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:10 HiveExt: [Information] Method: 305 Params: 206:[250.733,[9425.97,1986.537,30.393]]:0.999:
2017-10-04 13:38:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:10 HiveExt: [Information] Method: 201 Params: 41:[24,[9425.97,1986.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:22 HiveExt: [Information] Method: 305 Params: 206:[293.096,[8862.931,2163.371,22.586]]:0.999:
2017-10-04 13:38:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:22 HiveExt: [Information] Method: 201 Params: 41:[24,[8862.93,2163.37,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:38:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:35 HiveExt: [Information] Method: 305 Params: 206:[301.487,[8165.686,2365.132,57.734]]:0.998:
2017-10-04 13:38:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:35 HiveExt: [Information] Method: 201 Params: 41:[24,[8165.69,2365.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:47 HiveExt: [Information] Method: 305 Params: 206:[224.625,[7811.435,2455.527,49.774]]:0.997:
2017-10-04 13:38:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:47 HiveExt: [Information] Method: 201 Params: 41:[24,[7811.43,2455.53,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:59 HiveExt: [Information] Method: 305 Params: 206:[203.141,[7788.656,2428.513,53.63]]:0.997:
2017-10-04 13:38:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:59 HiveExt: [Information] Method: 201 Params: 41:[24,[7788.66,2428.51,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:11 HiveExt: [Information] Method: 305 Params: 206:[203.497,[7805.131,2420.131,34.847]]:0.996:
2017-10-04 13:39:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:11 HiveExt: [Information] Method: 201 Params: 41:[24,[7805.13,2420.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:39:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:16 HiveExt: [Information] Method: 305 Params: 206:[203.168,[7802.706,2421.123,33.849]]:0.996:
2017-10-04 13:39:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:16 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 13:39:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:23 HiveExt: [Information] Method: 201 Params: 41:[97,[7795.4,2389.32,31.104]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:45:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 13:39:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:36 HiveExt: [Information] Method: 201 Params: 41:[80,[7828.1,2389.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:33:0:[[DMR_DZ,,42],[]]:0:0::0:
2017-10-04 13:39:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:48 HiveExt: [Information] Method: 201 Params: 41:[31,[7829.5,2392.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:28:0:[[DMR_DZ,,42],[]]:0:0::0:
2017-10-04 13:39:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:40:00 HiveExt: [Information] Method: 201 Params: 41:[108,[7839.53,2360.23,22.336]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:40:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:40:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:12 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:24 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:37 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:39 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:45 HiveExt: [Information] Method: 201 Params: 41:[337,[7841.41,2359.99,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:57 HiveExt: [Information] Method: 201 Params: 41:[23,[7841.13,2360.12,22.313]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:01 HiveExt: [Information] Method: 201 Params: 41:[23,[7841.1,2360.07,22.314]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:15 HiveExt: [Information] Method: 201 Params: 41:[334,[7843.2,2355.42,22.225]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:41:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:28 HiveExt: [Information] Method: 201 Params: 41:[3,[7842.28,2358.51,22.316]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:3:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:41:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:40 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:52 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:42:04 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:42:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:12 HiveExt: [Information] Method: 201 Params: 41:[24,[7842.34,2358.1,22.32]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:42:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:25 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:8:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:37 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:49 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:43:01 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:02 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:03 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:03 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 13:43:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:44:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:45:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:46:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:43 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.003:
2017-10-04 13:46:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:46:43 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.004:
2017-10-04 13:46:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:46:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:47:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:48:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:49:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:50:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:51:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:52:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:53:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:54:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:55:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:56:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:57:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:58:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:59:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 14:00:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:01:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:02:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:03:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:04:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:05:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:06:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:07:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:08:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:09:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:10:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:11:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:12:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:13:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:14:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:15:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:16:38 HiveExt: [Information] HiveExt 
2017-10-04 14:16:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:16:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:16:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:16:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: ["ObjectStreamStart",504,"05df416e4e9ee85132802824da18ec57"]
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: "ObjectData05df416e4e9ee85132802824da18ec57.sqf"
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: ObjectDatace861fc825827916cf6037f180c21eb5.sqf:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: ["NOTICE","ObjectDatace861fc825827916cf6037f180c21eb5.sqf has been deleted"]
2017-10-04 14:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:06 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:17:06 HiveExt: [Information] Result: ["PASS",false,"41",[14,[7839,2351,22.477]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","NVGoggles","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2649,2716,2716],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:17:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:17:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1510.54,503.98,50.225],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[14,[7839,2351,22.477]],2803,11]
2017-10-04 14:17:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.522]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:35416:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:08 HiveExt: [Information] Method: 306 Params: 206:[]:1:
2017-10-04 14:17:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:17:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:10 HiveExt: [Information] Method: 306 Params: 206:[[glass1,1],[glass2,1],[glass3,1],[glass4,1],[glass5,1],[glass6,1],[NEtrup,0],[motor,1],[elektronika,1],[mala vrtule,1],[velka vrtule,1],[munice,0],[sklo predni P,0],[sklo predni L,0]]:1:
2017-10-04 14:17:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:19 HiveExt: [Information] Method: 201 Params: 41:[8,[7831.78,2375.65,25.664]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:26:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 14:17:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:31 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:42 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:54 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:54 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:54 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:18:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:19:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:20:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:21:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:22:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:24:11 HiveExt: [Information] HiveExt 
2017-10-04 14:24:11 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:24:11 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:24:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: ["ObjectStreamStart",503,"881333ab3b3bb447337e9a7d97ec4937"]
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: "ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf"
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: ObjectData05df416e4e9ee85132802824da18ec57.sqf:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: ["NOTICE","ObjectData05df416e4e9ee85132802824da18ec57.sqf has been deleted"]
2017-10-04 14:24:40 HiveExt: [Information] Method: 308 Params: 11:Kamaz_DZE:0:0:[121,[8970.28,6314.31,0.031]]:[]:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0.433],[wheel_1_4_steering,0.615],[wheel_2_4_steering,0.606],[wheel_1_3_steering,0.681],[wheel_2_3_steering,0.316],[wheel_1_2_steering,0.478],[wheel_2_2_steering,0.49],[motor,0.094],[sklo predni P,0.456],[sklo predni L,0.614],[karoserie,0.391],[palivo,0.479],[glass1,0.442],[glass2,0.488],[glass3,0.052],[glass4,0.199]]:0.775:9035121631465:
2017-10-04 14:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:47 HiveExt: [Information] Method: 388 Params: 9035121631465:
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS","521"]
2017-10-04 14:24:47 HiveExt: [Information] Method: 306 Params: 521:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:48 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS",false,"41",[77,[7832.04,2375.69,25.662]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2716,2724,2724],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:24:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:49 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1510.54,503.98,50.225],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[77,[7832.04,2375.69,25.662]],2803,11]
2017-10-04 14:24:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:49 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.659]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:35395:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:50 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:24:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:52 HiveExt: [Information] Method: 306 Params: 521:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0.433],[wheel_1_4_steering,0.615],[wheel_2_4_steering,0.606],[wheel_1_3_steering,0.681],[wheel_2_3_steering,0.316],[wheel_1_2_steering,0.478],[wheel_2_2_steering,0.49],[motor,0.094],[sklo predni P,0.456],[sklo predni L,0.614],[karoserie,0.391],[palivo,0.479],[glass1,0.442],[glass2,0.488],[glass3,0.052],[glass4,0.199]]:0:
2017-10-04 14:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:25:01 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:13 HiveExt: [Information] Method: 303 Params: 521:[[[],[]],[[15Rnd_W1866_Slug],[1]],[[DZ_Czech_Vest_Pouch],[1]]]:
2017-10-04 14:25:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:13 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:26 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:37 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:50 HiveExt: [Information] Method: 201 Params: 41:[5,[7835.06,2424.08,25.246]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:48:0:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 14:25:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:57 HiveExt: [Information] Method: 201 Params: 41:[5,[7835.1,2424.58,25.237]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:26:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:10 HiveExt: [Information] Method: 201 Params: 41:[302,[7830.09,2430.09,25.127]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 14:26:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:22 HiveExt: [Information] Method: 201 Params: 41:[347,[7853.9,2428.36,32.033]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:25:0:[[DMR_DZ,amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 14:26:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:34 HiveExt: [Information] Method: 201 Params: 41:[63,[7851.92,2428.49,32.035]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmwlkslowwrfldf,42],[]]:0:0::0:
2017-10-04 14:26:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:46 HiveExt: [Information] Method: 201 Params: 41:[47,[7848.34,2445.95,24.655]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:19:1:[[DMR_DZ,amovpercmrunslowwrfldfl,42],[]]:0:0::0:
2017-10-04 14:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:58 HiveExt: [Information] Method: 201 Params: 41:[221,[7855.35,2454.29,24.517]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmstpslowwrfldnon_player_idlesteady02,42],[]]:0:0::0:
2017-10-04 14:26:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:10 HiveExt: [Information] Method: 201 Params: 41:[216,[7857.15,2453.18,24.544]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmwlkslowwrfldfl,42],[]]:0:0::0:
2017-10-04 14:27:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:22 HiveExt: [Information] Method: 201 Params: 41:[246,[7856.02,2455.34,24.497]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpslowwrfldnon_turnl,42],[]]:0:0::0:
2017-10-04 14:27:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:35 HiveExt: [Information] Method: 201 Params: 41:[262,[7850.29,2428.09,32.039]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:29:0:[[DMR_DZ,amovpercmrunslowwrfldf,42],[]]:0:0::0:
2017-10-04 14:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:47 HiveExt: [Information] Method: 201 Params: 41:[239,[7830,2390.04,25.411]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:44:1:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 14:27:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:59 HiveExt: [Information] Method: 201 Params: 41:[286,[7821.63,2390.86,31.674]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:27:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:11 HiveExt: [Information] Method: 201 Params: 41:[8,[7804.13,2422.85,33.974]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:37:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_diary,42],[]]:0:0::0:
2017-10-04 14:28:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:23 HiveExt: [Information] Method: 201 Params: 41:[232,[7803.06,2422.01,33.99]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 14:28:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:35 HiveExt: [Information] Method: 201 Params: 41:[226,[7801.81,2413.92,33.856]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:8:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:28:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:48 HiveExt: [Information] Method: 201 Params: 41:[261,[7823.51,2392.43,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:31:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:28:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:29:00 HiveExt: [Information] Method: 201 Params: 41:[218,[7823.62,2392.42,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:29:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:09 HiveExt: [Information] Method: 201 Params: 41:[218,[7823.62,2392.42,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:29:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:22 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:22 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:23 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:30:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:31:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:32:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:33:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:34:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:35:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:36:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:36:05 HiveExt: [Information] Result: ["PASS",false,"41",[256,[10342.3,3797.5,0]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2724,2735,2735],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:36:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:36:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:06 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:36:06 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1596.76,568.672,39.302],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[256,[10342.3,3797.5,0]],2803,11]
2017-10-04 14:36:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:36:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:07 HiveExt: [Information] Method: 201 Params: 41:[256,[10341.7,3797.26,0.257]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:36437:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:36:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:36:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:19 HiveExt: [Information] Method: 201 Params: 41:[178,[10339,3781.62,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:31 HiveExt: [Information] Method: 201 Params: 41:[178,[10336.7,3716.74,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:65:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:44 HiveExt: [Information] Method: 201 Params: 41:[169,[10347.4,3655.51,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:62:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:56 HiveExt: [Information] Method: 201 Params: 41:[267,[10333.5,3606.12,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:52:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:37:08 HiveExt: [Information] Method: 201 Params: 41:[202,[10316.8,3617.21,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:20:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:08 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz,plot_pole_kit],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1,2]],[[],[]]]:
2017-10-04 14:37:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:41 HiveExt: [Information] Method: 201 Params: 41:[202,[10316.9,3617.24,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,plot_pole_kit,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:41 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 14:37:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:48 HiveExt: [Information] Method: 201 Params: 41:[355,[10320.1,3618.21,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,plot_pole_kit,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:3:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:38:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:39:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:36 HiveExt: [Information] Method: 201 Params: 41:[179,[10323.4,3619.91,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1646.06,609.447,32.829],false]:false:false:0:0:4:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:39:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:39:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:40:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:41:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:51 HiveExt: [Information] Method: 201 Params: 41:[183,[10323.4,3619.92,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1675.86,623.681,29.541],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:41:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:33 HiveExt: [Information] Method: 201 Params: 41:[183,[10323.4,3619.92,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:42:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:46 HiveExt: [Information] Method: 201 Params: 41:[44,[10343.6,3613.57,-1.373e-04]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:22:0:[[DMR_DZ,amovpercmwlksraswrfldfr,42],[]]:0:0::0:
2017-10-04 14:42:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:58 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:27:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:42:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:44:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:01 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:44:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:44:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:45:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:46:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:05 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1741.46,660.315,21.985],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:46:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:46:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:49 HiveExt: [Information] Method: 201 Params: 41:[102,[10315.2,3624.82,10.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:46:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:46:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:47:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:05 HiveExt: [Information] Method: 201 Params: 41:[87,[10322.1,3619.72,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:47:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:17 HiveExt: [Information] Method: 201 Params: 41:[89,[10327.2,3619.59,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:47:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:36 HiveExt: [Information] Method: 201 Params: 41:[83,[10330.4,3620.89,9.362]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:3:0:[[DMR_DZ,amovpercmrunslowwrfldf_amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:47:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:48 HiveExt: [Information] Method: 201 Params: 41:[92,[10325.3,3619.88,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:47:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:48:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:49:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:19 HiveExt: [Information] Method: 201 Params: 41:[77,[10324.3,3618.09,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:2:2:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:49:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:49:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:53 HiveExt: [Information] Method: 201 Params: 41:[92,[10345.1,3620.44,0.026]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:21:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:49:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:05 HiveExt: [Information] Method: 201 Params: 41:[280,[10340.1,3616.47,2.245]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:50:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:17 HiveExt: [Information] Method: 201 Params: 41:[113,[10327.2,3623.09,10.942]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmwlksraswrfldfl,42],[]]:0:0::0:
2017-10-04 14:50:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:29 HiveExt: [Information] Method: 201 Params: 41:[261,[10348.5,3617.32,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:22:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 14:50:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:56 HiveExt: [Information] Method: 201 Params: 41:[272,[10330,3616.9,9.118]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:18:1:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:50:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:51:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:28 HiveExt: [Information] Method: 201 Params: 41:[137,[10324.3,3622.11,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:8:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:51:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:51:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:52:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:02 HiveExt: [Information] Method: 201 Params: 41:[91,[10325.3,3622.07,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:1:1:[[G17_SD_FL_DZ,amovpercmstpsraswpstdnon_gear,42],[]]:0:0::0:
2017-10-04 14:52:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:52:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:33 HiveExt: [Information] Method: 201 Params: 41:[15,[10330,3617.84,9.175]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:6:0:[[G17_SD_FL_DZ,amovpknlmstpsraswpstdnon_gear,42],[]]:0:0::0:
2017-10-04 14:52:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:52:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:53:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:39 HiveExt: [Information] Method: 201 Params: 41:[116,[10328.7,3619.49,10.164]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:2:1:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady03,42],[]]:0:0::0:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:39 HiveExt: [Information] Method: 201 Params: 41:[116,[10328.7,3619.49,10.164]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady03,42],[]]:0:0::0:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:39 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:54:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:55:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:52:14 HiveExt: [Information] HiveExt 
2017-10-04 15:52:14 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 15:52:14 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 15:52:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:52:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 15:52:14 HiveExt: [Information] Updating 1 Object_Data ObjectUID
2017-10-04 15:52:14 HiveExt: [Information] Result: ["ObjectStreamStart",504,"bfffa852289abbd3bc717a913e4fd1cd"]
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 15:52:14 HiveExt: [Information] Result: "ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf"
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf:false:
2017-10-04 15:52:14 HiveExt: [Information] Result: ["NOTICE","ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf has been deleted"]
2017-10-04 15:53:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:23 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS",false,"41",[116,[10328.7,3619.49,10.164]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2735,2812,2812],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 15:53:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:23 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1877.55,740.232,6.076],false],[4,5,2,3],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady03",42],[]],[116,[10328.7,3619.49,10.164]],2803,11]
2017-10-04 15:53:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 15:53:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:51 HiveExt: [Information] Method: 201 Params: 41:[295,[10323.9,3620.41,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:36530:56:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 15:53:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:51 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 15:53:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:54:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:03 HiveExt: [Information] Method: 201 Params: 41:[98,[10344.3,3617.59,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 15:54:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:14 HiveExt: [Information] Method: 201 Params: 41:[98,[10344.4,3617.57,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:27 HiveExt: [Information] Method: 201 Params: 41:[325,[10322.5,3607.21,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:28:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 15:54:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:39 HiveExt: [Information] Method: 201 Params: 41:[106,[10315.8,3612.51,2.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 15:54:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:51 HiveExt: [Information] Method: 201 Params: 41:[89,[10342.1,3618.82,0.406]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:29:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady03,42],[]]:0:0::0:
2017-10-04 15:54:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:59 HiveExt: [Information] Method: 201 Params: 41:[88,[10342.5,3619.09,0.065]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:54:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:12 HiveExt: [Information] Method: 201 Params: 41:[45,[10342.1,3619.31,0.432]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:55:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:34 HiveExt: [Information] Method: 201 Params: 41:[269,[10342.9,3620.22,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:55:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:56:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:09 HiveExt: [Information] Method: 201 Params: 41:[268,[10342.9,3620.22,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:40 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:4:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:42 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:56 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:22 HiveExt: [Information] Method: 201 Params: 41:[42,[10343,3615.73,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:57:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:35 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3618.02,5.402]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 15:57:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:47 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3617.86,5.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:57:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:58:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:24 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3617.86,5.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:58:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:54 HiveExt: [Information] Method: 201 Params: 41:[94,[10336.9,3618.13,5.071]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:58:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:18 HiveExt: [Information] Method: 201 Params: 41:[358,[10347.4,3618.35,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 15:59:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:00:02 HiveExt: [Information] Method: 201 Params: 41:[263,[10349.9,3618.74,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:00:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:30 HiveExt: [Information] Method: 201 Params: 41:[223,[10348.2,3617.13,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:00:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:59 HiveExt: [Information] Method: 201 Params: 41:[223,[10348.2,3617.13,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:01:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:42 HiveExt: [Information] Method: 201 Params: 41:[266,[10359.6,3619.75,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:01:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:01:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:02:02 HiveExt: [Information] Method: 201 Params: 41:[264,[10351.3,3621.02,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:8:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:02:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:15 HiveExt: [Information] Method: 201 Params: 41:[347,[10348.9,3620.98,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmwlksraswrfldl,42],[]]:0:0::0:
2017-10-04 16:02:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:49 HiveExt: [Information] Method: 201 Params: 41:[354,[10348.6,3620.7,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:02:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:03:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:32 HiveExt: [Information] Method: 201 Params: 41:[1,[10346.3,3620.11,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:03:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:04:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:22 HiveExt: [Information] Method: 201 Params: 41:[89,[10337.3,3617.49,4.6]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:04:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:04:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:52 HiveExt: [Information] Method: 201 Params: 41:[85,[10340.4,3620.45,2.252]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:4:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:04:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:04:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:05:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:43 HiveExt: [Information] Method: 201 Params: 41:[35,[10323.1,3617.87,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:18:1:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:05:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:05:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:55 HiveExt: [Information] Method: 201 Params: 41:[314,[10337.3,3617.92,4.736]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:05:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:25 HiveExt: [Information] Method: 201 Params: 41:[314,[10337.3,3617.92,4.736]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:06:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:38 HiveExt: [Information] Method: 201 Params: 41:[135,[10320.7,3623.52,10.884]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:18:1:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:06:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:52 HiveExt: [Information] Method: 201 Params: 41:[142,[10320.9,3623.33,10.932]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:07:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:08:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:20 HiveExt: [Information] Method: 201 Params: 41:[183,[10321,3622.59,11.129]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:08:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:33 HiveExt: [Information] Method: 201 Params: 41:[93,[10315.5,3623.72,10.714]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:08:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:46 HiveExt: [Information] Method: 201 Params: 41:[91,[10310.1,3622.78,11.027]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:6:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:08:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:09:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:10:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:34 HiveExt: [Information] Method: 201 Params: 41:[91,[10316.7,3615.51,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:10:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:10:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:10:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:11:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:41 HiveExt: [Information] Method: 201 Params: 41:[85,[10325.6,3615.18,14.02]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:9:2:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:11:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:11:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:53 HiveExt: [Information] Method: 201 Params: 41:[276,[10317.2,3624.8,10.329]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:13:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 16:11:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:11:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:12:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:37 HiveExt: [Information] Method: 201 Params: 41:[227,[10327.6,3622.95,10.911]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:1:11:1:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:1::-50:
2017-10-04 16:12:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:12:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:13:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:48 HiveExt: [Information] Method: 201 Params: 41:[234,[10316.7,3624.19,10.546]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:11:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:13:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:13:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:14:00 HiveExt: [Information] Method: 201 Params: 41:[179,[10336.8,3621.27,6.227]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:20:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 16:14:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:14:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:14:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 16:15:04 HiveExt: [Information] HiveExt 
2017-10-04 16:15:04 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 16:15:04 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 16:15:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: ["ObjectStreamStart",504,"e3ab9585b0638b7e49d0a5c627f44d8b"]
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: "ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf"
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: ["NOTICE","ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf has been deleted"]
2017-10-04 16:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:17 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:15:17 HiveExt: [Information] Result: ["PASS",false,"41",[179,[10336.8,3621.27,6.227]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","ItemPainkiller"],[1,1,1,1,1]]],[2812,2834,2834],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:15:17 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:15:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:31 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1792.41,930.517,0],false],[4,6,2,4],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady04",42],[]],[179,[10336.8,3621.27,6.227]],2753,11]
2017-10-04 16:15:31 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:32 HiveExt: [Information] Method: 201 Params: 41:[179,[10336.9,3621.2,6.123]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:36540:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:15:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:15:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:49 HiveExt: [Information] Method: 201 Params: 41:[102,[10337.1,3621.22,5.919]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:15:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:16:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:05 HiveExt: [Information] Method: 201 Params: 41:[90,[10321.2,3618.65,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:16:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:16:05 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 16:16:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:16:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:17:00 HiveExt: [Information] Method: 201 Params: 41:[90,[10320.6,3618.62,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:13 HiveExt: [Information] Method: 201 Params: 41:[91,[10305.6,3617.8,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:19 HiveExt: [Information] Method: 201 Params: 41:[91,[10305.6,3617.8,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:18:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:06 HiveExt: [Information] Method: 201 Params: 41:[273,[10297,3618.83,10.751]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:18:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:18 HiveExt: [Information] Method: 201 Params: 41:[31,[10261.8,3632.28,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:38:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 16:18:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:42 HiveExt: [Information] Method: 201 Params: 41:[338,[10256.5,3642.61,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:12:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady03,42],[]]:0:0::0:
2017-10-04 16:18:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:55 HiveExt: [Information] Method: 201 Params: 41:[348,[10250,3662.63,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:18:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:07 HiveExt: [Information] Method: 201 Params: 41:[313,[10237.8,3725.45,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:64:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:19 HiveExt: [Information] Method: 201 Params: 41:[93,[10265.4,3776.28,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:58:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:31 HiveExt: [Information] Method: 201 Params: 41:[168,[10318.9,3749.31,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:43 HiveExt: [Information] Method: 201 Params: 41:[164,[10340.4,3685.18,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:68:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:55 HiveExt: [Information] Method: 201 Params: 41:[229,[10348.1,3625.21,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:19:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:07 HiveExt: [Information] Method: 201 Params: 41:[4,[10311.2,3622.5,11.212]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:37:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:20:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:19 HiveExt: [Information] Method: 201 Params: 41:[268,[10316.6,3617.76,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:7:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:20:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:32 HiveExt: [Information] Method: 201 Params: 41:[157,[10311.6,3617.07,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:37 HiveExt: [Information] Method: 201 Params: 41:[157,[10311.6,3617.07,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemSodaLemonade,ItemSodaDrwaste,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1580.15,1025.6,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:42 HiveExt: [Information] Method: 201 Params: 41:[69,[10311.5,3616.99,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemSodaLemonade,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1576.33,682.521,90],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:47 HiveExt: [Information] Method: 201 Params: 41:[44,[10311.5,3616.96,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:21:00 HiveExt: [Information] Method: 201 Params: 41:[89,[10338.1,3618.92,4.632]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:27:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:21:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:04 HiveExt: [Information] Method: 201 Params: 41:[89,[10338.1,3618.92,4.632]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:21:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:18 HiveExt: [Information] Method: 201 Params: 41:[278,[10332,3619.95,8.348]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:1:1:6:0:[[G17_SD_FL_DZ,amovpknlmrunsraswpstdfr,42],[]]:0:0::5:
2017-10-04 16:21:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:30 HiveExt: [Information] Method: 201 Params: 41:[270,[10326.8,3620.08,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:5:0:[[G17_SD_FL_DZ,amovpknlmrunsraswpstdb,42],[]]:0:0::0:
2017-10-04 16:21:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:47 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:1:1:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:47 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:47 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:09 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS",false,"41",[269,[10327.4,3620.23,11.152]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["ItemSodaMzly","ItemPainkiller"],[1,1]]],[2834,2841,2841],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:22:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:09 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1590.7,189.898,177.534],false],[5,7,2,4],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady01",42],[]],[269,[10327.4,3620.23,11.152]],2758,11]
2017-10-04 16:22:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:10 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.231]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:36533:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:10 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:14 HiveExt: [Information] Method: 101 Params: 76561198094271230:11:zarix:
2017-10-04 16:22:14 HiveExt: [Information] Created a new player 76561198094271230 named 'zarix'
2017-10-04 16:22:14 HiveExt: [Information] Created a new character 49 for player 'zarix' (76561198094271230)
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS",true,"49",0,"",[],0,0,0.97]
2017-10-04 16:22:14 HiveExt: [Information] Method: 203 Params: 49:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolBox],[ItemBandage,ItemBandage,ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle]]:[DZ_ALICE_Pack_EP1,[],[]]:
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:14 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:2:
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:20 HiveExt: [Information] Method: 102 Params: 49:
2017-10-04 16:22:20 HiveExt: [Information] Result: ["PASS",[],[0,0,0,0],[],[],2500,11]
2017-10-04 16:22:20 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:1:
2017-10-04 16:22:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:21 HiveExt: [Information] Method: 201 Params: 49:[360,[6241.24,2070.85,1999.84]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:34464:1:[[,amovpercmstpsnonwnondnon_zevl,37],[]]:0:0:Survivor2_DZ:0:
2017-10-04 16:22:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:21 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:0:
2017-10-04 16:22:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:35 HiveExt: [Information] Method: 201 Params: 49:[334,[6241.01,2071.43,1372.53]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:627:0:[[,acrgpknlmstpsnonwnondnon_amovpercmstpsnonwnondnon_getoutlow,37],[]]:0:0::0:
2017-10-04 16:22:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:46 HiveExt: [Information] Method: 201 Params: 41:[102,[10340.1,3618.14,2.585]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:13:0:[[G17_SD_FL_DZ,amovpercmrunslowwrfldf,42],[]]:0:0::0:
2017-10-04 16:22:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:49 HiveExt: [Information] Method: 201 Params: 49:[334,[6241.01,2071.44,430.683]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:942:0:[[,acrgpknlmstpsnonwnondnon_amovpercmstpsnonwnondnon_getoutlow,37],[]]:0:0::0:
2017-10-04 16:22:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:23:00 HiveExt: [Information] Method: 201 Params: 41:[303,[10316.6,3616.73,4.367]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:25:0:[[G17_SD_FL_DZ,amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 16:23:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 305 Params: 0:[334.136,[6193.37,2154.853,235.687]]:1:
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 201 Params: 49:[334,[6193.37,2154.85,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:17 HiveExt: [Information] Method: 305 Params: 0:[65.823,[6164.052,2265.583,162.634]]:1:
2017-10-04 16:23:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:17 HiveExt: [Information] Method: 201 Params: 49:[334,[6164.05,2265.58,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:24 HiveExt: [Information] Method: 201 Params: 41:[303,[10316.6,3616.73,4.367]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],DMR_DZ]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:0:1:[[G17_SD_FL_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:23:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:24 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,20Rnd_762x51_DMR,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 16:23:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:31 HiveExt: [Information] Method: 305 Params: 0:[333.336,[6181.29,2295.863,85.497]]:1:
2017-10-04 16:23:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:31 HiveExt: [Information] Method: 201 Params: 49:[334,[6181.29,2295.86,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:1:[[,,37],[]]:0:0::0:
2017-10-04 16:23:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:38 HiveExt: [Information] Method: 305 Params: 0:[12.311,[6163.985,2325.374,52.321]]:1:
2017-10-04 16:23:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:38 HiveExt: [Information] Method: 201 Params: 49:[334,[6163.98,2325.37,0]]:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolbox],[ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle,ItemBandage,ItemBandage],]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 305 Params: 0:[351.217,[6162.834,2326.082,49.246]]:1:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 201 Params: 49:[334,[6616.07,1857.74,0]]:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolbox],[ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle,ItemBandage,ItemBandage],]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:3:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:45 HiveExt: [Information] Method: 201 Params: 41:[156,[10328.5,3597.52,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],DMR_DZ]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:23:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:23:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:54 HiveExt: [Information] Method: 201 Params: 41:[156,[10345.1,3573.62,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:29:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:01 HiveExt: [Information] Method: 201 Params: 41:[121,[10348.9,3569.42,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:6:0:[[,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:24:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:13 HiveExt: [Information] Method: 201 Params: 41:[315,[10357,3600.69,0.001]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:33:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:24:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:25 HiveExt: [Information] Method: 201 Params: 41:[248,[10322.9,3617.69,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:38:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:24:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:44 HiveExt: [Information] Method: 201 Params: 41:[64,[10322.8,3617.49,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:24:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:25:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:18 HiveExt: [Information] Method: 201 Params: 41:[84,[10325.6,3619.86,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:4:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:25:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:25:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:26:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:38 HiveExt: [Information] Method: 201 Params: 41:[100,[10324.7,3618.26,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:26:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:26:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:27:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:09 HiveExt: [Information] Method: 201 Params: 41:[90,[10333.7,3619.29,7.371]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:9:1:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:27:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:25 HiveExt: [Information] Method: 201 Params: 41:[108,[10322.8,3622.29,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:27:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:33 HiveExt: [Information] Method: 201 Params: 41:[269,[10342.8,3619.45,0.021]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:20:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:27:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:45 HiveExt: [Information] Method: 201 Params: 41:[168,[10327.4,3619.17,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:27:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:28:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:39 HiveExt: [Information] Method: 201 Params: 41:[168,[10327.4,3619.17,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:28:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:28:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:29:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:39 HiveExt: [Information] Method: 201 Params: 41:[274,[10336.2,3619.13,5.974]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:9:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:29:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:29:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:53 HiveExt: [Information] Method: 201 Params: 41:[272,[10338.3,3618.99,4.521]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:29:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:29:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:30:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:33 HiveExt: [Information] Method: 201 Params: 41:[93,[10326.3,3619.36,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:30:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:30:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:45 HiveExt: [Information] Method: 201 Params: 41:[290,[10342.2,3617.03,0.365]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldbl,42],[]]:0:0::0:
2017-10-04 16:30:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:15 HiveExt: [Information] Method: 201 Params: 41:[265,[10330.3,3619.29,8.925]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:31:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:49 HiveExt: [Information] Method: 201 Params: 41:[359,[10329.6,3617.48,9.495]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:31:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:32:02 HiveExt: [Information] Method: 201 Params: 41:[307,[10312.6,3622.65,11.098]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:18:0:[[DMR_DZ,amovpknlmwlksraswrfldl,42],[]]:0:0::0:
2017-10-04 16:32:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:39 HiveExt: [Information] Method: 201 Params: 41:[97,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:1:1:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:2::-100:
2017-10-04 16:32:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:49 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:32:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:59 HiveExt: [Information] Method: 201 Params: 41:[94,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:32:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:12 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:33:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:13 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:13 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:48 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS",false,"41",[79,[10313.4,3623.46,10.81]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",17],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2841,2853,2853],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:33:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:48 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1785.69,323.657,153.585],false],[5,8,2,6],[["DMR_DZ","amovppnemstpsraswrfldnon",42],[]],[79,[10313.4,3623.46,10.81]],2658,11]
2017-10-04 16:33:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:49 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.808]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:36520:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:33:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:33:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:53 HiveExt: [Information] Method: 201 Params: 41:[86,[10315.3,3623.1,10.938]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:2:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:35:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:18 HiveExt: [Information] Method: 201 Params: 41:[303,[10327.4,3620.54,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:12:0:[[DMR_DZ,amovpknlmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:36:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:25 HiveExt: [Information] Method: 201 Params: 41:[353,[10327.2,3620.88,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:36:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:52 HiveExt: [Information] Method: 201 Params: 41:[357,[10326.7,3619.92,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:1:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:36:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:23 HiveExt: [Information] Method: 201 Params: 41:[359,[10322,3620.46,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:37:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:49 HiveExt: [Information] Method: 201 Params: 41:[331,[10321.4,3618.42,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:37:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:38:01 HiveExt: [Information] Method: 201 Params: 41:[277,[10316.4,3624.21,10.541]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:8:0:[[DMR_DZ,amovpknlmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:38:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:23 HiveExt: [Information] Method: 201 Params: 41:[342,[10318.1,3620.54,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:38:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:54 HiveExt: [Information] Method: 201 Params: 41:[293,[10319.4,3622.11,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:38:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:10 HiveExt: [Information] Method: 201 Params: 41:[181,[10324.6,3620.31,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:6:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:39:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:38 HiveExt: [Information] Method: 201 Params: 41:[97,[10330.5,3619.31,8.754]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:39:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:51 HiveExt: [Information] Method: 201 Params: 41:[271,[10341.4,3618.32,1.165]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:11:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:39:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:40:03 HiveExt: [Information] Method: 201 Params: 41:[96,[10324.3,3622.05,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:18:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:11 HiveExt: [Information] Method: 201 Params: 41:[96,[10324.3,3622.05,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:29 HiveExt: [Information] Method: 201 Params: 41:[236,[10338.6,3623.56,3.955]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmrunsraswrfldbr,42],[]]:0:0::0:
2017-10-04 16:40:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:40 HiveExt: [Information] Method: 201 Params: 41:[247,[10326.2,3619.55,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:53 HiveExt: [Information] Method: 201 Params: 41:[1,[10325.8,3617.62,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:2:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:41:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:08 HiveExt: [Information] Method: 201 Params: 41:[1,[10323.7,3617.96,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:41:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:34 HiveExt: [Information] Method: 201 Params: 41:[121,[10316.4,3624.47,10.446]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:41:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:46 HiveExt: [Information] Method: 201 Params: 41:[267,[10336.3,3621.49,6.779]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:20:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:41:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:42:01 HiveExt: [Information] Method: 201 Params: 41:[278,[10336.2,3617.91,5.509]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:4:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:42:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:42:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:40 HiveExt: [Information] Method: 201 Params: 41:[268,[10337.1,3621.55,5.887]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:42:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:42:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:59 HiveExt: [Information] Method: 201 Params: 41:[273,[10328.1,3619.57,10.682]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:42:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:15 HiveExt: [Information] Method: 201 Params: 41:[202,[10312.3,3617.4,11.214]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:16:0:[[DMR_DZ,amovpknlmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:43:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:27 HiveExt: [Information] Method: 201 Params: 41:[270,[10317,3621.61,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:6:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:43:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:44:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:47 HiveExt: [Information] Method: 201 Params: 41:[268,[10317.1,3621.82,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1929.11,442.366,134.751],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:44:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:44:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:45:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:30 HiveExt: [Information] Method: 201 Params: 41:[3,[10316,3618.36,11.214]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1929.11,442.366,134.751],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:45:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:45:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:46:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:47:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:18 HiveExt: [Information] Method: 201 Params: 41:[101,[10313.6,3623.15,15.396]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1953.04,459.633,131.761],false]:false:false:0:0:7:2:[[DMR_DZ,amovpercmwlksraswrfldr,42],[]]:0:0::0:
2017-10-04 16:47:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:47:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:48:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:14 HiveExt: [Information] Method: 201 Params: 41:[91,[10328.1,3619.06,10.667]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:1:1:16:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::5:
2017-10-04 16:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:29 HiveExt: [Information] Method: 201 Params: 41:[264,[10340.6,3619.81,2.033]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmrunsraswrfldbl,42],[]]:0:0::0:
2017-10-04 16:48:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:41 HiveExt: [Information] Method: 201 Params: 41:[264,[10321.7,3618.06,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:19:0:[[DMR_DZ,amovpercmwlksraswrfldb,42],[]]:0:0::0:
2017-10-04 16:48:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:49:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:49 HiveExt: [Information] Method: 201 Params: 41:[309,[10317.3,3621.74,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:6:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:49:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:49:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:50:02 HiveExt: [Information] Method: 201 Params: 41:[309,[10317.3,3621.72,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:50:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:16 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:12:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:19 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:20 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:20 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:50:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:51:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:52 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.004:
2017-10-04 16:51:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:51:52 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.005:
2017-10-04 16:51:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:51:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:52:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:53:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:54:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:55:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:56:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:57:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:58:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:59:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:00:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:01:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:02:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:03:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:04:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:05:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:06:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:07:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:08:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:09:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:10:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:11:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:12:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:13:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:14:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:15:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:16:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:17:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:18:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:19:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:20:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:21:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:22:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:23:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:24:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:25:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:26:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:27:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:28:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:29:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:30:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:31:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:32:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:33:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:34:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:35:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:36:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:37:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:38:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:38:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 17:38:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:38:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 17:39:29 HiveExt: [Information] HiveExt 
2017-10-04 17:39:29 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:39:29 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:39:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: ["ObjectStreamStart",504,"24ebb3ec96a253c1b229f339d12fbf4f"]
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: "ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf"
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: ["NOTICE","ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf has been deleted"]
2017-10-04 17:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:39:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:40:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS",false,"41",[95,[10329.6,3621.69,10.004]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2853,2919,2919],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:40:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS",false,"41",[95,[10329.6,3621.69,10.004]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2853,2919,2919],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:40:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:06 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,"O",true,[2025.07,524.908,121.962],false],[6,9,2,6],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[95,[10329.6,3621.69,10.004]],2663,11]
2017-10-04 17:40:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:06 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,9.968]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:36534:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 17:40:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:28 HiveExt: [Information] Method: 201 Params: 41:[100,[10341.7,3617.07,0.847]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:40:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:40 HiveExt: [Information] Method: 201 Params: 41:[323,[10317,3614.75,3.846]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:26:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 17:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:40 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,20Rnd_762x51_DMR,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:53 HiveExt: [Information] Method: 201 Params: 41:[281,[10315.7,3616.21,4.255]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 17:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:41:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:20 HiveExt: [Information] Method: 201 Params: 41:[281,[10315.7,3616.21,4.255]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 17:41:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:20 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,5,2,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:41:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:33 HiveExt: [Information] Method: 201 Params: 41:[102,[10348.3,3602.09,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:36:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 17:41:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:45 HiveExt: [Information] Method: 201 Params: 41:[194,[10382.5,3552.96,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldfl,42],[]]:0:0::0:
2017-10-04 17:41:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:57 HiveExt: [Information] Method: 201 Params: 41:[174,[10391.1,3476.09,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:77:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:41:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:09 HiveExt: [Information] Method: 201 Params: 41:[174,[10379.2,3408.22,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:69:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:42:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:22 HiveExt: [Information] Method: 201 Params: 41:[209,[10349.7,3348.1,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:67:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:42:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:34 HiveExt: [Information] Method: 201 Params: 41:[213,[10320.3,3302.8,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:54:0:[[G17_SD_FL_DZ,amovpercmstpsraswrfldnon_amovpercmstpsraswpstdnon_end,42],[]]:0:0::0:
2017-10-04 17:42:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:46 HiveExt: [Information] Method: 201 Params: 41:[214,[10287.2,3254.14,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:59:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:42:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:58 HiveExt: [Information] Method: 201 Params: 41:[214,[10252.1,3206.58,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:60:1:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:42:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:10 HiveExt: [Information] Method: 201 Params: 41:[180,[10221.9,3158.87,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:22 HiveExt: [Information] Method: 201 Params: 41:[183,[10224,3099.89,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:59:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:34 HiveExt: [Information] Method: 201 Params: 41:[167,[10233.1,3045.02,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:56:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdfl,42],[]]:0:0::0:
2017-10-04 17:43:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:47 HiveExt: [Information] Method: 201 Params: 41:[159,[10257.7,2993.4,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:59 HiveExt: [Information] Method: 201 Params: 41:[165,[10279.9,2940.31,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:58:1:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:11 HiveExt: [Information] Method: 201 Params: 41:[144,[10311.6,2893.48,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:23 HiveExt: [Information] Method: 201 Params: 41:[146,[10331.7,2864.66,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:35:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:35 HiveExt: [Information] Method: 201 Params: 41:[123,[10370.5,2810.34,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:47 HiveExt: [Information] Method: 201 Params: 41:[137,[10418.8,2762.82,0.004]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:68:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:59 HiveExt: [Information] Method: 201 Params: 41:[148,[10452.4,2704.48,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:1:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:12 HiveExt: [Information] Method: 201 Params: 41:[120,[10509.7,2669.42,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10512.8,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:0:[[G17_SD_FL_DZ,amovpercmwlksraswpstdf,42],[]]:0:0::0:
2017-10-04 17:45:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:24 HiveExt: [Information] Method: 201 Params: 41:[119,[10562.5,2637.13,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10512.8,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:63:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:45:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:33 HiveExt: [Information] Method: 305 Params: 321:[173.251,[10585.525,2630.788,-0.019]]:0.821:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:33 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[FoodCanDemon,ItemSodaLvg],[1,1]],[[],[]]]:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:33 HiveExt: [Information] Method: 306 Params: 321:[[glass1,0.693],[glass2,0.561],[glass3,0],[glass4,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0]]:0:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 305 Params: 321:[173.253,[10585.525,2630.788,-0.019]]:0.821:
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 201 Params: 41:[264,[10585.5,2630.79,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10312.9,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:46:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:21 HiveExt: [Information] Method: 305 Params: 321:[108.574,[10597.157,2621.127,-0.016]]:0.817:
2017-10-04 17:46:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:21 HiveExt: [Information] Method: 201 Params: 41:[264,[10597.2,2621.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10112.9,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:46:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:33 HiveExt: [Information] Method: 305 Params: 321:[315.411,[10508.431,2669.639,0.888]]:0.813:
2017-10-04 17:46:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:33 HiveExt: [Information] Method: 201 Params: 41:[264,[10508.4,2669.64,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9912.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:46:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:45 HiveExt: [Information] Method: 305 Params: 321:[350.165,[10335.878,2811.85,0.012]]:0.81:
2017-10-04 17:46:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:45 HiveExt: [Information] Method: 201 Params: 41:[264,[10335.9,2811.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9712.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:46:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:57 HiveExt: [Information] Method: 305 Params: 321:[318.642,[10226.209,3010.079,0.002]]:0.807:
2017-10-04 17:46:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:57 HiveExt: [Information] Method: 201 Params: 41:[264,[10226.2,3010.08,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9712.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:46:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:10 HiveExt: [Information] Method: 305 Params: 321:[31.512,[10269.789,3222.179,0.061]]:0.804:
2017-10-04 17:47:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:10 HiveExt: [Information] Method: 201 Params: 41:[264,[10269.8,3222.18,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9512.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:22 HiveExt: [Information] Method: 305 Params: 321:[30.565,[10368.36,3369.218,0.006]]:0.8:
2017-10-04 17:47:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:22 HiveExt: [Information] Method: 201 Params: 41:[264,[10368.4,3369.22,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9352.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:34 HiveExt: [Information] Method: 305 Params: 321:[345.218,[10361.21,3614.515,0.005]]:0.797:
2017-10-04 17:47:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:34 HiveExt: [Information] Method: 201 Params: 41:[264,[10361.2,3614.52,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9352.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:46 HiveExt: [Information] Method: 305 Params: 321:[333.134,[10314.354,3861.538,0.025]]:0.793:
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:46 HiveExt: [Information] Method: 201 Params: 41:[264,[10314.4,3861.54,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:58 HiveExt: [Information] Method: 305 Params: 321:[313.98,[10191.633,4054.37,0.114]]:0.79:
2017-10-04 17:47:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:58 HiveExt: [Information] Method: 201 Params: 41:[264,[10191.6,4054.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:47:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 305 Params: 321:[313.988,[10162.817,4082.956,-0.015]]:0.789:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 201 Params: 41:[264,[10162.8,4082.96,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,FoodCanDemon,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[1695,194.437,184.155],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[ItemSodaLvg],[1]],[[],[]]]:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:14 HiveExt: [Information] Method: 305 Params: 321:[320.066,[9999.806,4268.833,0.003]]:0.786:
2017-10-04 17:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:14 HiveExt: [Information] Method: 201 Params: 41:[264,[9999.81,4268.83,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1695,194.437,184.155],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:27 HiveExt: [Information] Method: 305 Params: 321:[343.143,[9903.687,4497.211,0.007]]:0.782:
2017-10-04 17:48:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:27 HiveExt: [Information] Method: 201 Params: 41:[264,[9903.69,4497.21,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:39 HiveExt: [Information] Method: 305 Params: 321:[322.861,[9801.198,4702.152,0.001]]:0.779:
2017-10-04 17:48:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:39 HiveExt: [Information] Method: 201 Params: 41:[264,[9801.2,4702.15,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:51 HiveExt: [Information] Method: 305 Params: 321:[284.854,[9601.249,4837.34,-0.005]]:0.775:
2017-10-04 17:48:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:51 HiveExt: [Information] Method: 201 Params: 41:[264,[9601.25,4837.34,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:49:03 HiveExt: [Information] Method: 305 Params: 321:[294.306,[9356.691,4892.145,0.012]]:0.772:
2017-10-04 17:49:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:03 HiveExt: [Information] Method: 201 Params: 41:[264,[9356.69,4892.14,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:49:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:15 HiveExt: [Information] Method: 305 Params: 321:[237.089,[9148.099,4976.118,0.016]]:0.769:
2017-10-04 17:49:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:15 HiveExt: [Information] Method: 201 Params: 41:[264,[9148.1,4976.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:27 HiveExt: [Information] Method: 305 Params: 321:[258.443,[8912.057,4948.847,-0.004]]:0.766:
2017-10-04 17:49:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:27 HiveExt: [Information] Method: 201 Params: 41:[264,[8912.06,4948.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:40 HiveExt: [Information] Method: 305 Params: 321:[262.693,[8688.693,4860.771,0.006]]:0.762:
2017-10-04 17:49:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:40 HiveExt: [Information] Method: 201 Params: 41:[264,[8688.69,4860.77,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:52 HiveExt: [Information] Method: 305 Params: 321:[304.524,[8453.803,4929.127,0.032]]:0.759:
2017-10-04 17:49:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:52 HiveExt: [Information] Method: 201 Params: 41:[264,[8453.8,4929.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:50:04 HiveExt: [Information] Method: 305 Params: 321:[291.644,[8419.406,4938.381,0.002]]:0.757:
2017-10-04 17:50:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:04 HiveExt: [Information] Method: 201 Params: 41:[264,[8419.41,4938.38,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:50:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:16 HiveExt: [Information] Method: 305 Params: 321:[327.549,[8354.982,5053.35,0.005]]:0.754:
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:16 HiveExt: [Information] Method: 201 Params: 41:[264,[8354.98,5053.35,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:28 HiveExt: [Information] Method: 305 Params: 321:[315.982,[8246.721,5184.598,0.011]]:0.75:
2017-10-04 17:50:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:28 HiveExt: [Information] Method: 201 Params: 41:[264,[8246.72,5184.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 305 Params: 321:[315.172,[8228.388,5203.132,-0.002]]:0.75:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 201 Params: 41:[264,[8228.39,5203.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:43 HiveExt: [Information] Method: 305 Params: 321:[79.809,[8200.087,5304.931,0.002]]:0.747:
2017-10-04 17:50:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:43 HiveExt: [Information] Method: 201 Params: 41:[264,[8200.09,5304.93,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:55 HiveExt: [Information] Method: 305 Params: 321:[20.475,[8277.638,5421.854,0.058]]:0.743:
2017-10-04 17:50:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:55 HiveExt: [Information] Method: 201 Params: 41:[264,[8277.64,5421.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:50:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:51:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:07 HiveExt: [Information] Method: 305 Params: 321:[13.73,[8349.854,5547.737,6.561e-04]]:0.738:
2017-10-04 17:51:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:07 HiveExt: [Information] Method: 201 Params: 41:[264,[8349.85,5547.74,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:19 HiveExt: [Information] Method: 305 Params: 321:[43.443,[8429.206,5676.684,0.16]]:0.735:
2017-10-04 17:51:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:19 HiveExt: [Information] Method: 201 Params: 41:[264,[8429.21,5676.68,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:31 HiveExt: [Information] Method: 305 Params: 321:[57.279,[8551.768,5770.18,0.032]]:0.73:
2017-10-04 17:51:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:31 HiveExt: [Information] Method: 201 Params: 41:[264,[8551.77,5770.18,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:43 HiveExt: [Information] Method: 305 Params: 321:[359.21,[8598.415,5902.412,0.041]]:0.727:
2017-10-04 17:51:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:43 HiveExt: [Information] Method: 201 Params: 41:[264,[8598.42,5902.41,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:55 HiveExt: [Information] Method: 305 Params: 321:[33.681,[8578.182,6024.38,0.005]]:0.723:
2017-10-04 17:51:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:55 HiveExt: [Information] Method: 201 Params: 41:[264,[8578.18,6024.38,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:51:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:52:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:08 HiveExt: [Information] Method: 305 Params: 321:[315.363,[8546.757,6057.368,0.004]]:0.721:
2017-10-04 17:52:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:08 HiveExt: [Information] Method: 201 Params: 41:[264,[8546.76,6057.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:20 HiveExt: [Information] Method: 305 Params: 321:[29.048,[8586.09,6244.988,0.042]]:0.717:
2017-10-04 17:52:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:20 HiveExt: [Information] Method: 201 Params: 41:[264,[8586.09,6244.99,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:32 HiveExt: [Information] Method: 305 Params: 321:[25.868,[8658.645,6467.444,3.967e-04]]:0.713:
2017-10-04 17:52:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:32 HiveExt: [Information] Method: 201 Params: 41:[264,[8658.64,6467.44,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:44 HiveExt: [Information] Method: 305 Params: 321:[15.171,[8681.411,6515.975,0.004]]:0.711:
2017-10-04 17:52:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:44 HiveExt: [Information] Method: 201 Params: 41:[264,[8681.41,6515.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:56 HiveExt: [Information] Method: 305 Params: 321:[15.199,[8702.189,6656.116,0.01]]:0.707:
2017-10-04 17:52:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:56 HiveExt: [Information] Method: 201 Params: 41:[264,[8702.19,6656.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:52:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:53:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:08 HiveExt: [Information] Method: 305 Params: 321:[345.332,[8658.588,6826.298,0.009]]:0.704:
2017-10-04 17:53:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:08 HiveExt: [Information] Method: 201 Params: 41:[264,[8658.59,6826.3,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:20 HiveExt: [Information] Method: 305 Params: 321:[67.022,[8653.476,6962.56,0.005]]:0.701:
2017-10-04 17:53:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:20 HiveExt: [Information] Method: 201 Params: 41:[264,[8653.48,6962.56,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:32 HiveExt: [Information] Method: 305 Params: 321:[346.515,[8738.365,7047.395,0.056]]:0.698:
2017-10-04 17:53:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:32 HiveExt: [Information] Method: 201 Params: 41:[264,[8738.37,7047.4,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:45 HiveExt: [Information] Method: 305 Params: 321:[334.36,[8694.067,7182.309,0.029]]:0.694:
2017-10-04 17:53:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:45 HiveExt: [Information] Method: 201 Params: 41:[264,[8694.07,7182.31,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:54 HiveExt: [Information] Method: 305 Params: 321:[320.691,[8676.066,7271.38,0.006]]:0.692:
2017-10-04 17:53:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:54 HiveExt: [Information] Method: 306 Params: 321:[[glass1,0.693],[glass2,0.561],[glass3,0],[glass4,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0]]:0:
2017-10-04 17:53:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:57 HiveExt: [Information] Method: 305 Params: 48:[143.09,[8672.389,7265.103,0.007]]:0.613:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[ItemTent],[1]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 305 Params: 48:[143.088,[8672.389,7265.103,0.007]]:0.613:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 201 Params: 41:[233,[8672.39,7265.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:09 HiveExt: [Information] Method: 305 Params: 48:[27.438,[8697.016,7306.045,-6.714e-04]]:0.608:
2017-10-04 17:54:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:09 HiveExt: [Information] Method: 201 Params: 41:[233,[8697.02,7306.05,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:21 HiveExt: [Information] Method: 305 Params: 48:[20.194,[8740.543,7401.002,6.104e-05]]:0.602:
2017-10-04 17:54:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:21 HiveExt: [Information] Method: 201 Params: 41:[233,[8740.54,7401,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:33 HiveExt: [Information] Method: 305 Params: 48:[323.076,[8735.916,7504.091,0.009]]:0.596:
2017-10-04 17:54:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:33 HiveExt: [Information] Method: 201 Params: 41:[233,[8735.92,7504.09,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:46 HiveExt: [Information] Method: 305 Params: 48:[332.585,[8675.594,7600.924,0.027]]:0.591:
2017-10-04 17:54:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:46 HiveExt: [Information] Method: 201 Params: 41:[233,[8675.59,7600.92,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:58 HiveExt: [Information] Method: 305 Params: 48:[336.054,[8626.804,7703.452,-3.052e-05]]:0.585:
2017-10-04 17:54:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:58 HiveExt: [Information] Method: 201 Params: 41:[233,[8626.8,7703.45,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:54:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:10 HiveExt: [Information] Method: 305 Params: 48:[345.352,[8585.771,7799.119,0.006]]:0.579:
2017-10-04 17:55:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:10 HiveExt: [Information] Method: 201 Params: 41:[233,[8585.77,7799.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:55:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:22 HiveExt: [Information] Method: 305 Params: 48:[4.977,[8591.925,7890.824,0.002]]:0.574:
2017-10-04 17:55:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:22 HiveExt: [Information] Method: 201 Params: 41:[233,[8591.92,7890.82,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:55:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:24 HiveExt: [Information] Method: 305 Params: 48:[4.996,[8591.974,7891.292,0.001]]:0.573:
2017-10-04 17:55:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:24 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:55:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:34 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:3:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 17:55:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:39 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 17:55:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:56:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:57:49 HiveExt: [Information] HiveExt 
2017-10-04 17:57:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:57:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:57:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:57:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: ["ObjectStreamStart",504,"5c47a98e5b3ebf5c123c40f49695b4e3"]
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: "ObjectData5c47a98e5b3ebf5c123c40f49695b4e3.sqf"
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: ["NOTICE","ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf has been deleted"]
2017-10-04 17:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:02 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS",false,"41",[16,[8589.25,7892.03,0.001]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","20Rnd_762x51_DMR","ItemBloodbag","ItemSodaLvg","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2919,2937,2937],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:58:02 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:13 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 17:58:13 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,"O",true,[1823.2,203.266,173.156],false],[6,9,2,6],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady01",42],[]],[16,[8589.25,7892.03,0.001]],2663,11]
2017-10-04 17:58:13 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 17:58:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:32640:0:[[,amovpercmstpsraswrfldnon_amovpercmstpsraswpstdnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[ItemTent],[1]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:22 HiveExt: [Information] Method: 305 Params: 48:[4.971,[8591.978,7891.371,0.001]]:0.573:
2017-10-04 17:58:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:22 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:58:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:26 HiveExt: [Information] Method: 305 Params: 48:[2.666,[8591.611,7907.695,2.441e-04]]:0.572:
2017-10-04 17:58:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:26 HiveExt: [Information] Method: 201 Params: 41:[95,[8591.61,7907.7,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 305 Params: 48:[2.284,[8594.231,7951.924,0.002]]:0.569:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 201 Params: 41:[95,[8594.23,7951.92,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[],[]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:44 HiveExt: [Information] Method: 305 Params: 48:[339.561,[8572.414,8037.772,3.052e-05]]:0.563:
2017-10-04 17:58:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:44 HiveExt: [Information] Method: 201 Params: 41:[95,[8572.41,8037.77,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:56 HiveExt: [Information] Method: 305 Params: 48:[1.037,[8536.929,8130.508,-0.002]]:0.557:
2017-10-04 17:58:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:56 HiveExt: [Information] Method: 201 Params: 41:[95,[8536.93,8130.51,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:08 HiveExt: [Information] Method: 305 Params: 48:[1.741,[8552.066,8230.87,0.004]]:0.551:
2017-10-04 17:59:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:08 HiveExt: [Information] Method: 201 Params: 41:[95,[8552.07,8230.87,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:20 HiveExt: [Information] Method: 305 Params: 48:[8.702,[8556.647,8335.943,-6.104e-05]]:0.545:
2017-10-04 17:59:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:20 HiveExt: [Information] Method: 201 Params: 41:[95,[8556.65,8335.94,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:33 HiveExt: [Information] Method: 305 Params: 48:[50.425,[8602.164,8419.948,-4.272e-04]]:0.539:
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:33 HiveExt: [Information] Method: 201 Params: 41:[95,[8602.16,8419.95,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:45 HiveExt: [Information] Method: 305 Params: 48:[11.997,[8648.647,8503.029,0.008]]:0.533:
2017-10-04 17:59:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:45 HiveExt: [Information] Method: 201 Params: 41:[95,[8648.65,8503.03,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:57 HiveExt: [Information] Method: 305 Params: 48:[31.832,[8691.123,8593.129,0.008]]:0.527:
2017-10-04 17:59:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:57 HiveExt: [Information] Method: 201 Params: 41:[95,[8691.12,8593.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:09 HiveExt: [Information] Method: 305 Params: 48:[28.318,[8755.229,8682.762,0.005]]:0.521:
2017-10-04 18:00:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:09 HiveExt: [Information] Method: 201 Params: 41:[95,[8755.23,8682.76,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:22 HiveExt: [Information] Method: 305 Params: 48:[72.692,[8799.94,8748.145,0.014]]:0.515:
2017-10-04 18:00:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:22 HiveExt: [Information] Method: 201 Params: 41:[95,[8799.94,8748.14,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:33 HiveExt: [Information] Method: 305 Params: 48:[72.889,[8910.053,8766.086,0.006]]:0.509:
2017-10-04 18:00:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:33 HiveExt: [Information] Method: 201 Params: 41:[95,[8910.05,8766.09,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:00:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:46 HiveExt: [Information] Method: 305 Params: 48:[71.473,[9015.035,8801.42,0.001]]:0.503:
2017-10-04 18:00:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:46 HiveExt: [Information] Method: 201 Params: 41:[95,[9015.04,8801.42,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:58 HiveExt: [Information] Method: 305 Params: 48:[78.142,[9108.499,8829.547,0.016]]:0.497:
2017-10-04 18:00:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:58 HiveExt: [Information] Method: 201 Params: 41:[95,[9108.5,8829.55,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:10 HiveExt: [Information] Method: 305 Params: 48:[73.849,[9198.587,8851.239,0.017]]:0.491:
2017-10-04 18:01:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:10 HiveExt: [Information] Method: 201 Params: 41:[95,[9198.59,8851.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:22 HiveExt: [Information] Method: 305 Params: 48:[74.414,[9242.332,8862.94,0.077]]:0.487:
2017-10-04 18:01:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:22 HiveExt: [Information] Method: 201 Params: 41:[95,[9242.33,8862.94,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:34 HiveExt: [Information] Method: 305 Params: 48:[32.828,[9263.236,8869.978,0.054]]:0.483:
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:34 HiveExt: [Information] Method: 201 Params: 41:[95,[9263.24,8869.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:47 HiveExt: [Information] Method: 305 Params: 48:[29.424,[9243.659,8904.867,0.016]]:0.478:
2017-10-04 18:01:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:47 HiveExt: [Information] Method: 201 Params: 41:[95,[9243.66,8904.87,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:59 HiveExt: [Information] Method: 305 Params: 48:[38.13,[9281.965,8987.208,1.526e-04]]:0.472:
2017-10-04 18:01:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:59 HiveExt: [Information] Method: 201 Params: 41:[95,[9281.96,8987.21,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:11 HiveExt: [Information] Method: 305 Params: 48:[23.707,[9319.097,9076.439,0.002]]:0.466:
2017-10-04 18:02:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:11 HiveExt: [Information] Method: 201 Params: 41:[95,[9319.1,9076.44,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:23 HiveExt: [Information] Method: 305 Params: 48:[7.533,[9346.632,9169.445,0.009]]:0.46:
2017-10-04 18:02:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:23 HiveExt: [Information] Method: 201 Params: 41:[95,[9346.63,9169.45,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:35 HiveExt: [Information] Method: 305 Params: 48:[345.215,[9355.679,9263.022,0.009]]:0.455:
2017-10-04 18:02:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:35 HiveExt: [Information] Method: 201 Params: 41:[95,[9355.68,9263.02,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:02:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:47 HiveExt: [Information] Method: 305 Params: 48:[321.536,[9329.47,9360.637,0.004]]:0.448:
2017-10-04 18:02:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:47 HiveExt: [Information] Method: 201 Params: 41:[95,[9329.47,9360.64,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:59 HiveExt: [Information] Method: 305 Params: 48:[344.159,[9274.988,9448.98,0.085]]:0.442:
2017-10-04 18:02:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:59 HiveExt: [Information] Method: 201 Params: 41:[95,[9274.99,9448.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:12 HiveExt: [Information] Method: 305 Params: 48:[291.911,[9191.276,9519.243,0.002]]:0.437:
2017-10-04 18:03:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:12 HiveExt: [Information] Method: 201 Params: 41:[95,[9191.28,9519.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:24 HiveExt: [Information] Method: 305 Params: 48:[7.11,[9124.664,9560.91,0.397]]:0.431:
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:24 HiveExt: [Information] Method: 201 Params: 41:[95,[9124.66,9560.91,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:36 HiveExt: [Information] Method: 305 Params: 48:[335.784,[9152.263,9649.513,0.006]]:0.426:
2017-10-04 18:03:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:36 HiveExt: [Information] Method: 201 Params: 41:[95,[9152.26,9649.51,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:03:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:48 HiveExt: [Information] Method: 305 Params: 48:[1.571,[9146.725,9659.243,0.035]]:0.422:
2017-10-04 18:03:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:48 HiveExt: [Information] Method: 201 Params: 41:[95,[9146.72,9659.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:04:01 HiveExt: [Information] Method: 305 Params: 48:[73.959,[9195.989,9650.837,0.004]]:0.417:
2017-10-04 18:04:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:01 HiveExt: [Information] Method: 201 Params: 41:[95,[9195.99,9650.84,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:13 HiveExt: [Information] Method: 305 Params: 48:[69.16,[9301.301,9685.369,0.004]]:0.411:
2017-10-04 18:04:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:13 HiveExt: [Information] Method: 201 Params: 41:[95,[9301.3,9685.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:25 HiveExt: [Information] Method: 305 Params: 48:[68.447,[9393.554,9722.014,0.032]]:0.405:
2017-10-04 18:04:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:25 HiveExt: [Information] Method: 201 Params: 41:[95,[9393.55,9722.01,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:37 HiveExt: [Information] Method: 305 Params: 48:[77.438,[9508.986,9755.754,0.048]]:0.399:
2017-10-04 18:04:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:37 HiveExt: [Information] Method: 201 Params: 41:[95,[9508.99,9755.75,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:04:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:49 HiveExt: [Information] Method: 305 Params: 48:[59.987,[9625.665,9788.021,-0.001]]:0.394:
2017-10-04 18:04:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:49 HiveExt: [Information] Method: 201 Params: 41:[95,[9625.67,9788.02,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:05:02 HiveExt: [Information] Method: 305 Params: 48:[11.458,[9668.878,9850.834,0.012]]:0.388:
2017-10-04 18:05:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:02 HiveExt: [Information] Method: 201 Params: 41:[95,[9668.88,9850.83,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:14 HiveExt: [Information] Method: 305 Params: 48:[9.124,[9686.685,9962.647,0.013]]:0.383:
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:14 HiveExt: [Information] Method: 201 Params: 41:[95,[9686.68,9962.65,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:26 HiveExt: [Information] Method: 305 Params: 48:[2.772,[9700.338,10075.607,0.001]]:0.377:
2017-10-04 18:05:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:26 HiveExt: [Information] Method: 201 Params: 41:[95,[9700.34,10075.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:38 HiveExt: [Information] Method: 305 Params: 48:[358.072,[9684.017,10175.381,0.006]]:0.371:
2017-10-04 18:05:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:38 HiveExt: [Information] Method: 201 Params: 41:[95,[9684.02,10175.4,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:05:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:51 HiveExt: [Information] Method: 305 Params: 48:[350.049,[9681.389,10285.979,0.003]]:0.365:
2017-10-04 18:05:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:51 HiveExt: [Information] Method: 201 Params: 41:[95,[9681.39,10286,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:06:03 HiveExt: [Information] Method: 305 Params: 48:[8.111,[9660.768,10399.617,0.023]]:0.359:
2017-10-04 18:06:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:03 HiveExt: [Information] Method: 201 Params: 41:[95,[9660.77,10399.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:13 HiveExt: [Information] Method: 305 Params: 48:[135.44,[9739.122,10463.429,0.012]]:0.355:
2017-10-04 18:06:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:13 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:06:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:15 HiveExt: [Information] Method: 201 Params: 41:[237,[9735.04,10465.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:100:0:[[DMR_DZ,amovpercmevasraswrfldfr,42],[]]:0:0::0:
2017-10-04 18:06:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:15 HiveExt: [Information] Method: 303 Params: 313:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 18:06:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:17 HiveExt: [Information] Method: 305 Params: 313:[88.081,[9727.937,10461.948,0.133]]:0.178:
2017-10-04 18:06:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:17 HiveExt: [Information] Method: 306 Params: 313:[[motor,0.517],[sklo predni P,0.227],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:06:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:27 HiveExt: [Information] Method: 305 Params: 313:[122.216,[9868.043,10419.814,-0.01]]:0.175:
2017-10-04 18:06:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:27 HiveExt: [Information] Method: 201 Params: 41:[176,[9868.04,10419.8,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:40 HiveExt: [Information] Method: 305 Params: 313:[140.575,[10100.777,10319.969,-0.013]]:0.173:
2017-10-04 18:06:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:40 HiveExt: [Information] Method: 201 Params: 41:[176,[10100.8,10320,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:06:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:52 HiveExt: [Information] Method: 305 Params: 313:[90.763,[10167.225,10244.822,0.046]]:0.17:
2017-10-04 18:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:52 HiveExt: [Information] Method: 201 Params: 41:[176,[10167.2,10244.8,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:07:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:04 HiveExt: [Information] Method: 305 Params: 313:[88.955,[10322.457,10085.252,0.062]]:0.167:
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:04 HiveExt: [Information] Method: 201 Params: 41:[176,[10322.5,10085.3,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:16 HiveExt: [Information] Method: 305 Params: 313:[78.556,[10466.657,10093.235,0.105]]:0.164:
2017-10-04 18:07:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:16 HiveExt: [Information] Method: 201 Params: 41:[176,[10466.7,10093.2,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:28 HiveExt: [Information] Method: 305 Params: 313:[4.592,[10513.484,10359.138,0.003]]:0.16:
2017-10-04 18:07:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:28 HiveExt: [Information] Method: 201 Params: 41:[176,[10513.5,10359.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:41 HiveExt: [Information] Method: 305 Params: 313:[16.028,[10671.053,10683.144,0.044]]:0.157:
2017-10-04 18:07:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:41 HiveExt: [Information] Method: 201 Params: 41:[176,[10671.1,10683.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:07:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:53 HiveExt: [Information] Method: 305 Params: 313:[333.145,[10698.227,10890.041,0.01]]:0.154:
2017-10-04 18:07:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:53 HiveExt: [Information] Method: 201 Params: 41:[176,[10698.2,10890,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 305 Params: 313:[333.156,[10698.224,10890.046,0.009]]:0.154:
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 306 Params: 313:[[motor,0.517],[sklo predni P,0.227],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:08:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:05 HiveExt: [Information] Method: 201 Params: 41:[129,[10693.9,10887.1,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 18:08:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:18 HiveExt: [Information] Method: 201 Params: 41:[194,[10696.8,10889.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:4:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 18:08:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:19 HiveExt: [Information] Method: 201 Params: 41:[194,[10696.8,10889.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 18:08:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 18:08:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:09:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:10:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:11:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:12:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:13:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:14:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:15:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:16:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:18:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:19:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:20:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:21:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:22:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:23:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:24:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:25:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:26:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:27:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:29:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:30:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:31:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:32:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:33:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:34:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:33 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.005:
2017-10-04 18:34:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:34:33 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.006:
2017-10-04 18:34:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:34:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:35:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:36:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:37:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:38:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:39:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:40:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:41:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:44:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:45:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:46:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:47:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:48:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:49:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:50:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:51:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:52:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:53:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:54:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:55:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:56:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:57:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:59:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 19:00:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:01:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:02:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:03:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:04:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:05:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:06:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:10 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.012:
2017-10-04 19:06:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 19:06:10 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.059:
2017-10-04 19:06:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 19:06:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:07:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:08:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:09:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:10:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:11:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:12:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:13:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:14:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:15:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:16:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:17:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:18:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:19:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:20:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:21:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:22:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:23:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:24:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:25:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:26:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:27:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:29:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:30:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:31:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:32:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:33:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:34:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:35:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:36:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:37:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:38:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:39:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:40:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:41:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:42:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:44:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:45:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:46:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:47:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:48:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:49:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:50:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:51:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:52:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:53:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:54:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:55:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:56:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:57:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 20:00:03 HiveExt: [Information] Method: 307 Params: 

 

 

Link to comment
Share on other sites

2 hours ago, Erzengelgames said:

so iam hosting on g-portal so i got a webinterface console which includes the .rpt if you are talking about the hiveext.log than there is nothing written in there. iam using some custom mods but the biggest once are dzai, custom traders, snap_pro, everything else got added after i notified the problem first time.

I did empty the object_data tables once but i did not installed a new db.

i will copy me hiveext.log of today but it will be veeeerly long just to say it

  Reveal hidden contents


2017-10-04 00:18:02 HiveExt: [Information] HiveExt 
2017-10-04 00:18:02 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:18:02 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:18:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:18:02 HiveExt: [Information] Updating 2 Object_Data ObjectUID
2017-10-04 00:18:02 HiveExt: [Information] Result: ["ObjectStreamStart",503,"cf26f70ad9abbc3663fc4686fd57f0f0"]
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:18:02 HiveExt: [Information] Result: "ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf"
2017-10-04 00:18:02 HiveExt: [Information] Method: 302 Params: ObjectDatab3ee16c9dd8a61f08cdc0537c6b799be.sqf:false:
2017-10-04 00:18:02 HiveExt: [Information] Result: ["NOTICE","ObjectDatab3ee16c9dd8a61f08cdc0537c6b799be.sqf has been deleted"]
2017-10-04 00:18:30 HiveExt: [Information] Method: 308 Params: 11:datsun1_civil_3_open_DZE:0:0:[69,[7547.82,4707.4,0.036]]:[]:[[motor,0.223],[sklo predni P,0.128],[sklo predni L,0.633],[karoserie,0.388],[palivo,0.182],[wheel_1_1_steering,0.602],[wheel_2_1_steering,0.121],[wheel_1_4_steering,0.409],[wheel_2_4_steering,0.218],[wheel_1_3_steering,0.621],[wheel_2_3_steering,0.304],[wheel_1_2_steering,0.646],[wheel_2_2_steering,0.204],[glass1,0.146],[glass2,0.32],[glass3,0.152],[glass4,0.379]]:0.203:88336947071285:
2017-10-04 00:18:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:47 HiveExt: [Information] Method: 309 Params: 0:[[[],[]],[[PartFueltank],[1]],[[],[]]]:
2017-10-04 00:18:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:54 HiveExt: [Information] Method: 388 Params: 88336947071285:
2017-10-04 00:18:54 HiveExt: [Information] Result: ["PASS","520"]
2017-10-04 00:18:54 HiveExt: [Information] Method: 306 Params: 520:[[motor,0.223],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 00:18:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:18:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:18:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:18:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 00:19:01 HiveExt: [Information] Method: 306 Params: 520:[[motor,0.223],[sklo predni P,0.128],[sklo predni L,0.633],[karoserie,0.388],[palivo,0.182],[wheel_1_1_steering,0.602],[wheel_2_1_steering,0.121],[wheel_1_4_steering,0.409],[wheel_2_4_steering,0.218],[wheel_1_3_steering,0.621],[wheel_2_3_steering,0.304],[wheel_1_2_steering,0.646],[wheel_2_2_steering,0.204],[glass1,0.146],[glass2,0.32],[glass3,0.152],[glass4,0.379]]:0:
2017-10-04 00:19:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS",false,"41",[284,[1043.14,2479.24,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemGPS","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1379,1878,1878],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:19:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:05 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[684.263,142.352,139.399],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[284,[1043.14,2479.24,0.001]],2803,11]
2017-10-04 00:19:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:19:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:26 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:19:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:19:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:19:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:19:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 00:20:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:28 HiveExt: [Information] Method: 201 Params: 41:[204,[1050.57,2489.09,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:30555:23:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:28 HiveExt: [Information] Method: 303 Params: 152:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 00:20:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:40 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:13:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 201 Params: 41:[288,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:43 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:20:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:20:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:20:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:20:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 00:21:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:21:50 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:21:50 HiveExt: [Information] Result: ["PASS",false,"41",[288,[1042.86,2479.12,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemGPS","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1878,1881,1881],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:21:50 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:21:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:51 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[684.263,142.352,139.399],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady02",42],[]],[288,[1042.86,2479.12,0.001]],2803,11]
2017-10-04 00:21:51 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:51 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:21:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:55 HiveExt: [Information] Method: 201 Params: 41:[293,[1042.86,2479.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:30558:22:[[DMR_DZ,amovpercmstpslowwrfldnon_player_idlesteady03,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:21:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:21:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:21:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 00:22:02 HiveExt: [Information] Method: 305 Params: 152:[65.178,[1046.767,2481.804,0.006]]:0.647:
2017-10-04 00:22:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:02 HiveExt: [Information] Method: 306 Params: 152:[[wheel_1_1_steering,0.282],[wheel_1_2_steering,0.34],[wheel_2_1_steering,0.493],[wheel_2_2_steering,0],[palivo,0],[motor,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 00:22:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:12 HiveExt: [Information] Method: 305 Params: 152:[65.907,[1033.668,2475.863,0.012]]:0.646:
2017-10-04 00:22:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:12 HiveExt: [Information] Method: 201 Params: 41:[155,[1033.67,2475.86,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:24 HiveExt: [Information] Method: 305 Params: 152:[117.151,[1022.965,2464.911,0.021]]:0.645:
2017-10-04 00:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:24 HiveExt: [Information] Method: 201 Params: 41:[155,[1022.96,2464.91,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:39 HiveExt: [Information] Method: 305 Params: 152:[152.159,[1048.967,2438.061,0.007]]:0.643:
2017-10-04 00:22:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:39 HiveExt: [Information] Method: 201 Params: 41:[155,[1048.97,2438.06,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:22:51 HiveExt: [Information] Method: 305 Params: 152:[99.769,[1241.122,2398.492,-4.821e-04]]:0.641:
2017-10-04 00:22:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:51 HiveExt: [Information] Method: 201 Params: 41:[155,[1241.12,2398.49,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:22:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:22:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:22:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 00:23:03 HiveExt: [Information] Method: 305 Params: 152:[115.281,[1583.25,2247.349,7.391e-05]]:0.638:
2017-10-04 00:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:03 HiveExt: [Information] Method: 201 Params: 41:[155,[1583.25,2247.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:15 HiveExt: [Information] Method: 305 Params: 152:[81.627,[1956.759,2249.357,-6.599e-04]]:0.636:
2017-10-04 00:23:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:15 HiveExt: [Information] Method: 201 Params: 41:[155,[1956.76,2249.36,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:27 HiveExt: [Information] Method: 305 Params: 152:[152.947,[2253.986,2150.572,-2.88e-04]]:0.633:
2017-10-04 00:23:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:27 HiveExt: [Information] Method: 201 Params: 41:[155,[2253.99,2150.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:39 HiveExt: [Information] Method: 305 Params: 152:[103.403,[2581.499,2024.654,3.963e-04]]:0.631:
2017-10-04 00:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:39 HiveExt: [Information] Method: 201 Params: 41:[155,[2581.5,2024.65,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:23:51 HiveExt: [Information] Method: 305 Params: 152:[74.318,[2959.945,2051.157,-3.858e-04]]:0.628:
2017-10-04 00:23:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:51 HiveExt: [Information] Method: 201 Params: 41:[155,[2959.94,2051.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[684.263,142.352,139.399],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:23:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:23:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:23:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 00:24:04 HiveExt: [Information] Method: 305 Params: 152:[41.666,[3291.064,2236.16,6.323e-04]]:0.626:
2017-10-04 00:24:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:04 HiveExt: [Information] Method: 201 Params: 41:[155,[3291.06,2236.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:24:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:16 HiveExt: [Information] Method: 305 Params: 152:[73.685,[3590.89,2454.546,7.725e-05]]:0.623:
2017-10-04 00:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:16 HiveExt: [Information] Method: 201 Params: 41:[155,[3590.89,2454.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:28 HiveExt: [Information] Method: 305 Params: 152:[80.135,[3910.662,2614.912,7.534e-04]]:0.621:
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:28 HiveExt: [Information] Method: 201 Params: 41:[155,[3910.66,2614.91,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:40 HiveExt: [Information] Method: 305 Params: 152:[109.535,[4290.373,2568.157,-2.17e-04]]:0.618:
2017-10-04 00:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:40 HiveExt: [Information] Method: 201 Params: 41:[155,[4290.37,2568.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:24:52 HiveExt: [Information] Method: 305 Params: 152:[96.136,[4644.331,2423.013,5.298e-04]]:0.616:
2017-10-04 00:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:52 HiveExt: [Information] Method: 201 Params: 41:[155,[4644.33,2423.01,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:24:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:24:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 00:25:04 HiveExt: [Information] Method: 305 Params: 152:[125.28,[4978.242,2231.334,-1.812e-05]]:0.613:
2017-10-04 00:25:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:04 HiveExt: [Information] Method: 201 Params: 41:[155,[4978.24,2231.33,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:25:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:17 HiveExt: [Information] Method: 305 Params: 152:[110.566,[5307.458,2083.176,-1.783e-04]]:0.611:
2017-10-04 00:25:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:17 HiveExt: [Information] Method: 201 Params: 41:[155,[5307.46,2083.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:29 HiveExt: [Information] Method: 305 Params: 152:[68.582,[5681.991,2117.305,5.116e-04]]:0.608:
2017-10-04 00:25:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:29 HiveExt: [Information] Method: 201 Params: 41:[155,[5681.99,2117.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:41 HiveExt: [Information] Method: 305 Params: 152:[73.11,[6049.903,2236.396,-8.583e-06]]:0.606:
2017-10-04 00:25:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:41 HiveExt: [Information] Method: 201 Params: 41:[155,[6049.9,2236.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:25:53 HiveExt: [Information] Method: 305 Params: 152:[9.581,[6348.56,2455.888,2.89e-04]]:0.603:
2017-10-04 00:25:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:53 HiveExt: [Information] Method: 201 Params: 41:[155,[6348.56,2455.89,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[712.234,145.891,136.902],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:25:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:25:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:25:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 00:26:06 HiveExt: [Information] Method: 305 Params: 152:[38.753,[6499.349,2792.753,0.164]]:0.601:
2017-10-04 00:26:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:06 HiveExt: [Information] Method: 201 Params: 41:[155,[6499.35,2792.75,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:26:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:18 HiveExt: [Information] Method: 305 Params: 152:[57.857,[6784.679,3025.163,-0.01]]:0.598:
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:18 HiveExt: [Information] Method: 201 Params: 41:[155,[6784.68,3025.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:30 HiveExt: [Information] Method: 305 Params: 152:[58.7,[7098.321,3242.643,-4.625e-05]]:0.596:
2017-10-04 00:26:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:30 HiveExt: [Information] Method: 201 Params: 41:[155,[7098.32,3242.64,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:42 HiveExt: [Information] Method: 305 Params: 152:[102.741,[7288.75,3316.543,-3.338e-05]]:0.594:
2017-10-04 00:26:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:42 HiveExt: [Information] Method: 201 Params: 41:[155,[7288.75,3316.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:26:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:26:54 HiveExt: [Information] Method: 305 Params: 152:[98.507,[7529.432,3171.884,0.003]]:0.591:
2017-10-04 00:26:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:54 HiveExt: [Information] Method: 201 Params: 41:[155,[7529.43,3171.88,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:26:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:26:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:26:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 00:27:06 HiveExt: [Information] Method: 305 Params: 152:[89.264,[7856.369,3184.594,-0.003]]:0.589:
2017-10-04 00:27:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:06 HiveExt: [Information] Method: 201 Params: 41:[155,[7856.37,3184.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:19 HiveExt: [Information] Method: 305 Params: 152:[112.46,[8151.628,3126.26,1.254e-04]]:0.587:
2017-10-04 00:27:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:19 HiveExt: [Information] Method: 201 Params: 41:[155,[8151.63,3126.26,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:31 HiveExt: [Information] Method: 305 Params: 152:[134.289,[8451.463,2898.592,5.913e-05]]:0.584:
2017-10-04 00:27:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:31 HiveExt: [Information] Method: 201 Params: 41:[155,[8451.46,2898.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:39 HiveExt: [Information] Method: 305 Params: 152:[189.203,[8537.117,2752.005,0.105]]:0.583:
2017-10-04 00:27:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:39 HiveExt: [Information] Method: 201 Params: 41:[155,[8537.12,2752.01,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:41 HiveExt: [Information] Method: 305 Params: 152:[189.236,[8537.166,2752.229,0.114]]:0.583:
2017-10-04 00:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:41 HiveExt: [Information] Method: 306 Params: 152:[[wheel_1_1_steering,0.282],[wheel_1_2_steering,0.34],[wheel_2_1_steering,0.493],[wheel_2_2_steering,0],[palivo,0],[motor,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 00:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:27:48 HiveExt: [Information] Method: 305 Params: 206:[174.514,[8519.958,2741.845,0.059]]:0.135:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:48 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.034],[glass2,0],[glass3,0],[glass4,0],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:27:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:51 HiveExt: [Information] Method: 305 Params: 206:[174.694,[8519.958,2741.869,0.058]]:0.135:
2017-10-04 00:27:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:51 HiveExt: [Information] Method: 201 Params: 41:[265,[8519.96,2741.87,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[740.206,148.264,134.476],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:27:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:27:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:27:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 00:28:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:09 HiveExt: [Information] Method: 305 Params: 206:[177.164,[8523.471,2735.552,11.778]]:0.134:
2017-10-04 00:28:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:09 HiveExt: [Information] Method: 201 Params: 41:[265,[8523.47,2735.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:28:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:22 HiveExt: [Information] Method: 305 Params: 206:[147.032,[8744.119,2417.042,28.003]]:0.133:
2017-10-04 00:28:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:22 HiveExt: [Information] Method: 201 Params: 41:[265,[8744.12,2417.04,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:34 HiveExt: [Information] Method: 305 Params: 206:[91.966,[9314.252,2038.844,19.798]]:0.133:
2017-10-04 00:28:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:34 HiveExt: [Information] Method: 201 Params: 41:[265,[9314.25,2038.84,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:46 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.034],[glass2,0],[glass3,0],[glass4,0],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0],[glass6,0],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 305 Params: 206:[73.165,[10164.677,2154.116,42.038]]:0.132:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:46 HiveExt: [Information] Method: 201 Params: 41:[265,[10164.7,2154.12,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:28:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:28:58 HiveExt: [Information] Method: 305 Params: 206:[29.704,[10678.3,2808.746,45.118]]:0.131:
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:58 HiveExt: [Information] Method: 201 Params: 41:[265,[10678.3,2808.75,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:28:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:28:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 00:29:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:10 HiveExt: [Information] Method: 305 Params: 206:[16.304,[10951.907,3511.2,82.716]]:0.131:
2017-10-04 00:29:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:10 HiveExt: [Information] Method: 201 Params: 41:[265,[10951.9,3511.2,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:23 HiveExt: [Information] Method: 305 Params: 206:[11.083,[11084.512,4030.393,34.977]]:0.13:
2017-10-04 00:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:23 HiveExt: [Information] Method: 201 Params: 41:[265,[11084.5,4030.39,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:35 HiveExt: [Information] Method: 305 Params: 206:[12.244,[11150.292,4496.067,48.33]]:0.129:
2017-10-04 00:29:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:35 HiveExt: [Information] Method: 201 Params: 41:[265,[11150.3,4496.07,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:47 HiveExt: [Information] Method: 305 Params: 206:[12.244,[11299.646,5052.479,26.215]]:0.129:
2017-10-04 00:29:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:47 HiveExt: [Information] Method: 201 Params: 41:[265,[11299.6,5052.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:29:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 00:29:59 HiveExt: [Information] Method: 305 Params: 206:[323.709,[11272.66,5396.349,37.466]]:0.128:
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:29:59 HiveExt: [Information] Method: 201 Params: 41:[265,[11272.7,5396.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[770.15,154.097,131.681],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:29:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:09 HiveExt: [Information] Method: 305 Params: 206:[320.71,[11230.336,5444.697,-0.022]]:0.128:
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:09 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:11 HiveExt: [Information] Method: 201 Params: 41:[64,[11223,5453.92,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:77:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:30:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:24 HiveExt: [Information] Method: 201 Params: 41:[11,[11274.3,5472.34,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:55:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:30:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:36 HiveExt: [Information] Method: 201 Params: 41:[331,[11280.2,5501.45,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:30:0:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 00:30:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:30:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:30:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:30:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 00:31:04 HiveExt: [Information] Method: 201 Params: 41:[169,[11290.6,5476.74,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:27:1:[[DMR_DZ,bunnyhoprifle,42],[]]:0:0::0:
2017-10-04 00:31:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:28 HiveExt: [Information] Method: 201 Params: 41:[119,[11291.1,5469.93,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:31:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:37 HiveExt: [Information] Method: 201 Params: 41:[165,[11296.6,5466.44,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:31:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:31:51 HiveExt: [Information] Method: 201 Params: 41:[66,[11297.2,5466.77,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[798.122,156.47,129.254],false]:false:false:0:0:1:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 00:31:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:31:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:31:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 00:32:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:30 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemGoldBar,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:6:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 00:32:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:31 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemGPS,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemGoldBar,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 00:32:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:37 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 00:32:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:37 HiveExt: [Information] Method: 201 Params: 41:[285,[11291.1,5468.58,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 00:32:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:32:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:32:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:32:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 00:33:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:13 HiveExt: [Information] Method: 201 Params: 41:[8,[11291.2,5469.78,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:26 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:43 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:55 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:33:56 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.2,5475.07,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:33:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:33:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:33:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 00:34:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:34:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:34:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 00:35:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:35:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:35:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 00:36:49 HiveExt: [Information] HiveExt 
2017-10-04 00:36:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:36:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:36:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:36:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:36:49 HiveExt: [Information] Updating 1 Object_Data ObjectUID
2017-10-04 00:36:49 HiveExt: [Information] Result: ["ObjectStreamStart",504,"05270967583fe5c176ccbfa4f9d162db"]
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:36:49 HiveExt: [Information] Result: "ObjectData05270967583fe5c176ccbfa4f9d162db.sqf"
2017-10-04 00:36:49 HiveExt: [Information] Method: 302 Params: ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf:false:
2017-10-04 00:36:49 HiveExt: [Information] Result: ["NOTICE","ObjectDatacf26f70ad9abbc3663fc4686fd57f0f0.sqf has been deleted"]
2017-10-04 00:37:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:25 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.2,5475.07,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1881,1896,1896],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:25 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.2,5475.07,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1881,1896,1896],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:25 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[838.18,186.959,124.153],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[293,[11290.2,5475.07,0.001]],2803,11]
2017-10-04 00:37:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:37:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:26 HiveExt: [Information] Method: 201 Params: 41:[293,[9250.24,6857.68,24.701]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:33764:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:37:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:26 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:37:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:37:48 HiveExt: [Information] Method: 201 Params: 41:[293,[11290.1,5475.12,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:2464:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:37:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:37:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:37:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 00:38:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:38:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 00:38:51 HiveExt: [Information] HiveExt 
2017-10-04 00:38:51 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:38:51 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:38:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:38:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: ["ObjectStreamStart",504,"8140636118f7bb21847b226f0ed8e80b"]
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: "ObjectData8140636118f7bb21847b226f0ed8e80b.sqf"
2017-10-04 00:38:51 HiveExt: [Information] Method: 302 Params: ObjectData05270967583fe5c176ccbfa4f9d162db.sqf:false:
2017-10-04 00:38:51 HiveExt: [Information] Result: ["NOTICE","ObjectData05270967583fe5c176ccbfa4f9d162db.sqf has been deleted"]
2017-10-04 00:39:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:27 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",false,"41",[293,[11290.1,5475.12,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1896,1898,1898],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:39:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:27 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[838.18,186.959,124.153],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[293,[11290.1,5475.12,0.001]],2803,11]
2017-10-04 00:39:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:39:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:28 HiveExt: [Information] Method: 201 Params: 41:[293,[9252.7,6855.98,25.482]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:33767:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:39:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:28 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:39:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:39:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:39:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:39:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 00:40:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:40:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:40:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 00:41:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:26 HiveExt: [Information] Method: 201 Params: 41:[126,[11290.5,5474.91,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[838.18,186.959,124.153],false]:false:false:0:0:2462:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:41:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:41:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:39 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:16:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:41:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:41:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:41:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:41:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 00:42:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:16 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:16 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:16 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 00:42:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:42:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:42:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:42:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 00:43:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:43:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:43:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 00:44:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:44:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 00:51:38 HiveExt: [Information] HiveExt 
2017-10-04 00:51:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:51:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 00:51:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: ["ObjectStreamStart",504,"55baa0aa6843340becc193b0af4d1376"]
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: "ObjectData55baa0aa6843340becc193b0af4d1376.sqf"
2017-10-04 00:51:38 HiveExt: [Information] Method: 302 Params: ObjectData8140636118f7bb21847b226f0ed8e80b.sqf:false:
2017-10-04 00:51:38 HiveExt: [Information] Result: ["NOTICE","ObjectData8140636118f7bb21847b226f0ed8e80b.sqf has been deleted"]
2017-10-04 00:51:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:51:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:51:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 00:52:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:52:05 HiveExt: [Information] Result: ["PASS",false,"41",[13,[11277.7,5484.06,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1898,1911,1911],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:52:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:52:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:07 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS",false,"41",[13,[11277.7,5484.06,0.001]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1911,1911,1911],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 00:52:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:07 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[866.012,202.068,120.974],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[13,[11277.7,5484.06,0.001]],2803,11]
2017-10-04 00:52:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 00:52:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:09 HiveExt: [Information] Method: 201 Params: 41:[13,[11277.7,5484.06,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:36213:0:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 00:52:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 00:52:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:52:55 HiveExt: [Information] Method: 201 Params: 41:[245,[11269.9,5493.19,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 00:52:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 00:53:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:07 HiveExt: [Information] Method: 201 Params: 41:[159,[11248.9,5480.46,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:25:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:53:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:37 HiveExt: [Information] Method: 201 Params: 41:[159,[11248.9,5480.52,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:53:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:53:50 HiveExt: [Information] Method: 201 Params: 41:[58,[11225.3,5448.38,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[866.012,202.068,120.974],false]:false:false:0:0:40:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:53:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:50 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 00:53:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:52 HiveExt: [Information] Method: 305 Params: 206:[322.765,[11230.501,5444.441,-0.024]]:0.128:
2017-10-04 00:53:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:52 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:53:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:53:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:53:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 00:54:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:14 HiveExt: [Information] Method: 305 Params: 206:[318.271,[11227.68,5441.641,14.117]]:0.127:
2017-10-04 00:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:14 HiveExt: [Information] Method: 201 Params: 41:[53,[11227.7,5441.64,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:26 HiveExt: [Information] Method: 305 Params: 206:[213.323,[11005.669,5233.225,57.391]]:0.126:
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:26 HiveExt: [Information] Method: 201 Params: 41:[53,[11005.7,5233.23,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:38 HiveExt: [Information] Method: 305 Params: 206:[207.714,[10759.957,4799.773,152.463]]:0.126:
2017-10-04 00:54:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:38 HiveExt: [Information] Method: 201 Params: 41:[53,[10760,4799.77,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:54:50 HiveExt: [Information] Method: 305 Params: 206:[209.566,[10457.506,4249.048,127.714]]:0.125:
2017-10-04 00:54:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:50 HiveExt: [Information] Method: 201 Params: 41:[53,[10457.5,4249.05,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:54:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:54:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:54:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 00:55:02 HiveExt: [Information] Method: 305 Params: 206:[181.053,[10239.971,3739.167,91.865]]:0.124:
2017-10-04 00:55:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:02 HiveExt: [Information] Method: 201 Params: 41:[53,[10240,3739.17,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:55:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:15 HiveExt: [Information] Method: 305 Params: 206:[309.83,[10355.624,3544.141,23.715]]:0.124:
2017-10-04 00:55:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:15 HiveExt: [Information] Method: 201 Params: 41:[53,[10355.6,3544.14,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 00:55:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:27 HiveExt: [Information] Method: 305 Params: 206:[293.388,[10271.679,3575.203,3.016]]:0.123:
2017-10-04 00:55:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:27 HiveExt: [Information] Method: 201 Params: 41:[53,[10271.7,3575.2,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 00:55:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:37 HiveExt: [Information] Method: 305 Params: 206:[293.677,[10271.925,3575.513,0.034]]:0.122:
2017-10-04 00:55:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:37 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 00:55:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:41 HiveExt: [Information] Method: 201 Params: 41:[59,[10279.1,3567.31,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmevasraswrfldfr,42],[]]:0:0::0:
2017-10-04 00:55:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:55:53 HiveExt: [Information] Method: 201 Params: 41:[3,[10313.7,3618.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:61:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 00:55:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,plot_pole_kit,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1]],[[],[]]]:
2017-10-04 00:55:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:55:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:55:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 00:56:00 HiveExt: [Information] Method: 201 Params: 41:[182,[10314.2,3619.18,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:12 HiveExt: [Information] Method: 201 Params: 41:[115,[10313.9,3618.41,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[900.744,224.818,116.773],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:12 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 00:56:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:25 HiveExt: [Information] Method: 201 Params: 41:[359,[10311.4,3619.4,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:3:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:56:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:41 HiveExt: [Information] Method: 201 Params: 41:[223,[10311.4,3619.39,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:56:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:56:54 HiveExt: [Information] Method: 201 Params: 41:[307,[10331,3610.8,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 00:56:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:56:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:56:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 00:57:03 HiveExt: [Information] Method: 201 Params: 41:[307,[10330.8,3610.76,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:28 HiveExt: [Information] Method: 201 Params: 41:[60,[10333.7,3609.02,-3.777e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:4:1:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 00:57:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:40 HiveExt: [Information] Method: 201 Params: 41:[181,[10325.2,3618.27,11.152]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:46 HiveExt: [Information] Method: 201 Params: 41:[181,[10325.2,3618.27,11.152]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[935.006,240.316,113.045],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 00:57:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:57:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:57:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:57:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 00:58:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:58:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:58:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 00:59:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:07 HiveExt: [Information] Method: 201 Params: 41:[212,[10346.2,3614.03,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:21:1:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 00:59:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:19 HiveExt: [Information] Method: 201 Params: 41:[335,[10322.4,3608.16,-3.929e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:28:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 00:59:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:31 HiveExt: [Information] Method: 201 Params: 41:[8,[10311.3,3620.22,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:18:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 00:59:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 00:59:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 00:59:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 00:59:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 01:00:04 HiveExt: [Information] Method: 201 Params: 41:[187,[10311.3,3620.24,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:00:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:00:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:19 HiveExt: [Information] Method: 201 Params: 41:[181,[10311,3619.5,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:00:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:00:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:00:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:00:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 01:03:03 HiveExt: [Information] HiveExt 
2017-10-04 01:03:03 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:03:03 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:03:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:03 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: ["ObjectStreamStart",504,"a3cc3fc80e6e11a960c0c1e25306b405"]
2017-10-04 01:03:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: "ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf"
2017-10-04 01:03:04 HiveExt: [Information] Method: 302 Params: ObjectData55baa0aa6843340becc193b0af4d1376.sqf:false:
2017-10-04 01:03:04 HiveExt: [Information] Result: ["NOTICE","ObjectData55baa0aa6843340becc193b0af4d1376.sqf has been deleted"]
2017-10-04 01:03:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:30 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS",false,"41",[181,[10311,3619.5,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1911,1922,1922],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:03:30 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:32 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS",false,"41",[181,[10311,3619.5,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1922,1922,1922],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:03:32 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:32 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[972.353,268.374,108.311],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[181,[10311,3619.5,4.373]],2803,11]
2017-10-04 01:03:32 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 201 Params: 41:[181,[10311,3619.51,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:36520:1:[[,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:34 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:03:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:50 HiveExt: [Information] Method: 201 Params: 41:[54,[10318.8,3613.3,3.223]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 01:03:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:03:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:03:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,3]]
2017-10-04 01:03:53 HiveExt: [Information] Method: 201 Params: 41:[97,[10320.2,3614.16,3.606]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:03:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:06 HiveExt: [Information] Method: 201 Params: 41:[97,[10308.9,3615.68,4.134]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:11:0:[[DMR_DZ,amovpknlmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 01:04:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:18 HiveExt: [Information] Method: 201 Params: 41:[29,[10321.5,3614.31,3.464]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:13:0:[[DMR_DZ,amovpknlmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 01:04:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:30 HiveExt: [Information] Method: 201 Params: 41:[242,[10317.4,3601.63,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:15:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 01:04:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:42 HiveExt: [Information] Method: 201 Params: 41:[321,[10276.5,3569.95,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:52:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 01:04:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:42 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 01:04:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:04:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:04:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,4]]
2017-10-04 01:04:54 HiveExt: [Information] Method: 201 Params: 41:[49,[10284.7,3599.46,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:31:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 01:04:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:05:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:06 HiveExt: [Information] Method: 201 Params: 41:[132,[10313.8,3620.43,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[972.353,268.374,108.311],false]:false:false:0:0:36:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:05:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:05:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:05:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:05:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,5]]
2017-10-04 01:06:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:06:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:06:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,6]]
2017-10-04 01:07:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:07:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:07:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,7]]
2017-10-04 01:08:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:06 HiveExt: [Information] Method: 201 Params: 41:[77,[10313.8,3618.88,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:3:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:08:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:06 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemRuby,ItemBriefcase100oz,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:08:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:24 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:08:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:25 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:08:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:25 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:08:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:08:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:08:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:08:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,8]]
2017-10-04 01:09:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:09:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:09:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 01:10:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:10:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 01:10:55 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:10:55 HiveExt: [Information] Result: ["PASS",false,"41",[180,[10313.8,3619.62,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1922,1930,1930],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:10:55 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:10:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[180,[10313.8,3619.62,4.373]],2803,11]
2017-10-04 01:10:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 201 Params: 41:[180,[10313.8,3619.62,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:10:56 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:10:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:11:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:09 HiveExt: [Information] Method: 201 Params: 41:[175,[10313.8,3619.27,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:11:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:11:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:11:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:11:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 01:12:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:31 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.9,3617.26,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:31 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:12:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 01:12:53 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:2:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:53 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:12:53 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:12:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:13:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:13:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:13:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 01:14:37 HiveExt: [Information] HiveExt 
2017-10-04 01:14:37 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:14:37 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:14:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:14:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: ["ObjectStreamStart",504,"4de39311e17e5467ffdf550bbdc60d77"]
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: "ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf"
2017-10-04 01:14:37 HiveExt: [Information] Method: 302 Params: ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf:false:
2017-10-04 01:14:37 HiveExt: [Information] Result: ["NOTICE","ObjectDataa3cc3fc80e6e11a960c0c1e25306b405.sqf has been deleted"]
2017-10-04 01:15:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:18 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS",false,"41",[164,[10313.5,3619.09,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1930,1934,1934],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:15:18 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:15:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovppnemstpsraswrfldnon",42],[]],[164,[10313.5,3619.09,4.373]],2803,11]
2017-10-04 01:15:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3619.09,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:15:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:15:49 HiveExt: [Information] Method: 201 Params: 41:[164,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:15:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:15:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:15:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 01:16:03 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:16:03 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:16:03 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:16:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:26 HiveExt: [Information] HiveExt 
2017-10-04 01:21:26 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:21:26 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:21:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: ["ObjectStreamStart",504,"d2511ffee367cf7de7f5df03bd044801"]
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: "ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf"
2017-10-04 01:21:26 HiveExt: [Information] Method: 302 Params: ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf:false:
2017-10-04 01:21:26 HiveExt: [Information] Result: ["NOTICE","ObjectData4de39311e17e5467ffdf550bbdc60d77.sqf has been deleted"]
2017-10-04 01:21:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:39 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS",false,"41",[166,[10313.5,3618.99,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1934,1940,1940],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:21:39 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:21:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 01:21:53 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[166,[10313.5,3618.99,4.373]],2803,11]
2017-10-04 01:21:53 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:53 HiveExt: [Information] Method: 201 Params: 41:[166,[10313.5,3618.99,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36523:0:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:21:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:21:54 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:21:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 01:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:32 HiveExt: [Information] Method: 201 Params: 41:[155,[10313.6,3618.75,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:23:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:23:49 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.95,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:49 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.95,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:23:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 01:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:24:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:24:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 01:25:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:25:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:25:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 01:26:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:26:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:26:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 01:27:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:27:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:27:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 01:28:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:28:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:28:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 01:29:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:29:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:29:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 01:30:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 01:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 01:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 01:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 01:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 01:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 01:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 01:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 01:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 01:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 01:41:31 HiveExt: [Information] HiveExt 
2017-10-04 01:41:31 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:41:31 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 01:41:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:41:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: ["ObjectStreamStart",504,"00aad0e95d51098c4053b1ab751318ba"]
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: "ObjectData00aad0e95d51098c4053b1ab751318ba.sqf"
2017-10-04 01:41:31 HiveExt: [Information] Method: 302 Params: ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf:false:
2017-10-04 01:41:31 HiveExt: [Information] Result: ["NOTICE","ObjectDatad2511ffee367cf7de7f5df03bd044801.sqf has been deleted"]
2017-10-04 01:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:08 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS",false,"41",[158,[10313.6,3618.95,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1940,1961,1961],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 01:42:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:08 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady01",42],[]],[158,[10313.6,3618.95,4.373]],2803,11]
2017-10-04 01:42:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 01:42:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.5,3619.1,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36522:1:[[,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:11 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 01:42:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:45 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3618.85,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 01:42:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:42:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:42:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:42:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 01:43:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:35 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3619.06,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:35 HiveExt: [Information] Method: 201 Params: 41:[158,[10313.6,3619.06,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:35 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 01:43:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 01:43:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:43:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:43:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 01:44:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:44:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 01:44:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 01:44:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:09:24 HiveExt: [Information] HiveExt 
2017-10-04 13:09:24 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 13:09:24 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 13:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,9]]
2017-10-04 13:09:24 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 13:09:24 HiveExt: [Information] Result: ["ObjectStreamStart",504,"ce861fc825827916cf6037f180c21eb5"]
2017-10-04 13:09:24 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 13:09:25 HiveExt: [Information] Result: "ObjectDatace861fc825827916cf6037f180c21eb5.sqf"
2017-10-04 13:09:25 HiveExt: [Information] Method: 302 Params: ObjectData00aad0e95d51098c4053b1ab751318ba.sqf:false:
2017-10-04 13:09:25 HiveExt: [Information] Result: ["NOTICE","ObjectData00aad0e95d51098c4053b1ab751318ba.sqf has been deleted"]
2017-10-04 13:10:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:22 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 13:10:22 HiveExt: [Information] Result: ["PASS",false,"41",[158,[10313.6,3619.06,4.373]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic","20Rnd_762x51_DMR","20Rnd_762x51_DMR","ItemBriefcaseS80oz","ItemRuby","ItemBriefcase100oz","ItemRuby","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[1961,2649,2649],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 13:10:22 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 13:10:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:27 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 13:10:27 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1048.66,327.408,98.537],false],[4,5,2,3],[["DMR_DZ","aidlpercmstpsraswrfldnon_aiming01",42],[]],[158,[10313.6,3619.06,4.373]],2803,11]
2017-10-04 13:10:27 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 13:10:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 13:10:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:10:51 HiveExt: [Information] Method: 201 Params: 41:[89,[10317.5,3606.44,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:36533:73:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 13:10:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:10:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:10:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,10]]
2017-10-04 13:11:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:03 HiveExt: [Information] Method: 201 Params: 41:[340,[10324.8,3592.55,4.616e-04]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:16:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:11:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:15 HiveExt: [Information] Method: 201 Params: 41:[345,[10322,3612.66,2.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 13:11:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:28 HiveExt: [Information] Method: 201 Params: 41:[40,[10302.2,3602.43,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:22:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 13:11:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:40 HiveExt: [Information] Method: 201 Params: 41:[72,[10304.1,3609,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:11:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:11:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:11:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:11:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,11]]
2017-10-04 13:12:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:06 HiveExt: [Information] Method: 201 Params: 41:[27,[10312.9,3612.56,2.655]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:12:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:06 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemGoldBar3oz,ItemBriefcaseS30oz,ItemGoldBar10oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 13:12:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:10 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:12:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:10 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.325],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:12:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:23 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:23 HiveExt: [Information] Method: 201 Params: 41:[90,[10315.9,3619.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1048.66,327.408,98.537],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:23 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemBriefcaseS30oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED],[1,1,1,2,2,1,1,2,1,1,1,1,2,1,2,1,1,1,1]],[[],[]]]:
2017-10-04 13:12:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:12:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:12:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:12:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,12]]
2017-10-04 13:13:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:13:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:13:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,13]]
2017-10-04 13:14:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:14:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:14:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,14]]
2017-10-04 13:15:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:08 HiveExt: [Information] Method: 305 Params: 22:[359.937,[10315.883,3619.484,4.371]]:0.418:
2017-10-04 13:15:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:08 HiveExt: [Information] Method: 201 Params: 41:[90,[10315.9,3619.48,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:2:[[,,42],[]]:0:0::0:
2017-10-04 13:15:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:22 HiveExt: [Information] Method: 305 Params: 22:[72.828,[10335.747,3598.565,0.469]]:0.416:
2017-10-04 13:15:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:22 HiveExt: [Information] Method: 201 Params: 41:[90,[10335.7,3598.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:15:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:34 HiveExt: [Information] Method: 305 Params: 22:[359.4,[10334.841,3777.302,0.013]]:0.412:
2017-10-04 13:15:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:34 HiveExt: [Information] Method: 201 Params: 41:[90,[10334.8,3777.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:46 HiveExt: [Information] Method: 305 Params: 22:[334.344,[10208.355,4036.845,0.082]]:0.409:
2017-10-04 13:15:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:46 HiveExt: [Information] Method: 201 Params: 41:[90,[10208.4,4036.85,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:15:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 13:15:58 HiveExt: [Information] Method: 305 Params: 22:[38.664,[10361.651,4237.563,0.035]]:0.405:
2017-10-04 13:15:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:15:58 HiveExt: [Information] Method: 201 Params: 41:[90,[10361.7,4237.56,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:15:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:10 HiveExt: [Information] Method: 305 Params: 22:[42.615,[10576.101,4429.132,0.055]]:0.401:
2017-10-04 13:16:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:10 HiveExt: [Information] Method: 201 Params: 41:[90,[10576.1,4429.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:22 HiveExt: [Information] Method: 305 Params: 22:[15.806,[10667.247,4634.772,0.002]]:0.398:
2017-10-04 13:16:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:22 HiveExt: [Information] Method: 201 Params: 41:[90,[10667.2,4634.77,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:16:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:34 HiveExt: [Information] Method: 305 Params: 22:[326.56,[10615.134,4898.324,0.023]]:0.394:
2017-10-04 13:16:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:34 HiveExt: [Information] Method: 201 Params: 41:[90,[10615.1,4898.32,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1111.85,352.238,91.887],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:46 HiveExt: [Information] Method: 305 Params: 22:[311.329,[10410.271,5093.103,0.023]]:0.39:
2017-10-04 13:16:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:46 HiveExt: [Information] Method: 201 Params: 41:[90,[10410.3,5093.1,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:16:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 13:16:59 HiveExt: [Information] Method: 305 Params: 22:[324.449,[10154.607,5208.473,0.004]]:0.387:
2017-10-04 13:16:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:16:59 HiveExt: [Information] Method: 201 Params: 41:[90,[10154.6,5208.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:16:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:11 HiveExt: [Information] Method: 305 Params: 22:[1.661,[10152.217,5305.97,0.013]]:0.505:
2017-10-04 13:17:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:11 HiveExt: [Information] Method: 201 Params: 41:[90,[10152.2,5305.97,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1139.56,354.61,89.482],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:17:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:17:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:17:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:17:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 13:18:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:18:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:18:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 13:19:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:19:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:19:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 13:20:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:09 HiveExt: [Information] Method: 305 Params: 22:[343.545,[10145.313,5324.531,0.022]]:0.999:
2017-10-04 13:20:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:09 HiveExt: [Information] Method: 201 Params: 41:[90,[10145.3,5324.53,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:3:[[,,42],[]]:0:0::0:
2017-10-04 13:20:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:20 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.325],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:20:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:20 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.341],[glass2,0.416],[glass3,0.143],[glass4,0.636],[wheel_1_1_steering,0],[wheel_1_2_steering,0],[wheel_2_1_steering,0],[wheel_2_2_steering,0],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0:
2017-10-04 13:20:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 305 Params: 22:[101.526,[10248.125,5461.416,-6.104e-05]]:0.996:
2017-10-04 13:20:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 201 Params: 41:[90,[10248.1,5461.42,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:20:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:21 HiveExt: [Information] Method: 303 Params: :[[[],[]],[[],[]],[[],[]]]:
2017-10-04 13:20:21 HiveExt: [Error] Error executing |CHILD:303::[[[],[]],[[],[]],[[],[]]]:|
2017-10-04 13:20:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:33 HiveExt: [Information] Method: 305 Params: 22:[80.059,[10468.617,5528.966,0.019]]:0.992:
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:33 HiveExt: [Information] Method: 201 Params: 41:[90,[10468.6,5528.97,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:45 HiveExt: [Information] Method: 305 Params: 22:[99.682,[10637.324,5500.162,0.166]]:0.988:
2017-10-04 13:20:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:45 HiveExt: [Information] Method: 201 Params: 41:[90,[10637.3,5500.16,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1167.28,356.981,87.076],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:20:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 13:20:57 HiveExt: [Information] Method: 305 Params: 22:[73.943,[10824.838,5485.3,0.002]]:0.984:
2017-10-04 13:20:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:20:57 HiveExt: [Information] Method: 201 Params: 41:[90,[10824.8,5485.3,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:20:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:09 HiveExt: [Information] Method: 305 Params: 22:[124.049,[11031.377,5452.542,-0.004]]:0.981:
2017-10-04 13:21:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:09 HiveExt: [Information] Method: 201 Params: 41:[90,[11031.4,5452.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:21:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:21 HiveExt: [Information] Method: 305 Params: 22:[49.589,[11205.788,5467.178,0.002]]:0.978:
2017-10-04 13:21:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:21 HiveExt: [Information] Method: 201 Params: 41:[90,[11205.8,5467.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:21:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:31 HiveExt: [Information] Method: 305 Params: 22:[75.4,[11280.963,5493.401,8.698e-04]]:0.977:
2017-10-04 13:21:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:31 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:21:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:34 HiveExt: [Information] Method: 201 Params: 41:[345,[11280.7,5499.43,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:82:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:21:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:21:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:21:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:21:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 13:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:10 HiveExt: [Information] Method: 201 Params: 41:[122,[11287,5481.76,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemBriefcaseS80oz,ItemRuby,ItemBriefcase100oz,ItemRuby,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:19:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:15 HiveExt: [Information] Method: 201 Params: 41:[219,[11291.4,5470.54,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:12:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:22:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:15 HiveExt: [Information] Method: 201 Params: 41:[219,[11291.4,5470.54,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 13:22:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:24 HiveExt: [Information] Method: 201 Params: 41:[114,[11291.7,5470.43,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:22:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:38 HiveExt: [Information] Method: 201 Params: 41:[341,[11279.9,5491.03,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBriefcaseS80oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1194.99,359.353,84.67],false]:false:false:0:0:24:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 13:22:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 13:22:56 HiveExt: [Information] Method: 201 Params: 41:[337,[11279.9,5491.04,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:22:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:22:56 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,ItemBriefcaseS30oz,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby,ItemBriefcaseS80oz],[1,1,1,2,2,1,1,2,1,1,1,1,2,1,2,1,1,1,1,1,1]],[[],[]]]:
2017-10-04 13:22:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:09 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar3oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:24:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 13:23:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:30 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 13:23:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:30 HiveExt: [Information] Method: 201 Params: 41:[206,[11290.8,5470.05,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 13:23:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:41 HiveExt: [Information] Method: 201 Params: 41:[151,[11290.9,5469.81,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:23:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 13:23:54 HiveExt: [Information] Method: 201 Params: 41:[329,[11280.2,5491.13,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemRuby,ItemBriefcase100oz,ItemGoldBar10oz,ItemGoldBar2oz,ItemBriefcaseS90oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemLightBulb],[1,1,1,1,1,1,6]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:24:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:23:54 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1]],[[],[]]]:
2017-10-04 13:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:16 HiveExt: [Information] Method: 201 Params: 41:[329,[11280.2,5491.13,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1229.01,378.078,80.769],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:16 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemRuby,ItemBriefcaseS90oz,ItemGoldBar2oz,ItemGoldBar10oz,ItemBriefcase100oz,ItemLightBulb],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,2,1,1,1,1,5]],[[],[]]]:
2017-10-04 13:24:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:24:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:24:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 13:25:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:25:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:25:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 13:26:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:20 HiveExt: [Information] Method: 201 Params: 41:[306,[11276.8,5490.34,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1260.66,397.678,77.008],false]:false:false:0:0:3:3:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:26:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:29 HiveExt: [Information] Method: 305 Params: 22:[75.397,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:26:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:29 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:26:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:26:46 HiveExt: [Information] Method: 305 Params: 22:[75.392,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:46 HiveExt: [Information] Method: 201 Params: 41:[165,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1260.66,397.678,77.008],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:46 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemBriefcaseS90oz,ItemGoldBar2oz,ItemGoldBar10oz,ItemRuby,ItemLightBulb,ItemBriefcase100oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,5,1]],[[],[]]]:
2017-10-04 13:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:48 HiveExt: [Information] Method: 305 Params: 22:[75.38,[11280.963,5493.4,8.545e-04]]:0.977:
2017-10-04 13:26:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:48 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:26:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:26:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:26:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 13:27:00 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemRuby,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:26:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:04 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:05 HiveExt: [Information] Method: 201 Params: 41:[215,[11290.7,5469.86,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming01,42],[]]:0:0::0:
2017-10-04 13:27:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:14 HiveExt: [Information] Method: 201 Params: 41:[34,[11290.9,5470.08,0.002]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemRuby,ItemRuby,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:27:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 305 Params: 22:[75.381,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5]],[[],[]]]:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:28 HiveExt: [Information] Method: 305 Params: 22:[75.39,[11280.963,5493.4,8.698e-04]]:0.977:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:28 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller,ItemGoldBar2oz,ItemBriefcaseS90oz],[1,1,1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:28 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2]],[[],[]]]:
2017-10-04 13:27:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:35 HiveExt: [Information] Method: 305 Params: 22:[75.396,[11280.963,5493.4,8.85e-04]]:0.977:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:35 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,plot_pole_kit,plot_pole_kit,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:35 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 13:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 305 Params: 22:[75.386,[11280.963,5493.4,8.545e-04]]:0.977:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 201 Params: 41:[345,[11281,5493.4,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:41 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz,plot_pole_kit],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1,2]],[[],[]]]:
2017-10-04 13:27:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:27:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 13:27:54 HiveExt: [Information] Method: 305 Params: 22:[229.715,[11265.513,5492.809,0.001]]:0.975:
2017-10-04 13:27:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:27:54 HiveExt: [Information] Method: 201 Params: 41:[345,[11265.5,5492.81,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:27:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:07 HiveExt: [Information] Method: 305 Params: 22:[208.652,[11150.93,5391.472,0.015]]:0.972:
2017-10-04 13:28:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:07 HiveExt: [Information] Method: 201 Params: 41:[345,[11150.9,5391.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:19 HiveExt: [Information] Method: 305 Params: 22:[355.206,[11071.165,5405.127,-4.883e-04]]:0.968:
2017-10-04 13:28:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:19 HiveExt: [Information] Method: 201 Params: 41:[345,[11071.2,5405.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:28:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:31 HiveExt: [Information] Method: 305 Params: 22:[269.157,[10914.349,5500.114,0.096]]:0.965:
2017-10-04 13:28:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:31 HiveExt: [Information] Method: 201 Params: 41:[345,[10914.3,5500.11,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:43 HiveExt: [Information] Method: 305 Params: 22:[280.362,[10707.809,5484.175,0.022]]:0.961:
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:43 HiveExt: [Information] Method: 201 Params: 41:[345,[10707.8,5484.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:28:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 13:28:56 HiveExt: [Information] Method: 305 Params: 22:[273.107,[10492.953,5528.736,0.008]]:0.958:
2017-10-04 13:28:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:28:56 HiveExt: [Information] Method: 201 Params: 41:[345,[10493,5528.74,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1291.85,414.887,73.429],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:28:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:08 HiveExt: [Information] Method: 305 Params: 22:[264.493,[10252.172,5465.072,0.047]]:0.955:
2017-10-04 13:29:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:08 HiveExt: [Information] Method: 201 Params: 41:[345,[10252.2,5465.07,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:20 HiveExt: [Information] Method: 305 Params: 22:[182.802,[10138.489,5291.016,0.012]]:0.951:
2017-10-04 13:29:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:20 HiveExt: [Information] Method: 201 Params: 41:[345,[10138.5,5291.02,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:29:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:32 HiveExt: [Information] Method: 305 Params: 22:[108.43,[10368.996,5112.046,0.05]]:0.948:
2017-10-04 13:29:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:32 HiveExt: [Information] Method: 201 Params: 41:[345,[10369,5112.05,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:45 HiveExt: [Information] Method: 305 Params: 22:[144.318,[10616.415,4899.036,0.019]]:0.944:
2017-10-04 13:29:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:45 HiveExt: [Information] Method: 201 Params: 41:[345,[10616.4,4899.04,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:29:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 13:29:57 HiveExt: [Information] Method: 305 Params: 22:[173.161,[10687.001,4730.448,0.016]]:0.944:
2017-10-04 13:29:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:29:57 HiveExt: [Information] Method: 201 Params: 41:[345,[10687,4730.45,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:29:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:09 HiveExt: [Information] Method: 305 Params: 22:[219.072,[10635.301,4506.411,-0.004]]:0.942:
2017-10-04 13:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:09 HiveExt: [Information] Method: 201 Params: 41:[345,[10635.3,4506.41,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:21 HiveExt: [Information] Method: 305 Params: 22:[237.429,[10501.029,4369.417,0.003]]:0.94:
2017-10-04 13:30:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:21 HiveExt: [Information] Method: 201 Params: 41:[345,[10501,4369.42,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:30:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:34 HiveExt: [Information] Method: 305 Params: 22:[220.048,[10292.583,4155.346,0.062]]:0.937:
2017-10-04 13:30:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:34 HiveExt: [Information] Method: 201 Params: 41:[345,[10292.6,4155.35,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:46 HiveExt: [Information] Method: 305 Params: 22:[149.674,[10262.684,3967.433,0.057]]:0.934:
2017-10-04 13:30:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:46 HiveExt: [Information] Method: 201 Params: 41:[345,[10262.7,3967.43,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 13:30:58 HiveExt: [Information] Method: 305 Params: 22:[163.507,[10345.354,3670.572,-0.003]]:0.93:
2017-10-04 13:30:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:30:58 HiveExt: [Information] Method: 201 Params: 41:[345,[10345.4,3670.57,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1321.66,422.256,70.552],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:30:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:10 HiveExt: [Information] Method: 305 Params: 22:[335.396,[10316.476,3603.414,-0.024]]:0.927:
2017-10-04 13:31:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:10 HiveExt: [Information] Method: 201 Params: 41:[345,[10316.5,3603.41,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:31:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:22 HiveExt: [Information] Method: 305 Params: 22:[1.777,[10315.011,3619.549,4.371]]:0.925:
2017-10-04 13:31:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:22 HiveExt: [Information] Method: 201 Params: 41:[345,[10315,3619.55,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:31:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:27 HiveExt: [Information] Method: 305 Params: 22:[0.604,[10314.951,3619.559,4.371]]:0.925:
2017-10-04 13:31:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:27 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:32 HiveExt: [Information] Method: 305 Params: 22:[0.504,[10314.943,3619.56,4.371]]:0.925:
2017-10-04 13:31:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:32 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:35 HiveExt: [Information] Method: 305 Params: 22:[0.472,[10314.974,3619.518,4.371]]:0.925:
2017-10-04 13:31:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:35 HiveExt: [Information] Method: 306 Params: 22:[[glass1,0.4],[glass2,0.474],[glass3,0.39],[glass4,0.638],[wheel_1_1_steering,0.266],[wheel_1_2_steering,0.065],[wheel_2_1_steering,0.198],[wheel_2_2_steering,0.269],[fueltank,0],[engine,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0.092],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0]]:0.13:
2017-10-04 13:31:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 13:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:40 HiveExt: [Information] Method: 201 Params: 41:[196,[10317.1,3618.66,4.373]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1349.38,424.627,68.146],false]:false:false:0:0:5:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:32:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 13:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:33:48 HiveExt: [Information] Method: 201 Params: 41:[205,[10316.4,3616.36,4.289]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1379.62,440.163,64.744],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 13:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 13:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:31 HiveExt: [Information] Method: 201 Params: 41:[222,[10303.8,3603.89,0.001]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:18:2:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 13:35:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:43 HiveExt: [Information] Method: 305 Params: 206:[294.736,[10272.507,3575.275,0.041]]:0.122:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 303 Params: 206:[[[],[]],[[ItemBandage,PartGlass,7Rnd_45ACP_1911],[1,1,1]],[[],[]]]:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 305 Params: 206:[294.76,[10272.518,3575.271,0.04]]:0.122:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:43 HiveExt: [Information] Method: 201 Params: 41:[24,[10272.5,3575.27,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:35:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 13:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:04 HiveExt: [Information] Method: 305 Params: 206:[192.468,[10272.517,3576.741,10.653]]:0.121:
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:04 HiveExt: [Information] Method: 201 Params: 41:[24,[10272.5,3576.74,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:16 HiveExt: [Information] Method: 305 Params: 206:[202.363,[10242.813,3238.474,37.425]]:0.12:
2017-10-04 13:36:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:16 HiveExt: [Information] Method: 201 Params: 41:[24,[10242.8,3238.47,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:28 HiveExt: [Information] Method: 305 Params: 206:[161.482,[10278.941,2517.064,21.44]]:0.12:
2017-10-04 13:36:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:28 HiveExt: [Information] Method: 201 Params: 41:[24,[10278.9,2517.06,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:36:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:41 HiveExt: [Information] Method: 305 Params: 206:[259.835,[9885.439,2047.485,65.95]]:0.119:
2017-10-04 13:36:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:41 HiveExt: [Information] Method: 201 Params: 41:[24,[9885.44,2047.49,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:36:53 HiveExt: [Information] Method: 305 Params: 206:[142.586,[9407.602,1988.556,88.483]]:0.118:
2017-10-04 13:36:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:53 HiveExt: [Information] Method: 201 Params: 41:[24,[9407.6,1988.56,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:36:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 13:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:05 HiveExt: [Information] Method: 305 Params: 206:[278.271,[9529.84,2054.613,19.136]]:0.118:
2017-10-04 13:37:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:05 HiveExt: [Information] Method: 201 Params: 41:[24,[9529.84,2054.61,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:37:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:17 HiveExt: [Information] Method: 305 Params: 206:[190.506,[9498.673,2011.187,10.223]]:0.117:
2017-10-04 13:37:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:17 HiveExt: [Information] Method: 201 Params: 41:[24,[9498.67,2011.19,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1409.31,457.08,61.305],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:37:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 13:37:57 HiveExt: [Information] Method: 305 Params: 206:[190.927,[9499.563,2010.089,6.362]]:0.985:
2017-10-04 13:37:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:37:57 HiveExt: [Information] Method: 201 Params: 41:[24,[9499.56,2010.09,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:37:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:10 HiveExt: [Information] Method: 305 Params: 206:[250.733,[9425.97,1986.537,30.393]]:0.999:
2017-10-04 13:38:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:10 HiveExt: [Information] Method: 201 Params: 41:[24,[9425.97,1986.54,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:22 HiveExt: [Information] Method: 305 Params: 206:[293.096,[8862.931,2163.371,22.586]]:0.999:
2017-10-04 13:38:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:22 HiveExt: [Information] Method: 201 Params: 41:[24,[8862.93,2163.37,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 13:38:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:35 HiveExt: [Information] Method: 305 Params: 206:[301.487,[8165.686,2365.132,57.734]]:0.998:
2017-10-04 13:38:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:35 HiveExt: [Information] Method: 201 Params: 41:[24,[8165.69,2365.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:47 HiveExt: [Information] Method: 305 Params: 206:[224.625,[7811.435,2455.527,49.774]]:0.997:
2017-10-04 13:38:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:47 HiveExt: [Information] Method: 201 Params: 41:[24,[7811.43,2455.53,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 13:38:59 HiveExt: [Information] Method: 305 Params: 206:[203.141,[7788.656,2428.513,53.63]]:0.997:
2017-10-04 13:38:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:38:59 HiveExt: [Information] Method: 201 Params: 41:[24,[7788.66,2428.51,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:38:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:11 HiveExt: [Information] Method: 305 Params: 206:[203.497,[7805.131,2420.131,34.847]]:0.996:
2017-10-04 13:39:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:11 HiveExt: [Information] Method: 201 Params: 41:[24,[7805.13,2420.13,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 13:39:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:16 HiveExt: [Information] Method: 305 Params: 206:[203.168,[7802.706,2421.123,33.849]]:0.996:
2017-10-04 13:39:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:16 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 13:39:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:23 HiveExt: [Information] Method: 201 Params: 41:[97,[7795.4,2389.32,31.104]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1442.98,469.894,57.787],false]:false:false:0:0:45:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 13:39:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:36 HiveExt: [Information] Method: 201 Params: 41:[80,[7828.1,2389.59,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:33:0:[[DMR_DZ,,42],[]]:0:0::0:
2017-10-04 13:39:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:39:48 HiveExt: [Information] Method: 201 Params: 41:[31,[7829.5,2392.18,0]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:28:0:[[DMR_DZ,,42],[]]:0:0::0:
2017-10-04 13:39:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:39:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:39:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 13:40:00 HiveExt: [Information] Method: 201 Params: 41:[108,[7839.53,2360.23,22.336]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:40:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 13:40:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:12 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:24 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:37 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:39 HiveExt: [Information] Method: 201 Params: 41:[141,[7841.38,2360.01,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:45 HiveExt: [Information] Method: 201 Params: 41:[337,[7841.41,2359.99,22.311]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:40:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:40:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 13:40:57 HiveExt: [Information] Method: 201 Params: 41:[23,[7841.13,2360.12,22.313]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:40:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:01 HiveExt: [Information] Method: 201 Params: 41:[23,[7841.1,2360.07,22.314]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:15 HiveExt: [Information] Method: 201 Params: 41:[334,[7843.2,2355.42,22.225]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:41:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:28 HiveExt: [Information] Method: 201 Params: 41:[3,[7842.28,2358.51,22.316]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1473.65,477.263,54.84],false]:false:false:0:0:3:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:41:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:40 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:41:52 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:41:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:41:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:41:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 13:42:04 HiveExt: [Information] Method: 201 Params: 41:[9,[7842.3,2358.41,22.317]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:42:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:12 HiveExt: [Information] Method: 201 Params: 41:[24,[7842.34,2358.1,22.32]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 13:42:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:25 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:8:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:37 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:42:49 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:42:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:42:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:42:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 13:43:01 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:02 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:03 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.477]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 13:43:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:03 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 13:43:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:43:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:43:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:43:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 13:44:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:44:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:44:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 13:45:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:45:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:45:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 13:46:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:43 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.003:
2017-10-04 13:46:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:46:43 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.004:
2017-10-04 13:46:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 13:46:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:46:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:46:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 13:47:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:47:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:47:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 13:48:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:48:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:48:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 13:49:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:49:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:49:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 13:50:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:50:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:50:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 13:51:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:51:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:51:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 13:52:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 13:53:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:53:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:53:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 13:54:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:54:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:54:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 13:55:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:55:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:55:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 13:56:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:56:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:56:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 13:57:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:57:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:57:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 13:58:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:58:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:58:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 13:59:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 13:59:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 13:59:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 14:00:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:00:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:00:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 14:01:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:01:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:01:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 14:02:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:02:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:02:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 14:03:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:03:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:03:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 14:04:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:04:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:04:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 14:05:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:05:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:05:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 14:06:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:06:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:06:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 14:07:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:07:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:07:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 14:08:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:08:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:08:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 14:09:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:09:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:09:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 14:10:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:10:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:10:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 14:11:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:11:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:11:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 14:12:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:12:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:12:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 14:13:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:13:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:13:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 14:14:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:14:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:14:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 14:15:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:15:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:15:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 14:16:38 HiveExt: [Information] HiveExt 
2017-10-04 14:16:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:16:38 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:16:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:16:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: ["ObjectStreamStart",504,"05df416e4e9ee85132802824da18ec57"]
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: "ObjectData05df416e4e9ee85132802824da18ec57.sqf"
2017-10-04 14:16:38 HiveExt: [Information] Method: 302 Params: ObjectDatace861fc825827916cf6037f180c21eb5.sqf:false:
2017-10-04 14:16:38 HiveExt: [Information] Result: ["NOTICE","ObjectDatace861fc825827916cf6037f180c21eb5.sqf has been deleted"]
2017-10-04 14:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:06 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:17:06 HiveExt: [Information] Result: ["PASS",false,"41",[14,[7839,2351,22.477]],[["DMR_DZ","Binocular_Vector","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","NVGoggles","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2649,2716,2716],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:17:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:17:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1510.54,503.98,50.225],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[14,[7839,2351,22.477]],2803,11]
2017-10-04 14:17:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 306 Params: 206:[[glass1,0.035],[glass2,0],[glass3,0],[glass4,0.072],[glass5,0.016],[glass6,0.064],[NEtrup,0],[motor,0],[elektronika,0],[mala vrtule,0],[velka vrtule,0],[munice,0],[sklo predni P,0],[sklo predni L,0]]:0:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:07 HiveExt: [Information] Method: 201 Params: 41:[14,[7839,2351,22.522]]:[[DMR_DZ,Binocular_Vector,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,NVGoggles,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:35416:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:17:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:08 HiveExt: [Information] Method: 306 Params: 206:[]:1:
2017-10-04 14:17:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:08 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:17:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:10 HiveExt: [Information] Method: 306 Params: 206:[[glass1,1],[glass2,1],[glass3,1],[glass4,1],[glass5,1],[glass6,1],[NEtrup,0],[motor,1],[elektronika,1],[mala vrtule,1],[velka vrtule,1],[munice,0],[sklo predni P,0],[sklo predni L,0]]:1:
2017-10-04 14:17:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:19 HiveExt: [Information] Method: 201 Params: 41:[8,[7831.78,2375.65,25.664]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:26:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 14:17:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:31 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:42 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:17:54 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:54 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.662]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:54 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:17:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:17:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:17:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 14:18:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:18:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:18:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 14:19:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:19:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:19:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 14:20:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:20:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:20:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 14:21:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:21:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:21:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 14:22:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:22:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:22:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 14:24:11 HiveExt: [Information] HiveExt 
2017-10-04 14:24:11 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:24:11 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 14:24:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: ["ObjectStreamStart",503,"881333ab3b3bb447337e9a7d97ec4937"]
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: "ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf"
2017-10-04 14:24:11 HiveExt: [Information] Method: 302 Params: ObjectData05df416e4e9ee85132802824da18ec57.sqf:false:
2017-10-04 14:24:11 HiveExt: [Information] Result: ["NOTICE","ObjectData05df416e4e9ee85132802824da18ec57.sqf has been deleted"]
2017-10-04 14:24:40 HiveExt: [Information] Method: 308 Params: 11:Kamaz_DZE:0:0:[121,[8970.28,6314.31,0.031]]:[]:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0.433],[wheel_1_4_steering,0.615],[wheel_2_4_steering,0.606],[wheel_1_3_steering,0.681],[wheel_2_3_steering,0.316],[wheel_1_2_steering,0.478],[wheel_2_2_steering,0.49],[motor,0.094],[sklo predni P,0.456],[sklo predni L,0.614],[karoserie,0.391],[palivo,0.479],[glass1,0.442],[glass2,0.488],[glass3,0.052],[glass4,0.199]]:0.775:9035121631465:
2017-10-04 14:24:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:47 HiveExt: [Information] Method: 388 Params: 9035121631465:
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS","521"]
2017-10-04 14:24:47 HiveExt: [Information] Method: 306 Params: 521:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 14:24:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:24:48 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS",false,"41",[77,[7832.04,2375.69,25.662]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2716,2724,2724],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:24:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:24:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:49 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1510.54,503.98,50.225],false],[4,5,2,3],[["DMR_DZ","amovpercmstpsraswrfldnon_gear",42],[]],[77,[7832.04,2375.69,25.662]],2803,11]
2017-10-04 14:24:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:49 HiveExt: [Information] Method: 201 Params: 41:[77,[7832.04,2375.69,25.659]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:35395:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:24:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:50 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:24:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:52 HiveExt: [Information] Method: 306 Params: 521:[[wheel_1_1_steering,0.697],[wheel_2_1_steering,0.433],[wheel_1_4_steering,0.615],[wheel_2_4_steering,0.606],[wheel_1_3_steering,0.681],[wheel_2_3_steering,0.316],[wheel_1_2_steering,0.478],[wheel_2_2_steering,0.49],[motor,0.094],[sklo predni P,0.456],[sklo predni L,0.614],[karoserie,0.391],[palivo,0.479],[glass1,0.442],[glass2,0.488],[glass3,0.052],[glass4,0.199]]:0:
2017-10-04 14:24:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:24:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:24:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 14:25:01 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:13 HiveExt: [Information] Method: 303 Params: 521:[[[],[]],[[15Rnd_W1866_Slug],[1]],[[DZ_Czech_Vest_Pouch],[1]]]:
2017-10-04 14:25:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:13 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:26 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:37 HiveExt: [Information] Method: 201 Params: 41:[34,[7832.03,2375.87,25.657]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:25:50 HiveExt: [Information] Method: 201 Params: 41:[5,[7835.06,2424.08,25.246]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:48:0:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 14:25:50 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:57 HiveExt: [Information] Method: 201 Params: 41:[5,[7835.1,2424.58,25.237]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:25:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:25:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:25:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 14:26:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:10 HiveExt: [Information] Method: 201 Params: 41:[302,[7830.09,2430.09,25.127]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 14:26:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:22 HiveExt: [Information] Method: 201 Params: 41:[347,[7853.9,2428.36,32.033]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:25:0:[[DMR_DZ,amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 14:26:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:34 HiveExt: [Information] Method: 201 Params: 41:[63,[7851.92,2428.49,32.035]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmwlkslowwrfldf,42],[]]:0:0::0:
2017-10-04 14:26:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:46 HiveExt: [Information] Method: 201 Params: 41:[47,[7848.34,2445.95,24.655]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.54,503.98,50.225],false]:false:false:0:0:19:1:[[DMR_DZ,amovpercmrunslowwrfldfl,42],[]]:0:0::0:
2017-10-04 14:26:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:26:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:26:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 14:26:58 HiveExt: [Information] Method: 201 Params: 41:[221,[7855.35,2454.29,24.517]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmstpslowwrfldnon_player_idlesteady02,42],[]]:0:0::0:
2017-10-04 14:26:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:10 HiveExt: [Information] Method: 201 Params: 41:[216,[7857.15,2453.18,24.544]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmwlkslowwrfldfl,42],[]]:0:0::0:
2017-10-04 14:27:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:22 HiveExt: [Information] Method: 201 Params: 41:[246,[7856.02,2455.34,24.497]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpslowwrfldnon_turnl,42],[]]:0:0::0:
2017-10-04 14:27:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:35 HiveExt: [Information] Method: 201 Params: 41:[262,[7850.29,2428.09,32.039]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:29:0:[[DMR_DZ,amovpercmrunslowwrfldf,42],[]]:0:0::0:
2017-10-04 14:27:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:47 HiveExt: [Information] Method: 201 Params: 41:[239,[7830,2390.04,25.411]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:44:1:[[DMR_DZ,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0::0:
2017-10-04 14:27:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:27:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:27:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 14:27:59 HiveExt: [Information] Method: 201 Params: 41:[286,[7821.63,2390.86,31.674]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:27:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:11 HiveExt: [Information] Method: 201 Params: 41:[8,[7804.13,2422.85,33.974]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:37:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_diary,42],[]]:0:0::0:
2017-10-04 14:28:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:23 HiveExt: [Information] Method: 201 Params: 41:[232,[7803.06,2422.01,33.99]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 14:28:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:35 HiveExt: [Information] Method: 201 Params: 41:[226,[7801.81,2413.92,33.856]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:8:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:28:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:48 HiveExt: [Information] Method: 201 Params: 41:[261,[7823.51,2392.43,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1549.04,530.055,45.516],false]:false:false:0:0:31:1:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:28:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:28:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:28:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:28:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 14:29:00 HiveExt: [Information] Method: 201 Params: 41:[218,[7823.62,2392.42,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:29:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:09 HiveExt: [Information] Method: 201 Params: 41:[218,[7823.62,2392.42,31.645]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:29:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:22 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:1:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:22 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:23 HiveExt: [Information] Method: 201 Params: 41:[256,[7822.98,2392.69,31.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:29:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:29:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:29:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 14:30:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:30:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:30:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 14:31:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:31:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:31:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 14:32:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:32:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:32:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 14:33:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:33:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:33:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 14:34:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:34:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:34:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 14:35:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:35:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:35:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 14:36:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 14:36:05 HiveExt: [Information] Result: ["PASS",false,"41",[256,[10342.3,3797.5,0]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemGoldBar10oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2724,2735,2735],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 14:36:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 14:36:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:06 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 14:36:06 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1596.76,568.672,39.302],false],[4,5,2,3],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[256,[10342.3,3797.5,0]],2803,11]
2017-10-04 14:36:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 14:36:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:07 HiveExt: [Information] Method: 201 Params: 41:[256,[10341.7,3797.26,0.257]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:36437:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 14:36:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 14:36:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:19 HiveExt: [Information] Method: 201 Params: 41:[178,[10339,3781.62,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:31 HiveExt: [Information] Method: 201 Params: 41:[178,[10336.7,3716.74,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:65:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:44 HiveExt: [Information] Method: 201 Params: 41:[169,[10347.4,3655.51,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:62:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:36:56 HiveExt: [Information] Method: 201 Params: 41:[267,[10333.5,3606.12,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:52:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:36:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:36:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:36:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 14:37:08 HiveExt: [Information] Method: 201 Params: 41:[202,[10316.8,3617.21,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:20:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:08 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemBriefcase70oz,ItemBriefcaseS90oz,ItemGoldBar2oz,plot_pole_kit],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1,2]],[[],[]]]:
2017-10-04 14:37:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:41 HiveExt: [Information] Method: 201 Params: 41:[202,[10316.9,3617.24,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,plot_pole_kit,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:41 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 14:37:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:48 HiveExt: [Information] Method: 201 Params: 41:[355,[10320.1,3618.21,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,plot_pole_kit,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1596.76,568.672,39.302],false]:false:false:0:0:3:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:37:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:37:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:37:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:37:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 14:38:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:38:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:38:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 14:39:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:36 HiveExt: [Information] Method: 201 Params: 41:[179,[10323.4,3619.91,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1646.06,609.447,32.829],false]:false:false:0:0:4:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:39:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:39:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:39:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:39:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 14:40:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:40:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:40:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 14:41:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:41:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 14:41:51 HiveExt: [Information] Method: 201 Params: 41:[183,[10323.4,3619.92,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1675.86,623.681,29.541],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:41:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:33 HiveExt: [Information] Method: 201 Params: 41:[183,[10323.4,3619.92,4.373]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:42:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:46 HiveExt: [Information] Method: 201 Params: 41:[44,[10343.6,3613.57,-1.373e-04]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:22:0:[[DMR_DZ,amovpercmwlksraswrfldfr,42],[]]:0:0::0:
2017-10-04 14:42:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:42:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:42:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 14:42:58 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:27:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:42:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:43:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:43:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 14:44:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:01 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1705.66,637.914,26.253],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:44:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:44:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:44:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:44:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 14:45:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:45:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:45:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 14:46:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:05 HiveExt: [Information] Method: 201 Params: 41:[86,[10318,3621.27,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemGoldBar10oz,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1741.46,660.315,21.985],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:46:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:46:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:46:49 HiveExt: [Information] Method: 201 Params: 41:[102,[10315.2,3624.82,10.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:46:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:46:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:46:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 14:47:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:05 HiveExt: [Information] Method: 201 Params: 41:[87,[10322.1,3619.72,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemGoldBar10oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:47:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:17 HiveExt: [Information] Method: 201 Params: 41:[89,[10327.2,3619.59,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:47:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:36 HiveExt: [Information] Method: 201 Params: 41:[83,[10330.4,3620.89,9.362]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:3:0:[[DMR_DZ,amovpercmrunslowwrfldf_amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:47:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:47:48 HiveExt: [Information] Method: 201 Params: 41:[92,[10325.3,3619.88,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase70oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1771.52,674.898,18.656],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:47:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:47:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:47:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 14:48:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:48:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:48:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 14:49:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:19 HiveExt: [Information] Method: 201 Params: 41:[77,[10324.3,3618.09,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:2:2:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 14:49:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:49:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:49:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 14:49:53 HiveExt: [Information] Method: 201 Params: 41:[92,[10345.1,3620.44,0.026]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:21:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:49:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:05 HiveExt: [Information] Method: 201 Params: 41:[280,[10340.1,3616.47,2.245]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:50:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:17 HiveExt: [Information] Method: 201 Params: 41:[113,[10327.2,3623.09,10.942]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmwlksraswrfldfl,42],[]]:0:0::0:
2017-10-04 14:50:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:29 HiveExt: [Information] Method: 201 Params: 41:[261,[10348.5,3617.32,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1803.55,692.165,15.004],false]:false:false:0:0:22:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady02,42],[]]:0:0::0:
2017-10-04 14:50:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:50:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:50:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 14:50:56 HiveExt: [Information] Method: 201 Params: 41:[272,[10330,3616.9,9.118]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemGoldBar10oz,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:18:1:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 14:50:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:51:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:28 HiveExt: [Information] Method: 201 Params: 41:[137,[10324.3,3622.11,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:8:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 14:51:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:51:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:51:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:51:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 14:52:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:02 HiveExt: [Information] Method: 201 Params: 41:[91,[10325.3,3622.07,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:1:1:[[G17_SD_FL_DZ,amovpercmstpsraswpstdnon_gear,42],[]]:0:0::0:
2017-10-04 14:52:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:52:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:33 HiveExt: [Information] Method: 201 Params: 41:[15,[10330,3617.84,9.175]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1843.55,720.282,10.05],false]:false:false:0:0:6:0:[[G17_SD_FL_DZ,amovpknlmstpsraswpstdnon_gear,42],[]]:0:0::0:
2017-10-04 14:52:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:52:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:52:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:52:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 14:53:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:39 HiveExt: [Information] Method: 201 Params: 41:[116,[10328.7,3619.49,10.164]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:2:1:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady03,42],[]]:0:0::0:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:39 HiveExt: [Information] Method: 201 Params: 41:[116,[10328.7,3619.49,10.164]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady03,42],[]]:0:0::0:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:39 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 14:53:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 14:53:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:53:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:53:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 14:54:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:54:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:54:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 14:55:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 14:55:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 14:55:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:52:14 HiveExt: [Information] HiveExt 
2017-10-04 15:52:14 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 15:52:14 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 15:52:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:52:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 15:52:14 HiveExt: [Information] Updating 1 Object_Data ObjectUID
2017-10-04 15:52:14 HiveExt: [Information] Result: ["ObjectStreamStart",504,"bfffa852289abbd3bc717a913e4fd1cd"]
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 15:52:14 HiveExt: [Information] Result: "ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf"
2017-10-04 15:52:14 HiveExt: [Information] Method: 302 Params: ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf:false:
2017-10-04 15:52:14 HiveExt: [Information] Result: ["NOTICE","ObjectData881333ab3b3bb447337e9a7d97ec4937.sqf has been deleted"]
2017-10-04 15:53:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:23 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS",false,"41",[116,[10328.7,3619.49,10.164]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","FoodCanBoneboy","ItemPainkiller"],[1,1,1,1,1,1]]],[2735,2812,2812],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 15:53:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:23 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1877.55,740.232,6.076],false],[4,5,2,3],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady03",42],[]],[116,[10328.7,3619.49,10.164]],2803,11]
2017-10-04 15:53:23 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 15:53:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 15:53:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:53:51 HiveExt: [Information] Method: 201 Params: 41:[295,[10323.9,3620.41,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:36530:56:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 15:53:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:51 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 15:53:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:53:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:53:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 15:54:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:03 HiveExt: [Information] Method: 201 Params: 41:[98,[10344.3,3617.59,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 15:54:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:14 HiveExt: [Information] Method: 201 Params: 41:[98,[10344.4,3617.57,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:54:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:27 HiveExt: [Information] Method: 201 Params: 41:[325,[10322.5,3607.21,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:28:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 15:54:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:39 HiveExt: [Information] Method: 201 Params: 41:[106,[10315.8,3612.51,2.642]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 15:54:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:51 HiveExt: [Information] Method: 201 Params: 41:[89,[10342.1,3618.82,0.406]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,FoodCanBoneboy,ItemPainkiller],[1,1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1877.55,740.232,6.076],false]:false:false:0:0:29:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady03,42],[]]:0:0::0:
2017-10-04 15:54:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:54:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:54:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 15:54:59 HiveExt: [Information] Method: 201 Params: 41:[88,[10342.5,3619.09,0.065]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:54:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:12 HiveExt: [Information] Method: 201 Params: 41:[45,[10342.1,3619.31,0.432]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:55:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:34 HiveExt: [Information] Method: 201 Params: 41:[269,[10342.9,3620.22,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1510.2,764.79,2.015],false]:false:false:0:0:1:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:55:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:55:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:55:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:55:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 15:56:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:09 HiveExt: [Information] Method: 201 Params: 41:[268,[10342.9,3620.22,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:40 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:4:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:42 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:56:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:56:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 15:56:56 HiveExt: [Information] Method: 201 Params: 41:[103,[10342.7,3615.87,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:56:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:22 HiveExt: [Information] Method: 201 Params: 41:[42,[10343,3615.73,0.021]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:57:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:35 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3618.02,5.402]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1520.45,770.974,0.807],false]:false:false:0:0:7:0:[[DMR_DZ,amovpercmstpsraswrfldnon_amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 15:57:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:57:47 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3617.86,5.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:57:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:57:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:57:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 15:58:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:24 HiveExt: [Information] Method: 201 Params: 41:[71,[10336.4,3617.86,5.322]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:58:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 15:58:54 HiveExt: [Information] Method: 201 Params: 41:[94,[10336.9,3618.13,5.071]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 15:58:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:18 HiveExt: [Information] Method: 201 Params: 41:[358,[10347.4,3618.35,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1554.67,791.216,0],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 15:59:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 15:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 15:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 15:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:00:02 HiveExt: [Information] Method: 201 Params: 41:[263,[10349.9,3618.74,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:00:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:30 HiveExt: [Information] Method: 201 Params: 41:[223,[10348.2,3617.13,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:00:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:00:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 16:00:59 HiveExt: [Information] Method: 201 Params: 41:[223,[10348.2,3617.13,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:00:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:01:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:42 HiveExt: [Information] Method: 201 Params: 41:[266,[10359.6,3619.75,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1585.8,807.258,0],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:01:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:01:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:01:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:01:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 16:02:02 HiveExt: [Information] Method: 201 Params: 41:[264,[10351.3,3621.02,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:8:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:02:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:15 HiveExt: [Information] Method: 201 Params: 41:[347,[10348.9,3620.98,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmwlksraswrfldl,42],[]]:0:0::0:
2017-10-04 16:02:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:02:49 HiveExt: [Information] Method: 201 Params: 41:[354,[10348.6,3620.7,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:02:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:02:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:02:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 16:03:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:32 HiveExt: [Information] Method: 201 Params: 41:[1,[10346.3,3620.11,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1617.91,824.641,0],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:03:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:03:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:03:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:03:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 16:04:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:22 HiveExt: [Information] Method: 201 Params: 41:[89,[10337.3,3617.49,4.6]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:04:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:04:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:04:52 HiveExt: [Information] Method: 201 Params: 41:[85,[10340.4,3620.45,2.252]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:4:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:04:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:04:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:04:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 16:05:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:43 HiveExt: [Information] Method: 201 Params: 41:[35,[10323.1,3617.87,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1647.88,839.108,0],false]:false:false:0:0:18:1:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:05:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:05:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:05:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 16:05:55 HiveExt: [Information] Method: 201 Params: 41:[314,[10337.3,3617.92,4.736]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:05:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:25 HiveExt: [Information] Method: 201 Params: 41:[314,[10337.3,3617.92,4.736]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:06:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:38 HiveExt: [Information] Method: 201 Params: 41:[135,[10320.7,3623.52,10.884]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:18:1:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:06:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:06:52 HiveExt: [Information] Method: 201 Params: 41:[142,[10320.9,3623.33,10.932]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1684.03,861.975,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:06:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:06:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 16:07:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:07:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:07:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 16:08:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:20 HiveExt: [Information] Method: 201 Params: 41:[183,[10321,3622.59,11.129]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:08:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:33 HiveExt: [Information] Method: 201 Params: 41:[93,[10315.5,3623.72,10.714]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:08:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:08:46 HiveExt: [Information] Method: 201 Params: 41:[91,[10310.1,3622.78,11.027]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1718.41,882.45,0],false]:false:false:0:0:6:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:08:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:08:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:08:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 16:09:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:09:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:09:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 16:10:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:34 HiveExt: [Information] Method: 201 Params: 41:[91,[10316.7,3615.51,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:10:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:10:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:10:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:10:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:10:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 16:11:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:41 HiveExt: [Information] Method: 201 Params: 41:[85,[10325.6,3615.18,14.02]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:9:2:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:11:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:11:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:11:53 HiveExt: [Information] Method: 201 Params: 41:[276,[10317.2,3624.8,10.329]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1757.26,908.992,0],false]:false:false:0:0:13:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 16:11:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:11:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:11:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 16:12:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:37 HiveExt: [Information] Method: 201 Params: 41:[227,[10327.6,3622.95,10.911]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:1:11:1:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:1::-50:
2017-10-04 16:12:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:12:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:12:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:12:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 16:13:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:13:48 HiveExt: [Information] Method: 201 Params: 41:[234,[10316.7,3624.19,10.546]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:11:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:13:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:13:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:13:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 16:14:00 HiveExt: [Information] Method: 201 Params: 41:[179,[10336.8,3621.27,6.227]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:20:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady04,42],[]]:0:0::0:
2017-10-04 16:14:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:14:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:14:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 16:15:04 HiveExt: [Information] HiveExt 
2017-10-04 16:15:04 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 16:15:04 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 16:15:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: ["ObjectStreamStart",504,"e3ab9585b0638b7e49d0a5c627f44d8b"]
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: "ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf"
2017-10-04 16:15:04 HiveExt: [Information] Method: 302 Params: ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf:false:
2017-10-04 16:15:04 HiveExt: [Information] Result: ["NOTICE","ObjectDatabfffa852289abbd3bc717a913e4fd1cd.sqf has been deleted"]
2017-10-04 16:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:17 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:15:17 HiveExt: [Information] Result: ["PASS",false,"41",[179,[10336.8,3621.27,6.227]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["FoodCanTylers","ItemSodaLemonade","ItemSodaDrwaste","ItemSodaMzly","ItemPainkiller"],[1,1,1,1,1]]],[2812,2834,2834],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:15:17 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:15:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:31 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1792.41,930.517,0],false],[4,6,2,4],[["DMR_DZ","aidlpercmstpsraswrfldnon_idlesteady04",42],[]],[179,[10336.8,3621.27,6.227]],2753,11]
2017-10-04 16:15:31 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:15:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:32 HiveExt: [Information] Method: 201 Params: 41:[179,[10336.9,3621.2,6.123]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:36540:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:15:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:33 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:15:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:15:49 HiveExt: [Information] Method: 201 Params: 41:[102,[10337.1,3621.22,5.919]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:15:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:15:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:15:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,15]]
2017-10-04 16:16:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:05 HiveExt: [Information] Method: 201 Params: 41:[90,[10321.2,3618.65,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:16:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:16:05 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector],[1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz],[1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,5,2,1,1,1]],[[],[]]]:
2017-10-04 16:16:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:16:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:16:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:16:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,16]]
2017-10-04 16:17:00 HiveExt: [Information] Method: 201 Params: 41:[90,[10320.6,3618.62,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:1:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:13 HiveExt: [Information] Method: 201 Params: 41:[91,[10305.6,3617.8,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:19 HiveExt: [Information] Method: 201 Params: 41:[91,[10305.6,3617.8,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1792.41,930.517,0],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:17:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:17:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:17:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:17:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,17]]
2017-10-04 16:18:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:06 HiveExt: [Information] Method: 201 Params: 41:[273,[10297,3618.83,10.751]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:18:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:18 HiveExt: [Information] Method: 201 Params: 41:[31,[10261.8,3632.28,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:38:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_aiming02,42],[]]:0:0::0:
2017-10-04 16:18:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:42 HiveExt: [Information] Method: 201 Params: 41:[338,[10256.5,3642.61,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:12:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady03,42],[]]:0:0::0:
2017-10-04 16:18:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:18:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:18:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,18]]
2017-10-04 16:18:55 HiveExt: [Information] Method: 201 Params: 41:[348,[10250,3662.63,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:21:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:18:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:07 HiveExt: [Information] Method: 201 Params: 41:[313,[10237.8,3725.45,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:64:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:19 HiveExt: [Information] Method: 201 Params: 41:[93,[10265.4,3776.28,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:58:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:31 HiveExt: [Information] Method: 201 Params: 41:[168,[10318.9,3749.31,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1825.21,948.834,0],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:43 HiveExt: [Information] Method: 201 Params: 41:[164,[10340.4,3685.18,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:68:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 16:19:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:19:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:19:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,19]]
2017-10-04 16:19:55 HiveExt: [Information] Method: 201 Params: 41:[229,[10348.1,3625.21,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:19:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:07 HiveExt: [Information] Method: 201 Params: 41:[4,[10311.2,3622.5,11.212]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:37:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:20:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:19 HiveExt: [Information] Method: 201 Params: 41:[268,[10316.6,3617.76,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:7:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:20:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:32 HiveExt: [Information] Method: 201 Params: 41:[157,[10311.6,3617.07,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[FoodCanTylers,ItemSodaLemonade,ItemSodaDrwaste,ItemSodaMzly,ItemPainkiller],[1,1,1,1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1881.54,999.176,0],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:37 HiveExt: [Information] Method: 201 Params: 41:[157,[10311.6,3617.07,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemSodaLemonade,ItemSodaDrwaste,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1580.15,1025.6,0],false]:false:false:0:0:0:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:42 HiveExt: [Information] Method: 201 Params: 41:[69,[10311.5,3616.99,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemSodaLemonade,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1576.33,682.521,90],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:42 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:20:47 HiveExt: [Information] Method: 201 Params: 41:[44,[10311.5,3616.96,11.214]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:20:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:20:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:20:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,20]]
2017-10-04 16:21:00 HiveExt: [Information] Method: 201 Params: 41:[89,[10338.1,3618.92,4.632]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:27:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:21:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:04 HiveExt: [Information] Method: 201 Params: 41:[89,[10338.1,3618.92,4.632]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:21:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:18 HiveExt: [Information] Method: 201 Params: 41:[278,[10332,3619.95,8.348]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:1:1:6:0:[[G17_SD_FL_DZ,amovpknlmrunsraswpstdfr,42],[]]:0:0::5:
2017-10-04 16:21:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:30 HiveExt: [Information] Method: 201 Params: 41:[270,[10326.8,3620.08,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1571.99,176.072,179.892],false]:false:false:0:0:5:0:[[G17_SD_FL_DZ,amovpknlmrunsraswpstdb,42],[]]:0:0::0:
2017-10-04 16:21:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:21:47 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:1:1:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:47 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.152]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:47 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:21:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:21:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:21:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,21]]
2017-10-04 16:22:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:09 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS",false,"41",[269,[10327.4,3620.23,11.152]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemKnifeBlunt","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",19],"20Rnd_762x51_DMR","ItemLightBulb","ItemBriefcase50oz","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],"M110_NVG_EP1"],["DZ_Backpack_EP1",[[],[]],[["ItemSodaMzly","ItemPainkiller"],[1,1]]],[2834,2841,2841],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:22:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:09 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1590.7,189.898,177.534],false],[5,7,2,4],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady01",42],[]],[269,[10327.4,3620.23,11.152]],2758,11]
2017-10-04 16:22:09 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:22:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:10 HiveExt: [Information] Method: 201 Params: 41:[269,[10327.4,3620.23,11.231]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:36533:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:10 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:22:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:14 HiveExt: [Information] Method: 101 Params: 76561198094271230:11:zarix:
2017-10-04 16:22:14 HiveExt: [Information] Created a new player 76561198094271230 named 'zarix'
2017-10-04 16:22:14 HiveExt: [Information] Created a new character 49 for player 'zarix' (76561198094271230)
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS",true,"49",0,"",[],0,0,0.97]
2017-10-04 16:22:14 HiveExt: [Information] Method: 203 Params: 49:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolBox],[ItemBandage,ItemBandage,ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle]]:[DZ_ALICE_Pack_EP1,[],[]]:
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:14 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:2:
2017-10-04 16:22:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:20 HiveExt: [Information] Method: 102 Params: 49:
2017-10-04 16:22:20 HiveExt: [Information] Result: ["PASS",[],[0,0,0,0],[],[],2500,11]
2017-10-04 16:22:20 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:1:
2017-10-04 16:22:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:21 HiveExt: [Information] Method: 201 Params: 49:[360,[6241.24,2070.85,1999.84]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:34464:1:[[,amovpercmstpsnonwnondnon_zevl,37],[]]:0:0:Survivor2_DZ:0:
2017-10-04 16:22:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:21 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:0:
2017-10-04 16:22:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:35 HiveExt: [Information] Method: 201 Params: 49:[334,[6241.01,2071.43,1372.53]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:627:0:[[,acrgpknlmstpsnonwnondnon_amovpercmstpsnonwnondnon_getoutlow,37],[]]:0:0::0:
2017-10-04 16:22:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:22:46 HiveExt: [Information] Method: 201 Params: 41:[102,[10340.1,3618.14,2.585]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:13:0:[[G17_SD_FL_DZ,amovpercmrunslowwrfldf,42],[]]:0:0::0:
2017-10-04 16:22:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:49 HiveExt: [Information] Method: 201 Params: 49:[334,[6241.01,2071.44,430.683]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:942:0:[[,acrgpknlmstpsnonwnondnon_amovpercmstpsnonwnondnon_getoutlow,37],[]]:0:0::0:
2017-10-04 16:22:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:22:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:22:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,22]]
2017-10-04 16:23:00 HiveExt: [Information] Method: 201 Params: 41:[303,[10316.6,3616.73,4.367]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],20Rnd_762x51_DMR,ItemLightBulb,ItemBriefcase50oz,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],M110_NVG_EP1]:[DZ_Backpack_EP1,[[],[]],[[ItemSodaMzly,ItemPainkiller],[1,1]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:25:0:[[G17_SD_FL_DZ,amovpknlmstpslowwrfldnon,42],[]]:0:0::0:
2017-10-04 16:23:00 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 305 Params: 0:[334.136,[6193.37,2154.853,235.687]]:1:
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 201 Params: 49:[334,[6193.37,2154.85,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:17 HiveExt: [Information] Method: 305 Params: 0:[65.823,[6164.052,2265.583,162.634]]:1:
2017-10-04 16:23:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:17 HiveExt: [Information] Method: 201 Params: 49:[334,[6164.05,2265.58,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:24 HiveExt: [Information] Method: 201 Params: 41:[303,[10316.6,3616.73,4.367]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],DMR_DZ]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:0:1:[[G17_SD_FL_DZ,amovpercmstpslowwrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:23:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:24 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,20Rnd_762x51_DMR,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 16:23:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:31 HiveExt: [Information] Method: 305 Params: 0:[333.336,[6181.29,2295.863,85.497]]:1:
2017-10-04 16:23:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:31 HiveExt: [Information] Method: 201 Params: 49:[334,[6181.29,2295.86,0]]:[]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:1:[[,,37],[]]:0:0::0:
2017-10-04 16:23:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:38 HiveExt: [Information] Method: 305 Params: 0:[12.311,[6163.985,2325.374,52.321]]:1:
2017-10-04 16:23:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:38 HiveExt: [Information] Method: 201 Params: 49:[334,[6163.98,2325.37,0]]:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolbox],[ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle,ItemBandage,ItemBandage],]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 305 Params: 0:[351.217,[6162.834,2326.082,49.246]]:1:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 201 Params: 49:[334,[6616.07,1857.74,0]]:[[ItemFlashlight,ItemMap,ItemCompass,ItemRadio,ItemToolbox],[ItemPainkiller,ItemMorphine,ItemAntibiotic,ItemBloodbag,FoodCanBakedBeans,ItemWaterBottle,ItemBandage,ItemBandage],]:[DZ_ALICE_Pack_EP1,[[MR43_DZ],[1]],[[2Rnd_12Gauge_Buck],[3]]]:[false,false,false,false,false,false,false,12000,[],[0,0],0,A,true,[0,0,0],false]:false:false:0:0:0:0:[[,,37],[]]:0:0::0:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:39 HiveExt: [Information] Method: 103 Params: 76561198094271230:49:3:
2017-10-04 16:23:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:45 HiveExt: [Information] Method: 201 Params: 41:[156,[10328.5,3597.52,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],DMR_DZ]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:23:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:23:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:23:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:23:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,23]]
2017-10-04 16:23:54 HiveExt: [Information] Method: 201 Params: 41:[156,[10345.1,3573.62,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemKnifeBlunt,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:29:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:23:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:01 HiveExt: [Information] Method: 201 Params: 41:[121,[10348.9,3569.42,0.002]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1590.7,189.898,177.534],false]:false:false:0:0:6:0:[[,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:24:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:13 HiveExt: [Information] Method: 201 Params: 41:[315,[10357,3600.69,0.001]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:33:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:24:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:25 HiveExt: [Information] Method: 201 Params: 41:[248,[10322.9,3617.69,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:38:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:24:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:24:44 HiveExt: [Information] Method: 201 Params: 41:[64,[10322.8,3617.49,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:24:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:24:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:24:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,24]]
2017-10-04 16:25:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:18 HiveExt: [Information] Method: 201 Params: 41:[84,[10325.6,3619.86,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1633.19,221.398,172.174],false]:false:false:0:0:4:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:25:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:25:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:25:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:25:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,25]]
2017-10-04 16:26:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:38 HiveExt: [Information] Method: 201 Params: 41:[100,[10324.7,3618.26,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:26:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:26:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:26:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:26:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,26]]
2017-10-04 16:27:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:09 HiveExt: [Information] Method: 201 Params: 41:[90,[10333.7,3619.29,7.371]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:9:1:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:27:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:25 HiveExt: [Information] Method: 201 Params: 41:[108,[10322.8,3622.29,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:11:0:[[DMR_DZ,amovpercmrunsraswrfldfl,42],[]]:0:0::0:
2017-10-04 16:27:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:33 HiveExt: [Information] Method: 201 Params: 41:[269,[10342.8,3619.45,0.021]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:20:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:27:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:27:45 HiveExt: [Information] Method: 201 Params: 41:[168,[10327.4,3619.17,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1668.26,242.807,168.026],false]:false:false:0:0:15:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:27:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:27:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:27:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,27]]
2017-10-04 16:28:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:39 HiveExt: [Information] Method: 201 Params: 41:[168,[10327.4,3619.17,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:0:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:28:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:28:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:28:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:28:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,28]]
2017-10-04 16:29:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:39 HiveExt: [Information] Method: 201 Params: 41:[274,[10336.2,3619.13,5.974]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:9:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:29:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:29:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:29:53 HiveExt: [Information] Method: 201 Params: 41:[272,[10338.3,3618.99,4.521]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1706.59,268.649,163.345],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:29:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:29:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:29:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,29]]
2017-10-04 16:30:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:33 HiveExt: [Information] Method: 201 Params: 41:[93,[10326.3,3619.36,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:30:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:30:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:30:45 HiveExt: [Information] Method: 201 Params: 41:[290,[10342.2,3617.03,0.365]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:16:0:[[DMR_DZ,amovpercmrunsraswrfldbl,42],[]]:0:0::0:
2017-10-04 16:30:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:30:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:30:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,30]]
2017-10-04 16:31:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:15 HiveExt: [Information] Method: 201 Params: 41:[265,[10330.3,3619.29,8.925]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,20Rnd_762x51_DMR,ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:12:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:31:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:31:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:31:49 HiveExt: [Information] Method: 201 Params: 41:[359,[10329.6,3617.48,9.495]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:2:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:31:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:31:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:31:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,31]]
2017-10-04 16:32:02 HiveExt: [Information] Method: 201 Params: 41:[307,[10312.6,3622.65,11.098]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,19],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1739.39,286.965,159.568],false]:false:false:0:0:18:0:[[DMR_DZ,amovpknlmwlksraswrfldl,42],[]]:0:0::0:
2017-10-04 16:32:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:39 HiveExt: [Information] Method: 201 Params: 41:[97,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:1:1:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:2::-100:
2017-10-04 16:32:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:49 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:32:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:32:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:32:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,32]]
2017-10-04 16:32:59 HiveExt: [Information] Method: 201 Params: 41:[94,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:32:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:12 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:1:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:33:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:13 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.81]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:0:0:[[DMR_DZ,amovppnemstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:13 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:33:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:33:48 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS",false,"41",[79,[10313.4,3623.46,10.81]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",17],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2841,2853,2853],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 16:33:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:48 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,false,12028.3,[],[0,0],0,"O",true,[1785.69,323.657,153.585],false],[5,8,2,6],[["DMR_DZ","amovppnemstpsraswrfldnon",42],[]],[79,[10313.4,3623.46,10.81]],2658,11]
2017-10-04 16:33:48 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 16:33:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:49 HiveExt: [Information] Method: 201 Params: 41:[79,[10313.4,3623.46,10.808]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1785.69,323.657,153.585],false]:false:false:0:0:36520:1:[[,aidlpercmstpslowwrfldnon_player_0s,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 16:33:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:49 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 16:33:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:33:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:33:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,33]]
2017-10-04 16:34:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:34:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:34:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,34]]
2017-10-04 16:35:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:35:53 HiveExt: [Information] Method: 201 Params: 41:[86,[10315.3,3623.1,10.938]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:2:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:35:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:35:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:35:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,35]]
2017-10-04 16:36:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:18 HiveExt: [Information] Method: 201 Params: 41:[303,[10327.4,3620.54,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:12:0:[[DMR_DZ,amovpknlmrunsraswrfldb,42],[]]:0:0::0:
2017-10-04 16:36:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:25 HiveExt: [Information] Method: 201 Params: 41:[353,[10327.2,3620.88,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:36:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:36:52 HiveExt: [Information] Method: 201 Params: 41:[357,[10326.7,3619.92,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:1:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:36:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:36:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:36:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,36]]
2017-10-04 16:37:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:23 HiveExt: [Information] Method: 201 Params: 41:[359,[10322,3620.46,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:5:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:37:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:37:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:37:49 HiveExt: [Information] Method: 201 Params: 41:[331,[10321.4,3618.42,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1807.73,338.357,150.903],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:37:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:37:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:37:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,37]]
2017-10-04 16:38:01 HiveExt: [Information] Method: 201 Params: 41:[277,[10316.4,3624.21,10.541]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:8:0:[[DMR_DZ,amovpknlmrunsraswrfldr,42],[]]:0:0::0:
2017-10-04 16:38:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:23 HiveExt: [Information] Method: 201 Params: 41:[342,[10318.1,3620.54,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:38:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:38:54 HiveExt: [Information] Method: 201 Params: 41:[293,[10319.4,3622.11,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:2:1:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:38:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:38:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:38:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,38]]
2017-10-04 16:39:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:10 HiveExt: [Information] Method: 201 Params: 41:[181,[10324.6,3620.31,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:6:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:39:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:38 HiveExt: [Information] Method: 201 Params: 41:[97,[10330.5,3619.31,8.754]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:6:0:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:39:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:39:51 HiveExt: [Information] Method: 201 Params: 41:[271,[10341.4,3618.32,1.165]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1833.59,358.249,147.598],false]:false:false:0:0:11:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:39:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:39:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:39:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 16:40:03 HiveExt: [Information] Method: 201 Params: 41:[96,[10324.3,3622.05,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:18:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:11 HiveExt: [Information] Method: 201 Params: 41:[96,[10324.3,3622.05,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:29 HiveExt: [Information] Method: 201 Params: 41:[236,[10338.6,3623.56,3.955]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:14:0:[[DMR_DZ,amovpercmrunsraswrfldbr,42],[]]:0:0::0:
2017-10-04 16:40:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:40 HiveExt: [Information] Method: 201 Params: 41:[247,[10326.2,3619.55,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:40:53 HiveExt: [Information] Method: 201 Params: 41:[1,[10325.8,3617.62,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:2:1:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 16:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:40:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:40:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 16:41:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:08 HiveExt: [Information] Method: 201 Params: 41:[1,[10323.7,3617.96,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:2:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:41:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:34 HiveExt: [Information] Method: 201 Params: 41:[121,[10316.4,3624.47,10.446]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:10:0:[[DMR_DZ,amovpercmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:41:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:41:46 HiveExt: [Information] Method: 201 Params: 41:[267,[10336.3,3621.49,6.779]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1868.87,390.974,142.754],false]:false:false:0:0:20:1:[[DMR_DZ,amovpercmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:41:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:41:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:41:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 16:42:01 HiveExt: [Information] Method: 201 Params: 41:[278,[10336.2,3617.91,5.509]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:4:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:42:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:42:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:40 HiveExt: [Information] Method: 201 Params: 41:[268,[10337.1,3621.55,5.887]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:42:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:42:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:42:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 16:42:59 HiveExt: [Information] Method: 201 Params: 41:[273,[10328.1,3619.57,10.682]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:9:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:42:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:15 HiveExt: [Information] Method: 201 Params: 41:[202,[10312.3,3617.4,11.214]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:16:0:[[DMR_DZ,amovpknlmrunsraswrfldfr,42],[]]:0:0::0:
2017-10-04 16:43:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:27 HiveExt: [Information] Method: 201 Params: 41:[270,[10317,3621.61,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1897.94,415.241,138.924],false]:false:false:0:0:6:0:[[DMR_DZ,amovpknlmrunsraswrfldf,42],[]]:0:0::0:
2017-10-04 16:43:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:43:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:43:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:43:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 16:44:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:44:47 HiveExt: [Information] Method: 201 Params: 41:[268,[10317.1,3621.82,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1929.11,442.366,134.751],false]:false:false:0:0:0:2:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:44:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:44:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:44:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 16:45:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:30 HiveExt: [Information] Method: 201 Params: 41:[3,[10316,3618.36,11.214]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1929.11,442.366,134.751],false]:false:false:0:0:4:0:[[DMR_DZ,amovpknlmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:45:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:45:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:45:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:45:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 16:46:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:46:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:46:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 16:47:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:18 HiveExt: [Information] Method: 201 Params: 41:[101,[10313.6,3623.15,15.396]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,false,12028.3,[],[0,0],0,O,true,[1953.04,459.633,131.761],false]:false:false:0:0:7:2:[[DMR_DZ,amovpercmwlksraswrfldr,42],[]]:0:0::0:
2017-10-04 16:47:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:47:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:47:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:47:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 16:48:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:14 HiveExt: [Information] Method: 201 Params: 41:[91,[10328.1,3619.06,10.667]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:1:1:16:1:[[DMR_DZ,amovpercmrunsraswrfldf,42],[]]:0:0::5:
2017-10-04 16:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:29 HiveExt: [Information] Method: 201 Params: 41:[264,[10340.6,3619.81,2.033]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmrunsraswrfldbl,42],[]]:0:0::0:
2017-10-04 16:48:29 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:41 HiveExt: [Information] Method: 201 Params: 41:[264,[10321.7,3618.06,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:19:0:[[DMR_DZ,amovpercmwlksraswrfldb,42],[]]:0:0::0:
2017-10-04 16:48:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:48:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:48:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:48:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 16:49:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:49:49 HiveExt: [Information] Method: 201 Params: 41:[309,[10317.3,3621.74,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,17],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:6:2:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:49:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:49:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:49:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 16:50:02 HiveExt: [Information] Method: 201 Params: 41:[309,[10317.3,3621.72,11.152]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[1988.55,492.417,126.894],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 16:50:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:16 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:12:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:19 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:20 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,10.004]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpknlmstpsraswrfldnon,42],[]]:0:0::0:
2017-10-04 16:50:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:20 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 16:50:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:50:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:50:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:50:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 16:51:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:51:52 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.004:
2017-10-04 16:51:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:51:52 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.005:
2017-10-04 16:51:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 16:51:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:51:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 16:52:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:52:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:52:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 16:53:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:53:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:53:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 16:54:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:54:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:54:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 16:55:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:55:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:55:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 16:56:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:56:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:56:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 16:57:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:57:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:57:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 16:58:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:58:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:58:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 16:59:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 16:59:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 16:59:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:00:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:00:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:00:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 17:01:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:01:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:01:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 17:02:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:02:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:02:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 17:03:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:03:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:03:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 17:04:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:04:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:04:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 17:05:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:05:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:05:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 17:06:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:06:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:06:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 17:07:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:07:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:07:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 17:08:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:08:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:08:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 17:09:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:09:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:09:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 17:10:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:10:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:10:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 17:11:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:11:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:11:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 17:12:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:12:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:12:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 17:13:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:13:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:13:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 17:14:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:14:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:14:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 17:15:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:15:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:15:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 17:16:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:16:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:16:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 17:17:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:17:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:17:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 17:18:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:18:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:18:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 17:19:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:19:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:19:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 17:20:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:20:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:20:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 17:21:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:21:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:21:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 17:22:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:22:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:22:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 17:23:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:23:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:23:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 17:24:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:24:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:24:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 17:25:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:25:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:25:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 17:26:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:26:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:26:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 17:27:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:27:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:27:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 17:28:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:28:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:28:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 17:29:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:29:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:29:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 17:30:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:30:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:30:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 17:31:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:31:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:31:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 17:32:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:32:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:32:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 17:33:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:33:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:33:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 17:34:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:34:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:34:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 17:35:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:35:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:35:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 17:36:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:36:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:36:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 17:37:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:37:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:37:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 17:38:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:38:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 17:38:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:38:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 17:39:29 HiveExt: [Information] HiveExt 
2017-10-04 17:39:29 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:39:29 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:39:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: ["ObjectStreamStart",504,"24ebb3ec96a253c1b229f339d12fbf4f"]
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: "ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf"
2017-10-04 17:39:29 HiveExt: [Information] Method: 302 Params: ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf:false:
2017-10-04 17:39:29 HiveExt: [Information] Result: ["NOTICE","ObjectDatae3ab9585b0638b7e49d0a5c627f44d8b.sqf has been deleted"]
2017-10-04 17:39:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:39:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:39:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,39]]
2017-10-04 17:40:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS",false,"41",[95,[10329.6,3621.69,10.004]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2853,2919,2919],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:40:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:05 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS",false,"41",[95,[10329.6,3621.69,10.004]],[["Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge","DMR_DZ"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2853,2919,2919],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:40:05 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:40:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:06 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,"O",true,[2025.07,524.908,121.962],false],[6,9,2,6],[["DMR_DZ","amovpknlmstpsraswrfldnon",42],[]],[95,[10329.6,3621.69,10.004]],2663,11]
2017-10-04 17:40:06 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:06 HiveExt: [Information] Method: 201 Params: 41:[95,[10329.6,3621.69,9.968]]:[[Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge,DMR_DZ],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:36534:1:[[,amovpercmstpslowwrfldnon_amovpercmstpsraswrfldnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 17:40:06 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:07 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 17:40:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:28 HiveExt: [Information] Method: 201 Params: 41:[100,[10341.7,3617.07,0.847]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:13:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:40:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:40 HiveExt: [Information] Method: 201 Params: 41:[323,[10317,3614.75,3.846]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:26:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 17:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:40 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,20Rnd_762x51_DMR,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:40:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:40:53 HiveExt: [Information] Method: 201 Params: 41:[281,[10315.7,3616.21,4.255]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:2:1:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 17:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:53 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemSodaMtngreen,ItemBloodbag,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,1,1,5,2,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:40:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:40:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:40:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,40]]
2017-10-04 17:41:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:20 HiveExt: [Information] Method: 201 Params: 41:[281,[10315.7,3616.21,4.255]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2025.07,524.908,121.962],false]:false:false:0:0:0:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 17:41:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:20 HiveExt: [Information] Method: 303 Params: 22:[[[M14_CCO_DZ,Binocular_Vector,M110_NVG_EP1],[1,1,1]],[[5Rnd_762x54_Mosin,ItemWoodWallLg,ItemWoodFloor,ItemWoodFloorHalf,ItemWoodFloorQuarter,ItemWoodLadder,ItemWoodStairs,ItemWoodWallWindowLg,Attachment_Ghillie,ItemAntibiotic,ItemSodaOrangeSherbet,ItemMorphine,ItemPainkiller,ItemWaterBottle,ItemTent,Attachment_SCOPED,ItemLightBulb,ItemRuby,ItemGoldBar2oz,plot_pole_kit,ItemBriefcaseS90oz,ItemBriefcase50oz,ItemSodaMzly],[1,1,1,2,2,1,1,2,1,1,1,2,2,2,1,1,5,2,1,1,1,1,1]],[[DZ_Backpack_EP1],[1]]]:
2017-10-04 17:41:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:33 HiveExt: [Information] Method: 201 Params: 41:[102,[10348.3,3602.09,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:36:0:[[DMR_DZ,amovpercmwlksraswrfldf,42],[]]:0:0::0:
2017-10-04 17:41:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:45 HiveExt: [Information] Method: 201 Params: 41:[194,[10382.5,3552.96,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:60:0:[[DMR_DZ,amovpercmevasraswrfldfl,42],[]]:0:0::0:
2017-10-04 17:41:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:41:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:41:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,41]]
2017-10-04 17:41:57 HiveExt: [Information] Method: 201 Params: 41:[174,[10391.1,3476.09,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2045.04,34.856,209.158],false]:false:false:0:0:77:1:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:41:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:09 HiveExt: [Information] Method: 201 Params: 41:[174,[10379.2,3408.22,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:69:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:42:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:22 HiveExt: [Information] Method: 201 Params: 41:[209,[10349.7,3348.1,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:67:0:[[DMR_DZ,amovpercmevasraswrfldf,42],[]]:0:0::0:
2017-10-04 17:42:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:34 HiveExt: [Information] Method: 201 Params: 41:[213,[10320.3,3302.8,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:54:0:[[G17_SD_FL_DZ,amovpercmstpsraswrfldnon_amovpercmstpsraswpstdnon_end,42],[]]:0:0::0:
2017-10-04 17:42:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:46 HiveExt: [Information] Method: 201 Params: 41:[214,[10287.2,3254.14,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:59:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:42:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:42:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:42:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,42]]
2017-10-04 17:42:58 HiveExt: [Information] Method: 201 Params: 41:[214,[10252.1,3206.58,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:60:1:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:42:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:10 HiveExt: [Information] Method: 201 Params: 41:[180,[10221.9,3158.87,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:22 HiveExt: [Information] Method: 201 Params: 41:[183,[10224,3099.89,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:59:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:34 HiveExt: [Information] Method: 201 Params: 41:[167,[10233.1,3045.02,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:56:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdfl,42],[]]:0:0::0:
2017-10-04 17:43:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:47 HiveExt: [Information] Method: 201 Params: 41:[159,[10257.7,2993.4,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:43:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:43:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,43]]
2017-10-04 17:43:59 HiveExt: [Information] Method: 201 Params: 41:[165,[10279.9,2940.31,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2072.94,66.064,205.007],false]:false:false:0:0:58:1:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:43:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:11 HiveExt: [Information] Method: 201 Params: 41:[144,[10311.6,2893.48,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:57:0:[[G17_SD_FL_DZ,amovpercmevasraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:23 HiveExt: [Information] Method: 201 Params: 41:[146,[10331.7,2864.66,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:35:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:35 HiveExt: [Information] Method: 201 Params: 41:[123,[10370.5,2810.34,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:47 HiveExt: [Information] Method: 201 Params: 41:[137,[10418.8,2762.82,0.004]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:68:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:44:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:44:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,44]]
2017-10-04 17:44:59 HiveExt: [Information] Method: 201 Params: 41:[148,[10452.4,2704.48,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10689.6,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:1:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:44:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:12 HiveExt: [Information] Method: 201 Params: 41:[120,[10509.7,2669.42,0.003]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10512.8,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:67:0:[[G17_SD_FL_DZ,amovpercmwlksraswpstdf,42],[]]:0:0::0:
2017-10-04 17:45:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:24 HiveExt: [Information] Method: 201 Params: 41:[119,[10562.5,2637.13,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10512.8,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:63:0:[[G17_SD_FL_DZ,amovpercmrunsraswpstdf,42],[]]:0:0::0:
2017-10-04 17:45:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:33 HiveExt: [Information] Method: 305 Params: 321:[173.251,[10585.525,2630.788,-0.019]]:0.821:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:33 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[FoodCanDemon,ItemSodaLvg],[1,1]],[[],[]]]:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:33 HiveExt: [Information] Method: 306 Params: 321:[[glass1,0.693],[glass2,0.561],[glass3,0],[glass4,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0]]:0:
2017-10-04 17:45:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 305 Params: 321:[173.253,[10585.525,2630.788,-0.019]]:0.821:
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 201 Params: 41:[264,[10585.5,2630.79,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10312.9,[],[0.193,0],0,O,true,[2141.32,141.956,194.869],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:45:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:45:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:45:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,45]]
2017-10-04 17:46:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:21 HiveExt: [Information] Method: 305 Params: 321:[108.574,[10597.157,2621.127,-0.016]]:0.817:
2017-10-04 17:46:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:21 HiveExt: [Information] Method: 201 Params: 41:[264,[10597.2,2621.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,10112.9,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:46:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:33 HiveExt: [Information] Method: 305 Params: 321:[315.411,[10508.431,2669.639,0.888]]:0.813:
2017-10-04 17:46:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:33 HiveExt: [Information] Method: 201 Params: 41:[264,[10508.4,2669.64,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9912.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:46:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:45 HiveExt: [Information] Method: 305 Params: 321:[350.165,[10335.878,2811.85,0.012]]:0.81:
2017-10-04 17:46:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:45 HiveExt: [Information] Method: 201 Params: 41:[264,[10335.9,2811.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9712.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:46:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:46:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,46]]
2017-10-04 17:46:57 HiveExt: [Information] Method: 305 Params: 321:[318.642,[10226.209,3010.079,0.002]]:0.807:
2017-10-04 17:46:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:46:57 HiveExt: [Information] Method: 201 Params: 41:[264,[10226.2,3010.08,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9712.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:46:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:10 HiveExt: [Information] Method: 305 Params: 321:[31.512,[10269.789,3222.179,0.061]]:0.804:
2017-10-04 17:47:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:10 HiveExt: [Information] Method: 201 Params: 41:[264,[10269.8,3222.18,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9512.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:22 HiveExt: [Information] Method: 305 Params: 321:[30.565,[10368.36,3369.218,0.006]]:0.8:
2017-10-04 17:47:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:22 HiveExt: [Information] Method: 201 Params: 41:[264,[10368.4,3369.22,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9352.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:34 HiveExt: [Information] Method: 305 Params: 321:[345.218,[10361.21,3614.515,0.005]]:0.797:
2017-10-04 17:47:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:34 HiveExt: [Information] Method: 201 Params: 41:[264,[10361.2,3614.52,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9352.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:46 HiveExt: [Information] Method: 305 Params: 321:[333.134,[10314.354,3861.538,0.025]]:0.793:
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:46 HiveExt: [Information] Method: 201 Params: 41:[264,[10314.4,3861.54,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:47:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,47]]
2017-10-04 17:47:58 HiveExt: [Information] Method: 305 Params: 321:[313.98,[10191.633,4054.37,0.114]]:0.79:
2017-10-04 17:47:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:47:58 HiveExt: [Information] Method: 201 Params: 41:[264,[10191.6,4054.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[2160,192.414,187.072],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:47:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 305 Params: 321:[313.988,[10162.817,4082.956,-0.015]]:0.789:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 201 Params: 41:[264,[10162.8,4082.96,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,FoodCanDemon,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9152.92,[],[0.193,0],0,O,true,[1695,194.437,184.155],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:01 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[ItemSodaLvg],[1]],[[],[]]]:
2017-10-04 17:48:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:14 HiveExt: [Information] Method: 305 Params: 321:[320.066,[9999.806,4268.833,0.003]]:0.786:
2017-10-04 17:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:14 HiveExt: [Information] Method: 201 Params: 41:[264,[9999.81,4268.83,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1695,194.437,184.155],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:27 HiveExt: [Information] Method: 305 Params: 321:[343.143,[9903.687,4497.211,0.007]]:0.782:
2017-10-04 17:48:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:27 HiveExt: [Information] Method: 201 Params: 41:[264,[9903.69,4497.21,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:39 HiveExt: [Information] Method: 305 Params: 321:[322.861,[9801.198,4702.152,0.001]]:0.779:
2017-10-04 17:48:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:39 HiveExt: [Information] Method: 201 Params: 41:[264,[9801.2,4702.15,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:48:51 HiveExt: [Information] Method: 305 Params: 321:[284.854,[9601.249,4837.34,-0.005]]:0.775:
2017-10-04 17:48:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:51 HiveExt: [Information] Method: 201 Params: 41:[264,[9601.25,4837.34,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:48:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:48:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:48:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,48]]
2017-10-04 17:49:03 HiveExt: [Information] Method: 305 Params: 321:[294.306,[9356.691,4892.145,0.012]]:0.772:
2017-10-04 17:49:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:03 HiveExt: [Information] Method: 201 Params: 41:[264,[9356.69,4892.14,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:49:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:15 HiveExt: [Information] Method: 305 Params: 321:[237.089,[9148.099,4976.118,0.016]]:0.769:
2017-10-04 17:49:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:15 HiveExt: [Information] Method: 201 Params: 41:[264,[9148.1,4976.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:27 HiveExt: [Information] Method: 305 Params: 321:[258.443,[8912.057,4948.847,-0.004]]:0.766:
2017-10-04 17:49:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:27 HiveExt: [Information] Method: 201 Params: 41:[264,[8912.06,4948.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:40 HiveExt: [Information] Method: 305 Params: 321:[262.693,[8688.693,4860.771,0.006]]:0.762:
2017-10-04 17:49:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:40 HiveExt: [Information] Method: 201 Params: 41:[264,[8688.69,4860.77,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:49:52 HiveExt: [Information] Method: 305 Params: 321:[304.524,[8453.803,4929.127,0.032]]:0.759:
2017-10-04 17:49:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:52 HiveExt: [Information] Method: 201 Params: 41:[264,[8453.8,4929.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:49:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:49:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:49:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,49]]
2017-10-04 17:50:04 HiveExt: [Information] Method: 305 Params: 321:[291.644,[8419.406,4938.381,0.002]]:0.757:
2017-10-04 17:50:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:04 HiveExt: [Information] Method: 201 Params: 41:[264,[8419.41,4938.38,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:50:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:16 HiveExt: [Information] Method: 305 Params: 321:[327.549,[8354.982,5053.35,0.005]]:0.754:
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:16 HiveExt: [Information] Method: 201 Params: 41:[264,[8354.98,5053.35,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,8972.92,[],[0.193,0],0,O,true,[1700.99,194.787,183.645],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:28 HiveExt: [Information] Method: 305 Params: 321:[315.982,[8246.721,5184.598,0.011]]:0.75:
2017-10-04 17:50:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:28 HiveExt: [Information] Method: 201 Params: 41:[264,[8246.72,5184.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 305 Params: 321:[315.172,[8228.388,5203.132,-0.002]]:0.75:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 201 Params: 41:[264,[8228.39,5203.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:30 HiveExt: [Information] Method: 303 Params: 321:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 17:50:30 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:43 HiveExt: [Information] Method: 305 Params: 321:[79.809,[8200.087,5304.931,0.002]]:0.747:
2017-10-04 17:50:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:43 HiveExt: [Information] Method: 201 Params: 41:[264,[8200.09,5304.93,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:50:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:50:55 HiveExt: [Information] Method: 305 Params: 321:[20.475,[8277.638,5421.854,0.058]]:0.743:
2017-10-04 17:50:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:55 HiveExt: [Information] Method: 201 Params: 41:[264,[8277.64,5421.85,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:50:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:50:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:50:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,50]]
2017-10-04 17:51:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:07 HiveExt: [Information] Method: 305 Params: 321:[13.73,[8349.854,5547.737,6.561e-04]]:0.738:
2017-10-04 17:51:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:07 HiveExt: [Information] Method: 201 Params: 41:[264,[8349.85,5547.74,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:07 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:19 HiveExt: [Information] Method: 305 Params: 321:[43.443,[8429.206,5676.684,0.16]]:0.735:
2017-10-04 17:51:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:19 HiveExt: [Information] Method: 201 Params: 41:[264,[8429.21,5676.68,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:31 HiveExt: [Information] Method: 305 Params: 321:[57.279,[8551.768,5770.18,0.032]]:0.73:
2017-10-04 17:51:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:31 HiveExt: [Information] Method: 201 Params: 41:[264,[8551.77,5770.18,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:31 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:43 HiveExt: [Information] Method: 305 Params: 321:[359.21,[8598.415,5902.412,0.041]]:0.727:
2017-10-04 17:51:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:43 HiveExt: [Information] Method: 201 Params: 41:[264,[8598.42,5902.41,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:51:43 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:51:55 HiveExt: [Information] Method: 305 Params: 321:[33.681,[8578.182,6024.38,0.005]]:0.723:
2017-10-04 17:51:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:55 HiveExt: [Information] Method: 201 Params: 41:[264,[8578.18,6024.38,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:51:55 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:51:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:51:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,51]]
2017-10-04 17:52:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:08 HiveExt: [Information] Method: 305 Params: 321:[315.363,[8546.757,6057.368,0.004]]:0.721:
2017-10-04 17:52:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:08 HiveExt: [Information] Method: 201 Params: 41:[264,[8546.76,6057.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:20 HiveExt: [Information] Method: 305 Params: 321:[29.048,[8586.09,6244.988,0.042]]:0.717:
2017-10-04 17:52:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:20 HiveExt: [Information] Method: 201 Params: 41:[264,[8586.09,6244.99,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1741.56,197.16,180.19],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:32 HiveExt: [Information] Method: 305 Params: 321:[25.868,[8658.645,6467.444,3.967e-04]]:0.713:
2017-10-04 17:52:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:32 HiveExt: [Information] Method: 201 Params: 41:[264,[8658.64,6467.44,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:44 HiveExt: [Information] Method: 305 Params: 321:[15.171,[8681.411,6515.975,0.004]]:0.711:
2017-10-04 17:52:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:44 HiveExt: [Information] Method: 201 Params: 41:[264,[8681.41,6515.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:52:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:52:56 HiveExt: [Information] Method: 305 Params: 321:[15.199,[8702.189,6656.116,0.01]]:0.707:
2017-10-04 17:52:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:56 HiveExt: [Information] Method: 201 Params: 41:[264,[8702.19,6656.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:52:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:52:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:52:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,52]]
2017-10-04 17:53:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:08 HiveExt: [Information] Method: 305 Params: 321:[345.332,[8658.588,6826.298,0.009]]:0.704:
2017-10-04 17:53:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:08 HiveExt: [Information] Method: 201 Params: 41:[264,[8658.59,6826.3,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:20 HiveExt: [Information] Method: 305 Params: 321:[67.022,[8653.476,6962.56,0.005]]:0.701:
2017-10-04 17:53:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:20 HiveExt: [Information] Method: 201 Params: 41:[264,[8653.48,6962.56,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:32 HiveExt: [Information] Method: 305 Params: 321:[346.515,[8738.365,7047.395,0.056]]:0.698:
2017-10-04 17:53:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:32 HiveExt: [Information] Method: 201 Params: 41:[264,[8738.37,7047.4,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:45 HiveExt: [Information] Method: 305 Params: 321:[334.36,[8694.067,7182.309,0.029]]:0.694:
2017-10-04 17:53:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:45 HiveExt: [Information] Method: 201 Params: 41:[264,[8694.07,7182.31,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:53:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:54 HiveExt: [Information] Method: 305 Params: 321:[320.691,[8676.066,7271.38,0.006]]:0.692:
2017-10-04 17:53:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:54 HiveExt: [Information] Method: 306 Params: 321:[[glass1,0.693],[glass2,0.561],[glass3,0],[glass4,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[motor,0],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0]]:0:
2017-10-04 17:53:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,53]]
2017-10-04 17:53:57 HiveExt: [Information] Method: 305 Params: 48:[143.09,[8672.389,7265.103,0.007]]:0.613:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[ItemTent],[1]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 305 Params: 48:[143.088,[8672.389,7265.103,0.007]]:0.613:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:53:57 HiveExt: [Information] Method: 201 Params: 41:[233,[8672.39,7265.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:53:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:09 HiveExt: [Information] Method: 305 Params: 48:[27.438,[8697.016,7306.045,-6.714e-04]]:0.608:
2017-10-04 17:54:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:09 HiveExt: [Information] Method: 201 Params: 41:[233,[8697.02,7306.05,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:21 HiveExt: [Information] Method: 305 Params: 48:[20.194,[8740.543,7401.002,6.104e-05]]:0.602:
2017-10-04 17:54:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:21 HiveExt: [Information] Method: 201 Params: 41:[233,[8740.54,7401,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1782.1,199.532,176.737],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:21 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:33 HiveExt: [Information] Method: 305 Params: 48:[323.076,[8735.916,7504.091,0.009]]:0.596:
2017-10-04 17:54:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:33 HiveExt: [Information] Method: 201 Params: 41:[233,[8735.92,7504.09,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:46 HiveExt: [Information] Method: 305 Params: 48:[332.585,[8675.594,7600.924,0.027]]:0.591:
2017-10-04 17:54:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:46 HiveExt: [Information] Method: 201 Params: 41:[233,[8675.59,7600.92,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:54:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:54:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,54]]
2017-10-04 17:54:58 HiveExt: [Information] Method: 305 Params: 48:[336.054,[8626.804,7703.452,-3.052e-05]]:0.585:
2017-10-04 17:54:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:54:58 HiveExt: [Information] Method: 201 Params: 41:[233,[8626.8,7703.45,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:54:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:10 HiveExt: [Information] Method: 305 Params: 48:[345.352,[8585.771,7799.119,0.006]]:0.579:
2017-10-04 17:55:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:10 HiveExt: [Information] Method: 201 Params: 41:[233,[8585.77,7799.12,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:55:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:22 HiveExt: [Information] Method: 305 Params: 48:[4.977,[8591.925,7890.824,0.002]]:0.574:
2017-10-04 17:55:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:22 HiveExt: [Information] Method: 201 Params: 41:[233,[8591.92,7890.82,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:55:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:24 HiveExt: [Information] Method: 305 Params: 48:[4.996,[8591.974,7891.292,0.001]]:0.573:
2017-10-04 17:55:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:24 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:55:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:34 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:3:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 17:55:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:39 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[G17_SD_FL_DZ,aidlpknlmstpsraswpstdnon_player_idlesteady01,42],[]]:0:0::0:
2017-10-04 17:55:39 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:55:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:55:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:55:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,55]]
2017-10-04 17:56:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:56:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:56:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,56]]
2017-10-04 17:57:49 HiveExt: [Information] HiveExt 
2017-10-04 17:57:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:57:49 Database: [Information] Connected to MySQL database 176.57.191.232:3306/db_569010_1 client ver: 5.5.28 server ver: 5.6.33-0ubuntu0.14.04.1-log
2017-10-04 17:57:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:57:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,57]]
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: ["ObjectStreamStart",504,"5c47a98e5b3ebf5c123c40f49695b4e3"]
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: 11:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: "ObjectData5c47a98e5b3ebf5c123c40f49695b4e3.sqf"
2017-10-04 17:57:49 HiveExt: [Information] Method: 302 Params: ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf:false:
2017-10-04 17:57:49 HiveExt: [Information] Result: ["NOTICE","ObjectData24ebb3ec96a253c1b229f339d12fbf4f.sqf has been deleted"]
2017-10-04 17:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:02 HiveExt: [Information] Method: 101 Params: 76561198196013425:11:Erzengel:
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS",false,"41",[16,[8589.25,7892.03,0.001]],[["DMR_DZ","Binocular_Vector","NVGoggles","G17_SD_FL_DZ","ItemMap","ItemCompass","ItemRadio","ItemToolbox","ItemEtool","ItemKnife3","ItemCrowbar","ItemHatchet","ItemMatchbox","ItemSledge"],["ItemPainkiller","ItemMorphine","ItemBloodbag","ItemAntibiotic",["20Rnd_762x51_DMR",16],"ItemLightBulb","20Rnd_762x51_DMR","ItemBloodbag","ItemSodaLvg","ItemBandage","ItemBandage",["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",9],["17Rnd_9x19_glock17",11],"ItemBandage","ItemBandage"],""],["",[[],[]],[[],[]]],[2919,2937,2937],0,"FR_R_DZ",[],0,0,0.97]
2017-10-04 17:58:02 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:2:
2017-10-04 17:58:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:13 HiveExt: [Information] Method: 102 Params: 41:
2017-10-04 17:58:13 HiveExt: [Information] Result: ["PASS",[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,"O",true,[1823.2,203.266,173.156],false],[6,9,2,6],[["G17_SD_FL_DZ","aidlpknlmstpsraswpstdnon_player_idlesteady01",42],[]],[16,[8589.25,7892.03,0.001]],2663,11]
2017-10-04 17:58:13 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:1:
2017-10-04 17:58:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 201 Params: 41:[16,[8589.25,7892.03,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:32640:0:[[,amovpercmstpsraswrfldnon_amovpercmstpsraswpstdnon,42],[]]:0:0:FR_R_DZ:0:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[ItemTent],[1]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:15 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:0:
2017-10-04 17:58:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:22 HiveExt: [Information] Method: 305 Params: 48:[4.971,[8591.978,7891.371,0.001]]:0.573:
2017-10-04 17:58:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:22 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 17:58:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:26 HiveExt: [Information] Method: 305 Params: 48:[2.666,[8591.611,7907.695,2.441e-04]]:0.572:
2017-10-04 17:58:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:26 HiveExt: [Information] Method: 201 Params: 41:[95,[8591.61,7907.7,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 305 Params: 48:[2.284,[8594.231,7951.924,0.002]]:0.569:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 201 Params: 41:[95,[8594.23,7951.92,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:32 HiveExt: [Information] Method: 303 Params: 48:[[[],[]],[[],[]],[[DZ_Assault_Pack_EP1],[1]]]:
2017-10-04 17:58:32 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:44 HiveExt: [Information] Method: 305 Params: 48:[339.561,[8572.414,8037.772,3.052e-05]]:0.563:
2017-10-04 17:58:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:44 HiveExt: [Information] Method: 201 Params: 41:[95,[8572.41,8037.77,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:44 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,58]]
2017-10-04 17:58:56 HiveExt: [Information] Method: 305 Params: 48:[1.037,[8536.929,8130.508,-0.002]]:0.557:
2017-10-04 17:58:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:58:56 HiveExt: [Information] Method: 201 Params: 41:[95,[8536.93,8130.51,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:58:56 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:08 HiveExt: [Information] Method: 305 Params: 48:[1.741,[8552.066,8230.87,0.004]]:0.551:
2017-10-04 17:59:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:08 HiveExt: [Information] Method: 201 Params: 41:[95,[8552.07,8230.87,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:08 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:20 HiveExt: [Information] Method: 305 Params: 48:[8.702,[8556.647,8335.943,-6.104e-05]]:0.545:
2017-10-04 17:59:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:20 HiveExt: [Information] Method: 201 Params: 41:[95,[8556.65,8335.94,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:20 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:33 HiveExt: [Information] Method: 305 Params: 48:[50.425,[8602.164,8419.948,-4.272e-04]]:0.539:
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:33 HiveExt: [Information] Method: 201 Params: 41:[95,[8602.16,8419.95,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:45 HiveExt: [Information] Method: 305 Params: 48:[11.997,[8648.647,8503.029,0.008]]:0.533:
2017-10-04 17:59:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:45 HiveExt: [Information] Method: 201 Params: 41:[95,[8648.65,8503.03,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:45 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 17:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,8,59]]
2017-10-04 17:59:57 HiveExt: [Information] Method: 305 Params: 48:[31.832,[8691.123,8593.129,0.008]]:0.527:
2017-10-04 17:59:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 17:59:57 HiveExt: [Information] Method: 201 Params: 41:[95,[8691.12,8593.13,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 17:59:57 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:09 HiveExt: [Information] Method: 305 Params: 48:[28.318,[8755.229,8682.762,0.005]]:0.521:
2017-10-04 18:00:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:09 HiveExt: [Information] Method: 201 Params: 41:[95,[8755.23,8682.76,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1823.2,203.266,173.156],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:09 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:22 HiveExt: [Information] Method: 305 Params: 48:[72.692,[8799.94,8748.145,0.014]]:0.515:
2017-10-04 18:00:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:22 HiveExt: [Information] Method: 201 Params: 41:[95,[8799.94,8748.14,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:33 HiveExt: [Information] Method: 305 Params: 48:[72.889,[8910.053,8766.086,0.006]]:0.509:
2017-10-04 18:00:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:33 HiveExt: [Information] Method: 201 Params: 41:[95,[8910.05,8766.09,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:00:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:46 HiveExt: [Information] Method: 305 Params: 48:[71.473,[9015.035,8801.42,0.001]]:0.503:
2017-10-04 18:00:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:46 HiveExt: [Information] Method: 201 Params: 41:[95,[9015.04,8801.42,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:46 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:00:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,0]]
2017-10-04 18:00:58 HiveExt: [Information] Method: 305 Params: 48:[78.142,[9108.499,8829.547,0.016]]:0.497:
2017-10-04 18:00:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:00:58 HiveExt: [Information] Method: 201 Params: 41:[95,[9108.5,8829.55,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:00:58 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:10 HiveExt: [Information] Method: 305 Params: 48:[73.849,[9198.587,8851.239,0.017]]:0.491:
2017-10-04 18:01:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:10 HiveExt: [Information] Method: 201 Params: 41:[95,[9198.59,8851.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:22 HiveExt: [Information] Method: 305 Params: 48:[74.414,[9242.332,8862.94,0.077]]:0.487:
2017-10-04 18:01:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:22 HiveExt: [Information] Method: 201 Params: 41:[95,[9242.33,8862.94,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:22 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:34 HiveExt: [Information] Method: 305 Params: 48:[32.828,[9263.236,8869.978,0.054]]:0.483:
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:34 HiveExt: [Information] Method: 201 Params: 41:[95,[9263.24,8869.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9093.06,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:01:34 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:47 HiveExt: [Information] Method: 305 Params: 48:[29.424,[9243.659,8904.867,0.016]]:0.478:
2017-10-04 18:01:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:47 HiveExt: [Information] Method: 201 Params: 41:[95,[9243.66,8904.87,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:01:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,1]]
2017-10-04 18:01:59 HiveExt: [Information] Method: 305 Params: 48:[38.13,[9281.965,8987.208,1.526e-04]]:0.472:
2017-10-04 18:01:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:01:59 HiveExt: [Information] Method: 201 Params: 41:[95,[9281.96,8987.21,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:01:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:11 HiveExt: [Information] Method: 305 Params: 48:[23.707,[9319.097,9076.439,0.002]]:0.466:
2017-10-04 18:02:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:11 HiveExt: [Information] Method: 201 Params: 41:[95,[9319.1,9076.44,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1848.81,206.611,170.864],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:11 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:23 HiveExt: [Information] Method: 305 Params: 48:[7.533,[9346.632,9169.445,0.009]]:0.46:
2017-10-04 18:02:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:23 HiveExt: [Information] Method: 201 Params: 41:[95,[9346.63,9169.45,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:23 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:35 HiveExt: [Information] Method: 305 Params: 48:[345.215,[9355.679,9263.022,0.009]]:0.455:
2017-10-04 18:02:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:35 HiveExt: [Information] Method: 201 Params: 41:[95,[9355.68,9263.02,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:02:35 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:47 HiveExt: [Information] Method: 305 Params: 48:[321.536,[9329.47,9360.637,0.004]]:0.448:
2017-10-04 18:02:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:47 HiveExt: [Information] Method: 201 Params: 41:[95,[9329.47,9360.64,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:47 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:02:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,2]]
2017-10-04 18:02:59 HiveExt: [Information] Method: 305 Params: 48:[344.159,[9274.988,9448.98,0.085]]:0.442:
2017-10-04 18:02:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:02:59 HiveExt: [Information] Method: 201 Params: 41:[95,[9274.99,9448.98,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:02:59 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:12 HiveExt: [Information] Method: 305 Params: 48:[291.911,[9191.276,9519.243,0.002]]:0.437:
2017-10-04 18:03:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:12 HiveExt: [Information] Method: 201 Params: 41:[95,[9191.28,9519.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:12 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:24 HiveExt: [Information] Method: 305 Params: 48:[7.11,[9124.664,9560.91,0.397]]:0.431:
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:24 HiveExt: [Information] Method: 201 Params: 41:[95,[9124.66,9560.91,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:36 HiveExt: [Information] Method: 305 Params: 48:[335.784,[9152.263,9649.513,0.006]]:0.426:
2017-10-04 18:03:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:36 HiveExt: [Information] Method: 201 Params: 41:[95,[9152.26,9649.51,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:03:36 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:03:48 HiveExt: [Information] Method: 305 Params: 48:[1.571,[9146.725,9659.243,0.035]]:0.422:
2017-10-04 18:03:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:48 HiveExt: [Information] Method: 201 Params: 41:[95,[9146.72,9659.24,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:03:48 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:03:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:03:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,3]]
2017-10-04 18:04:01 HiveExt: [Information] Method: 305 Params: 48:[73.959,[9195.989,9650.837,0.004]]:0.417:
2017-10-04 18:04:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:01 HiveExt: [Information] Method: 201 Params: 41:[95,[9195.99,9650.84,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:01 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:13 HiveExt: [Information] Method: 305 Params: 48:[69.16,[9301.301,9685.369,0.004]]:0.411:
2017-10-04 18:04:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:13 HiveExt: [Information] Method: 201 Params: 41:[95,[9301.3,9685.37,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1874.34,208.983,168.636],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:25 HiveExt: [Information] Method: 305 Params: 48:[68.447,[9393.554,9722.014,0.032]]:0.405:
2017-10-04 18:04:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:25 HiveExt: [Information] Method: 201 Params: 41:[95,[9393.55,9722.01,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:25 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:37 HiveExt: [Information] Method: 305 Params: 48:[77.438,[9508.986,9755.754,0.048]]:0.399:
2017-10-04 18:04:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:37 HiveExt: [Information] Method: 201 Params: 41:[95,[9508.99,9755.75,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:04:37 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:04:49 HiveExt: [Information] Method: 305 Params: 48:[59.987,[9625.665,9788.021,-0.001]]:0.394:
2017-10-04 18:04:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:49 HiveExt: [Information] Method: 201 Params: 41:[95,[9625.67,9788.02,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9214.95,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:04:49 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:04:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:04:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,4]]
2017-10-04 18:05:02 HiveExt: [Information] Method: 305 Params: 48:[11.458,[9668.878,9850.834,0.012]]:0.388:
2017-10-04 18:05:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:02 HiveExt: [Information] Method: 201 Params: 41:[95,[9668.88,9850.83,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:02 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:14 HiveExt: [Information] Method: 305 Params: 48:[9.124,[9686.685,9962.647,0.013]]:0.383:
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:14 HiveExt: [Information] Method: 201 Params: 41:[95,[9686.68,9962.65,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:26 HiveExt: [Information] Method: 305 Params: 48:[2.772,[9700.338,10075.607,0.001]]:0.377:
2017-10-04 18:05:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:26 HiveExt: [Information] Method: 201 Params: 41:[95,[9700.34,10075.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:26 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:38 HiveExt: [Information] Method: 305 Params: 48:[358.072,[9684.017,10175.381,0.006]]:0.371:
2017-10-04 18:05:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:38 HiveExt: [Information] Method: 201 Params: 41:[95,[9684.02,10175.4,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:05:38 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:05:51 HiveExt: [Information] Method: 305 Params: 48:[350.049,[9681.389,10285.979,0.003]]:0.365:
2017-10-04 18:05:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:51 HiveExt: [Information] Method: 201 Params: 41:[95,[9681.39,10286,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:05:51 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:05:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:05:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,5]]
2017-10-04 18:06:03 HiveExt: [Information] Method: 305 Params: 48:[8.111,[9660.768,10399.617,0.023]]:0.359:
2017-10-04 18:06:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:03 HiveExt: [Information] Method: 201 Params: 41:[95,[9660.77,10399.6,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:03 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:13 HiveExt: [Information] Method: 305 Params: 48:[135.44,[9739.122,10463.429,0.012]]:0.355:
2017-10-04 18:06:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:13 HiveExt: [Information] Method: 306 Params: 48:[[motor,0.063],[sklo predni P,0],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:06:13 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:15 HiveExt: [Information] Method: 201 Params: 41:[237,[9735.04,10465.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1899.79,211.356,166.416],false]:false:false:0:0:100:0:[[DMR_DZ,amovpercmevasraswrfldfr,42],[]]:0:0::0:
2017-10-04 18:06:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:15 HiveExt: [Information] Method: 303 Params: 313:[[[],[]],[[],[]],[[],[]]]:
2017-10-04 18:06:15 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:17 HiveExt: [Information] Method: 305 Params: 313:[88.081,[9727.937,10461.948,0.133]]:0.178:
2017-10-04 18:06:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:17 HiveExt: [Information] Method: 306 Params: 313:[[motor,0.517],[sklo predni P,0.227],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:06:17 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:27 HiveExt: [Information] Method: 305 Params: 313:[122.216,[9868.043,10419.814,-0.01]]:0.175:
2017-10-04 18:06:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:27 HiveExt: [Information] Method: 201 Params: 41:[176,[9868.04,10419.8,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:27 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:40 HiveExt: [Information] Method: 305 Params: 313:[140.575,[10100.777,10319.969,-0.013]]:0.173:
2017-10-04 18:06:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:40 HiveExt: [Information] Method: 201 Params: 41:[176,[10100.8,10320,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:06:40 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:06:52 HiveExt: [Information] Method: 305 Params: 313:[90.763,[10167.225,10244.822,0.046]]:0.17:
2017-10-04 18:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:52 HiveExt: [Information] Method: 201 Params: 41:[176,[10167.2,10244.8,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:06:52 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:06:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:06:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,6]]
2017-10-04 18:07:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:04 HiveExt: [Information] Method: 305 Params: 313:[88.955,[10322.457,10085.252,0.062]]:0.167:
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:04 HiveExt: [Information] Method: 201 Params: 41:[176,[10322.5,10085.3,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:04 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:16 HiveExt: [Information] Method: 305 Params: 313:[78.556,[10466.657,10093.235,0.105]]:0.164:
2017-10-04 18:07:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:16 HiveExt: [Information] Method: 201 Params: 41:[176,[10466.7,10093.2,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:16 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:28 HiveExt: [Information] Method: 305 Params: 313:[4.592,[10513.484,10359.138,0.003]]:0.16:
2017-10-04 18:07:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:28 HiveExt: [Information] Method: 201 Params: 41:[176,[10513.5,10359.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:28 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:41 HiveExt: [Information] Method: 305 Params: 313:[16.028,[10671.053,10683.144,0.044]]:0.157:
2017-10-04 18:07:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:41 HiveExt: [Information] Method: 201 Params: 41:[176,[10671.1,10683.1,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:1:[[,,42],[]]:0:0::0:
2017-10-04 18:07:41 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:07:53 HiveExt: [Information] Method: 305 Params: 313:[333.145,[10698.227,10890.041,0.01]]:0.154:
2017-10-04 18:07:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:53 HiveExt: [Information] Method: 201 Params: 41:[176,[10698.2,10890,0]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[,,42],[]]:0:0::0:
2017-10-04 18:07:53 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 305 Params: 313:[333.156,[10698.224,10890.046,0.009]]:0.154:
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 306 Params: 313:[[motor,0.517],[sklo predni P,0.227],[sklo predni L,0],[karoserie,0],[palivo,0],[wheel_1_1_steering,0],[wheel_2_1_steering,0],[wheel_1_4_steering,0],[wheel_2_4_steering,0],[wheel_1_3_steering,0],[wheel_2_3_steering,0],[wheel_1_2_steering,0],[wheel_2_2_steering,0],[glass1,0],[glass2,0],[glass3,0],[glass4,0]]:0:
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:07:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:07:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,7]]
2017-10-04 18:08:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:05 HiveExt: [Information] Method: 201 Params: 41:[129,[10693.9,10887.1,0.002]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:5:0:[[DMR_DZ,amovpercmstpsraswrfldnon_gear,42],[]]:0:0::0:
2017-10-04 18:08:05 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:18 HiveExt: [Information] Method: 201 Params: 41:[194,[10696.8,10889.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:4:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 18:08:18 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:19 HiveExt: [Information] Method: 201 Params: 41:[194,[10696.8,10889.3,0.001]]:[[DMR_DZ,Binocular_Vector,NVGoggles,G17_SD_FL_DZ,ItemMap,ItemCompass,ItemRadio,ItemToolbox,ItemEtool,ItemKnife3,ItemCrowbar,ItemHatchet,ItemMatchbox,ItemSledge],[ItemPainkiller,ItemMorphine,ItemBloodbag,ItemAntibiotic,[20Rnd_762x51_DMR,16],ItemLightBulb,20Rnd_762x51_DMR,ItemBloodbag,ItemSodaLvg,ItemTent,ItemBandage,ItemBandage,[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,9],[17Rnd_9x19_glock17,11],ItemBandage,ItemBandage],]:[,[[],[]],[[],[]]]:[false,false,false,false,false,false,true,9335.41,[],[0.193,0],0,O,true,[1926.06,215.342,164.032],false]:false:false:0:0:0:0:[[DMR_DZ,aidlpercmstpsraswrfldnon_idlesteady01,42],[]]:0:0::0:
2017-10-04 18:08:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:19 HiveExt: [Information] Method: 103 Params: 76561198196013425:41:3:
2017-10-04 18:08:19 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:08:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:08:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:08:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,8]]
2017-10-04 18:09:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:09:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:09:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,9]]
2017-10-04 18:10:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:10:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:10:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,10]]
2017-10-04 18:11:04 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:04 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:14 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:14 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:24 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:24 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:34 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:34 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:44 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:44 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:11:54 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:11:54 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,11]]
2017-10-04 18:12:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:12:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:12:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,12]]
2017-10-04 18:13:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:13:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:13:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,13]]
2017-10-04 18:14:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:14:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:14:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,14]]
2017-10-04 18:15:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:15:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:15:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,15]]
2017-10-04 18:16:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:16:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:16:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,16]]
2017-10-04 18:17:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:17:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:17:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,17]]
2017-10-04 18:18:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:18:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:18:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,18]]
2017-10-04 18:19:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:19:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:19:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,19]]
2017-10-04 18:20:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:20:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:20:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,20]]
2017-10-04 18:21:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:21:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:21:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,21]]
2017-10-04 18:22:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:22:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:22:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,22]]
2017-10-04 18:23:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:23:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:23:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,23]]
2017-10-04 18:24:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:24:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:24:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,24]]
2017-10-04 18:25:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:25:55 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:25:55 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,25]]
2017-10-04 18:26:05 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:05 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:15 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:15 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:25 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:25 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:35 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:35 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:45 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:45 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:26:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:26:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,26]]
2017-10-04 18:27:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:27:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:27:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,27]]
2017-10-04 18:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:28:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:28:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,28]]
2017-10-04 18:29:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:29:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:29:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,29]]
2017-10-04 18:30:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:30:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:30:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,30]]
2017-10-04 18:31:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:31:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:31:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,31]]
2017-10-04 18:32:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:32:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:32:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,32]]
2017-10-04 18:33:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:33:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:33:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,33]]
2017-10-04 18:34:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:33 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.005:
2017-10-04 18:34:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:34:33 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.006:
2017-10-04 18:34:33 HiveExt: [Information] Result: ["PASS"]
2017-10-04 18:34:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:34:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:34:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,34]]
2017-10-04 18:35:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:35:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:35:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,35]]
2017-10-04 18:36:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:36:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:36:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,36]]
2017-10-04 18:37:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:37:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:37:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,37]]
2017-10-04 18:38:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:38:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:38:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,38]]
2017-10-04 18:39:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:39:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:39:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,39]]
2017-10-04 18:40:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:40:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:40:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,40]]
2017-10-04 18:41:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:41:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:41:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,41]]
2017-10-04 18:42:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:16 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:16 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:26 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:26 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:36 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:36 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:46 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:46 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:42:56 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:42:56 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,42]]
2017-10-04 18:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:06 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:06 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:43:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:43:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,43]]
2017-10-04 18:44:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:44:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:44:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,44]]
2017-10-04 18:45:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:45:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:45:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,45]]
2017-10-04 18:46:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:46:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:46:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,46]]
2017-10-04 18:47:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:47:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:47:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,47]]
2017-10-04 18:48:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:48:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:48:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,48]]
2017-10-04 18:49:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:49:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:49:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,49]]
2017-10-04 18:50:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:50:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:50:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,50]]
2017-10-04 18:51:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:51:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:51:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,51]]
2017-10-04 18:52:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:52:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:52:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,52]]
2017-10-04 18:53:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:53:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:53:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,53]]
2017-10-04 18:54:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:54:57 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:54:57 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,54]]
2017-10-04 18:55:07 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:07 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:17 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:17 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:27 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:27 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:37 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:37 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:47 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:47 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:55:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:55:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,55]]
2017-10-04 18:56:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:56:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:56:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,56]]
2017-10-04 18:57:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:57:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:57:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,57]]
2017-10-04 18:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:58:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:58:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,58]]
2017-10-04 18:59:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 18:59:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 18:59:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,9,59]]
2017-10-04 19:00:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:00:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:00:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,0]]
2017-10-04 19:01:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:01:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:01:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,1]]
2017-10-04 19:02:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:02:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:02:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,2]]
2017-10-04 19:03:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:03:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:03:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,3]]
2017-10-04 19:04:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:04:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:04:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,4]]
2017-10-04 19:05:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:05:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:05:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,5]]
2017-10-04 19:06:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:10 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.012:
2017-10-04 19:06:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 19:06:10 HiveExt: [Information] Method: 306 Params: 4:[[telo,0.352]]:0.059:
2017-10-04 19:06:10 HiveExt: [Information] Result: ["PASS"]
2017-10-04 19:06:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:06:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:06:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,6]]
2017-10-04 19:07:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:07:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:07:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,7]]
2017-10-04 19:08:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:08:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:08:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,8]]
2017-10-04 19:09:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:09:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:09:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,9]]
2017-10-04 19:10:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:10:58 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:10:58 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,10]]
2017-10-04 19:11:08 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:08 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:18 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:18 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:28 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:28 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:38 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:38 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:48 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:48 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:11:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:11:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,11]]
2017-10-04 19:12:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:12:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:12:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,12]]
2017-10-04 19:13:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:13:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:13:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,13]]
2017-10-04 19:14:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:14:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:14:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,14]]
2017-10-04 19:15:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:15:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:15:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,15]]
2017-10-04 19:16:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:16:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:16:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,16]]
2017-10-04 19:17:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:17:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:17:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,17]]
2017-10-04 19:18:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:18:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:18:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,18]]
2017-10-04 19:19:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:19:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:19:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,19]]
2017-10-04 19:20:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:20:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:20:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,20]]
2017-10-04 19:21:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:21:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:21:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,21]]
2017-10-04 19:22:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:22:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:22:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,22]]
2017-10-04 19:23:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:23:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:23:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,23]]
2017-10-04 19:24:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:24:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:24:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,24]]
2017-10-04 19:25:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:25:59 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:25:59 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,25]]
2017-10-04 19:26:09 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:09 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:19 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:19 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:29 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:29 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:39 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:39 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:26:49 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:26:49 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,26]]
2017-10-04 19:27:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:27:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:27:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,27]]
2017-10-04 19:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:28:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:28:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,28]]
2017-10-04 19:29:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:29:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:29:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,29]]
2017-10-04 19:30:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:30:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:30:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,30]]
2017-10-04 19:31:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:31:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:31:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,31]]
2017-10-04 19:32:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:32:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:32:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,32]]
2017-10-04 19:33:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:33:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:33:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,33]]
2017-10-04 19:34:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:34:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:34:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,34]]
2017-10-04 19:35:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:35:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:35:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,35]]
2017-10-04 19:36:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:36:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:36:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,36]]
2017-10-04 19:37:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:37:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:37:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,37]]
2017-10-04 19:38:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:38:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:38:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,38]]
2017-10-04 19:39:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:10 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:10 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:20 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:20 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:30 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:30 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:40 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:40 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:39:50 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:39:50 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,39]]
2017-10-04 19:40:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:40:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:40:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,40]]
2017-10-04 19:41:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:41:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:41:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,41]]
2017-10-04 19:42:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:42:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:42:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,42]]
2017-10-04 19:43:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:43:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:43:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,43]]
2017-10-04 19:44:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:44:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:44:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,44]]
2017-10-04 19:45:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:45:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:45:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,45]]
2017-10-04 19:46:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:46:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:46:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,46]]
2017-10-04 19:47:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:47:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:47:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,47]]
2017-10-04 19:48:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:48:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:48:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,48]]
2017-10-04 19:49:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:49:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:49:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,49]]
2017-10-04 19:50:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:41 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:41 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:50:51 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:50:51 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,50]]
2017-10-04 19:51:01 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:01 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:11 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:11 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:21 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:21 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:31 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:31 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:51:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:51:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,51]]
2017-10-04 19:52:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:52:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:52:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,52]]
2017-10-04 19:53:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:53:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:53:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,53]]
2017-10-04 19:54:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:54:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:54:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,54]]
2017-10-04 19:55:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:55:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:55:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,55]]
2017-10-04 19:56:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:56:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:56:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,56]]
2017-10-04 19:57:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:22 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:22 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:32 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:32 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:42 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:42 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:57:52 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:57:52 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,57]]
2017-10-04 19:58:00 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:00 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:02 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:02 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:12 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:12 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:58:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:58:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,58]]
2017-10-04 19:59:03 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:03 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:13 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:13 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:23 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:23 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:33 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:33 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:43 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:43 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 19:59:53 HiveExt: [Information] Method: 307 Params: 
2017-10-04 19:59:53 HiveExt: [Information] Result: ["PASS",[2017,10,4,10,59]]
2017-10-04 20:00:03 HiveExt: [Information] Method: 307 Params: 

 

 

Need you to post your server RPT here so we can look.

Link to comment
Share on other sites

7 hours ago, salival said:

Need you to post your server RPT here so we can look.

Spoiler

=====================================================================
== D:\home\sid_291166\arma2\arma2oaserver.exe
== D:\home\sid_291166\arma2\arma2oaserver.exe "-mod=ca;@dayz_epoch;@dayz_epoch_server" -port=2302 -config=config\server.cfg -cfg=config\basic.cfg -profiles=D:\home\sid_291166\arma2\config -ip=94.250.209.165
=====================================================================
Exe timestamp: 2017/03/15 16:26:23
Current time:  2017/10/05 11:57:56

Version 1.63.131129
Unsupported language German in stringtable
Updating base class ->NonStrategic, by Ca\config.bin/CfgVehicles/HouseBase/
Updating base class ->HouseBase, by Ca\config.bin/CfgVehicles/Ruins/
Updating base class ->DestructionEffects, by Ca\config.bin/CfgVehicles/House/DestructionEffects/
Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
Updating base class Default->RifleCore, by ca\weapons\config.bin/cfgWeapons/Rifle/
Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
Updating base class Small_items->ReammoBox, by dayz_equip\config.cpp/CfgVehicles/CardboardBox/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
Updating base class CA_IGUI_Title->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/Gear_Title/
Updating base class Available_items_Text->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/CA_ItemName/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item8/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item9/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item10/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item11/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item12/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item6/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item7/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item8/
Updating base class CA_Gear_slot_special1->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory1/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory8/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory9/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory10/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory11/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory12/
Updating base class CA_Gear_slot_item1->CA_Gear_slot_handgun, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_special1/
Updating base class RscIGUIShortcutButton->RscActiveText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/ButtonClose/
Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
Updating base class Strategic->, by z\addons\dayz_code\config.bin/CfgVehicles/Bomb/
Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroP/EventHandlers/
Updating base class AnimationSources->AnimationSources, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/AnimationSources/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/EventHandlers/
Updating base class BuiltItems->Generator_Base, by z\addons\dayz_code\config.bin/CfgVehicles/Generator_DZ/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_1300Rnd_762x51_M60/
Updating base class 100Rnd_762x51_M240->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_250Rnd_762x51/
Updating base class 6Rnd_Grenade_Camel->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_12Rnd_Grenade_Camel/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/3Rnd_GyroGrenade/
Updating base class DropWeapon->None, by z\addons\dayz_code\config.bin/CfgActions/PutWeapon/
Updating base class DropMagazine->None, by z\addons\dayz_code\config.bin/CfgActions/PutMagazine/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
11:58:07 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
11:58:08 Connected to Steam servers
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:08 Server error: Player without identity Erzengel (id 1437865711)
13:39:09 Server error: Player without identity Erzengel (id 1437865711)
13:39:09 Server error: Player without identity Erzengel (id 1437865711)
13:39:09 Server error: Player without identity Erzengel (id 1437865711)
13:39:41 Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
13:39:42 Strange convex component288 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component289 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component290 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component291 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component292 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component293 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component294 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component295 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component296 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component297 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component298 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component299 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component300 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component301 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component302 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component303 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component304 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component305 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component306 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component307 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component308 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component309 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component310 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component311 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component312 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component313 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component314 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component315 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component316 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component317 in warehouse\models\warehouse.p3d:geometry
13:39:42 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
13:39:42 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
13:39:42 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
13:39:46 "PRELOAD_ Functions\init [[<No group>:0 (FunctionsManager)],any]"
13:39:46 "MPframework inited"
13:39:46 "dayz_preloadFinished reset"
13:39:46 Error in expression <apphire + _Topaz;
dayz_allowedObjects = dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error position: <dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_allowedobjects
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\Buildables\variables.sqf, line 83
13:39:46 Bad conversion: array
13:39:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:39:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:39:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:39:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:39:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:39:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:39:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:39:46   Error Typ Objekt, erwartet Zahl
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28
13:39:46 Error in expression <oor;
s_player_manageDoor = -1;
};


if (_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error position: <_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error Nicht definierte Variable in Ausdruck: _doghandle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 1135
13:39:47 Error in expression <;
_recompile = (count _this) > 0;


if (BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error position: <BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error Nicht definierte Variable in Ausdruck: bis_fnc_init
13:39:47 File ca\Modules\Functions\init.sqf, line 28
13:39:49 "HIVE: Starting"
13:39:49 ["TIME SYNC: Local Time set to:",[2012,8,2,8,39],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,10,5,8,39]]
13:39:49 "HIVE: trying to get objects"
13:39:50 "HIVE: found 505 objects"
13:39:50 "HIVE: Request sent"
13:39:50 "HIVE: Streamed 505 objects"
13:39:50 "Res3tting B!S effects..."
13:39:50 "z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."
13:39:50 "SERVER FPS: 41  PLAYERS: 1"
13:39:51 Cannot create non-ai vehicle CH53_DZ,
13:39:51 Cannot create non-ai vehicle CH53_DZ,
13:39:58 Cannot create non-ai vehicle CH53_DZ,
13:39:59 Cannot create non-ai vehicle CH53_DZ,
13:40:01 "HIVE: BENCHMARK - Server_monitor.sqf finished streaming 505 objects in 11.6641 seconds (unscheduled)"
13:40:01 "Total Number of spawn locations 6"
13:40:01 "[DZAI] Initializing DZAI version 2.2.1 Release Build 20141208 using base path z\addons\dayz_server\DZAI."
13:40:01 "[DZAI] Reading DZAI configuration file."
13:40:01 "[DZAI] DZAI configuration file loaded."
13:40:01 "[DZAI] Compiling DZAI functions."
13:40:01 "[DZAI] DZAI functions compiled."
13:40:01 "DZAI Debug: Detected mod variant dayz_epoch."
13:40:01 "DayZ (Default) classnames loaded."
13:40:01 "[DZAI] DZAI settings: Debug Level: 1. DebugMarkers: false. WorldName: chernarus. ModName:  (Ver: dayz epoch 1.0.6.1). DZAI_dynamicWeaponList: true. VerifyTables: true."
13:40:01 "[DZAI] AI spawn settings: Static: true. Dynamic: true. Random: false. Air: true. Land: true."
13:40:01 "[DZAI] AI settings: DZAI_findKiller: true. DZAI_useHealthSystem: true. DZAI_weaponNoise: false. DZAI_zombieEnemy: false."
13:40:01 "[DZAI] DZAI loading completed in 0.302246 seconds."
13:40:02 "DZAI Debug: DZAI Startup is running required script files..."
13:40:02 "[DZAI] DZAI finished building weighted weapongrade tables in 0.00244141 seconds."
13:40:02 "DEBUG: Spawning an infected camp (Camp1_Small) at [5024.79,13210.5,0]"
13:40:03 "DEBUG: Spawning an infected camp (Camp1_Small) at [4526.14,14309.6,0]"
13:40:03 "DEBUG: Spawning an infected camp (Camp1_Small) at [11120.5,6045.78,0]"
13:40:04 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [9326.49,11135,0] with 11 items."
13:40:04 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [10975.9,8213.69,0] with 9 items."
13:40:04 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [12690.4,10652.1,0] with 4 items."
13:40:04 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [11180.2,12553.2,0] with 4 items."
13:40:04 "CRASHSPAWNER: Starting crash site spawner. Frequency: 25±20 min. Spawn chance: 0.75"
13:40:04 "CRASHSPAWNER: Spawning crash site (CrashSite_RU) at [4522.81,10124.6,0] with 7 items."
13:40:05 "DEBUG: Spawning a care package (Misc_cargo_cont_net2) at [11581.3,12929,0] with 9 items."
13:40:05 "DEBUG: Spawning a care package (Misc_cargo_cont_net1) at [12526.3,6736.52,0] with 5 items."
13:40:06 Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:06 Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
13:40:18 "HIVE: Vehicle Spawn limit reached!"
13:40:18 "HIVE: Spawning # of Debris: 100"
13:40:36 "HIVE: Spawning # of Ammo Boxes: 10"
13:40:37 "HIVE: Spawning # of Veins: 50"
13:40:38 "HIVE: BENCHMARK - Server finished spawning 0 DynamicVehicles, 100 Debris, 10 SupplyCrates and 50 MineVeins in 33.0381 seconds (scheduled)"
13:40:38 "EPOCH EVENTS INIT"
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
13:40:41 Cannot create non-ai vehicle Land_Terrace_K_2_EP1,
13:40:41 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:41 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:41 Cannot create non-ai vehicle Land_t_malus1s,
13:40:41 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
aif_arma1buildings
13:40:41 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:41 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:42 Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
13:40:42 Warning Message: No entry '.picture'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.scope'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: Error: creating magazine cinder_wall_kit with scope=private
13:40:42 Warning Message: No entry '.displayName'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.displayNameShort'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.nameSound'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.Library'.
13:40:42 Warning Message: No entry '.libTextDesc'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.type'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.count'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.maxLeadSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.initSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.reloadAction'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.modelSpecial'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.ammo'.
13:40:42 Warning Message: '/' is not a value
13:40:43 Cannot create non-ai vehicle Land_R2_Boulder1,
13:40:43 Cannot create non-ai vehicle Land_Mil_Mil_Guardhouse,
13:40:43 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:43 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:43 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:43 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_buildings_3
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_killhouses
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_killhouses
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
aif_arma1buildings
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
aif_arma1buildings
13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
aif_arma1buildings
13:40:46 Bad conversion: array
13:40:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:40:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:40:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:40:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:40:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:40:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:40:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:40:46   Error Typ Objekt, erwartet Zahl
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28
13:40:46 "DZAI Debug: Spawning in serverside objects... Reading from file CfgTownGeneratorChernarus."
13:40:46 "DZAI Debug: Building DZAI weapon arrays using CfgBuildingLoot data."
13:40:46 "DZAI Debug: Weapon classname tables created in 0 seconds."
13:40:46 "CLEANUP: INITIALIZING Vehicle SCRIPT"
13:40:46 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,8,40],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,10,5,8,40]]
13:40:47 "[DZAI] Removing invalid classname: Winchester1866."
13:40:47 "[DZAI] Removing invalid classname: MR43."
13:40:47 "[DZAI] Removing invalid classname: Winchester1866."
13:40:47 "[DZAI] Removing invalid classname: MR43."
13:40:47 "[DZAI] Contents of DZAI_Rifles0 failed verification. Invalid entries removed."
13:40:47 "[DZAI] Removing invalid classname: Remington870_lamp."
13:40:47 "[DZAI] Contents of DZAI_Rifles1 failed verification. Invalid entries removed."
13:40:47 "[DZAI] Removing invalid classname: Remington870_lamp."
13:40:47 "[DZAI] Removing invalid classname: Mk_48_DZ."
13:40:47 "[DZAI] Contents of DZAI_Rifles2 failed verification. Invalid entries removed."
13:40:47 "[DZAI] Removing invalid classname: Remington870_lamp."
13:40:47 "[DZAI] Removing invalid classname: Mk_48_DZ."
13:40:47 "[DZAI] Contents of DZAI_Rifles3 failed verification. Invalid entries removed."
13:40:48 "[DZAI] Verified 87 unique classnames in 1.30322 seconds."
13:40:48 "Starting DZAI Dynamic Spawn Manager in 5 minutes."
13:40:48 "DZAI Server Monitor will start in 1 minute."
13:40:54 "Chernarus spawn areas loaded."
13:40:55 "Chernarus static spawn configuration loaded."
13:40:57 "INFO - Player: PID#3(Erzengel)(UID:76561198196013425/CID:41) Status: LOGGING IN"
13:40:57 "DZAI Debug: Location configuration completed with 77 locations found in 9.19189 seconds."
13:40:58 "INFO - Player: PID#3(Erzengel)(UID:76561198196013425/CID:41) Status: LOGIN PUBLISHING, Location Novy Sobor [078072]"
13:40:58 "DZAI Debug: Assembled helicopter list: ["UH1H_DZ","UH1H_DZ"]"
13:40:58 No owner
13:40:58 No owner
13:40:58 No owner
13:40:58 No owner
13:40:58 "DZAI Debug: Created AI vehicle patrol at [9647.32,5096.01,150] with vehicle type UH1H_DZ with 3 crew units."
13:40:58 "DZAI Debug: Unit O 1-1-A:1 loadout: [["huntingrifle"],["5x_22_LR_17_HMR"]]. Weapongrade 0. Blood: 5423.56."
13:40:58 "DZAI Debug: Unit O 1-1-A:2 loadout: [["huntingrifle"],["5x_22_LR_17_HMR"]]. Weapongrade 0. Blood: 6010.7."
13:40:58 "DZAI Debug: Unit O 1-1-A:3 loadout: [["revolver_EP1"],["6Rnd_45ACP"]]. Weapongrade 0. Blood: 7437.09."
13:41:03 "DZAI Debug: Assembled vehicle list: ["Offroad_DSHKM_Gue","Offroad_DSHKM_Gue","Offroad_DSHKM_Gue","BTR40_MG_TK_GUE_EP1","BTR40_MG_TK_GUE_EP1","BTR40_MG_TK_GUE_EP1"]"
13:41:03 No owner
13:41:03 No owner
13:41:03 "DZAI Debug: Created AI vehicle patrol at [7132.34,7431.19,-3.05176e-005] with vehicle type Offroad_DSHKM_Gue with 3 crew units."
13:41:03 "DZAI Debug: Unit O 1-1-B:1 loadout: [["huntingrifle"],["5x_22_LR_17_HMR"]]. Weapongrade 0. Blood: 5455.4."
13:41:03 "DZAI Debug: Unit O 1-1-B:2 loadout: [["Colt1911"],["7Rnd_45ACP_1911"]]. Weapongrade 0. Blood: 6957.33."
13:41:03 "DZAI Debug: Unit O 1-1-B:3 loadout: [["LeeEnfield"],["10x_303"]]. Weapongrade 0. Blood: 5550."
13:41:17 "INFO - Player: Erzengel(UID:76561198196013425/CID:41) Status: CLIENT LOADED & PLAYING"
13:41:18 "DZAI Debug: Created AI vehicle patrol at [6190.95,13140.1,150] with vehicle type UH1H_DZ with 3 crew units."
13:41:18 "DZAI Debug: Unit O 1-1-C:1 loadout: [["AKS_74_kobra"],["30Rnd_545x39_AK"]]. Weapongrade 1. Blood: 6988.05."
13:41:18 "DZAI Debug: Unit O 1-1-C:2 loadout: [["M16A2GL"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 4340.92."
13:41:18 "DZAI Debug: Unit O 1-1-C:3 loadout: [["MP5A5"],["30Rnd_9x19_MP5"]]. Weapongrade 1. Blood: 4593.11."
13:41:23 No owner
13:41:23 No owner
13:41:23 "DZAI Debug: Created AI vehicle patrol at [8650.74,7649.78,3.05176e-005] with vehicle type BTR40_MG_TK_GUE_EP1 with 5 crew units."
13:41:23 "DZAI Debug: Unit O 1-1-D:1 loadout: [["MP5SD"],["30Rnd_9x19_MP5SD"]]. Weapongrade 1. Blood: 7578.3."
13:41:23 "DZAI Debug: Unit O 1-1-D:2 loadout: [["DMR_DZ"],["20Rnd_762x51_DMR"]]. Weapongrade 1. Blood: 4189.27."
13:41:23 "DZAI Debug: Unit O 1-1-D:3 loadout: [["M4A1"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 7653.42."
13:41:23 "DZAI Debug: Unit O 1-1-D:4 loadout: [["MP5A5"],["30Rnd_9x19_MP5"]]. Weapongrade 1. Blood: 5544.07."
13:41:23 "DZAI Debug: Unit O 1-1-D:5 loadout: [["M14_EP1"],["20Rnd_762x51_DMR"]]. Weapongrade 1. Blood: 6737.7."
13:41:43 "DZAI Debug: Created AI vehicle patrol at [3582.92,5091.33,-3.05176e-005] with vehicle type BTR40_MG_TK_GUE_EP1 with 5 crew units."
13:41:43 "DZAI Debug: Unit O 1-1-E:1 loadout: [["MP5A5"],["30Rnd_9x19_MP5"]]. Weapongrade 1. Blood: 5862.75."
13:41:43 "DZAI Debug: Unit O 1-1-E:2 loadout: [["MP5SD"],["30Rnd_9x19_MP5SD"]]. Weapongrade 1. Blood: 7112.84."
13:41:43 "DZAI Debug: Unit O 1-1-E:3 loadout: [["M1014"],["8Rnd_B_Beneli_74Slug"]]. Weapongrade 1. Blood: 5819.68."
13:41:43 "DZAI Debug: Unit O 1-1-E:4 loadout: [["AK_74"],["30Rnd_545x39_AK"]]. Weapongrade 1. Blood: 4040.42."
13:41:43 "DZAI Debug: Unit O 1-1-E:5 loadout: [["AK_74"],["30Rnd_545x39_AK"]]. Weapongrade 1. Blood: 7484.95."
13:42:08 "DZAI Debug: Serverside object patch completed in 81.7881 seconds."
13:42:48 "DZAI Monitor :: Server Uptime: 1:44:57. Active AI Groups: 5."
13:42:48 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."
13:42:48 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 2. Land Patrols: 3."
13:43:09 Ref to nonnetwork object 38f22400# 1063432: roadbarrier_long.p3d
13:43:33 "HIVE: WRITE: "CHILD:305:530:[217.949112,[7825.828125,8074.744629,0.179352]]:0.888:""
13:43:33 "HIVE: WRITE: "CHILD:303:530:[[[],[]],[[],[]],[[],[]]]:""
13:43:33 "HIVE: WRITE: "CHILD:306:530:[["NEmotor",0],["NEpalivo",0],["wheel_1_1_steering",0.063],["wheel_1_2_steering",0],["wheel_2_1_steering",0.106],["wheel_2_2_steering",0.217],["sklo predni P",0],["sklo predni L",0],["karoserie",0.196],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0.087:""
13:43:39 "HIVE: WRITE: "CHILD:305:530:[288.10257,[7817.437012,8078.150391,0.155243]]:0.887118:""
13:43:47 "HIVE: WRITE: "CHILD:305:530:[298.129547,[7783.342773,8092.677734,0.0447388]]:0.885532:""
13:43:47 "HIVE: WRITE: "CHILD:306:530:[["NEmotor",0],["NEpalivo",0],["wheel_1_1_steering",0.063],["wheel_1_2_steering",0],["wheel_2_1_steering",0.106],["wheel_2_2_steering",0.217],["sklo predni P",0],["sklo predni L",0],["karoserie",0.196],["wheel_1_4_steering",0],["wheel_2_4_steering",0],["wheel_1_3_steering",0],["wheel_2_3_steering",0],["glass1",0],["glass2",0],["glass3",0],["glass4",0]]:0.0866142:""
13:44:49 "DZAI Monitor :: Server Uptime: 1:46:57. Active AI Groups: 5."
13:44:49 "DZAI Monitor :: Static Spawns: 0. Respawn Queue: 0 groups queued."
13:44:49 "DZAI Monitor :: Dynamic Spawns: 0. Random Spawns: 0. Air Patrols: 2. Land Patrols: 3."

 

thats the rpt since the last servrestart. i will wonder if u find the solution in there

Link to comment
Share on other sites

well your fn_selfactions have a lot of errors. your variables too.  you also carry on an error from this mod who spawns things with jewells. Have a bad weapon/item class name in somewhere.... can be an event, a script who spawn items.. or whatever.

Spoiler

13:39:46   Error position: <dayz_allowedObjects + _CraftingArray; //saw same error forced by 


13:39:46 Error in expression <apphire + _Topaz;
dayz_allowedObjects = dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error position: <dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_allowedobjects
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\Buildables\variables.sqf, line 83
13:39:46 Bad conversion: array
13:39:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:39:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:39:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:39:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:39:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:39:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:39:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:39:46   Error Typ Objekt, erwartet Zahl
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28
13:39:46 Error in expression <oor;
s_player_manageDoor = -1;
};


if (_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error position: <_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error Nicht definierte Variable in Ausdruck: _doghandle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 1135
13:39:47 Error in expression <;
_recompile = (count _this) > 0;


if (BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error position: <BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error Nicht definierte Variable in Ausdruck: bis_fnc_init
13:39:47 File ca\Modules\Functions\init.sqf, line 28


13:40:42 Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
13:40:42 Warning Message: No entry '.picture'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.scope'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: Error: creating magazine cinder_wall_kit with scope=private
13:40:42 Warning Message: No entry '.displayName'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.displayNameShort'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.nameSound'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.Library'.
13:40:42 Warning Message: No entry '.libTextDesc'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.type'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.count'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.maxLeadSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.initSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.reloadAction'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.modelSpecial'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.ammo'.
13:40:42 Warning Message: '/' is not a value
13:40:43 Cannot create non-ai vehicle Land_R2_Boulder1,
13:40:43 Cannot create non-ai vehicle Land_Mil_Mil_Guardhouse,

13:40:46 Bad conversion: array
13:40:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:40:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:40:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:40:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:40:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:40:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:40:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:40:46   Error Typ Objekt, erwartet Zahl
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28

 

cannot understand german here.. but sound like youre including custom buildings (african) be sure you add the addon name in mission.sqm

Spoiler

13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings

 

Link to comment
Share on other sites

7 minutes ago, juandayz said:

well your fn_selfactions have a lot of errors. your variables too.  you also carry on an error from this mod who spawns things with jewells. Have a bad weapon/item class name in somewhere.... can be an event, a script who spawn items.. or whatever.

yep, the gem build thing does cause errors iam not able to fix as same as the guy that created it. the fn_selfaction is something i have in mind to care about but can it effect the communication to the db? (i dont think so)

so my problem can be caused buy a single wrong classname ? i guess iam kind of fucked then

Link to comment
Share on other sites

13 minutes ago, juandayz said:

well your fn_selfactions have a lot of errors. your variables too.  you also carry on an error from this mod who spawns things with jewells. Have a bad weapon/item class name in somewhere.... can be an event, a script who spawn items.. or whatever.

  Reveal hidden contents


13:39:46   Error position: <dayz_allowedObjects + _CraftingArray; //saw same error forced by 


13:39:46 Error in expression <apphire + _Topaz;
dayz_allowedObjects = dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error position: <dayz_allowedObjects + _CraftingArray;
DZ>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_allowedobjects
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\Buildables\variables.sqf, line 83
13:39:46 Bad conversion: array
13:39:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:39:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:39:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:39:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:39:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:39:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:39:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:39:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:39:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:39:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:39:46   Error Typ Objekt, erwartet Zahl
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28
13:39:46 Error in expression <oor;
s_player_manageDoor = -1;
};


if (_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error position: <_dogHandle > 0) then {
_dog = _dogHandle>
13:39:46   Error Nicht definierte Variable in Ausdruck: _doghandle
13:39:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 1135
13:39:47 Error in expression <;
_recompile = (count _this) > 0;


if (BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error position: <BIS_fnc_init && !_recompile) exitwith {t>
13:39:47   Error Nicht definierte Variable in Ausdruck: bis_fnc_init
13:39:47 File ca\Modules\Functions\init.sqf, line 28


13:40:42 Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
13:40:42 Warning Message: No entry '.picture'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.scope'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: Error: creating magazine cinder_wall_kit with scope=private
13:40:42 Warning Message: No entry '.displayName'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.displayNameShort'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.nameSound'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.Library'.
13:40:42 Warning Message: No entry '.libTextDesc'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.type'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.count'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.maxLeadSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.initSpeed'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.reloadAction'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.modelSpecial'.
13:40:42 Warning Message: '/' is not a value
13:40:42 Warning Message: No entry '.ammo'.
13:40:42 Warning Message: '/' is not a value
13:40:43 Cannot create non-ai vehicle Land_R2_Boulder1,
13:40:43 Cannot create non-ai vehicle Land_Mil_Mil_Guardhouse,

13:40:46 Bad conversion: array
13:40:46 Error in expression <f (s_player_equip_carry < 0) then {
if (dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error position: <dayz_onBack != "" && { !_inVehicle && { >
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_onback
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 57
13:40:46 Error in expression <e) then {
DZE_myVehicle = _vehicle;
if (_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error position: <_vehicleOwnerID != "0" && _canDo) then {>
13:40:46   Error Nicht definierte Variable in Ausdruck: _vehicleownerid
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 115
13:40:46 Error in expression <hasAttached],2,false,true];
};
} else {
dayz_myLiftVehicle removeAction s_player>
13:40:46   Error position: <dayz_myLiftVehicle removeAction s_player>
13:40:46   Error Nicht definierte Variable in Ausdruck: dayz_myliftvehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 163
13:40:46 Error in expression <jump.sqf",[],2,false,true];
};
} else {
DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error position: <DZE_myHaloVehicle removeAction s_halo_ac>
13:40:46   Error Nicht definierte Variable in Ausdruck: dze_myhalovehicle
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 175
13:40:46 Error in expression <uid = getPlayerUID player;
_nearLight = nearestObject [player,"LitObject"];
_can>
13:40:46   Error position: <nearestObject [player,"LitObject"];
_can>
13:40:46   Error Typ Objekt, erwartet Zahl
13:40:46 File mpmissions\DayZ_Epoch_11.Chernarus\custom\fn_selfActions.sqf, line 28

 

cannot understand german here.. but sound like youre including custom buildings (african) be sure you add the addon name in mission.sqm

  Hide contents


13:40:44 Warning Message: Sie können diese Mission nicht spielen/bearbeiten, da sie auf heruntergeladenen Inhalten basiert, die gelöscht wurden.
mbg_african_buildings

 

yes iam inculding buildings from panthera to have more enterables on the map and i dont realy care about that message becuase the buildings do get spawned

Link to comment
Share on other sites

Just now, Erzengelgames said:

new db or would it be enogh to create a new object_data ?

 

edit iam sorry i have to ask so much but this is the most complex problem i ever had and the 2nd one i cant fix with just testing ..

haha dont worry. create a whole db. (just for test) do not delete the other one. just load in HiveExt.ini the new one.

another thing that i can tell you for testing is create a sqf who forces write objects to your db to see what happend. (i have one created) gonna send you by private.

Is your choise.. really i dont have idea why its happend to you. is why i sent you to discard things

maybe you can wait to salival response or otherone who see your specific error just with all the info that you give us.

Link to comment
Share on other sites

1 minute ago, juandayz said:

haha dont worry. create a whole db. (just for test) do not delete the other one. just load in HiveExt.ini the new one.

another thing that i can tell you for testing is create a sqf who forces write objects to your db to see what happend. (i have one created) gonna send you by private.

Is your choise.. really i dont have idea why its happend to you. is why i sent you to discard things

maybe you can wait to salival response or otherone who see your specific error just with all the info that you give us.

at the moment i will fix the stuff u told me to get a clear rpt and then we can see again and yes, send it pls :)

Link to comment
Share on other sites

@juandayz@salival

i did clean up the errors a bit so here is the new .rpt

before first player logs in

Spoiler

=====================================================================
== D:\home\sid_291166\arma2\arma2oaserver.exe
== D:\home\sid_291166\arma2\arma2oaserver.exe "-mod=ca;@dayz_epoch;@dayz_epoch_server" -port=2302 -config=config\server.cfg -cfg=config\basic.cfg -profiles=D:\home\sid_291166\arma2\config -ip=94.250.209.165
=====================================================================
Exe timestamp: 2017/03/15 16:26:23
Current time:  2017/10/05 15:53:20

Version 1.63.131129
Unsupported language German in stringtable
Updating base class ->NonStrategic, by Ca\config.bin/CfgVehicles/HouseBase/
Updating base class ->HouseBase, by Ca\config.bin/CfgVehicles/Ruins/
Updating base class ->DestructionEffects, by Ca\config.bin/CfgVehicles/House/DestructionEffects/
Updating base class ->FlagCarrierCore, by ca\ca_pmc\config.bin/CfgVehicles/FlagCarrier/
Updating base class ->VehicleMagazine, by ca\weapons\config.bin/CfgMagazines/14Rnd_FFAR/
Updating base class Default->RifleCore, by ca\weapons\config.bin/cfgWeapons/Rifle/
Updating base class ->LauncherCore, by ca\weapons\config.bin/cfgWeapons/RocketPods/
Updating base class ->RocketPods, by ca\weapons\config.bin/cfgWeapons/FFARLauncher/
Updating base class ->UH60_Base, by ca\air\config.bin/CfgVehicles/MH60S/
Updating base class ->Car, by ca\wheeled2\lada\config.bin/CfgVehicles/Lada_base/
Updating base class Small_items->ReammoBox, by dayz_equip\config.cpp/CfgVehicles/CardboardBox/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Small_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street1_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lamp_Street2_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_Lampa_Ind_EP1/
Updating base class StreetLamp_EP1->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_PowLines_Conc2L_EP1/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_2/
Updating base class StreetLamp_BaseMediumOrange->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_sidl_3/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind/
Updating base class StreetLamp_BaseWeakYellow->StreetLamp, by z\addons\dayz_code\config.bin/CfgNonAIVehicles/Land_lampa_ind_zebr/
Updating base class RscStandardDisplay->, by z\addons\dayz_code\config.bin/RscDisplayStart/
Updating base class RscShortcutButton->RscShortcutButtonMain, by z\addons\dayz_code\config.bin/RscDisplayMain/controls/CA_Exit/
Updating base class CA_IGUI_Title->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/Gear_Title/
Updating base class Available_items_Text->RscText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/CA_ItemName/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item8/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item9/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item10/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item11/
Updating base class CA_Gear_slot_item7->CA_Gear_slot_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_item12/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item6/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item7/
Updating base class CA_Gear_slot_handgun_item5->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_handgun_item8/
Updating base class CA_Gear_slot_special1->CA_Gear_slot_handgun_item1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory1/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory8/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory9/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory10/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory11/
Updating base class CA_Gear_slot_inventory7->CA_Gear_slot_inventory1, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_inventory12/
Updating base class CA_Gear_slot_item1->CA_Gear_slot_handgun, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/G_GearItems/Controls/CA_Gear_slot_special1/
Updating base class RscIGUIShortcutButton->RscActiveText, by z\addons\dayz_code\config.bin/RscDisplayGear/Controls/ButtonClose/
Updating base class RscText->, by z\addons\dayz_code\config.bin/RscTitles/Default/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/Mi17_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1H_base/Turrets/MainTurret/ViewOptics/
Updating base class ->ViewOptics, by z\addons\dayz_code\config.bin/CfgVehicles/UH1_Base/Turrets/MainTurret/ViewOptics/
Updating base class Strategic->, by z\addons\dayz_code\config.bin/CfgVehicles/Bomb/
Updating base class HighCommand->Logic, by z\addons\dayz_code\config.bin/CfgVehicles/HighCommandSubordinate/
Updating base class NonStrategic->BuiltItems, by z\addons\dayz_code\config.bin/CfgVehicles/Fort_RazorWire/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroP/EventHandlers/
Updating base class AnimationSources->AnimationSources, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/AnimationSources/
Updating base class ->DefaultEventhandlers, by z\addons\dayz_code\config.bin/CfgVehicles/CSJ_GyroC/EventHandlers/
Updating base class BuiltItems->Generator_Base, by z\addons\dayz_code\config.bin/CfgVehicles/Generator_DZ/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/29Rnd_30mm_AGS30/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/48Rnd_40mm_MK19/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/2000Rnd_762x51_M134/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/100Rnd_127x99_M2/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/50Rnd_127x107_DSHKM/
Updating base class 4000Rnd_762x51_M134->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_1300Rnd_762x51_M60/
Updating base class 100Rnd_762x51_M240->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_250Rnd_762x51/
Updating base class 6Rnd_Grenade_Camel->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/pook_12Rnd_Grenade_Camel/
Updating base class VehicleMagazine->CA_Magazine, by z\addons\dayz_code\config.bin/CfgMagazines/3Rnd_GyroGrenade/
Updating base class DropWeapon->None, by z\addons\dayz_code\config.bin/CfgActions/PutWeapon/
Updating base class DropMagazine->None, by z\addons\dayz_code\config.bin/CfgActions/PutMagazine/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_1L2/
Updating base class Land_HouseV_1I2->House, by zero_buildings\config.cpp/CfgVehicles/Land_HouseV_3I3/
Updating base class House->DZE_OpenHouse, by warehouse\config.bin/CfgVehicles/Land_Ind_Pec_03/
15:53:31 Initializing Steam server - Game Port: 2302, Steam Query Port: 2303
15:53:32 Connected to Steam servers

 

after first player connects + attempt to build a tent

Spoiler

15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:48 Server error: Player without identity Erzengel (id 986890976)
15:54:54 Strange convex component81 in zero_buildings\models\housev_3i3_i.p3d:geometryFire
15:54:55 Strange convex component288 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component289 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component290 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component291 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component292 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component293 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component294 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component295 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component296 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component297 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component298 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component299 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component300 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component301 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component302 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component303 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component304 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component305 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component306 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component307 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component308 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component309 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component310 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component311 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component312 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component313 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component314 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component315 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component316 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component317 in warehouse\models\warehouse.p3d:geometry
15:54:55 Strange convex component252 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component253 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component254 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component255 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component256 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component257 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component258 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component259 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component260 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component261 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component262 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component263 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component264 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component265 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component266 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component267 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component268 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component269 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component270 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component271 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component272 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component273 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component274 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component275 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component276 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component277 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component278 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component279 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component280 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component281 in warehouse\models\warehouse.p3d:geometryFire
15:54:55 Strange convex component249 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component250 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component251 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component252 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component253 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component254 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component255 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component256 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component257 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component258 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component259 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component260 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component261 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component262 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component263 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component264 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component265 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component266 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component267 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component268 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component269 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component270 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component271 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component272 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component273 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component274 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component275 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component276 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component277 in warehouse\models\warehouse.p3d:geometryView
15:54:55 Strange convex component278 in warehouse\models\warehouse.p3d:geometryView
15:54:59 "PRELOAD_ Functions\init [[<No group>:0 (FunctionsManager)],any]"
15:54:59 "MPframework inited"
15:54:59 "dayz_preloadFinished reset"
15:54:59 Error in expression <;
_recompile = (count _this) > 0;


if (BIS_fnc_init && !_recompile) exitwith {t>
15:54:59   Error position: <BIS_fnc_init && !_recompile) exitwith {t>
15:54:59   Error Nicht definierte Variable in Ausdruck: bis_fnc_init
15:54:59 File ca\Modules\Functions\init.sqf, line 28
15:55:02 "HIVE: Starting"
15:55:02 "z\addons\dayz_code\system\REsec.sqf:Monitoring Remote Exe..."
15:55:02 ["TIME SYNC: Local Time set to:",[2012,8,2,8,55],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,10,5,8,55]]
15:55:02 "HIVE: trying to get objects"
15:55:02 "SERVER FPS: 24  PLAYERS: 1"
15:55:02 "HIVE: found 505 objects"
15:55:02 "HIVE: Request sent"
15:55:02 "HIVE: Streamed 505 objects"
15:55:03 "Res3tting B!S effects..."
15:55:04 Cannot create non-ai vehicle CH53_DZ,
15:55:04 Cannot create non-ai vehicle CH53_DZ,
15:55:11 Cannot create non-ai vehicle CH53_DZ,
15:55:12 Cannot create non-ai vehicle CH53_DZ,
15:55:14 "HIVE: BENCHMARK - Server_monitor.sqf finished streaming 505 objects in 11.594 seconds (unscheduled)"
15:55:14 "Total Number of spawn locations 6"
15:55:14 "[DZAI] Initializing DZAI version 2.2.1 Release Build 20141208 using base path z\addons\dayz_server\DZAI."
15:55:14 "[DZAI] Reading DZAI configuration file."
15:55:14 "[DZAI] DZAI configuration file loaded."
15:55:14 "CLEANUP: INITIALIZING Vehicle SCRIPT"
15:55:14 "[DZAI] Compiling DZAI functions."
15:55:14 ["z\addons\dayz_server\system\scheduler\sched_sync.sqf","TIME SYNC: Local Time set to:",[2012,8,2,8,55],"Fullmoon:",true,"Date given by HiveExt.dll:",[2017,10,5,8,55]]
15:55:15 Strange convex component93 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component94 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component95 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component96 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component99 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component100 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component101 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component102 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component103 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component104 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component105 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component106 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component107 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component108 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component109 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component110 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component111 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component112 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component113 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component114 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component115 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component116 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component117 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component118 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component119 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component120 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component121 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component122 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component123 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component124 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component125 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component126 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component127 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component128 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component129 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component130 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component131 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component132 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component133 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:15 Strange convex component134 in zero_buildings\models\mil_house_i.p3d:geometryView
15:55:16 "[DZAI] DZAI functions compiled."
15:55:16 "DZAI Debug: Detected mod variant dayz_epoch."
15:55:16 "DayZ (Default) classnames loaded."
15:55:16 "[DZAI] DZAI settings: Debug Level: 1. DebugMarkers: false. WorldName: chernarus. ModName:  (Ver: dayz epoch 1.0.6.1). DZAI_dynamicWeaponList: true. VerifyTables: true."
15:55:16 "[DZAI] AI spawn settings: Static: true. Dynamic: true. Random: false. Air: true. Land: true."
15:55:16 "[DZAI] AI settings: DZAI_findKiller: true. DZAI_useHealthSystem: true. DZAI_weaponNoise: false. DZAI_zombieEnemy: false."
15:55:16 "[DZAI] DZAI loading completed in 1.855 seconds."
15:55:31 "INFO - Player: PID#3(Erzengel)(UID:76561198196013425/CID:41) Status: LOGGING IN"
15:55:31 "CRASHSPAWNER: Starting crash site spawner. Frequency: 25±20 min. Spawn chance: 0.75"
15:55:31 "INFO - Player: PID#3(Erzengel)(UID:76561198196013425/CID:41) Status: LOGGING IN"
15:55:31 "DEBUG: Spawning a care package (Misc_cargo_cont_net2) at [9777.85,11635.1,0] with 5 items."
15:55:31 "EPOCH EVENTS INIT"
15:55:32 Server: Object 3:6 not found (message 94)
15:55:32 Server: Object 3:7 not found (message 99)
15:55:32 Server: Object 3:10 not found (message 91)
15:55:32 Server: Object 3:9 not found (message 99)
15:55:32 Server: Object 3:8 not found (message 91)
15:55:32 "HIVE: WRITE: "CHILD:306:529:[["telo",0.342]]:0.002:""
15:55:32 "DZAI Debug: DZAI Startup is running required script files..."
15:55:32 "INFO - Player: PID#3(Erzengel)(UID:76561198196013425/CID:41) Status: LOGIN PUBLISHING, Location Stary Sobor [055080]"
15:55:32 "INFO: needUpdate_objects=[267110c0# 1055896: c130j.p3d]"
15:55:32 "HIVE: WRITE: "CHILD:306:529:[["telo",0.342]]:0.00368803:""
15:55:32 "CRASHSPAWNER: Spawning crash site (CrashSite_US) at [4107.75,12156.8,0] with 6 items."
15:55:32 CrashSite_US: MainTurret - unknown animation source MainTurret
15:55:32 CrashSite_US: MainGun - unknown animation source mainGun
15:55:32 CrashSite_US: Gatling - unknown animation source Gatling
15:55:32 "[DZAI] DZAI finished building weighted weapongrade tables in 0.487 seconds."
15:55:33 "DEBUG: Spawning an infected camp (Camp1_Small) at [921.009,6120.21,0]"
15:55:33 "DZAI Debug: Building DZAI weapon arrays using CfgBuildingLoot data."
15:55:33 "DZAI Debug: Weapon classname tables created in 0.00100708 seconds."
15:55:33 "DZAI Debug: Spawning in serverside objects... Reading from file CfgTownGeneratorChernarus."
15:55:33 "HIVE: WRITE: "CHILD:303:530:[[[],[]],[[],[]],[[],[]]]:""
15:55:33 "[DZAI] Removing invalid classname: Winchester1866."
15:55:33 "[DZAI] Removing invalid classname: MR43."
15:55:33 "[DZAI] Removing invalid classname: Winchester1866."
15:55:33 "[DZAI] Removing invalid classname: MR43."
15:55:33 "[DZAI] Contents of DZAI_Rifles0 failed verification. Invalid entries removed."
15:55:33 "[DZAI] Removing invalid classname: Remington870_lamp."
15:55:33 "[DZAI] Contents of DZAI_Rifles1 failed verification. Invalid entries removed."
15:55:34 "INFO - Player: Erzengel(UID:76561198196013425/CID:41) Status: CLIENT LOADED & PLAYING"
15:55:34 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [2723.52,6155.45,0] with 6 items."
15:55:34 "[DZAI] Removing invalid classname: Remington870_lamp."
15:55:34 "[DZAI] Removing invalid classname: Mk_48_DZ."
15:55:34 "[DZAI] Contents of DZAI_Rifles2 failed verification. Invalid entries removed."
15:55:34 "[DZAI] Removing invalid classname: Remington870_lamp."
15:55:34 "[DZAI] Removing invalid classname: Mk_48_DZ."
15:55:34 "[DZAI] Contents of DZAI_Rifles3 failed verification. Invalid entries removed."
15:55:34 Cannot create non-ai vehicle Land_Terrace_K_2_EP1,
15:55:34 Cannot create non-ai vehicle Land_R2_Boulder1,
15:55:35 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [2282.56,7412.29,0] with 10 items."
15:55:36 "[DZAI] Verified 87 unique classnames in 2.63301 seconds."
15:55:36 "Chernarus spawn areas loaded."
15:55:37 "DZAI Server Monitor will start in 1 minute."
15:55:37 "Starting DZAI Dynamic Spawn Manager in 5 minutes."
15:55:37 Cannot create non-ai vehicle Land_Mil_Mil_Guardhouse,
15:55:37 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [1490.58,3575.56,0] with 6 items."
15:55:37 Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
15:55:37 Warning Message: No entry '.picture'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.scope'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: Error: creating magazine cinder_wall_kit with scope=private
15:55:37 Warning Message: No entry '.displayName'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.displayNameShort'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.nameSound'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.Library'.
15:55:37 Warning Message: No entry '.libTextDesc'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.type'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.count'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.maxLeadSpeed'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.initSpeed'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.reloadAction'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.modelSpecial'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.ammo'.
15:55:37 Warning Message: '/' is not a value
15:55:38 "Chernarus static spawn configuration loaded."
15:55:38 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [1802.11,11607.6,0] with 7 items."
15:55:38 "DEBUG: Spawning an infected camp (Camp1_Small) at [13346.6,12278,0]"
15:55:38 Cannot create non-ai vehicle Land_t_malus1s,
15:55:39 "DEBUG: Spawning a care package (Misc_cargo_cont_net3) at [6556.24,5978.71,0] with 12 items."
15:55:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:40 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:41 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 "DEBUG: Spawning an infected camp (Camp1_Small) at [11229.4,6026.49,0]"
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:42 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:43 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:43 ca\structures\ruins\glass_cullet_01.p3d: No geometry and no visual shape
15:55:46 "HIVE: Vehicle Spawn limit reached!"
15:55:46 "HIVE: Spawning # of Debris: 100"
15:55:47 "DZAI Debug: Location configuration completed with 77 locations found in 10.868 seconds."
15:55:47 "DZAI Debug: Assembled helicopter list: ["UH1H_DZ","UH1H_DZ"]"
15:55:48 No owner
15:55:48 "DZAI Debug: Created AI vehicle patrol at [7741.28,4744.24,150] with vehicle type UH1H_DZ with 3 crew units."
15:55:48 "DZAI Debug: Unit O 1-1-A:1 loadout: [["M4A1_Aim"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 6936.86."
15:55:48 "DZAI Debug: Unit O 1-1-A:2 loadout: [["MP5A5"],["30Rnd_9x19_MP5"]]. Weapongrade 1. Blood: 7034.35."
15:55:48 "DZAI Debug: Unit O 1-1-A:3 loadout: [["DMR_DZ"],["20Rnd_762x51_DMR"]]. Weapongrade 1. Blood: 7802.48."
15:55:52 "DZAI Debug: Assembled vehicle list: ["Offroad_DSHKM_Gue","Offroad_DSHKM_Gue","Offroad_DSHKM_Gue","BTR40_MG_TK_GUE_EP1","BTR40_MG_TK_GUE_EP1","BTR40_MG_TK_GUE_EP1"]"
15:55:53 "DZAI Debug: Created AI vehicle patrol at [7699.69,9469.23,0] with vehicle type BTR40_MG_TK_GUE_EP1 with 5 crew units."
15:55:53 "DZAI Debug: Unit O 1-1-B:1 loadout: [["MP5SD"],["30Rnd_9x19_MP5SD"]]. Weapongrade 1. Blood: 7867.67."
15:55:53 "DZAI Debug: Unit O 1-1-B:2 loadout: [["M4A1"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 5211.02."
15:55:53 "DZAI Debug: Unit O 1-1-B:3 loadout: [["M16A2"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 5132.12."
15:55:53 "DZAI Debug: Unit O 1-1-B:4 loadout: [["M4A3_CCO_EP1"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 5694.67."
15:55:53 "DZAI Debug: Unit O 1-1-B:5 loadout: [["M4A3_CCO_EP1"],["30Rnd_556x45_Stanag"]]. Weapongrade 1. Blood: 5823.42."
15:56:08 No owner
15:56:08 No owner
15:56:08 "DZAI Debug: Created AI vehicle patrol at [9697.83,9635.99,150] with vehicle type UH1H_DZ with 3 crew units."
15:56:08 "DZAI Debug: Unit O 1-1-C:1 loadout: [["M40A3"],["5Rnd_762x51_M24"]]. Weapongrade 3. Blood: 6055.57."
15:56:08 "DZAI Debug: Unit O 1-1-C:2 loadout: [["Sa58V_EP1"],["30Rnd_762x39_SA58"]]. Weapongrade 3. Blood: 6602.64."
15:56:08 "DZAI Debug: Unit O 1-1-C:3 loadout: [["M4A3_CCO_EP1"],["30Rnd_556x45_Stanag"]]. Weapongrade 3. Blood: 4594.08."
15:56:13 No owner
15:56:13 "DZAI Debug: Created AI vehicle patrol at [3983.56,10177,0] with vehicle type Offroad_DSHKM_Gue with 3 crew units."
15:56:13 "DZAI Debug: Unit O 1-1-D:1 loadout: [["M9"],["15Rnd_9x19_M9"]]. Weapongrade 0. Blood: 7809.83."
15:56:13 "DZAI Debug: Unit O 1-1-D:2 loadout: [["LeeEnfield"],["10x_303"]]. Weapongrade 0. Blood: 4514.66."
15:56:13 "DZAI Debug: Unit O 1-1-D:3 loadout: [["LeeEnfield"],["10x_303"]]. Weapongrade 0. Blood: 6701.22."
15:56:22 "HIVE: Spawning # of Ammo Boxes: 10"
15:56:26 "HIVE: Spawning # of Veins: 50"
15:56:29 "HIVE: BENCHMARK - Server finished spawning 0 DynamicVehicles, 100 Debris, 10 SupplyCrates and 50 MineVeins in 72.864 seconds (scheduled)"
15:56:29 "HIVE: WRITE: "CHILD:309:0:[[[],[]],[[],[]],[[],[]]]:""
  
  //Tried to build the Tent here (no entery)
  
15:56:33 No owner
15:56:33 No owner
15:56:33 "DZAI Debug: Created AI vehicle patrol at [3521.75,9125.2,0] with vehicle type Offroad_DSHKM_Gue with 3 crew units."
15:56:33 "DZAI Debug: Unit O 1-1-E:1 loadout: [["AKS_74_kobra"],["30Rnd_545x39_AK"]]. Weapongrade 1. Blood: 4320.38."
15:56:33 "DZAI Debug: Unit O 1-1-E:2 loadout: [["M24"],["5Rnd_762x51_M24"]]. Weapongrade 1. Blood: 4913.65."
15:56:33 "DZAI Debug: Unit O 1-1-E:3 loadout: [["AKS_74_U"],["30Rnd_545x39_AK"]]. Weapongrade 1. Blood: 7902.1."
15:56:46 "INFO - Player: Erzengel(UID:76561198196013425/CID:41) Status: LOGGED OUT, Location Stary Sobor [055080]"
15:56:46 Client: Remote object 3:5 not found

 

 

Link to comment
Share on other sites

nice:

this issue can be fixed in DZAI i guess.

Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
15:55:37 Warning Message: No entry '.picture'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.scope'.

find cinder_wall_kit and check if is the correct id.

 

the strangeconvex error and player without identity are commons ( do not care about it).

the issue about african and arma1 buildings you can fix in mission.sqf (add lines in blue)

Spoiler

addOns[]=
    {
        "ibr_panthera2",
        "map_eu",
        "ca_modules_animals",
        "dayz_anim",
        "dayz_code",
        "dayz_communityassets",
        "dayz_weapons",
        "dayz_equip",
        "cacharacters_pmc",
        "ca_modules_functions",
        "dayz_epoch",
        "warfarebuildings",
        "ind_tank",
        "camisc_e",
        "glt_m300t",
        "pook_h13",
        "csj_gyroac",
        "jetskiyanahuiaddon",
        "redryder",
        "Anzio_20",
        "warehouse",
        "mbg_killhouses",
        "mbg_buildings_3",
        "mbg_african_buildings",
        "glt_bh_wreck_burned",
        "aif_arma1buildings"

    };

 

Link to comment
Share on other sites

5 minutes ago, juandayz said:

nice:

this issue can be fixed in DZAI i guess.


Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
15:55:37 Warning Message: No entry '.picture'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.scope'.

find cinder_wall_kit and check if is the correct id.

 

the strangeconvex error and player without identity are commons ( do not care about it).

 

the dzai is stored in dayz_server and even if i search the whole foldr with notepad++ i cann not find "cinder"

edir: just in your supply from air ^^

Link to comment
Share on other sites

the issue about african and arma1 buildings you can fix in mission.sqf (add lines in blue)

Spoiler

addOns[]=
    {
        "ibr_panthera2",
        "map_eu",
        "ca_modules_animals",
        "dayz_anim",
        "dayz_code",
        "dayz_communityassets",
        "dayz_weapons",
        "dayz_equip",
        "cacharacters_pmc",
        "ca_modules_functions",
        "dayz_epoch",
        "warfarebuildings",
        "ind_tank",
        "camisc_e",
        "glt_m300t",
        "pook_h13",
        "csj_gyroac",
        "jetskiyanahuiaddon",
        "redryder",
        "Anzio_20",
        "warehouse",
        "mbg_killhouses",
        "mbg_buildings_3",
        "mbg_african_buildings",
        "glt_bh_wreck_burned",
        "aif_arma1buildings"

    };

about dzai, do you have any event with a bad id? or trader?

Link to comment
Share on other sites

3 minutes ago, juandayz said:

the issue about african and arma1 buildings you can fix in mission.sqf (add lines in blue)

  Reveal hidden contents

addOns[]=
    {
        "ibr_panthera2",
        "map_eu",
        "ca_modules_animals",
        "dayz_anim",
        "dayz_code",
        "dayz_communityassets",
        "dayz_weapons",
        "dayz_equip",
        "cacharacters_pmc",
        "ca_modules_functions",
        "dayz_epoch",
        "warfarebuildings",
        "ind_tank",
        "camisc_e",
        "glt_m300t",
        "pook_h13",
        "csj_gyroac",
        "jetskiyanahuiaddon",
        "redryder",
        "Anzio_20",
        "warehouse",
        "mbg_killhouses",
        "mbg_buildings_3",
        "mbg_african_buildings",
        "glt_bh_wreck_burned",
        "aif_arma1buildings"

    };

about dzai, do you have any event with a bad id? or trader?

allready fixed the buildings, thanks & what do you mean with bad id ? i did set up couple of custom traders and they all have different ids

Link to comment
Share on other sites

mean this :

Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
15:55:37 Warning Message: No entry '.picture'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.scope'.

is a specific error when thers a item with a bad "id" for example  if u put  _crate addMagazine "bloodbag"; you gonna have a bad id.. must be "ItemBloodbag".

i think the new one for 1.6 is

full_cinder_wall_kit or half_cinder_wall_kit

Link to comment
Share on other sites

16 hours ago, juandayz said:

mean this :


Warning Message: No entry 'bin\config.bin/CfgMagazines.cinder_wall_kit'.
15:55:37 Warning Message: No entry '.picture'.
15:55:37 Warning Message: '/' is not a value
15:55:37 Warning Message: No entry '.scope'.

is a specific error when thers a item with a bad "id" for example  if u put  _crate addMagazine "bloodbag"; you gonna have a bad id.. must be "ItemBloodbag".

 

yes, my building trader has wrong classnames for cinderwall. i will fix

 

so i did fix ever error now my rpt is clean

but as u might allready thougt.. still not working

Link to comment
Share on other sites

18 minutes ago, Erzengelgames said:

Bump

 

still need this to be fixed to Open up my Server. Allready have my 4 Slots iam testing everything on filled with Players all the Time .. Cant wait for publishing 

Sry BTW for spelling and caps (logged in on mobile device)

I have messaged you my email address, please email me your dayz_server.pbo and your mission pbo.

Link to comment
Share on other sites

 i did reset my database to see how this effects and after i placed a tent to test i noticed nothing realy happen. but what i saw finnaly is that if i put gear into the object the gear seems to safe

 8:19:24 "HIVE: WRITE: "CHILD:309:0:[[["MR43_DZ"],[1]],[["ItemBriefcaseS20oz","2Rnd_12Gauge_Buck"],[1,3]],[[],[]]]:""

but the tent still does not safe

Link to comment
Share on other sites

@Erzengelgames  how this lines looks in yout HiveExt.ini ?

[Objects]
;Which table should the objects be stored and fetched from ?
;Table = Object_DATA

;Negative values will disable this feature
;0 means that ALL empty placed items will be deleted every server restart
;A positive number is how old (in days) a placed empty item must be, in order for it to be deleted
CleanupPlacedAfterDays = -1

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...